/* ============================================================
   LNG TRIP — style.css
   Design system: Exaggerated Minimalism · White/Light theme
   ============================================================ */

/* ---- Design tokens ----------------------------------------- */
:root {
  --bg:           #ffffff;
  --bg-warm:      #faf8f4;
  --bg-section:   #f5f2ed;
  --bg-dark:      #111111;
  --text:         #1c1916;
  --text-sec:     #6b6259;
  --text-muted:   #9e9890;
  --gold:         #b8892e;
  --gold-light:   #d4a84e;
  --gold-pale:    #f4ead8;
  --border:       #e8e2d9;
  --border-dark:  #cdc5b8;

  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;
  --ff-label:  'Montserrat', 'Inter', sans-serif;

  --nav-h: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   400ms;
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Base reset -------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

/* Section header — centered */
.s-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Section title */
.s-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

.s-title em {
  font-style: italic;
  color: var(--gold);
}

/* Section subtitle */
.s-sub {
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Inline text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.text-link:hover {
  color: var(--gold);
}

/* Dark CTA button */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-fast);
}

.btn-dark:hover {
  background: #222;
  color: #fff;
  transform: translateY(-1px);
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.45s var(--ease-out),
              box-shadow  0.45s var(--ease-out),
              backdrop-filter 0.45s var(--ease-out);
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Brand */
.lng-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}

.brand-lng {
  font-family: var(--ff-label);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  transition: color 0.45s var(--ease-out);
}

.brand-sep {
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0.15rem;
  transition: color 0.45s var(--ease-out);
}

.brand-trip {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  transition: color 0.45s var(--ease-out);
}

#mainNav.scrolled .brand-lng  { color: var(--text); }
#mainNav.scrolled .brand-sep  { color: var(--border-dark); }
#mainNav.scrolled .brand-trip { color: var(--gold); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Enquire button */
.nav-enquire {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: color 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out),
              background var(--dur-base) var(--ease-out);
}

.nav-enquire:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

#mainNav.scrolled .nav-enquire {
  color: var(--text);
  border-color: var(--border-dark);
}

#mainNav.scrolled .nav-enquire:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
  transition: background 0.45s var(--ease-out), transform var(--dur-base), opacity var(--dur-base);
  transform-origin: center;
}

#mainNav.scrolled .nav-hamburger span { background: var(--text); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1190;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* Drawer panel — slides from right */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100dvh;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 32px rgba(0,0,0,.12);
  visibility: hidden;
}
.nav-drawer.open { transform: translateX(0); visibility: visible; }

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-brand-text {
  font-family: var(--ff-label);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text);
}
.drawer-brand-text em { color: var(--gold); font-style: normal; }
.drawer-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  cursor: pointer;
  color: var(--text);
  transition: background .15s;
}
.drawer-close:hover { background: var(--bg-section); }

/* Drawer body */
.drawer-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; }

/* Direct nav links */
.drawer-direct {
  display: flex;
  align-items: center;
  padding: 1rem 1.4rem;
  font-family: var(--ff-sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.drawer-direct:hover { color: var(--gold); }

/* Drawer footer CTA */
.drawer-footer { padding: 1.2rem 1.4rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem 1.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-family: var(--ff-label);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background .15s;
  border: none;
}
.drawer-cta:hover { background: #1db954; color: #fff; }

/* ============================================================
   NAVBAR — TRIGGERS, MEGA MENU & DROPDOWN
   ============================================================ */

/* Shared styles: links + trigger buttons */
.nav-links a,
.nav-trigger {
  position: relative;
  font-family: var(--ff-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.45s var(--ease-out);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
}

#mainNav.scrolled .nav-links a,
#mainNav.scrolled .nav-trigger { color: var(--text-sec); }

#mainNav.scrolled .nav-links a:hover,
#mainNav.scrolled .nav-trigger:hover { color: var(--text); }

/* Animated gold underline on hover */
.nav-links a::after,
.nav-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-trigger:hover { color: var(--text); }

.nav-links a:hover::after,
.nav-trigger:hover::after,
.nav-trigger.open::after { width: 100%; }

.nav-chevron {
  font-size: 0.55rem;
  margin-left: 0.3rem;
  transition: transform var(--dur-base) var(--ease-out);
  display: inline-block;
}

.nav-trigger.open .nav-chevron { transform: rotate(180deg); }

/* ── nm-panel: animated show/hide ── */
.nm-panel {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 900;
  /* hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease-out),
              visibility 0.22s,
              transform 0.22s var(--ease-out);
}

.nm-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ── nm-mega: full-width panel with sidebar + grid ── */
.nm-mega-inner {
  display: flex;
  align-items: stretch;
  min-height: 280px;
}

/* Left sidebar: category tabs */
.nm-cats {
  width: 210px;
  flex-shrink: 0;
  background: var(--bg-section);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
}

.nm-label {
  font-family: var(--ff-label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 1.3rem 0.8rem;
  margin: 0;
  display: block;
}

.nm-cat {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--ff-label);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-sec);
  padding: 0.7rem 1.3rem;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: color var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast);
}

.nm-cat:hover { color: var(--text); background: rgba(0,0,0,0.04); }

.nm-cat.active {
  color: var(--gold);
  font-weight: 600;
  background: var(--bg);
  border-left-color: var(--gold);
}

/* Right: package panels */
.nm-panels {
  flex: 1;
  padding: 1.5rem 1.8rem 1.8rem;
  min-width: 0;
}

.nm-pane { display: none; }
.nm-pane.active { display: block; }

.nm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  margin-top: 0.6rem;
}

.nm-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--dur-fast);
}

