/* ============================================================
   HAPI GRAND TOUR — Main Stylesheet
   Theme: Luxury dark navy · gold accent · teal secondary
   ============================================================ */

/* ------------------------------------------------------------
   CSS Custom Properties
------------------------------------------------------------ */
:root {
  /* Brand palette */
  --navy:           #0a1628;
  --navy-mid:       #0e1f3a;
  --navy-light:     #152a4a;
  --gold:           #c9a84c;
  --gold-light:     #e2c97a;
  --gold-dark:      #9a7830;
  --gold-pale:      #f5edd8;
  --teal:           #1a8a7d;
  --teal-light:     #22b0a0;
  --teal-dark:      #116b61;
  --warm-white:     #f5f0e8;
  --off-white:      #ece6d8;
  --wa-green:       #25d366;
  --wa-dark:        #128c4f;

  /* Neutrals */
  --charcoal:       #1a1a1a;
  --mid-gray:       #666;
  --light-gray:     #f4f4f0;
  --white:          #ffffff;

  /* Typography */
  --font-serif:     'Noto Serif SC', 'STSong', Georgia, serif;
  --font-sans:      'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-5xl: 8rem;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.14);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.20);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.28);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 260ms ease;
  --t-slow: 420ms ease;

  /* Layout */
  --max-w:    1200px;
  --nav-h:    72px;

  /* Glass */
  --glass-bg:     rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.10);
}

/* ------------------------------------------------------------
   Reset
------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ------------------------------------------------------------
   Layout
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
}

/* ------------------------------------------------------------
   Typography helpers
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--sp-md);
}
.section-title--light { color: var(--warm-white); }

.section-desc {
  font-size: 1.02rem;
  color: var(--mid-gray);
  max-width: 520px;
  margin-inline: auto;
}
.section-desc--light { color: rgba(245,240,232,0.75); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

/* ------------------------------------------------------------
   Buttons
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.42);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: var(--white);
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  margin-top: var(--sp-lg);
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.38);
}

/* Focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   NAVBAR
------------------------------------------------------------ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t-slow), box-shadow var(--t-slow);
}

#site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.navbar { width: 100%; }

.nav-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  transition: opacity var(--t-base);
}
.nav-logo:hover { opacity: 0.85; }

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(245,240,232,0.50);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.82);
  transition: color var(--t-base);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--gold-light); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active {
  color: var(--gold-light);
}
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-cta-link { color: var(--gold); font-weight: 500; }
.nav-cta-link:hover { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-sm);
}
.hamburger-bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(10,22,40,0.98);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-md) var(--sp-xl);
}
.mobile-nav-link {
  display: block;
  padding: var(--sp-md) 0;
  font-size: 1rem;
  color: rgba(245,240,232,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--t-fast);
}
.mobile-nav-link:hover { color: var(--gold-light); }
.mobile-menu li:last-child .mobile-nav-link { border-bottom: none; }

/* ------------------------------------------------------------
   HERO — Video background
------------------------------------------------------------ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* iOS Safari stacking context fix */
  -webkit-transform: translateZ(0);
  isolation: isolate;
}

/* Hero background container — houses both video and fallback image */
.hero-bg {
  position: absolute;
  inset: 0;
  height: calc(100% + 300px);
  top: -150px;
  background: linear-gradient(
    160deg,
    #050d1a 0%,
    #0a1e3a 15%,
    #0d2d50 30%,
    #0e3d60 45%,
    #0a4a5a 58%,
    #0c5c62 70%,
    #0e6e6a 82%,
    #1a8a7d 100%
  );
  overflow: hidden;
}

/* Video element — fills the container, hidden on mobile */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Fallback image — always present, video sits on top of it on desktop */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}

/* Animated shimmer layers for depth */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(26,138,125,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 40%, rgba(10,62,100,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 55%);
}

/* Overlay sits above background layers but BELOW content (z-index 4) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    180deg,
    rgba(5,13,26,0.28) 0%,
    rgba(5,13,26,0.38) 50%,
    rgba(5,13,26,0.68) 100%
  );
}

/* Mobile — hide video, show image only */
@media (max-width: 768px) {
  .hero-video { display: none; }

  /* On mobile: push image above the shimmer pseudo-element so the photo
     is fully visible (shimmer is decorative and redundant when photo loads) */
  .hero-bg-img {
    display: block;
    z-index: 3;
  }
}

/* Hero content MUST be above overlay (z-index 5) */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: var(--sp-xl);
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-lg);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 8.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: var(--sp-lg);
  text-shadow: 0 2px 32px rgba(0,0,0,0.55);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  font-weight: 300;
  color: rgba(245,240,232,0.88);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-2xl);
}

