/* ══════════════════════════════════════════════════════════
   Handayani Kemuning — Homepage
   Navy + Orange + WhatsApp Green
   ══════════════════════════════════════════════════════════ */

:root {
  --navy:       #0F1B3D;
  --navy-2:     #16245C;
  --navy-soft:  #1C2C5C;
  --orange:     #F4811F;
  --orange-2:   #FF9D45;
  --green:      #20B358;
  --green-dark: #189449;
  --white:      #FFFFFF;
  --bg-soft:    #F6F7FB;
  --text:       #1A1F36;
  --muted:      #5B6478;
  --muted-2:    #8890A6;
  --line:       rgba(15,27,61,.10);
  --line-2:     rgba(15,27,61,.16);
  --shadow-sm:  0 2px 14px rgba(15,27,61,.08);
  --shadow:     0 10px 30px rgba(15,27,61,.10);
  --shadow-lg:  0 24px 60px rgba(15,27,61,.18);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
  --ff-head: 'Poppins', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── RESET + BASE ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}
h1, h2, h3, h4 { font-family: var(--ff-head); margin: 0; color: var(--navy); line-height: 1.2; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(1200px, 92vw); margin: 0 auto; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .92rem;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn-wa { background: var(--green); color: var(--white); box-shadow: 0 6px 18px rgba(32,179,88,.35); }
.btn-wa:hover { background: var(--green-dark); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(244,129,31,.3); }
.btn-orange:hover { background: #e2710f; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ─── PLACEHOLDER MEDIA (foto belum tersedia) ─── */
.ph {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, var(--orange) 150%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(255,255,255,.4);
}
.ph svg { width: 26%; height: 26%; min-width: 28px; min-height: 28px; }
.ph-badge {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(15,27,61,.55);
  color: rgba(255,255,255,.85);
  font-size: .7rem;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.ph-hero { aspect-ratio: 5/4; border-radius: var(--r-xl); }
.ph-4x3 { aspect-ratio: 4/3; border-radius: var(--r-md) var(--r-md) 0 0; }
.ph-1x1 { aspect-ratio: 1/1; border-radius: var(--r-md); }
.ph-cta { position: absolute; inset: 0; border-radius: var(--r-lg); }
.media-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 46px; height: 46px; flex-shrink: 0; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--ff-head); color: var(--white); font-size: .92rem; font-weight: 700; letter-spacing: .03em; }
.brand-text small { font-family: var(--ff-head); color: var(--orange); font-size: .7rem; font-weight: 600; letter-spacing: .12em; }

.nav-links { display: flex; align-items: center; gap: 26px; flex: 1; justify-content: center; }
.nav-link {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.btn-header-wa { padding: 10px 20px; font-size: .85rem; flex-shrink: 0; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0; }
.menu-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO (full-bleed photo) ─── */
.hero-bg {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-media { position: absolute; inset: 0; z-index: -2; }
.hero-bg-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(8,14,36,.94) 0%, rgba(8,14,36,.82) 26%, rgba(8,14,36,.42) 52%, rgba(8,14,36,.12) 72%),
    linear-gradient(0deg, rgba(8,14,36,.55) 0%, rgba(8,14,36,0) 38%);
}
.hero-bg-inner { padding: 110px 0 100px; }
.hero-bg-content { max-width: 600px; }
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.eyebrow-center { display: block; text-align: center; }
.eyebrow-light { color: var(--orange-2); }
.hero-bg-title {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero-bg-desc { color: rgba(255,255,255,.82); font-size: 1.08rem; margin: 20px 0 32px; max-width: 460px; }
.text-orange { color: var(--orange); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── HERO full-bleed, varian halaman detail layanan ─── */
.hero-bg-detail { min-height: 460px; }
.hero-bg-detail .hero-bg-inner { padding: 26px 0 92px; }
.breadcrumb-light { display: flex; align-items: center; gap: 8px; font-size: .82rem; flex-wrap: wrap; margin-bottom: 30px; }
.breadcrumb-light a { color: rgba(255,255,255,.68); transition: color .2s ease; }
.breadcrumb-light a:hover { color: var(--orange-2); }
.breadcrumb-light .sep { color: rgba(255,255,255,.4); }
.breadcrumb-light .current { color: #fff; font-weight: 600; }
.price-badge-light { background: var(--white); box-shadow: var(--shadow-sm); }

/* ─── HERO (split layout, used on detail pages) ─── */
.hero { background: linear-gradient(180deg, #FBFBFE 0%, var(--white) 100%); padding-top: 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-content h1 { font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.01em; }
.hero-desc { color: var(--muted); font-size: 1.05rem; margin: 20px 0 30px; max-width: 480px; }
.hero-media { position: relative; }

/* ─── TRUST BAR ─── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 0 6px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-ic-badge {
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: linear-gradient(160deg, #FFF1E4 0%, #FFE3CB 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-stars { color: var(--orange); font-size: .92rem; letter-spacing: 1.5px; }
.trust-ic { width: 22px; height: 22px; color: var(--orange); }
.trust-text { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-family: var(--ff-head); font-size: .88rem; color: var(--navy); font-weight: 700; }
.trust-item span { font-size: .76rem; color: var(--muted); }
.info-stats .trust-ic { width: 30px; height: 30px; }


/* ─── SECTION GENERIC ─── */
.section { padding: 100px 0 80px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); font-weight: 700; }

/* ─── LAYANAN (SERVICES) ─── */
.layanan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media { position: relative; }
.service-icon {
  position: absolute;
  left: 18px; bottom: -22px;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(15,27,61,.2);
}
.service-icon svg { width: 22px; height: 22px; }
.icon-navy { background: var(--navy); color: var(--white); }
.icon-orange { background: var(--orange); color: var(--white); }
.service-body { padding: 36px 22px 24px; }
.service-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.service-actions .btn { width: 100%; }
.service-body h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.service-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 16px; }
.service-price .price-from { font-size: .76rem; color: var(--muted-2); }
.service-price .price-amount { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; color: var(--orange); }
.service-price .price-unit { font-size: .76rem; color: var(--muted-2); }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.service-list li { font-size: .88rem; color: var(--muted); padding-left: 20px; position: relative; }
.service-list li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(244,129,31,.15);
  box-shadow: inset 0 0 0 2px var(--orange);
}

/* ─── GALERI ─── */
.section-galeri { background: var(--bg-soft); }
.galeri-filter { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .82rem;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--muted);
  border: 1px solid var(--line-2);
  transition: background .2s ease, color .2s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.galeri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.galeri-item { transition: opacity .2s ease, transform .2s ease; }
.galeri-item.hidden { display: none; }
.galeri-cta { text-align: center; margin-top: 38px; }

/* ─── KENAPA MEMILIH ─── */
.why-section { background: var(--navy); padding: 90px 0; }
.why-title {
  color: var(--white);
  text-align: center;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 50px !important;
}
.why-title::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.why-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; color: rgba(255,255,255,.85); }
.why-ic { width: 38px; height: 38px; color: var(--orange); }
.why-item strong { font-family: var(--ff-head); font-size: .92rem; color: var(--white); }
.why-item span { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.4; }

/* ─── PAKET FAVORIT ─── */
.paket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.paket-grid-single { display: flex; justify-content: center; }
.paket-grid-single .pkg-card { max-width: 480px; width: 100%; }


/* ─── JEEP ADVENTURE — PAKET HARGA ─── */
.section-paket { background: var(--bg-soft); }

/* Filter tabs */
.pkg-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.pkg-filter-wrap .filter-btn {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .8rem;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--muted);
  border: 1.5px solid var(--line-2);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.pkg-filter-wrap .filter-btn.active,
.pkg-filter-wrap .filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Category label */
.pkg-category-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0 18px;
}
.pkg-category-label:first-of-type { margin-top: 0; }
.cat-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.cat-badge-navy  { background: var(--navy);   color: var(--white); }
.cat-badge-orange{ background: var(--orange); color: var(--white); }
.cat-badge-green { background: var(--green);  color: var(--white); }
.cat-desc {
  font-size: .82rem;
  color: var(--muted);
}
.pkg-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Grids */
.paket-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 8px;
}
.paket-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