.nm-item:hover { background: var(--bg-section); }

.nm-dur {
  font-family: var(--ff-label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.nm-name {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* ── nm-drop: simple dropdown (Destinasi) ── */
.nm-drop {
  left: auto;
  right: auto;
  width: 220px;
  padding: 0.7rem 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.nm-drop a {
  display: block;
  font-family: var(--ff-label);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-sec);
  padding: 0.62rem 1.3rem;
  text-decoration: none;
  transition: color var(--dur-fast), background var(--dur-fast);
}

.nm-drop a:hover { color: var(--text); background: var(--bg-section); }

/* ── Mobile drawer accordion ── */
.drawer-item { border-bottom: 1px solid var(--border); }
.drawer-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.4rem;
  font-family: var(--ff-sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.drawer-accordion.open { color: var(--gold); }
.drawer-accordion i { font-size: .6rem; transition: transform .25s; color: var(--text-muted); flex-shrink: 0; }
.drawer-accordion.open i { transform: rotate(180deg); color: var(--gold); }

.drawer-sub {
  display: none;
  flex-direction: column;
  background: var(--bg-section);
  padding: .5rem 0 .75rem;
}
.drawer-sub.open { display: flex; }

.drawer-sub-label {
  font-family: var(--ff-label);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-muted);
  padding: .4rem 1.4rem .25rem;
  margin: 0;
  text-transform: uppercase;
}

/* Link items with circle icon */
.drawer-link-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .52rem 1.4rem;
  font-family: var(--ff-sans);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color .15s;
}
.drawer-link-item:hover { color: var(--gold); }
.drawer-link-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  color: var(--text-sec);
  flex-shrink: 0;
  transition: background .15s, color .15s, border-color .15s;
}
.drawer-link-item:hover .drawer-link-icon { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Nested sub-accordion */
.drawer-sub-item { border-top: 1px solid rgba(0,0,0,.06); }
.drawer-sub-item:first-child { border-top: none; }
.drawer-sub-acc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .7rem 1.4rem;
  font-family: var(--ff-label);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-sec);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color .15s;
}
.drawer-sub-acc:hover, .drawer-sub-acc.open { color: var(--gold); }
.drawer-sub-acc i { font-size: .55rem; transition: transform .2s; }
.drawer-sub-acc.open i { transform: rotate(90deg); }

.drawer-sub-sub { display: none; flex-direction: column; padding: .15rem 0 .4rem; }
.drawer-sub-sub.open { display: flex; }
.drawer-sub-sub .drawer-link-item { padding-left: 1.8rem; font-size: .82rem; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* overflow stays visible so hero-bar shadow/border-radius renders cleanly */
}

/* Hero content sits above overlay (z-index 1) */
.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  margin-top: -6rem;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--ff-sans);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  max-width: 480px;
  margin: 0 auto;
}

/* Hero search bar — pinned to bottom of hero */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 1.5rem;
}

.hero-bar-inner {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.14);
}

.hb-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 1rem 1.4rem;
  flex: 1;
  min-width: 0;
}

.hb-label {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hb-select {
  border: none;
  outline: none;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  width: 100%;
}

.hb-sep {
  width: 1px;
  background: var(--border);
  margin: 1rem 0;
  flex-shrink: 0;
}

.hb-btn {
  font-family: var(--ff-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg-dark);
  padding: 0 2.2rem;
  flex-shrink: 0;
  transition: background var(--dur-base);
}

.hb-btn:hover {
  background: var(--gold);
}

/* ============================================================
   HERO — SLIDER
   ============================================================ */

/* Slide stack */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  will-change: transform;
}