.scroll-chevron {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(245,240,232,0.60);
  transition: color var(--t-base);
}
.scroll-chevron:hover { color: var(--gold-light); }

/* ------------------------------------------------------------
   STATS
------------------------------------------------------------ */
.stats-section {
  padding: var(--sp-3xl) 0;
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-2xl) var(--sp-xl);
  border-right: 1px solid rgba(201,168,76,0.12);
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  color: var(--gold);
  margin-bottom: var(--sp-md);
}

.stat-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: var(--sp-xs);
}

.stat-desc {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.5;
}

/* ------------------------------------------------------------
   DESTINATIONS — hero image blocks (full-viewport-height immersive)
------------------------------------------------------------ */
.destination-hero-image {
  position: relative;
  height: 520px;
  overflow: hidden;
}

/* Full-viewport-height variant — the magazine full-bleed look */
.destination-hero-image--fullvh {
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}

/* Kota Kinabalu — gradient fallback + photo support */
.dest-kk {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #050e22 0%,
    #0c2d4a 25%,
    #104468 45%,
    #0d6672 60%,
    #158a7a 75%,
    #1aad8e 90%,
    #1fc4a0 100%
  );
}
.dest-kk::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 45% at 30% 70%, rgba(201,168,76,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 70% 30%, rgba(26,138,125,0.25) 0%, transparent 50%);
}

/* Semporna — gradient fallback + photo support */
.dest-semporna {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #030c20 0%,
    #041830 18%,
    #052847 35%,
    #064062 50%,
    #0a5e7a 65%,
    #0e8090 78%,
    #12a0a8 90%,
    #16b8c0 100%
  );
}
.dest-semporna::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 55% at 65% 65%, rgba(22,184,192,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 25% 40%, rgba(10,94,122,0.30) 0%, transparent 50%);
}

/* Shared photo image within destination-bg divs.
   z-index 2 places it above the ::before shimmer layer (z-index 1)
   so the photo is always visible when it loads. */
.destination-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}

/* Parallax helper: JS sets transform; transition defined here */
.destination-bg-img--parallax {
  will-change: transform;
  transition: transform 0.1s linear;
}

.destination-img-overlay {
  position: absolute; inset: 0;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(5,13,26,0.12) 0%, rgba(5,13,26,0.68) 100%);
}

/* Deeper overlay for full-vh sections — ensures text always readable */
.destination-img-overlay--deep {
  background:
    linear-gradient(to bottom, rgba(5,13,26,0.08) 0%, rgba(5,13,26,0.28) 40%, rgba(5,13,26,0.80) 100%);
}

.destination-title-overlay {
  position: absolute;
  bottom: var(--sp-2xl);
  left: var(--sp-4xl);
  z-index: 4;
}
.destination-title-overlay--right {
  left: auto;
  right: var(--sp-4xl);
  text-align: right;
}

/* Centered overlay for full-vh sections */
.destination-title-overlay--center {
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  text-align: center;
  bottom: var(--sp-5xl);
  width: 100%;
  padding-inline: var(--sp-xl);
}

.destination-subtitle-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-xs);
}

.destination-name {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.destination-en-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.60);
  margin-bottom: var(--sp-xs);
}

.destination-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.82);
  font-style: italic;
}

/* Destination content areas */
.destination-content {
  background: var(--white);
  padding: var(--sp-4xl) 0;
}
.destination-content--alt { background: var(--light-gray); }

.destination-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: var(--sp-4xl);
  align-items: start;
}
.destination-layout--reverse { grid-template-columns: 1.35fr 1fr; }

.destination-content-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-md);
  border-bottom: 2px solid var(--gold-pale);
}

.destination-desc-text {
  font-size: 0.97rem;
  line-height: 1.95;
  color: var(--mid-gray);
  margin-bottom: var(--sp-xl);
}
.destination-desc-text strong { color: var(--charcoal); font-weight: 600; }

/* ------------------------------------------------------------
   HIGHLIGHT CARDS — CSS gradient images
------------------------------------------------------------ */
.highlight-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.highlight-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.highlight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.highlight-card-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

