/* ==============================
   ROOT & RESET
   ============================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --blue-dark:   #0f172a;
  --blue-navy:   #1e3a8a;
  --blue-main:   #1d4ed8;
  --blue-mid:    #3b82f6;
  --blue-light:  #dbeafe;
  --blue-pale:   #eff6ff;
  --black:       #060b14;
  --dark:        #111827;
  --text:        #1f2937;
  --muted:       #6b7280;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --bg:          #f8fafc;
  --radius:      12px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,.09);
  --shadow-md:   0 8px 32px rgba(0,0,0,.13);
  --trans:       all .28s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

img { display: block; max-width: 100%; }

/* Placeholder when image not loaded */
img[src=""], img:not([src]) {
  background: var(--blue-light);
  min-height: 120px;
}

/* ==============================
   SECTION HEAD
   ============================== */
.sec-head { text-align: center; margin-bottom: 3rem; }
.sec-tag {
  display: inline-block;
  background: var(--blue-pale); color: var(--blue-main);
  border: 1px solid rgba(29,78,216,.18);
  padding: .3rem 1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: .8rem;
}
.sec-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800;
  color: var(--dark); margin-bottom: .6rem;
}
.sec-head h2 span { color: var(--blue-main); }
.sec-head p { color: var(--muted); font-size: .95rem; }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: var(--trans); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap; font-family: inherit;
}
.btn-primary {
  background: var(--blue-main); color: var(--white);
  border-color: var(--blue-main);
}
.btn-primary:hover {
  background: var(--blue-navy); border-color: var(--blue-navy);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,78,216,.3);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--blue-main);
  transform: translateY(-2px);
}
.btn-white-blue {
  background: var(--white); color: var(--blue-main);
  border-color: var(--white);
}
.btn-white-blue:hover {
  background: var(--blue-pale); transform: translateY(-2px);
}
.btn-wa {
  background: #22c55e; color: var(--white); border-color: #22c55e;
}
.btn-wa:hover { background: #16a34a; transform: translateY(-2px); }
.btn-wa-outline {
  background: transparent; color: #22c55e; border-color: #22c55e;
}
.btn-wa-outline:hover { background: #22c55e; color: var(--white); }
.btn-sm { padding: .5rem 1.2rem; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

/* ==============================
   FLOATING WA
   ============================== */
.wa-float {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 9999;
  background: #22c55e; color: var(--white);
  display: flex; align-items: center; gap: .5rem;
  padding: .75rem 1.2rem; border-radius: 50px;
  font-weight: 700; font-size: .85rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(34,197,94,.45);
  transition: var(--trans);
}
.wa-float i { font-size: 1.3rem; }
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34,197,94,.5);
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: transparent; transition: var(--trans); padding: 1rem 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  box-shadow: var(--shadow); padding: .5rem 0;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

/* Logo */
.brand { display: block; text-decoration: none; flex-shrink: 0; }
.logo-img {
  height: 48px; width: auto; max-width: 180px;
  object-fit: contain; transition: var(--trans);
  /* Fallback teks ketika logo.png belum ada */
  background: transparent;
}
.logo-img[src="logo.png"]:not([complete]) { opacity: .7; }

/* Ketika logo gagal dimuat, tampilkan teks fallback */
.navbar .brand::after {
  content: none; /* fallback via JS */
}
.brand .logo-fallback {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  transition: var(--trans); line-height: 1.1;
  display: none; /* ditampilkan JS kalau logo error */
}
.brand .logo-fallback span { color: var(--blue-mid); }
.navbar.scrolled .brand .logo-fallback { color: var(--dark); }

.brand .logo-fallback span { color: var(--blue-mid); }
.navbar.scrolled .brand .logo-fallback { color: var(--dark); }

.nav-menu {
  display: flex; list-style: none; align-items: center; gap: 1.5rem;
}
.nav-menu a {
  text-decoration: none; color: rgba(255,255,255,.92);
  font-weight: 500; font-size: .9rem; transition: var(--trans);
}
.navbar.scrolled .nav-menu a { color: var(--text); }
.nav-menu a:hover { color: var(--blue-mid); }
.nav-cta {
  background: var(--blue-main) !important; color: var(--white) !important;
  padding: .5rem 1.3rem; border-radius: 50px; font-weight: 700 !important;
  border: 2px solid var(--blue-main);
}
.nav-cta:hover {
  background: var(--blue-navy) !important; transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(29,78,216,.35);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--trans);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 1.5rem 5rem; text-align: center;
  /* Prefer back.png; fall back to back.jpg then hero-bg.jpg */
  background-image: linear-gradient(160deg, rgba(6,11,20,.9) 0%, rgba(29,78,216,.15) 120%), url('images/back.png'), url('images/back.jpg'), url('images/hero-bg.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .6s ease;
  background: var(--blue-dark); min-height: 100%;
}
.hero-bg img.loaded { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(6,11,20,.82) 0%, rgba(15,23,42,.75) 60%, rgba(29,78,216,.2) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: var(--white); padding: .45rem 1.1rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-badge .fa-star { color: #fbbf24; }
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem); font-weight: 800;
  color: var(--white); line-height: 1.18; margin-bottom: 1rem;
}
.hero h1 span { color: #93c5fd; }
.hero > .hero-content > p {
  color: rgba(255,255,255,.8); font-size: 1.05rem;
  line-height: 1.75; margin-bottom: 1.8rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-price {
  display: inline-flex; align-items: baseline; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: .65rem 1.6rem; border-radius: 50px; margin-bottom: 2rem;
}
.hero-price > span { color: rgba(255,255,255,.7); font-size: .85rem; }
.hero-price strong { color: #fbbf24; font-size: 1.9rem; font-weight: 800; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.hero-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
}
.hero-tags span {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9); padding: .35rem .9rem;
  border-radius: 50px; font-size: .8rem; font-weight: 500;
}
.hero-tags .fa-solid, .hero-tags .fa-brands { font-size: .8rem; color: #93c5fd; }

/* ==============================
   TRUST BAR
   ============================== */
.trust-bar { background: var(--dark); padding: 1.2rem 1.5rem; }
.trust-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .5rem;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .3rem .9rem; text-align: center;
}
.trust-item i { font-size: 1rem; color: var(--blue-mid); margin-bottom: .2rem; }
.trust-item strong {
  display: block; font-size: 1.15rem; font-weight: 800; color: var(--white); line-height: 1.1;
}
.trust-item span { font-size: .72rem; color: rgba(255,255,255,.55); white-space: nowrap; }
.trust-sep { width: 1px; height: 38px; background: rgba(255,255,255,.1); }

/* ==============================
   PAKET KAMAR
   ============================== */
.paket { padding: 5.5rem 1.5rem; background: var(--bg); }
.paket-grid {
  max-width: 1100px; margin: 0 auto 2.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 2rem;
}
.paket-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 2px solid transparent; transition: var(--trans);
  cursor: pointer; position: relative;
}
.paket-card:hover {
  transform: translateY(-6px); border-color: var(--blue-main);
  box-shadow: var(--shadow-md);
}
.paket-card.popular { border-color: var(--blue-main); }
.popular-label {
  position: absolute; top: .9rem; right: .9rem; z-index: 3;
  background: var(--blue-main); color: var(--white);
  padding: .3rem .9rem; border-radius: 50px;
  font-size: .73rem; font-weight: 700;
  display: flex; align-items: center; gap: .3rem;
}
.paket-img {
  position: relative; overflow: hidden;
  height: 200px; background: var(--blue-light);
}
.paket-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
  /* Placeholder saat gambar belum ada */
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  min-height: 200px;
}
.paket-card:hover .paket-img img { transform: scale(1.06); }
.paket-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(15,23,42,.55); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  opacity: 0; transition: var(--trans); color: var(--white);
}
.paket-card:hover .paket-overlay { opacity: 1; }
.paket-overlay i { font-size: 2rem; }
.paket-overlay span { font-size: .85rem; font-weight: 600; }

