/* PMG Reservations UI (App-like) */
.pmg-reservation-wrap{
  max-width:1100px;
  margin:40px auto;
  padding:30px;
  background:#fff;
  border-radius:20px;
  border:1px solid #e5e7eb;
  box-shadow:0 15px 40px rgba(0,0,0,.05);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.pmg-title{
  margin:0 0 30px;
  font-size:32px;
  font-weight:800;
  text-align:center;
  color:#0f172a;
}

#pmg-loader{
  text-align:center;
  padding:30px;
  color:#64748b;
}

/* Service Cards */
.pmg-service-card{
  position:relative;
  padding:22px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  margin-bottom:25px;
  transition:.25s ease;
  overflow:hidden;
}

.pmg-service-card:hover{
  transform: translateY(-2px);
  border-color:#cbd5e1;
  box-shadow:0 20px 45px rgba(0,0,0,.07);
}

.pmg-service-card h3{
  font-size:26px;
  font-weight:800;
  margin:15px 0 5px;
  color:#0f172a;
}

.pmg-service-card p{
  color:#475569;
  line-height:1.6;
  margin:0 0 15px;
}

/* Carousel */
.pmg-carousel{
  width:100%;
  height:210px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  background:#e2e8f0;
  margin-bottom:10px;
}

.pmg-carousel img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.pmg-carousel img.active{
  display:block;
}

/* Carousel dots */
.pmg-dots{
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.pmg-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  cursor:pointer;
}

.pmg-dot.active{
  background:#fff;
  transform:scale(1.2);
}

/* Button style */
.pmg-btn-primary,
.pmg-btn-secondary{
  padding:12px 18px;
  border-radius:14px;
  font-weight:800;
  cursor:pointer;
  border:none;
  transition:.25s;
}

.pmg-btn-primary{
  background:#1e3a8a;
  color:#fff;
}

.pmg-btn-primary:hover{
  opacity:.92;
}

.pmg-btn-secondary{
  background:#64748b;
  color:#fff;
  margin-top:10px;
}

.pmg-btn-secondary:hover{
  opacity:.92;
}

/* Packages Grid */
.pmg-packages{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

/* Package Card */
.pmg-package-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.04);
  transition:.25s ease;
  position:relative;
}

.pmg-package-card:hover{
  transform:translateY(-3px);
  border-color:#cbd5e1;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.pmg-package-card h4{
  margin:0 0 8px;
  font-size:20px;
  font-weight:800;
  color:#0f172a;
}

.pmg-package-card p{
  margin:0;
  color:#475569;
  font-size:14px;
  line-height:1.5;
  min-height:70px;
}

.pmg-price{
  margin-top:15px;
  font-size:20px;
  font-weight:900;
  color:#0f172a;
}

.pmg-package-card button{
  margin-top:15px;
  width:100%;
  font-size:16px;
}

/* Drawer Form */
#pmg-form{
  margin-top:25px;
  border-radius:18px;
  padding:22px;
  background:#0f172a;
  color:#fff;
  border:1px solid rgba(255,255,255,.15);
}

#pmg-selected-package{
  font-size:18px;
  font-weight:800;
  margin:0 0 20px;
  color:#fff;
  padding:12px 16px;
  background:rgba(255,255,255,.08);
  border-radius:12px;
  border:1px solid rgba(255,255,255,.15);
}

#pmg-selected-package strong{
  color:#28c76f;
  font-weight:900;
}

#pmg-form label{
  display:block;
  margin-top:14px;
  font-weight:700;
  color:#fff;
}

#pmg-form input,
#pmg-form select,
#pmg-form textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
  margin-top:6px;
  background:rgba(255,255,255,.08);
  color:#fff;
}

#pmg-form textarea{
  min-height:90px;
  resize:vertical;
}

#pmg-pay-btn{
  margin-top:20px;
  padding:14px;
  border-radius:16px;
  font-size:18px;
  background:#22c55e;
}

#pmg-pay-btn:hover{
  background:#16a34a;
}

/* Mobile responsive */
@media(max-width:700px){
  .pmg-reservation-wrap{
    padding:18px;
  }
  .pmg-title{
    font-size:26px;
  }
  .pmg-carousel{
    height:170px;
  }
}