/* Individual card gradients — CSS fallback, hidden when photo loads */
.card-gradient {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.highlight-card:hover .card-gradient { transform: scale(1.08); }

/* Real photo on top of the gradient fallback */
.highlight-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.highlight-card:hover .highlight-card-photo { transform: scale(1.08); }

.card-gradient--mosque {
  background: linear-gradient(135deg, #0a3060 0%, #1460a0 35%, #c9a84c 60%, #e8c97a 80%, #f0d890 100%);
}
.card-gradient--sunset {
  background: linear-gradient(135deg, #1a0a30 0%, #6a1a40 25%, #c04020 45%, #e8701a 65%, #f0a030 80%, #fac040 100%);
}
.card-gradient--mountain {
  background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 20%, #2a5a2a 40%, #4a7a3a 60%, #6a9a5a 75%, #c8d4b0 90%, #e8ecd8 100%);
}
.card-gradient--islands {
  background: linear-gradient(135deg, #040e22 0%, #083060 25%, #0a6090 50%, #12a0b0 70%, #20c8d0 85%, #78e0e0 100%);
}
.card-gradient--jellyfish {
  background: linear-gradient(135deg, #020c1e 0%, #041c40 20%, #064888 40%, #0878b0 58%, #10a8c8 72%, #38d0e0 85%, #88eef5 100%);
}
.card-gradient--mabul {
  background: linear-gradient(135deg, #080818 0%, #101840 20%, #184080 40%, #2068b0 58%, #40a0d0 72%, #c9a84c 85%, #f0d070 100%);
}
.card-gradient--diving {
  background: linear-gradient(160deg, #020810 0%, #041830 20%, #062850 38%, #084878 55%, #0a7098 70%, #0c98b8 82%, #20c0d8 100%);
}
.card-gradient--rainforest {
  background: linear-gradient(135deg, #020a02 0%, #081808 15%, #102810 28%, #184818 42%, #206020 56%, #30882a 70%, #50b040 84%, #80c870 100%);
}

.highlight-card-body { padding: var(--sp-md); }

.highlight-card-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--sp-xs);
}

.highlight-card-desc {
  font-size: 0.8rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   RESORT
------------------------------------------------------------ */
.resort-section { background: var(--navy); }

.resort-hero {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.resort-hero--fullvh {
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
}

/* Resort hero — gradient fallback + photo support */
.resort-hero-bg {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    150deg,
    #030d1e 0%,
    #071a38 18%,
    #0a2d55 35%,
    #0d4272 50%,
    #0e5a82 63%,
    #107090 73%,
    #1a8a7d 85%,
    #22b0a0 100%
  );
}
.resort-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(26,138,125,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(10,42,85,0.35) 0%, transparent 50%);
}

.resort-hero-overlay {
  position: absolute; inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(5,13,26,0.18) 0%, rgba(5,13,26,0.72) 100%);
}

.resort-hero-text {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  padding: var(--sp-xl);
}

.resort-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-sm);
}

.resort-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: var(--sp-sm);
}

.resort-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.78);
  font-style: italic;
  margin-bottom: var(--sp-xl);
}

/* Resort pricing hint — elegant gold on dark */
.resort-price-hint {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  background: rgba(10,22,40,0.55);
  border: 1px solid rgba(201,168,76,0.38);
  border-radius: var(--r-full);
  padding: 0.55rem 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.resort-price-from {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.65);
  font-style: normal;
  letter-spacing: 0.04em;
}

.resort-price-amount {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.resort-price-unit {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-style: normal;
}

.resort-content { padding: var(--sp-4xl) 0; }

.resort-intro {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--sp-4xl);
}

.resort-intro-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(245,240,232,0.65);
}

/* Facility cards */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-3xl);
}

.facility-card {
  background: var(--glass-bg);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  text-align: center;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.facility-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.42);
  transform: translateY(-4px);
}

.facility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: var(--r-full);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  margin-bottom: var(--sp-md);
  transition: background var(--t-base);
}
.facility-card:hover .facility-icon { background: rgba(201,168,76,0.24); }

.facility-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: var(--sp-sm);
}

.facility-desc {
  font-size: 0.84rem;
  line-height: 1.72;
  color: rgba(245,240,232,0.72);
}

/* VIP Banner */
.vip-banner {
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, var(--gold-dark) 100%);
  background-size: 400% 100%;
}

.vip-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  background: linear-gradient(135deg, #120d00, #221700);
  border-radius: calc(var(--r-lg) - 2px);
  padding: var(--sp-2xl) var(--sp-3xl);
}

.vip-badge {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.vip-banner-content { flex: 1; }

.vip-banner-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-xs);
}

.vip-banner-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: var(--sp-lg);
}

.vip-options {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.vip-option {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.vip-option-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.vip-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vip-option-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--warm-white);
}
.vip-option-text span {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.50);
}

.vip-option-divider {
  font-size: 1.5rem;
  color: rgba(201,168,76,0.38);
  align-self: center;
}

/* ------------------------------------------------------------
   ITINERARY SECTION — timeline style
------------------------------------------------------------ */
.itinerary-section {
  position: relative;
  padding: var(--sp-5xl) 0;
  overflow: hidden;
}