.paket-body { padding: 1.5rem; }
.paket-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.paket-badge {
  padding: .22rem .75rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
}
.paket-badge.std { background: var(--blue-pale); color: var(--blue-main); }
.paket-badge.dlx { background: #fef3c7; color: #92400e; }
.paket-badge.fam { background: #f0fdf4; color: #166534; }
.paket-rating {
  display: flex; align-items: center; gap: .3rem;
  font-size: .82rem; font-weight: 700; color: var(--dark);
}
.paket-rating .fa-star { color: #fbbf24; font-size: .78rem; }
.paket-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.paket-body > p { color: var(--muted); font-size: .87rem; line-height: 1.6; margin-bottom: 1rem; }
.paket-features { list-style: none; display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.2rem; }
.paket-features li { font-size: .84rem; color: var(--text); display: flex; align-items: center; gap: .5rem; }
.paket-features .fa-check { color: var(--blue-main); font-size: .75rem; }
.paket-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.paket-price strong { font-size: 1.2rem; font-weight: 800; color: var(--blue-main); }
.paket-price span { font-size: .78rem; color: var(--muted); }

/* Promo Strip */
.promo-strip {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, var(--blue-navy), var(--blue-main));
  border-radius: var(--radius-lg); padding: 1.8rem 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.promo-strip > i { font-size: 2rem; color: #fbbf24; flex-shrink: 0; }
.promo-strip > div { flex: 1; min-width: 200px; }
.promo-strip strong { display: block; font-size: 1.05rem; color: var(--white); margin-bottom: .3rem; }
.promo-strip span { color: rgba(255,255,255,.8); font-size: .88rem; }

/* ==============================
   FASILITAS
   ============================== */
.fasilitas { padding: 5.5rem 1.5rem; background: var(--white); }
.fas-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem;
}
.fas-card {
  padding: 2rem; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); transition: var(--trans);
  position: relative;
}
.fas-card:hover { border-color: var(--blue-main); box-shadow: 0 8px 28px rgba(29,78,216,.1); transform: translateY(-4px); }
.fas-card.featured { border-color: var(--blue-main); background: var(--blue-pale); }
.fas-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-pale); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1rem;
  transition: var(--trans);
}
.fas-icon i { font-size: 1.4rem; color: var(--blue-main); }
.fas-card:hover .fas-icon { background: var(--blue-main); }
.fas-card:hover .fas-icon i { color: var(--white); }
.fas-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.fas-card p { color: var(--muted); font-size: .87rem; line-height: 1.7; }
.fas-cert {
  display: inline-block; margin-top: .8rem;
  background: var(--blue-main); color: var(--white);
  padding: .2rem .7rem; border-radius: 50px; font-size: .7rem; font-weight: 700;
}