/* Hidden by filter */
.pkg-card.pkg-hidden { display: none; }

/* Card */
.pkg-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--line);
  box-shadow: 0 2px 8px rgba(15,27,61,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15,27,61,.13);
}
.pkg-featured {
  border-width: 2px;
}
.pkg-featured.pkg-head-navy-border { border-color: var(--navy); }
.pkg-featured.pkg-head-orange-border { border-color: var(--orange); }

/* Card header */
.pkg-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--white);
}
.pkg-head-navy   { background: var(--navy); }
.pkg-head-orange { background: var(--orange); }
.pkg-head-green  { background: var(--green); }

/* Card body */
.pkg-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Route timeline */
.pkg-route {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 18px;
  flex: 1;
}
.route-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  position: relative;
}
.route-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 18px;
  width: 1.5px;
  height: calc(100% - 4px);
  background: var(--line-2);
}
.route-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  border: 2px solid var(--line-2);
  background: var(--white);
  position: relative;
  z-index: 1;
}
.route-dot.route-start {
  background: var(--green);
  border-color: var(--green);
}
.route-dot.route-end {
  background: var(--navy);
  border-color: var(--navy);
}
.route-label {
  font-size: .84rem;
  color: var(--text);
  line-height: 1.4;
  padding: 1px 0 12px;
}
.route-label em {
  font-style: normal;
  font-size: .76rem;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
.route-label.label-start { font-weight: 600; color: var(--green); }
.route-label.label-end   { font-weight: 600; color: var(--navy); }

/* Price */
.pkg-price {
  font-family: var(--ff-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1;
}
.pkg-price span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}
.pkg-price-custom { color: var(--orange); font-size: 1.8rem; }
.pkg-from { font-size: .82rem; color: var(--muted); margin-bottom: 4px; min-height: 1.2em; }
.pkg-include { font-size: .82rem; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.pkg-custom-desc { font-weight: 400; color: var(--muted); margin-bottom: 16px; font-size: .88rem; }
.pkg-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.pkg-list li { font-size: .88rem; color: var(--text); padding-left: 22px; position: relative; line-height: 1.45; }
.pkg-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--green);
  font-weight: 700; font-size: .78rem;
}