.itinerary-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #030c1e 0%,
    #071a38 25%,
    #0a2a52 50%,
    #0d3870 70%,
    #0e4282 100%
  );
}

.itinerary-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 10% 30%, rgba(26,138,125,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 70%, rgba(201,168,76,0.08) 0%, transparent 55%);
}

.itinerary-container {
  position: relative;
  z-index: 1;
}

.itinerary-header {
  margin-bottom: var(--sp-4xl);
}

/* Price badge in itinerary header */
.itinerary-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: var(--sp-lg);
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--r-full);
  padding: 0.6rem 1.75rem;
}

.itinerary-price-label {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.60);
  letter-spacing: 0.04em;
}

.itinerary-price-value {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}

.itinerary-price-unit {
  font-size: 0.84rem;
  color: var(--gold-light);
  margin-right: var(--sp-md);
}

.itinerary-price-note {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.38);
  letter-spacing: 0.03em;
  border-left: 1px solid rgba(201,168,76,0.22);
  padding-left: var(--sp-md);
  align-self: center;
  line-height: 1.3;
}

/* Timeline container */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 820px;
  margin-inline: auto;
}

/* Vertical connecting line */
.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,168,76,0.50) 8%,
    rgba(201,168,76,0.50) 92%,
    transparent 100%
  );
}

/* Individual day row */
.itinerary-day {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-2xl);
  position: relative;
}
.itinerary-day:last-child { padding-bottom: 0; }

/* Left: dot + label */
.itinerary-day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  padding-top: 4px;
  position: relative;
  z-index: 1;
}

.itinerary-day-dot {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 4px 16px rgba(201,168,76,0.25);
}

.itinerary-day-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Right: content card */
.itinerary-day-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-2xl);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background var(--t-base), border-color var(--t-base);
}
.itinerary-day-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.30);
}

.itinerary-day-card--last {
  border-color: rgba(201,168,76,0.22);
}

.itinerary-day-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: var(--sp-md);
}

.itinerary-day-items {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.itinerary-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 0.9rem;
  color: rgba(245,240,232,0.78);
  line-height: 1.55;
}

.itinerary-item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--r-full);
  background: rgba(201,168,76,0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* CTA below timeline */
.itinerary-cta {
  text-align: center;
  margin-top: var(--sp-4xl);
}

/* ------------------------------------------------------------
   WHY CHOOSE US
------------------------------------------------------------ */
.why-us-section {
  padding: var(--sp-5xl) 0;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.why-card {
  padding: var(--sp-2xl) var(--sp-xl);
  border-radius: var(--r-md);
  background: var(--light-gray);
  border: 1px solid transparent;
  transition: all var(--t-base);
  text-align: center;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.why-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: var(--r-full);
  background: var(--gold-pale);
  color: var(--gold-dark);
  margin-bottom: var(--sp-lg);
  transition: background var(--t-base), color var(--t-base);
}
.why-card:hover .why-card-icon {
  background: var(--gold);
  color: var(--white);
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--sp-sm);
}

.why-card-desc {
  font-size: 0.875rem;
  line-height: 1.82;
  color: var(--mid-gray);
}

/* ------------------------------------------------------------
   CONTACT
------------------------------------------------------------ */
.contact-section {
  position: relative;
  padding: var(--sp-5xl) 0;
  overflow: hidden;
}

.contact-bg { position: absolute; inset: 0; z-index: 0; }

.contact-bg-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    #050d1e 0%,
    #0a1628 30%,
    #0c2040 55%,
    #0d2e55 75%,
    #0e3c6a 100%
  );
}
.contact-bg-gradient::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(26,138,125,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 50%, rgba(201,168,76,0.08) 0%, transparent 55%);
}

.contact-container { position: relative; z-index: 1; }

.contact-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-3xl);
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.form-label {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(245,240,232,0.82);
  letter-spacing: 0.02em;
}

.required { color: var(--gold); }