/* Ken Burns plays only on the active slide */
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.hero-slide.active img {
  animation: kenBurns 12s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Overlay sits above slides */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8, 4, 1, 0.38) 0%,
    rgba(8, 4, 1, 0.18) 22%,
    rgba(8, 4, 1, 0.55) 55%,
    rgba(8, 4, 1, 0.76) 82%,
    rgba(8, 4, 1, 0.90) 100%
  );
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 0.3s linear; }
  .hero-slide.active img { animation: none; transform: scale(1); }
}

/* Slide dot indicators */
.hero-dots {
  position: absolute;
  bottom: calc(72px + 1.6rem); /* above search bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--dur-slow) var(--ease-out);
  flex-shrink: 0;
}

.hero-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.s-about {
  background: var(--bg);
  padding: 4.5rem 0 4rem;
}

/* Image collage */
.about-imgs {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 84%;
  height: 73%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56%;
  height: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.about-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img,
.about-img-accent:hover img {
  transform: scale(1.04);
}

.s-about__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.s-about__title em {
  font-style: italic;
  color: var(--gold);
}

.s-about__sub {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1.8rem 0 1.2rem;
}

.s-about__body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.8;
}

/* ============================================================
   OUR FOCUS SECTION
   ============================================================ */

.s-focus {
  background: var(--bg-section);
  padding: 4rem 0;
}

.focus-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.focus-img { align-self: stretch; }

/* Image header inside focus card */
.focus-img {
  margin: -2.5rem -2rem 0.5rem -2rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.focus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.focus-card:hover .focus-img img {
  transform: scale(1.06);
}

.focus-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.focus-card--cta {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}

.focus-icon {
  font-size: 1.6rem;
  color: var(--gold);
}

.focus-card--cta .focus-icon { color: var(--gold-light); }

.focus-title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.focus-card--cta .focus-title { color: #fff; }

.focus-text {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: var(--text-sec);
  line-height: 1.7;
  flex: 1;
}

.focus-card--cta .focus-text { color: rgba(255,255,255,0.55); }

.focus-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 2px;
  transition: color var(--dur-base), border-color var(--dur-base);
  align-self: flex-start;
}

.focus-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   DEALS SECTION
   ============================================================ */

.s-deals {
  background: var(--bg-warm);
  padding: 4rem 0;
}

.deal-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: box-shadow var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.deal-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  transform: translateY(-6px);
  color: inherit;
}

.deal-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.deal-card:hover .deal-img img {
  transform: scale(1.05);
}

.deal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--ff-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--gold-pale);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.deal-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.deal-dur {
  font-family: var(--ff-label);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.deal-title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin: 0.1rem 0 0.4rem;
}

.deal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--ff-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 1px;
  transition: color var(--dur-base), border-color var(--dur-base);
  align-self: flex-start;
}

.deal-card:hover .deal-link {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   JOURNEYS SECTION
   ============================================================ */

.s-journeys {
  background: var(--bg);
  padding: 4rem 0;
}

.journey-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.journey-card:hover { color: inherit; }

.journey-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
}

.journey-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.journey-card:hover .journey-img img {
  transform: scale(1.05);
}

.journey-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.journey-dur {
  font-family: var(--ff-label);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.journey-title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin: 0.1rem 0;
}

.journey-desc {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.65;
}

.journey-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--ff-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 1px;
  margin-top: 0.3rem;
  transition: color var(--dur-base), border-color var(--dur-base);
  align-self: flex-start;
}

.journey-card:hover .journey-link {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */

.s-dest {
  background: var(--bg-section);
  padding: 4rem 0;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.75rem;
}

.dest-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
  text-decoration: none;
  color: inherit;
}

.dest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.dest-item:hover img { transform: scale(1.06); }

.dest-item--lg {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* Overlay */
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: padding var(--dur-base) var(--ease-out);
}

.dest-item:hover .dest-info { padding-bottom: 1.5rem; }

.dest-eyebrow {
  font-family: var(--ff-label);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.dest-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.dest-item--lg .dest-info h3 { font-size: 1.5rem; }

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: color var(--dur-base), border-color var(--dur-base);
  align-self: flex-start;
}