/* ─── TESTIMONI ─── */
.section-testimoni { padding-bottom: 50px; }
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px clamp(16px, 4vw, calc((100vw - 1200px)/2 + 16px)) 24px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.testi-quote { font-size: .92rem; color: var(--text); line-height: 1.6; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: .78rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .85rem; color: var(--navy); }
.testi-author-info { display: flex; flex-direction: column; gap: 3px; }
.testi-stars { color: var(--orange); font-size: .8rem; letter-spacing: 1.5px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); transition: background .2s ease, width .2s ease; }
.dot.active { background: var(--orange); width: 24px; border-radius: var(--r-pill); }

/* ─── FAQ + CTA ─── */
.faq-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.faq-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; position: relative; padding-bottom: 14px; }
.faq-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 46px; height: 3px; background: var(--orange); border-radius: 2px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  padding: 18px 0;
}
.faq-chev { width: 18px; height: 18px; flex-shrink: 0; color: var(--orange); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { font-size: .88rem; color: var(--muted); padding-bottom: 18px; line-height: 1.6; }
.faq-a.is-open { max-height: 260px; }

.faq-cta-box { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; }
.faq-cta-content { position: relative; z-index: 1; padding: 36px 30px; }
.faq-cta-box::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,27,61,.1) 0%, rgba(15,27,61,.85) 100%); z-index: 1; border-radius: var(--r-lg); }
.faq-cta-content h3 { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.faq-cta-content p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 20px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-about p { color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.6; margin: 18px 0 22px; max-width: 320px; }
.brand-footer { margin-right: 0; margin-bottom: 20px; align-items: center; flex-shrink: 1; min-width: 0; }
.brand-footer .brand-logo { width: 42px; height: 42px; flex-shrink: 0; }
.brand-footer .brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-footer .brand-text { flex-shrink: 1; min-width: 0; }
.brand-footer .brand-text strong { white-space: nowrap; }
.brand-footer .brand-text small { white-space: nowrap; }
.footer-social { display: flex; gap: 10px; }
.social-ic { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.social-ic:hover { background: var(--orange); }
.social-ic svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--white); font-family: var(--ff-head); font-size: .95rem; font-weight: 700; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,.6); font-size: .87rem; margin-bottom: 13px; transition: color .2s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-contact { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 14px; line-height: 1.5; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-bottom { padding: 22px 0; }
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .8rem; text-align: center; }

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(32,179,88,.45);
  z-index: 998;
  animation: pulse-wa 2.4s infinite;
}
.wa-float svg { width: 28px; height: 28px; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(32,179,88,.45); }
  50% { box-shadow: 0 8px 24px rgba(32,179,88,.45), 0 0 0 10px rgba(32,179,88,.15); }
}