.form-input,
.form-select {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm);
  color: var(--warm-white);
  font-size: 0.9rem;
  transition: border-color var(--t-base), background var(--t-base);
}
.form-input::placeholder { color: rgba(245,240,232,0.28); }
.form-input:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.form-input.error, .form-select.error { border-color: #e74c3c; }

.form-error {
  font-size: 0.77rem;
  color: #ff7070;
  min-height: 1.1em;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(245,240,232,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-select option {
  background: #1a2540;
  color: var(--warm-white);
}

/* Fieldset */
.form-fieldset { border: none; padding: 0; }
.form-fieldset legend { margin-bottom: var(--sp-md); }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.84rem;
  color: rgba(245,240,232,0.72);
  cursor: pointer;
  padding: 0.45rem 0;
  transition: color var(--t-fast);
}
.checkbox-label:hover { color: var(--warm-white); }

.checkbox-input {
  position: absolute;
  opacity: 0; width: 0; height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 3px;
  background: transparent;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-input:checked + .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-input:checked + .checkbox-custom::after {
  content: '';
  display: block;
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}

.form-disclaimer {
  font-size: 0.74rem;
  color: rgba(245,240,232,0.32);
  text-align: center;
  margin-top: calc(-1 * var(--sp-sm));
}

/* Contact info panel */
.contact-info-panel {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-xl));
}

.contact-info-inner {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-2xl);
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: var(--sp-sm);
}

.contact-info-desc {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.52);
  line-height: 1.72;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon--whatsapp {
  background: rgba(37,211,102,0.12);
  color: var(--wa-green);
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.72);
}

.contact-detail-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--warm-white);
  transition: color var(--t-base);
}
.contact-detail-value:hover { color: var(--gold-light); }
.contact-wa-link { color: var(--wa-green); }
.contact-wa-link:hover { color: #4ade80; }

.contact-operating-note {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.78rem;
  color: rgba(245,240,232,0.38);
  margin-bottom: var(--sp-sm);
}

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.site-footer {
  background: #040b16;
  padding: var(--sp-4xl) 0 var(--sp-xl);
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--sp-3xl);
  margin-bottom: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--gold);
  margin-bottom: var(--sp-xs);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.42);
  margin-bottom: var(--sp-xs);
  font-style: italic;
}

.footer-license {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.26);
  letter-spacing: 0.05em;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.72);
  transition: color var(--t-fast);
  line-height: 1.6;
}
.footer-link:hover { color: var(--gold-light); }

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.footer-socials {
  display: flex;
  gap: var(--sp-md);
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  color: rgba(245,240,232,0.42);
  transition: all var(--t-base);
}
.social-icon-link:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom { text-align: center; }

.footer-copyright {
  font-size: 0.77rem;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------
   FLOATING WHATSAPP BUTTON
------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #25d366, #128c4f);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.48);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.62);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #1a2540;
  color: var(--warm-white);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a2540;
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* ------------------------------------------------------------
   RESPONSIVE — Tablet (max 1024px)
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .destination-layout,
  .destination-layout--reverse {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .destination-layout--reverse .highlight-cards-grid { order: -1; }

  .destination-title-overlay,
  .destination-title-overlay--right {
    left: var(--sp-xl);
    right: auto;
    text-align: left;
  }

  .why-us-grid { grid-template-columns: repeat(2, 1fr); }

  .facilities-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .contact-info-panel { position: static; }

  .vip-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-xl);
  }

  .vip-options { justify-content: center; }
}

/* ------------------------------------------------------------
   RESPONSIVE — Mobile (max 768px)
------------------------------------------------------------ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .container { padding-inline: var(--sp-lg); }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(201,168,76,0.10); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .destination-hero-image { height: 380px; }
  .destination-hero-image--fullvh { height: 85vh; min-height: 500px; }
  .resort-hero--fullvh { height: 85vh; min-height: 500px; }

  .destination-title-overlay--center {
    bottom: var(--sp-3xl);
  }

  /* Itinerary responsive */
  .itinerary-timeline::before { left: 22px; }
  .itinerary-day { grid-template-columns: 50px 1fr; gap: var(--sp-md); }
  .itinerary-day-dot { width: 36px; height: 36px; }
  .itinerary-day-dot svg { width: 14px; height: 14px; }
  .itinerary-day-card { padding: var(--sp-md) var(--sp-lg); }
  .itinerary-price-badge { flex-wrap: wrap; justify-content: center; }
  .itinerary-price-note { border-left: none; padding-left: 0; margin-top: var(--sp-xs); }

  .highlight-cards-grid { grid-template-columns: 1fr 1fr; }

  .why-us-grid { grid-template-columns: 1fr; }

  .facilities-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .destination-content { padding: var(--sp-2xl) 0; }

  .vip-options { flex-direction: column; align-items: flex-start; gap: var(--sp-md); }
  .vip-option-divider { display: none; }
  .vip-banner-inner { align-items: flex-start; }
}

/* ------------------------------------------------------------
   RESPONSIVE — Small mobile (max 480px)
------------------------------------------------------------ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem; }
  .highlight-cards-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }

  .contact-form-wrap,
  .contact-info-inner { padding: var(--sp-lg); }

  .whatsapp-float { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
}

/* Date picker icon fix (WebKit) */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.35);
}