.dest-item:hover .dest-link {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.s-testi {
  background: var(--bg);
  padding: 4rem 0 3.5rem;
}

.s-testi .eyebrow { color: var(--gold); }
.s-testi .s-title { color: var(--text); }
.s-testi .s-title em { color: var(--gold); font-style: italic; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
}

.testi-card {
  padding: 0 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testi-card:first-child { padding-left: 0; }
.testi-card:last-child  { padding-right: 0; border-right: none; }

.testi-stars {
  display: flex;
  gap: 0.2rem;
  font-size: 0.75rem;
  color: var(--gold);
}

.testi-text {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-sec);
  flex-grow: 1;
  border: none;
  padding: 0;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(184,137,46,0.3);
  color: var(--gold);
  font-family: var(--ff-label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-family: var(--ff-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text);
}

.testi-loc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

@media (max-width: 991px) {
  .testi-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testi-card { padding: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 3rem; }
  .testi-card:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ============================================================
   PARALLAX STRIPS & SHARED PARALLAX PRIMITIVES
   ============================================================ */

.parallax-strip {
  position: relative;
  height: 62vh;
  min-height: 360px;
  overflow: hidden;
}

/* Shared: the moving bg layer (extra tall for parallax room) */
.parallax-bg {
  position: absolute;
  inset: -30% 0;
  z-index: 0;
  will-change: transform;
}

.parallax-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shared: dark overlay */
.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */

.s-quote {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Quote overlay is slightly darker for readability */
.s-quote .parallax-overlay {
  background: rgba(0, 0, 0, 0.60);
}

.s-quote .container {
  position: relative;
  z-index: 2;
}

.quote-mark {
  font-family: var(--ff-serif);
  font-size: 6rem;
  line-height: 0.6;
  color: rgba(255,255,255,0.18);
  margin-bottom: 1.5rem;
  user-select: none;
}

.quote-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.quote-cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-style: normal;
}

.s-quote .text-link {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.s-quote .text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */

.s-contact {
  background: var(--bg-section);
  padding: 4rem 0;
}

/* Two CTA cards */
.contact-card {
  padding: 2.8rem 2.5rem;
  border-radius: var(--radius-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card--wa {
  background: var(--bg-dark);
}

.contact-card--nl {
  background: var(--bg);
  border: 1px solid var(--border);
}

.cc-icon {
  font-size: 2.2rem;
  color: #25D366;
  line-height: 1;
}

.cc-title {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
}

.contact-card--wa .cc-title { color: #fff; }
.contact-card--nl .cc-title { color: var(--text); }

.cc-text {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  line-height: 1.75;
  flex: 1;
}

.contact-card--wa .cc-text { color: rgba(255,255,255,0.48); }
.contact-card--nl .cc-text { color: var(--text-sec); }

/* WhatsApp CTA button */
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #25D366;
  color: #fff;
  font-family: var(--ff-label);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur-base) var(--ease-out),
              transform var(--dur-fast);
}

.cc-btn:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-2px);
}

.cc-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

/* Newsletter form inside card */
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.nl-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--dur-base);
  touch-action: manipulation;
}

.nl-input::placeholder { color: var(--text-muted); }
.nl-input:focus { border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.5);
  padding-top: 5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 1.2rem;
}

.site-footer .brand-lng {
  font-family: var(--ff-label);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.site-footer .brand-sep {
  color: rgba(255,255,255,0.25);
  margin: 0 0.15rem;
}

.site-footer .brand-trip {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
}

.footer-tagline {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--dur-base) var(--ease-out);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,137,46,0.1);
}

.footer-heading {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
}

.footer-col ul a {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  transition: color var(--dur-base);
}

.footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-nl-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.footer-nl-form input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: none;
  outline: none;
  min-width: 0;
}

.footer-nl-form input::placeholder { color: rgba(255,255,255,0.28); }

.footer-nl-form button {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--gold-light);
  padding: 0 1rem;
  flex-shrink: 0;
  transition: background var(--dur-base);
}

.footer-nl-form button:hover { background: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.28);
  transition: color var(--dur-base);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base);
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Desktop only: hide hamburger ---- */
@media (min-width: 992px) {
  .nav-hamburger { display: none; }
}