/* ==============================
   GALERI
   ============================== */
.galeri { padding: 5.5rem 1.5rem; background: var(--bg); }
.galeri-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}
.g-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--blue-light);
}
.g-item.big { grid-column: span 2; grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
  /* Placeholder background sebelum gambar di-upload */
  background: linear-gradient(135deg, #bfdbfe, #dbeafe);
  min-height: 100%;
}
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,23,42,.3);
  opacity: 0; transition: var(--trans);
}
.g-item:hover::after { opacity: 1; }
.g-label {
  position: absolute; bottom: .7rem; left: .7rem; z-index: 2;
  background: rgba(15,23,42,.7); color: var(--white);
  padding: .3rem .8rem; border-radius: 50px;
  font-size: .75rem; font-weight: 600;
  display: flex; align-items: center; gap: .3rem;
}
.g-label i { font-size: .7rem; }

/* ==============================
   BOOKING
   ============================== */
.booking { padding: 5.5rem 1.5rem; background: var(--blue-pale); }
.booking-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
.booking-left .sec-tag { display: inline-block; margin-bottom: .7rem; }
.booking-left h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; line-height: 1.25; }
.booking-left h2 span { color: var(--blue-main); }
.booking-left > p { color: var(--muted); font-size: .93rem; line-height: 1.7; margin-bottom: 1.5rem; }
.booking-perks { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.booking-perks li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--text); font-weight: 500; }
.booking-perks .fa-check-circle { color: var(--blue-main); }
.booking-contact { display: flex; flex-direction: column; gap: .8rem; }
.bcontact-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 1.2rem; border-radius: var(--radius);
  text-decoration: none; transition: var(--trans); border: 1.5px solid var(--border);
  background: var(--white); font-size: .9rem; font-weight: 600;
}
.bcontact-item.wa { color: #16a34a; border-color: #bbf7d0; }
.bcontact-item.wa:hover { background: #f0fdf4; }
.bcontact-item.maps { color: var(--blue-main); border-color: var(--blue-light); }
.bcontact-item.maps:hover { background: var(--blue-pale); }
.bcontact-item i { font-size: 1.2rem; }

/* Form */
.booking-right {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 2rem;
}
.booking-form h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--dark);
  margin-bottom: 1.5rem; padding-bottom: .8rem;
  border-bottom: 2px solid var(--blue-pale);
  display: flex; align-items: center; gap: .6rem;
}
.booking-form h3 i { color: var(--blue-main); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fgroup { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.fgroup label { font-size: .8rem; font-weight: 700; color: var(--dark); }
.fgroup input, .fgroup select, .fgroup textarea {
  padding: .72rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .9rem; font-family: inherit;
  outline: none; transition: var(--trans); background: var(--white); color: var(--text);
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: var(--blue-main); box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.fgroup textarea { resize: vertical; min-height: 80px; }
.booking-summary {
  background: var(--blue-pale); border-radius: 10px;
  padding: 1.2rem; margin-bottom: 1.2rem;
  border: 1px solid rgba(29,78,216,.15);
  display: none;
}
.booking-summary.visible { display: block; }
.booking-summary h4 {
  font-size: .85rem; font-weight: 700; color: var(--blue-main);
  margin-bottom: .8rem; display: flex; align-items: center; gap: .4rem;
}
.sum-row { display: flex; justify-content: space-between; font-size: .84rem; padding: .28rem 0; }
.sum-row span { color: var(--muted); }
.sum-row strong { color: var(--dark); }
.sum-row.total {
  border-top: 1px solid rgba(29,78,216,.15);
  margin-top: .4rem; padding-top: .55rem;
}
.sum-row.total strong { color: var(--blue-main); font-size: .98rem; }
.form-note { text-align: center; font-size: .76rem; color: var(--muted); margin-top: .7rem; }

/* ==============================
   TESTIMONI
   ============================== */
.testimoni { padding: 5.5rem 1.5rem; background: var(--white); }
.rating-summary { display: flex; align-items: center; gap: .7rem; justify-content: center; margin-top: 1rem; }
.rs-stars i { color: #fbbf24; font-size: 1.2rem; }
.rating-summary strong { font-size: 1.9rem; font-weight: 800; color: var(--dark); }
.rating-summary span { font-size: .88rem; color: var(--muted); }
.testi-grid {
  max-width: 1100px; margin: 0 auto 2rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem;
}
.testi-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 1.8rem; border: 1.5px solid var(--border); transition: var(--trans);
}
.testi-card:hover { border-color: var(--blue-main); box-shadow: var(--shadow); }
.testi-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-main); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 700;
}
.testi-head > div:nth-child(2) { flex: 1; }
.testi-head strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.testi-head span { font-size: .76rem; color: var(--muted); }
.testi-stars { display: flex; gap: 2px; flex-shrink: 0; }
.testi-stars i { color: #fbbf24; font-size: .78rem; }
.testi-card > p { font-size: .86rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.testi-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.testi-tags span {
  background: var(--blue-pale); color: var(--blue-main);
  padding: .18rem .65rem; border-radius: 50px; font-size: .72rem; font-weight: 600;
}
.google-review-bar {
  max-width: 1100px; margin: 0 auto;
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.grb-stars i { color: #fbbf24; }
.google-review-bar span { font-weight: 700; color: var(--dark); font-size: .9rem; }
.google-review-bar a { color: var(--blue-main); font-weight: 700; text-decoration: none; font-size: .9rem; }
.google-review-bar a:hover { text-decoration: underline; }

/* ==============================
   FAQ
   ============================== */
.faq { padding: 5.5rem 1.5rem; background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); overflow: hidden;
}
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.5rem; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: inherit; font-size: .9rem; font-weight: 600; color: var(--dark);
  transition: var(--trans);
}
.faq-btn span { flex: 1; }
.faq-btn:hover { color: var(--blue-main); }
.faq-icon { transition: transform .3s ease; color: var(--blue-main); flex-shrink: 0; }
.faq-btn.open .faq-icon { transform: rotate(45deg); }
.faq-ans {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq-ans.open { max-height: 200px; padding: 0 1.5rem 1.1rem; }
.faq-ans p { font-size: .87rem; color: var(--muted); line-height: 1.8; }

/* ==============================
   LOKASI & MAPS
   ============================== */
.lokasi { padding: 5.5rem 1.5rem; background: var(--white); }
.lokasi-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start;
}
.lokasi-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 1.8rem; }
.lokasi-info h2 span { color: var(--blue-main); }
.lokasi-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem; }
.lokasi-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
}
.lokasi-icon i { font-size: 1.1rem; color: var(--blue-main); }
.lokasi-item strong { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .15rem; }
.lokasi-item p, .lokasi-item a { font-size: .9rem; color: var(--text); text-decoration: none; }
.lokasi-item a:hover { color: var(--blue-main); }
.lokasi-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.maps-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.maps-wrap iframe { display: block; }

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--blue-dark); }
.footer-main { padding: 4.5rem 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo {
  height: 44px; width: auto; max-width: 160px;
  object-fit: contain; margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(.9);
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.footer-socials { display: flex; gap: .8rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); text-decoration: none;
  transition: var(--trans); font-size: 1rem;
}
.footer-socials a:hover { background: var(--blue-main); color: var(--white); border-color: var(--blue-main); }
.footer-col h4 {
  color: var(--white); font-size: .88rem; font-weight: 700;
  margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .87rem; transition: var(--trans); }
.footer-col a:hover { color: var(--blue-mid); }
.footer-col p { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 2.1; }
.footer-col p i { margin-right: .4rem; color: rgba(255,255,255,.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 1.5rem;
}
.footer-bottom .container {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: .5rem;
}
.footer-bottom span { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ==============================
   MODAL PAKET
   ============================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(6,11,20,.85); display: none;
  align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 820px; width: 100%; max-height: 90vh;
  overflow-y: auto; position: relative;
  animation: modalIn .3s ease;
  display: grid; grid-template-columns: 1fr 1fr;
}
@keyframes modalIn { from { opacity:0; transform:scale(.95) translateY(20px); } to { opacity:1; transform:none; } }
.modal-close {
  position: absolute; top: .9rem; right: .9rem; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.6); color: var(--white);
  border: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.modal-close:hover { background: var(--blue-main); }
.modal-img-wrap { position: relative; min-height: 300px; background: var(--blue-light); }
.modal-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  min-height: 300px;
}
.modal-img-nav {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: .6rem;
  background: rgba(0,0,0,.55); padding: .4rem .8rem; border-radius: 50px;
}
.modal-img-nav button {
  background: none; border: none; color: var(--white);
  cursor: pointer; font-size: .9rem; padding: .2rem .4rem;
  transition: var(--trans);
}
.modal-img-nav button:hover { color: #93c5fd; }
.modal-img-nav span { color: rgba(255,255,255,.8); font-size: .78rem; white-space: nowrap; }
.modal-content { padding: 2rem; display: flex; flex-direction: column; gap: .8rem; overflow-y: auto; }
.modal-header { display: flex; align-items: center; justify-content: space-between; }
.modal-badge {
  padding: .22rem .75rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
}
.modal-rating { display: flex; align-items: center; gap: .3rem; font-size: .85rem; font-weight: 700; }
.modal-rating i { color: #fbbf24; }
.modal-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.modal-content > p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.modal-features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .4rem;
}
.modal-feature-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .83rem; color: var(--text);
}
.modal-feature-item i { color: var(--blue-main); font-size: .75rem; flex-shrink: 0; }
.modal-includes { background: var(--blue-pale); border-radius: 10px; padding: 1rem; }
.modal-includes h4 {
  font-size: .82rem; font-weight: 700; color: var(--blue-main);
  margin-bottom: .6rem; display: flex; align-items: center; gap: .4rem;
}
.modal-includes-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.modal-includes-list span {
  background: var(--white); border: 1px solid var(--blue-light);
  color: var(--blue-navy); padding: .2rem .65rem;
  border-radius: 50px; font-size: .75rem; font-weight: 600;
}
.modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .8rem; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.modal-price-box span { display: block; font-size: .75rem; color: var(--muted); }
.modal-price-box strong { font-size: 1.4rem; font-weight: 800; color: var(--blue-main); }
.btn-wa-modal {
  background: #22c55e; color: var(--white); border-color: #22c55e;
}
.btn-wa-modal:hover { background: #16a34a; }

/* ==============================
   TOAST
   ============================== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9997;
  background: var(--dark); color: var(--white);
  padding: 1rem 1.5rem; border-radius: var(--radius);
  font-size: .87rem; box-shadow: var(--shadow-md);
  transform: translateX(200%); transition: var(--trans);
  border-left: 4px solid var(--blue-main); max-width: 320px;
  pointer-events: none;
}
.toast.show { transform: translateX(0); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 960px) {
  .modal-box { grid-template-columns: 1fr; max-width: 520px; }
  .modal-img-wrap { min-height: 240px; }
  .booking-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .lokasi-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--white); flex-direction: column;
    padding: 1.5rem; gap: 1rem; box-shadow: var(--shadow); z-index: 100;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { color: var(--text); }
  .nav-cta { align-self: flex-start; }
  .galeri-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-item.big { grid-column: span 2; }
  .trust-sep { display: none; }
  .frow { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .promo-strip { flex-direction: column; text-align: center; }
  .wa-float span { display: none; }
  .wa-float { padding: .9rem; border-radius: 50%; }
  .lokasi-actions { flex-direction: column; }
  .modal-features-grid { grid-template-columns: 1fr; }
  .galeri-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
}