/* ─── SCROLL REVEAL ─── */
.reveal-hidden { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal-visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   HALAMAN DETAIL LAYANAN (subpage: jeep-adventure, outbound, dst)
   ══════════════════════════════════════════════════════════ */

/* ─── BREADCRUMB ─── */
.breadcrumb-bar { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 16px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--line-2); }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

/* ─── DETAIL HERO ─── */
.hero-detail { padding-top: 0; }
.hero-detail .hero-grid { padding-top: 50px; padding-bottom: 60px; }
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,129,31,.1);
  color: var(--orange);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

/* ─── QUICK INFO STATS (varian trust-bar, kolom fleksibel) ─── */
.info-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 20px;
  margin-top: -64px;
  position: relative;
  z-index: 3;
}

/* ─── SECTION HEAD (rata kiri, dipakai di halaman detail) ─── */
.section-head-left { text-align: left; max-width: none; margin: 0 0 36px; }
.section-head-left h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 700; }
.section-head-left .eyebrow { display: block; }
.section-detail { padding: 70px 0; }
.section-detail-alt { background: var(--bg-soft); }

/* ─── ITINERARY / RUNDOWN ─── */
.itinerary { display: flex; flex-direction: column; }
.itinerary-step { display: flex; gap: 22px; padding-bottom: 34px; position: relative; }
.itinerary-step:last-child { padding-bottom: 0; }
.itinerary-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px; top: 50px; bottom: 0;
  width: 2px;
  background: var(--line-2);
}
.itinerary-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.itinerary-content { padding-top: 6px; }
.itinerary-content h4 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.itinerary-content p { font-size: .9rem; color: var(--muted); line-height: 1.65; max-width: 560px; }

/* ─── TERMASUK / TIDAK TERMASUK ─── */
.ix-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ix-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 26px; }
.ix-col h4 { font-family: var(--ff-head); font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.ix-list { display: flex; flex-direction: column; gap: 13px; }
.ix-list li { font-size: .89rem; padding-left: 26px; position: relative; line-height: 1.4; }
.ix-yes li { color: var(--text); }
.ix-yes li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.ix-no li { color: var(--muted-2); }
.ix-no li::before { content: '✕'; position: absolute; left: 0; top: 0; color: #D6453D; font-weight: 700; }

/* ─── GALERI PREVIEW (di halaman detail, tanpa filter) ─── */
.galeri-grid-preview { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.galeri-grid-preview-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.galeri-grid-preview-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 520px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .layanan-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .galeri-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-about { grid-column: 1 / -1; }
  .galeri-grid-preview { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-bg { min-height: 560px; }
  .hero-bg-inner { padding: 84px 0 76px; }
  .hero-bg-content { text-align: left; max-width: 100%; }
  .hero-bg-desc { margin-inline: auto; }
  .hero-actions { justify-content: flex-start; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8,14,36,.58) 0%, rgba(8,14,36,.6) 45%, rgba(8,14,36,.94) 100%);
  }
  .hero { padding-top: 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-content { text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
  .ph-hero { aspect-ratio: 16/10; }
  .trust-bar { display: flex; flex-direction: column; gap: 18px; padding: 26px 22px; margin-top: -36px; }
  .trust-item { flex-direction: row; align-items: center; text-align: left; gap: 14px; padding: 0; border-left: none !important; }
  .trust-item + .trust-item { padding-top: 18px; border-top: 1px solid var(--line); }
  .trust-ic-badge { width: 40px; height: 40px; }
  .trust-text { min-width: 0; }
  .trust-ic { width: 18px; height: 18px; }
  .trust-stars { font-size: .8rem; }
  .trust-item strong { font-size: .82rem; line-height: 1.25; }
  .trust-item span { font-size: .74rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta-box { min-height: 280px; }
  .paket-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .paket-grid-auto { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .paket-grid-2 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pkg-featured { transform: none; }
  .pkg-featured:hover { transform: translateY(-6px); }
  .pkg-filter-wrap { gap: 6px; }
  .info-stats { display: flex; flex-direction: column; gap: 18px; padding: 26px 22px; margin-top: -36px; }
  .ix-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 78px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 10px 6vw 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); text-align: center; }
  .menu-toggle { display: flex; }
  .btn-header-wa { display: none; }
  .section { padding: 70px 0 56px; }
  .layanan-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-filter { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .section-detail { padding: 56px 0; }
  .galeri-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .itinerary-content p { max-width: none; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .galeri-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; }
}