/* ---- Tablet (768–991px) ---- */
@media (max-width: 991px) {

  /* Nav: hide enquire + desktop links → show hamburger */
  .nav-enquire  { display: none !important; }

  /* Hero bar: 2×2 flex-wrap layout (4 fields → 2 rows of 2) */
  .hb-sep { display: none; }

  .hero-bar-inner {
    flex-wrap: wrap;
    max-width: 640px;
  }

  .hb-field {
    flex: 1 1 50%;
    min-width: 0;
  }

  /* Row separator (bottom border on the top-row fields) */
  .hero-bar-inner > .hb-field:nth-child(1),
  .hero-bar-inner > .hb-field:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }

  /* Column separator (right border on left-column fields) */
  .hero-bar-inner > .hb-field:nth-child(1),
  .hero-bar-inner > .hb-field:nth-child(5) {
    border-right: 1px solid var(--border);
  }

  /* Cari button full-width at bottom */
  .hb-btn {
    flex: 0 0 100%;
    width: 100%;
    padding: 1rem 2rem;
  }

  /* Hero dots: must clear the taller 2×2 bar (~170px + button ~50px) */
  .hero-dots { bottom: calc(200px + 1rem); }

  /* About: collage becomes simpler at tablet (cols are stacked) */
  .about-imgs {
    height: 320px;
  }
  .about-img-main {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  .about-img-accent { display: none; }

  /* Destination grid: 3-column mosaic (large = 2×2, right col = 2 items, bottom row = 2 items) */
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 210px 210px 185px;
  }

  .dest-item--lg {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  /* Footer: 2-column */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .footer-col--brand { grid-column: 1 / -1; }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {

  /* Section vertical rhythm */
  .s-about     { padding: 3rem 0 2.5rem; }
  .s-testi     { padding: 3rem 0 2.5rem; }
  .s-focus     { padding: 2.5rem 0; }
  .s-deals     { padding: 2.5rem 0; }
  .s-journeys  { padding: 2.5rem 0; }
  .s-dest      { padding: 2.5rem 0; }
  .s-quote     { padding: 2.5rem 0; }
  .s-contact{ padding: 2.5rem 0; }

  .s-head { margin-bottom: 2rem; }

  /* On mobile, carousel nav sits below the title instead of absolute right */
  .s-paket-nav { position: static; justify-content: center; margin-top: .75rem; }

  /* Hero text */
  .hero-body { margin-top: -4.5rem; }

  /* Hero dots: above the single-row bar */
  .hero-dots  { bottom: calc(60px + 1.25rem); }

  .testi-text { font-size: 0.95rem; }

  /* Hero bar: collapse to single row — Destinasi field + Cari button */
  .hero-bar { padding: 0; }

  .hero-bar-inner {
    flex-wrap: nowrap;
    max-width: 100%;
    border-radius: 0;
  }

  /* Hide all hb-sep and all fields except the first */
  .hero-bar-inner > .hb-sep            { display: none; }
  .hero-bar-inner > .hb-field:nth-child(n+2) { display: none; }

  /* Clear any tablet border styles from first field */
  .hero-bar-inner > .hb-field:first-child {
    flex: 1;
    border-right: none;
    border-bottom: none;
    padding: 1rem 1.25rem;
  }

  /* Cari button: auto-width, back to right edge */
  .hb-btn {
    flex: 0 0 auto;
    width: auto;
    padding: 0 1.5rem;
  }

  /* Destination grid: 2-column */
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
    gap: 0.5rem;
  }

  .dest-item--lg {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }

  .dest-item img {
    height: 100%;
    width: 100%;
  }

  /* Quote: smaller decorative mark */
  .quote-mark { font-size: 4rem; }

  /* Footer: single column */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .footer-col--brand { grid-column: auto; }
  .footer-tagline    { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-bottom div { flex-wrap: wrap; gap: 1rem; }

  .site-footer { padding-top: 3rem; }

  /* WhatsApp float: compact on mobile */
  .wa-float {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* ---- Small mobile (≤ 479px) ---- */
@media (max-width: 479px) {

  /* Destination: single column, each item fills nicely */
  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dest-item--lg { grid-column: auto; }

  .dest-item     { min-height: 200px; }
  .dest-item--lg { min-height: 240px; }

  /* Slightly reduce hero title on small phones */
  .hero-title {
    font-size: clamp(2.8rem, 11vw, 3.5rem);
  }

  /* Focus cards: reduce padding */
  .focus-card { padding: 2rem 1.5rem; }
}

/* ---- Large screens (≥ 1400px) ---- */
@media (min-width: 1400px) {
  .s-about     { padding: 5rem 0 4.5rem; }
  .s-focus     { padding: 4.5rem 0; }
  .s-deals     { padding: 4.5rem 0; }
  .s-journeys  { padding: 4.5rem 0; }
  .s-dest      { padding: 4.5rem 0; }
  .s-quote     { padding: 5.5rem 0; }
  .s-contact{ padding: 4.5rem 0; }

  .dest-grid { grid-template-rows: 300px 300px; }
}


/* ── Destination mega menu ── */
.nm-dest-inner {
  padding: 1.75rem 0;
}
.nm-dest-header {
  font-family: var(--ff-label);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  margin: 0 0 1.1rem;
  display: block;
}
.nm-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .2rem;
}
.nm-dest-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem .75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.nm-dest-item:hover { background: var(--bg-section); }
.nm-dest-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .72rem;
  flex-shrink: 0;
  transition: background .18s, color .18s, border-color .18s;
}
.nm-dest-item:hover .nm-dest-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.nm-dest-txt { display: flex; flex-direction: column; gap: .08rem; }
.nm-dest-cat {
  font-family: var(--ff-label);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.nm-dest-name {
  font-family: var(--ff-serif);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
}

/* ================================================================
   PACKAGE CARD SLIDERS  (home page #perjalanan)
================================================================ */
.s-paket { padding: 4rem 0; background: var(--bg-section); }

.s-paket-head { position: relative; text-align: center; margin-bottom: 2rem; }
.s-paket-head .s-title { margin-bottom: .15rem; }
.s-paket-sub { font-size: .88rem; color: var(--text-sec); margin: .3rem 0 0; }
.s-paket-head--mt { margin-top: 4.5rem; }

.s-paket-nav { display: flex; gap: .45rem; position: absolute; right: 0; bottom: 0; }
.spn-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; color: var(--text); cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.spn-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.pkg-swiper { overflow: hidden; padding: 4px 4px 20px; margin: 0 -4px; }

.pkg-card { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); text-decoration: none; color: inherit; transition: box-shadow .2s, transform .2s; height: 100%; }
.pkg-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.13); transform: translateY(-4px); color: inherit; }

.pkg-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; flex-shrink: 0; }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.pkg-card:hover .pkg-card-img img { transform: scale(1.06); }

.pkg-badge { position: absolute; top: .7rem; left: .7rem; z-index: 2; padding: .22rem .6rem; border-radius: 2rem; font-family: var(--ff-label); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.badge--savana  { background: #22c55e; color: #fff; }
.badge--kawah   { background: #f97316; color: #fff; }
.badge--sunrise { background: #eab308; color: #1a1000; }
.badge--air     { background: #3b82f6; color: #fff; }
.badge--combo   { background: #8b5cf6; color: #fff; }
.badge--explore { background: var(--gold); color: #fff; }
.badge--pantai  { background: #06b6d4; color: #fff; }
.badge--surf    { background: #0ea5e9; color: #fff; }

.pkg-card-body { display: flex; flex-direction: column; flex: 1; padding: 1rem 1rem .85rem; }
.pkg-card-title { font-family: var(--ff-serif); font-size: 1rem; font-weight: 500; color: var(--text); margin: 0 0 .35rem; line-height: 1.3; }
.pkg-card-desc  { font-size: .81rem; color: var(--text-sec); line-height: 1.55; flex: 1; margin: 0 0 .85rem; }

.pkg-card-footer { display: flex; align-items: center; gap: .4rem; border-top: 1px solid var(--border); padding-top: .75rem; margin-top: auto; }
.pkg-rating { display: flex; align-items: center; gap: .2rem; flex-shrink: 0; }
.pkg-rating i { color: #f59e0b; font-size: .7rem; }
.pkg-rate  { font-family: var(--ff-label); font-size: .75rem; font-weight: 700; color: var(--text); }
.pkg-votes { font-size: .68rem; color: var(--text-muted); }

.pkg-price-wrap { margin-left: auto; text-align: right; line-height: 1.2; }
.pkg-tarif { display: block; font-family: var(--ff-label); font-size: .52rem; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; }
.pkg-price { font-family: var(--ff-label); font-size: .85rem; font-weight: 700; color: var(--text); white-space: nowrap; }

.pkg-arrow { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-pale, #fdf3dc); color: var(--gold); flex-shrink: 0; font-size: .7rem; transition: background .15s, color .15s; }
.pkg-card:hover .pkg-arrow { background: var(--gold); color: #fff; }

.pkg-swiper .swiper-pagination { position: static; margin-top: .5rem; }
.pkg-swiper .swiper-pagination-bullet { width: 20px; height: 3px; border-radius: 2px; background: var(--border); opacity: 1; transition: width .2s, background .2s; }
.pkg-swiper .swiper-pagination-bullet-active { background: var(--gold); width: 32px; }
