/* ===========================================================================
   CONEXION — Site stylesheet
   Mobile-first. Premium cinematic dark theme with gold accent.
   =========================================================================== */

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --navy:        #0A1628;
  --navy-2:      #0d1f3a;
  --navy-3:      #122948;
  --gold:        #E8A24E;
  --gold-light:  #F4BB6C;
  --gold-deep:   #C9853A;
  --cream:       #FAF6EE;
  --cream-2:     #F2EBDC;
  --ink:         #1a1a1a;
  --ink-2:       #4a4a4a;
  --line:        rgba(232, 162, 78, 0.18);
  --line-cream:  rgba(10, 22, 40, 0.08);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:    1280px;
  --gutter:       24px;
  --gutter-sm:    16px;
  --header-h:     76px;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radii */
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         20px;
  --r-xl:         28px;

  /* Shadows */
  --sh-card:      0 14px 40px -16px rgba(0,0,0,0.18);
  --sh-card-hover:0 28px 60px -20px rgba(10,22,40,0.32), 0 0 30px -10px rgba(232,162,78,0.18);
  --sh-cta:       0 12px 36px -10px rgba(232,162,78,0.45);
}

/* ---------------------------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  font-variation-settings: "opsz" 144;
}
p { margin: 0; }

.container {
  width: 100%;
  max-width: calc(var(--container) + (var(--gutter) * 2));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 640px) {
  .container { padding-left: var(--gutter-sm); padding-right: var(--gutter-sm); }
}

.skip-link {
  position: absolute; top: -100px; left: 8px; padding: 10px 16px;
  background: var(--gold); color: var(--navy); border-radius: 6px;
  z-index: 1000; font-weight: 700;
}
.skip-link:focus { top: 8px; }

/* ---------------------------------------------------------------------------
   3. HEADER
   --------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(232, 162, 78, 0.1);
  transition: background 0.3s var(--ease);
}
.site-header.header-overlay {
  position: fixed; top: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.65), transparent 80%);
  border-bottom: 0;
  backdrop-filter: none;
}
.site-header.header-overlay.scrolled,
.site-header.header-overlay.is-open {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(232, 162, 78, 0.1);
}

body.is-home { padding-top: 0 !important; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 42px; width: auto; }

.nav-main {
  display: none;
  gap: 22px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-main a {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  position: relative;
  padding: 6px 0;
  opacity: 0.9;
  transition: opacity 0.2s var(--ease);
  white-space: nowrap;
}
.nav-main .nav-link { white-space: nowrap; }
.nav-main .nav-item-mega { white-space: nowrap; flex-shrink: 0; }
.nav-main a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-main a:hover { opacity: 1; }
.nav-main a:hover::after { transform: scaleX(1); }

.header-tools { display: flex; align-items: center; gap: 12px; }

.btn-cta-header {
  display: none;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn-cta-header:hover { transform: translateY(-1px); box-shadow: var(--sh-cta); }

/* Switchers */
.switcher { position: relative; display: none; }
.switcher-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: transparent;
  border: 1px solid rgba(232, 162, 78, 0.25);
  border-radius: 999px; color: var(--cream);
  font-size: 12px; font-weight: 600;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.switcher-btn:hover { border-color: var(--gold); background: rgba(232,162,78,0.06); }
.switcher-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s 0.2s;
  z-index: 50;
}
.switcher.open .switcher-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition-delay: 0s;
}
.switcher-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; font-size: 13px;
  color: var(--cream); border-radius: 7px;
  font-weight: 500;
  transition: background 0.15s var(--ease);
}
.switcher-menu a:hover { background: rgba(232,162,78,0.08); }
.switcher-menu a.active { background: rgba(232,162,78,0.14); color: var(--gold); }
.switcher-menu .cur-code { font-weight: 700; font-size: 12px; letter-spacing: 0.04em; }
.switcher-menu .cur-name { font-size: 12px; opacity: 0.7; }

/* Hamburger */
.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid rgba(232,162,78,0.25);
  border-radius: 10px;
  gap: 5px;
  transition: border-color 0.2s var(--ease);
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
body.drawer-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.drawer-open .hamburger span:nth-child(2) { opacity: 0; }
body.drawer-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------------------------------------------------------------------------
   4. MOBILE DRAWER
   --------------------------------------------------------------------------- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
}
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 22, 40, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.mobile-drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: var(--navy);
  background-image: radial-gradient(ellipse at top right, rgba(232,162,78,0.08), transparent 50%);
  padding: 24px 28px env(safe-area-inset-bottom, 24px);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.drawer-head .brand img { height: 38px; }
.drawer-close {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(232,162,78,0.2);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.drawer-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.drawer-nav a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(232,162,78,0.08);
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
  position: relative;
}
.drawer-nav a:hover { color: var(--gold); padding-left: 8px; }
.drawer-tools {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,162,78,0.15);
  display: flex; flex-direction: column; gap: 16px;
}
.drawer-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.drawer-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.drawer-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.drawer-pills a {
  padding: 7px 13px;
  border: 1px solid rgba(232,162,78,0.2);
  border-radius: 999px;
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.drawer-pills a.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.drawer-cta {
  display: block; text-align: center;
  margin-top: 8px; padding: 14px;
  background: var(--gold); color: var(--navy);
  border-radius: 999px;
  font-weight: 700; letter-spacing: 0.01em;
  font-size: 14px;
}
.drawer-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px;
  background: #25D366; color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

/* ---------------------------------------------------------------------------
   5. HERO
   --------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img,
.hero-slide video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroKenBurns 12s var(--ease) forwards;
}
.hero-slide.active img,
.hero-slide.active video { animation-play-state: running; }
@keyframes heroKenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.7) 60%, rgba(10,22,40,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 5;
  min-height: inherit;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
}
.hero-text {
  max-width: 780px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.hero-slide.active .hero-text { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(232,162,78,0.35);
  background: rgba(232,162,78,0.08);
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,162,78,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(232,162,78,0); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 86px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-subhead {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: rgba(250, 246, 238, 0.85);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(232,162,78,0.55);
}
.hero-cta svg { transition: transform 0.3s var(--ease); }
.hero-cta:hover svg { transform: translateX(4px); }

/* Hero text positions */
.hero-text-position-center { text-align: center; margin: 0 auto; }
.hero-text-position-left { text-align: left; }
.hero-text-position-right { text-align: right; margin-left: auto; }
.hero-text-position-bottom-left { text-align: left; }
.hero-text-position-bottom-right { text-align: right; margin-left: auto; }

/* Hero dots/arrows */
.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}
.hero-dots button {
  width: 28px; height: 3px;
  background: rgba(250, 246, 238, 0.3);
  border: none; border-radius: 2px; padding: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease), width 0.3s var(--ease);
}
.hero-dots button.active {
  background: var(--gold);
  width: 44px;
}
.hero-arrows {
  position: absolute; bottom: 32px; right: 32px;
  display: none; gap: 8px;
  z-index: 10;
}
.hero-arrow {
  width: 48px; height: 48px;
  background: rgba(250,246,238,0.08);
  border: 1px solid rgba(232,162,78,0.3);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
}
.hero-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Hero stats strip */
.hero-stats {
  position: relative; z-index: 5;
  margin-top: -40px;
  padding-bottom: 60px;
}
.hero-stats-inner {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
  color: var(--cream);
}
@media (min-width: 768px) {
  .hero-stats-inner { grid-template-columns: repeat(4, 1fr); padding: 28px 40px; }
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.hero-stat-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,246,238,0.65);
  margin-top: 6px;
}

/* ---------------------------------------------------------------------------
   6. SECTIONS / HEADINGS
   --------------------------------------------------------------------------- */
section { position: relative; }
.section-light { background: var(--cream); color: var(--ink); padding: 100px 0; }
.section-dark  { background: var(--navy); color: var(--cream); padding: 100px 0; }
.section-cream { background: var(--cream-2); color: var(--ink); padding: 100px 0; }
@media (max-width: 768px) {
  .section-light, .section-dark, .section-cream { padding: 70px 0; }
}

.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 64px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: rgba(232, 162, 78, 0.06);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-dark .section-eyebrow { background: rgba(232,162,78,0.1); }

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-dark .section-title { color: var(--cream); }
.section-dark .section-title em { color: var(--gold); }

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-sub { color: rgba(250,246,238,0.72); }
.section-head.left .section-sub { margin-left: 0; }

/* ---------------------------------------------------------------------------
   7. WHY-US (4-up grid with icons)
   --------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(232,162,78,0.4); }
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--cream);
}
.why-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(250,246,238,0.7);
}

/* ---------------------------------------------------------------------------
   8. DESTINATIONS
   --------------------------------------------------------------------------- */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .dest-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.dest-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transition: transform 0.4s var(--ease);
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.dest-card:hover .dest-card-img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.7) 75%, rgba(10,22,40,0.95) 100%);
}
.dest-card-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 32px;
  color: var(--cream);
}
.dest-card-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.dest-card-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.dest-card-tagline {
  font-size: 15px;
  font-style: italic;
  color: rgba(250,246,238,0.85);
  font-family: var(--font-display);
}
.dest-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: padding-right 0.3s var(--ease);
}
.dest-card:hover .dest-card-cta { padding-right: 8px; }

/* ---------------------------------------------------------------------------
   9. TOUR CARDS
   --------------------------------------------------------------------------- */
.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) { .tours-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tours-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
@media (min-width: 1280px) { .tours-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.tour-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: var(--sh-card);
  border: 1px solid var(--line-cream);
}
.section-dark .tour-card { background: rgba(255,255,255,0.04); border-color: var(--line); }
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--sh-card-hover); }

.tour-card-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.tour-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tour-card:hover .tour-card-img img { transform: scale(1.08); }
.tour-card-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 11px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tour-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.tour-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.section-dark .tour-card-meta { color: rgba(250,246,238,0.6); }
.tour-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.tour-card-meta svg { color: var(--gold); }

.tour-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.section-dark .tour-card-title { color: var(--cream); }

.tour-card-summary {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 18px;
  flex: 1;
}
.section-dark .tour-card-summary { color: rgba(250,246,238,0.65); }

.tour-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed var(--line-cream);
}
.section-dark .tour-card-foot { border-top-color: rgba(232,162,78,0.15); }
.tour-card-price {
  display: flex; flex-direction: column;
}
.tour-card-price .from { font-size: 11px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.section-dark .tour-card-price .from { color: rgba(250,246,238,0.55); }
.tour-card-price .price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  font-weight: 600;
}
.tour-card-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------------------------------------------------------------------------
   10. CUSTOMIZE / CTA STRIP
   --------------------------------------------------------------------------- */
.cta-strip {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(232,162,78,0.15), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(232,162,78,0.1), transparent 50%);
  pointer-events: none;
}
.cta-strip-content { position: relative; z-index: 2; }
.cta-strip h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; color: var(--cream); }
.cta-strip h2 em { color: var(--gold); }
.cta-strip p { font-size: 16px; color: rgba(250,246,238,0.75); max-width: 520px; margin: 0 auto 30px; }
.cta-strip .btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
}
.cta-strip .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(232,162,78,0.6); }
@media (max-width: 640px) { .cta-strip { padding: 44px 28px; } }

/* ---------------------------------------------------------------------------
   11. TESTIMONIALS
   --------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: white;
  border: 1px solid var(--line-cream);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(10,22,40,0.18);
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(232,162,78,0.18);
  position: absolute; top: 16px; right: 24px;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold); }
.testimonial-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 500;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px dashed var(--line-cream);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  font-family: var(--font-display);
}
.testimonial-author-info strong {
  display: block;
  font-size: 14.5px; color: var(--ink); font-weight: 700;
}
.testimonial-author-info span {
  font-size: 12.5px; color: var(--ink-2);
}

/* ---------------------------------------------------------------------------
   12. BLOG TEASER / BLOG INDEX
   --------------------------------------------------------------------------- */
.blog-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.blog-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-cream);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(10,22,40,0.16);
}
.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 12px; color: var(--ink-2); margin-bottom: 10px; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}
.blog-card-excerpt { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin-bottom: 18px; }
.blog-card-link {
  font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------------------------------------------------------------------------
   13. PAGE HEROES (smaller hero for non-home pages)
   --------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 50vh;
  background: var(--navy);
  color: var(--cream);
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--page-hero-img, url(""));
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.6), rgba(10,22,40,0.95));
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.page-hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(250,246,238,0.85);
  margin-top: 16px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 12.5px;
  color: rgba(250,246,238,0.65);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(250,246,238,0.9); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.breadcrumb a:hover { border-bottom-color: var(--gold); }
.breadcrumb-sep { margin: 0 8px; color: rgba(250,246,238,0.4); }

/* ---------------------------------------------------------------------------
   14. TOURS INDEX (filter sidebar + results)
   --------------------------------------------------------------------------- */
.tours-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 1024px) {
  .tours-page-layout { grid-template-columns: 280px 1fr; gap: 40px; }
}
.filter-sidebar {
  background: white;
  border: 1px solid var(--line-cream);
  border-radius: var(--r-lg);
  padding: 24px;
  align-self: start;
  position: sticky; top: calc(var(--header-h) + 24px);
}
@media (max-width: 1023px) {
  .filter-sidebar {
    position: fixed; top: 0; bottom: 0;
    right: 0; width: 90%; max-width: 360px;
    border-radius: 0; padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 150;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  }
  .filter-sidebar.open { transform: translateX(0); }
}

.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px dashed var(--line-cream); }
.filter-group:last-child { border-bottom: 0; padding-bottom: 0; }
.filter-group h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: var(--gold);
}
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-option {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  cursor: pointer;
}
.filter-option input { accent-color: var(--gold); width: 16px; height: 16px; }
.filter-option .count { margin-left: auto; font-size: 12px; color: var(--ink-2); }

.filter-toggle-mobile {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--navy); color: var(--cream);
  border: 0; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 1024px) { .filter-toggle-mobile { display: none; } }

.filter-overlay {
  position: fixed; inset: 0;
  background: rgba(10,22,40,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease);
  z-index: 140;
}
.filter-overlay.open { opacity: 1; visibility: visible; }

.tours-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; gap: 14px; flex-wrap: wrap;
}
.tours-count { font-size: 13px; color: var(--ink-2); }
.tours-count strong { color: var(--ink); font-weight: 700; }
.tours-sort {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line-cream);
  border-radius: 999px;
  background: white;
  font-size: 13px; cursor: pointer;
}
.tours-sort select { border: 0; background: transparent; font-family: inherit; font-size: 13px; outline: none; }

/* ---------------------------------------------------------------------------
   15. TOUR DETAIL PAGE
   --------------------------------------------------------------------------- */
.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .tour-detail-layout { grid-template-columns: 1fr 380px; gap: 48px; }
}
.tour-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
}
.tour-gallery > :first-child { grid-row: span 2; }

/* Adaptive layouts based on actual image count */
.tour-gallery-1 {
  display: block;
  aspect-ratio: 16/9;
}
.tour-gallery-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  aspect-ratio: 16/7;
}
.tour-gallery-2 > :first-child { grid-row: auto; }
.tour-gallery-3 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.tour-gallery-3 > :first-child { grid-row: span 2; }
.tour-gallery-4 {
  grid-template-columns: 2fr 1fr 1fr;
}
.tour-gallery-4 > :first-child { grid-row: span 2; }
.tour-gallery-4 > :nth-child(4) { display: none; }

@media (max-width: 768px) {
  .tour-gallery,
  .tour-gallery-2,
  .tour-gallery-3,
  .tour-gallery-4 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    aspect-ratio: 4/3;
  }
  .tour-gallery > * { display: none; }
  .tour-gallery > :first-child { display: block; grid-row: auto; }
}
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; }

.tour-info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px;
  background: var(--cream-2);
  border-radius: var(--r-md);
  margin-bottom: 32px;
}
@media (min-width: 640px) { .tour-info-strip { grid-template-columns: repeat(4, 1fr); } }
.tour-info-item {
  display: flex; flex-direction: column;
  gap: 4px;
  text-align: center;
  border-right: 1px dashed var(--line-cream);
}
.tour-info-item:last-child { border-right: 0; }
@media (max-width: 639px) {
  .tour-info-item { border-right: 0; border-bottom: 1px dashed var(--line-cream); padding-bottom: 14px; }
  .tour-info-item:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}
.tour-info-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}
.tour-info-value {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--ink);
}

/* Tour rating + tabs */
.tour-rating-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tour-rating { display: inline-flex; align-items: center; gap: 8px; }
.tour-rating-stars { color: var(--gold); font-size: 16px; }
.tour-rating-num { font-weight: 700; }
.tour-rating-count { font-size: 13.5px; color: var(--ink-2); }

.tour-tabs {
  display: flex;
  gap: 0;
  margin: 32px 0 0;
  border-bottom: 1px solid var(--line-cream);
  overflow-x: auto;
  scrollbar-width: none;
}
.tour-tabs::-webkit-scrollbar { display: none; }
.tour-tab {
  background: transparent; border: 0;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.01em;
}
.tour-tab.active { color: var(--gold); }
.tour-tab.active::after {
  content: '';
  position: absolute; bottom: -1px; left: 14px; right: 14px;
  height: 2px; background: var(--gold);
}

.tour-tabpanel { padding: 32px 0; display: none; }
.tour-tabpanel.active { display: block; }
.tour-tabpanel h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.tour-tabpanel p { font-size: 15.5px; line-height: 1.75; color: var(--ink-2); margin-bottom: 14px; }
.tour-tabpanel p:last-child { margin-bottom: 0; }

/* Inclusions */
.inclusions-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}
@media (min-width: 768px) { .inclusions-grid { grid-template-columns: 1fr 1fr; } }
.inclusion-block h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 14px;
}
.inclusion-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.inclusion-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; line-height: 1.5;
}
.inclusion-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1628' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.inclusion-list.excluded li::before {
  background: rgba(220, 38, 38, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3' stroke-linecap='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* Itinerary days */
.itinerary { display: flex; flex-direction: column; gap: 14px; }
.itin-day {
  background: var(--cream-2);
  border-radius: var(--r-md);
  overflow: hidden;
}
.itin-day-head {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  border-bottom: 1px solid transparent;
}
.itin-day-head:hover { background: rgba(232,162,78,0.04); }
.itin-day.open .itin-day-head { background: white; border-bottom-color: var(--line-cream); }
.itin-day-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.itin-day.open .itin-day-num { background: var(--gold); color: var(--navy); }
.itin-day-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  flex: 1;
  letter-spacing: -0.005em;
}
.itin-day-toggle {
  width: 28px; height: 28px;
  background: white; border: 1px solid var(--line-cream);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.itin-day.open .itin-day-toggle { transform: rotate(180deg); background: var(--gold); border-color: var(--gold); color: var(--navy); }
.itin-day-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  background: white;
}
.itin-day.open .itin-day-body { padding: 22px; max-height: 1000px; }
.itin-day-body p { font-size: 15px; line-height: 1.7; color: var(--ink-2); }

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--line-cream);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pricing-table thead { background: var(--navy); color: var(--cream); }
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line-cream);
}
.pricing-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:hover { background: var(--cream-2); }
.pricing-table .price-cell {
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
}

/* Inquiry sidebar */
.inquiry-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: white;
  border: 1px solid var(--line-cream);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-card);
}
.inquiry-price-banner {
  display: flex; align-items: baseline; gap: 8px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--line-cream);
}
.inquiry-price-banner .from { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--ink-2); }
.inquiry-price-banner .price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.inquiry-price-banner .per { font-size: 12px; color: var(--ink-2); }

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--cream-2);
  border: 1px solid var(--line-cream);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
}
.form-field .err {
  font-size: 12px; color: #dc2626; margin-top: 4px;
  display: none;
}
.form-field .err.visible { display: block; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: var(--sh-cta); }
.btn-submit:disabled { opacity: 0.6; cursor: wait; }
.btn-submit .loader {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
}
.btn-submit.loading .text { opacity: 0; }
.btn-submit.loading .loader { display: flex; }
.btn-submit .loader::after {
  content: ''; width: 18px; height: 18px;
  border: 2px solid rgba(10,22,40,0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none; text-align: center;
  padding: 20px 8px;
}
.form-success.active { display: block; }
.form-success-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.form-success h3 { font-size: 22px; margin-bottom: 8px; color: var(--ink); }
.form-success p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.form-success-wa {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding: 12px 22px;
  background: #25D366; color: white;
  border-radius: 999px;
  font-size: 14px; font-weight: 700;
}

/* Sticky bottom mobile CTA on tour pages */
.tour-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px env(safe-area-inset-bottom, 12px);
  background: white;
  border-top: 1px solid var(--line-cream);
  z-index: 50;
  align-items: center; justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
}
@media (max-width: 1023px) {
  .tour-mobile-cta { display: flex; }
  body.has-mobile-cta { padding-bottom: 80px; }
}
.tour-mobile-price .from { font-size: 11px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.tour-mobile-price .price { font-family: var(--font-display); font-size: 22px; color: var(--gold); line-height: 1; }
.tour-mobile-cta .btn {
  padding: 12px 22px;
  background: var(--gold); color: var(--navy);
  border-radius: 999px; font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Map */
.tour-map {
  background: var(--cream-2);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 24px 0;
  aspect-ratio: 16/9;
  position: relative;
}
.tour-map img { width: 100%; height: 100%; object-fit: cover; }
.tour-map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px;
  color: var(--ink-2);
}
.tour-map-placeholder svg { color: var(--gold); margin-bottom: 12px; }

/* ---------------------------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,162,78,0.1), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer-col-brand .footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-about {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(250,246,238,0.7);
  margin-bottom: 24px;
  max-width: 380px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(232,162,78,0.25);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: all 0.2s var(--ease);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 14px; }
.footer-col ul a { color: rgba(250,246,238,0.75); transition: color 0.2s var(--ease); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contacts li { color: rgba(250,246,238,0.75); }
.footer-contacts a { color: rgba(250,246,238,0.9); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,162,78,0.12);
  font-size: 13px;
  color: rgba(250,246,238,0.5);
}
.footer-badges { display: flex; align-items: center; gap: 16px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(250,246,238,0.7);
}
.footer-badge .rating-num {
  background: var(--gold);
  color: var(--navy);
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}

/* Floating WA */
.floating-wa {
  position: fixed; right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  background: #25D366; color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5);
  z-index: 60;
  transition: transform 0.2s var(--ease);
  animation: pulse-wa 2.5s ease infinite;
}
.floating-wa:hover { transform: scale(1.08); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 12px 30px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 1023px) {
  body.has-mobile-cta .floating-wa { bottom: 80px; }
}

/* ---------------------------------------------------------------------------
   17. UTILITY / REVEAL ANIMATIONS
   --------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS
   --------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .hero-arrows { display: flex; }
}
@media (min-width: 1024px) {
  .nav-main { display: flex; }
  .switcher { display: block; }
  .btn-cta-header { display: inline-flex; }
  .hamburger { display: none; }
}
/* Mid-size desktop: tighten spacing so all nav items fit on one line each */
@media (min-width: 1024px) and (max-width: 1380px) {
  .header-inner { gap: 18px; }
  .nav-main { gap: 16px; }
  .nav-main a { font-size: 13px; }
  .header-tools { gap: 10px; }
}
@media (min-width: 1024px) and (max-width: 1180px) {
  .header-inner { gap: 14px; }
  .nav-main { gap: 13px; }
  .nav-main a { font-size: 12.5px; }
}

/* ===========================================================================
   19. CARD IMAGE SLIDER  (auto-cycles on hover/in-view)
   =========================================================================== */
.card-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s var(--ease), transform 0.8s var(--ease);
  pointer-events: none;
}
.card-slider img.active {
  opacity: 1;
}
/* Inherit zoom-on-hover effects from existing card hovers */
.dest-card:hover .card-slider img.active,
.tour-card:hover .card-slider img.active,
.blog-card:hover .card-slider img.active {
  transform: scale(1.06);
}
.card-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
  pointer-events: none;
}
.card-slider-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  transition: width 0.25s var(--ease), background 0.2s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.card-slider-dot.active {
  background: white;
  width: 18px;
  border-radius: 4px;
}
.card-slider-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a3454 0%, var(--navy) 100%);
}
.section-light .card-slider-empty,
.section-cream .card-slider-empty {
  background: linear-gradient(135deg, var(--cream-2) 0%, #e8e0cc 100%);
}
.card-slider-icon {
  color: var(--gold);
  opacity: 0.45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section-light .card-slider-icon,
.section-cream .card-slider-icon {
  color: var(--gold-deep);
  opacity: 0.55;
}
.card-slider-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.4;
}

/* Existing single-img classes stay for backwards compat where used */

/* ===========================================================================
   20. MOBILE RESPONSIVE FIXES
   =========================================================================== */

/* ---- Hero on small screens ---- */
@media (max-width: 640px) {
  .hero { min-height: 88vh; min-height: 88svh; }
  .hero-content {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 60px;
  }
  .hero-headline {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.08;
    margin-bottom: 20px;
  }
  .hero-subhead {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero-eyebrow {
    font-size: 10.5px;
    padding: 6px 13px;
    margin-bottom: 18px;
  }
  .hero-cta {
    padding: 14px 24px;
    font-size: 13.5px;
  }
  .hero-dots { bottom: 22px; }
  .hero-stats { margin-top: -28px; padding-bottom: 36px; }
  .hero-stats-inner {
    padding: 18px 20px;
    gap: 14px;
    border-radius: var(--r-md);
  }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-label { font-size: 10px; letter-spacing: 0.06em; }
}

/* ---- Section spacing on mobile ---- */
@media (max-width: 640px) {
  .section-light, .section-dark, .section-cream { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .section-title {
    font-size: clamp(28px, 7.5vw, 40px);
    margin-bottom: 12px;
  }
  .section-sub {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .section-eyebrow {
    font-size: 10.5px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
}

/* ---- Page hero on mobile ---- */
@media (max-width: 640px) {
  .page-hero {
    min-height: 38vh;
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 36px;
  }
  .page-hero-title {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.05;
  }
  .page-hero-tagline {
    font-size: 14.5px;
    margin-top: 12px;
  }
  .page-hero-eyebrow { font-size: 10.5px; }
  .breadcrumb {
    font-size: 11.5px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ---- Card grids closer-packed on mobile ---- */
@media (max-width: 640px) {
  .why-card { padding: 26px 22px; }
  .why-icon { width: 42px; height: 42px; margin-bottom: 16px; }
  .why-title { font-size: 19px; }
  .why-desc { font-size: 14px; }
  .dest-card-content { padding: 28px 24px; }
  .dest-card-title { font-size: clamp(28px, 7vw, 36px); }
  .dest-card-tagline { font-size: 14px; }
  .tour-card-body { padding: 18px 18px 20px; }
  .tour-card-title { font-size: 19px; }
  .tour-card-summary { font-size: 13.5px; }
  .tour-card-price .price { font-size: 22px; }
  .blog-card-body { padding: 18px 20px 22px; }
  .blog-card-title { font-size: 18px; }
}

/* ---- Tours filter drawer mobile ---- */
@media (max-width: 1023px) {
  .filter-sidebar { padding: 22px; }
  .filter-sidebar .d-mobile-only {
    display: inline-flex !important;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--cream-2);
    border-radius: 8px;
    border: 0;
    font-size: 22px;
    line-height: 1;
    color: var(--ink-2);
    cursor: pointer;
  }
  .tours-toolbar { gap: 10px; }
  .tours-sort { padding: 7px 14px; }
}
@media (min-width: 1024px) {
  .filter-sidebar .d-mobile-only { display: none !important; }
}

/* ---- Tour gallery: clean single-image on mobile (adaptive layouts above handle desktop) ---- */
/* Mobile gallery is handled in the .tour-gallery base styles above. */

/* ---- Tour info strip: clean cards on mobile ---- */
@media (max-width: 639px) {
  .tour-info-strip {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
    gap: 8px;
    background: transparent;
  }
  .tour-info-item {
    border: 0 !important;
    padding: 12px 8px !important;
    background: var(--cream-2);
    border-radius: 10px;
    text-align: left !important;
  }
  .tour-info-label { font-size: 9.5px; }
  .tour-info-value { font-size: 13.5px; }
}

/* ---- Tour tabs: horizontal scroll with edge fade indicator ---- */
@media (max-width: 768px) {
  .tour-tabs-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;  /* critical: prevents tabs from breaking out */
  }
  .tour-tabs-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 1px;
    right: 0;
    width: 30px;
    background: linear-gradient(to right, transparent, var(--cream));
    pointer-events: none;
    z-index: 1;
  }
  .tour-tabs {
    padding: 0;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .tour-tab {
    padding: 12px 14px;
    font-size: 13px;
    flex-shrink: 0;
  }
  .tour-tab.active::after { left: 14px; right: 14px; }
  .tour-tabpanel { padding: 24px 0; }
  .tour-tabpanel h3 { font-size: 22px; margin-bottom: 12px; }
  .tour-tabpanel p { font-size: 14.5px; }
}

/* ---- Inquiry sidebar: stack form rows on tiny screens ---- */
@media (max-width: 480px) {
  .inquiry-sidebar { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .form-row-3 .form-field input { padding: 9px 10px; }
  .inquiry-price-banner .price { font-size: 28px; }
}

/* ---- Pricing table mobile: card-style rows ---- */
@media (max-width: 640px) {
  .pricing-table {
    border: 0;
    background: transparent;
  }
  .pricing-table thead { display: none; }
  .pricing-table tbody, .pricing-table tr, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table tr {
    background: var(--cream-2);
    border-radius: var(--r-md);
    margin-bottom: 10px;
    padding: 16px 18px;
    border: 1px solid var(--line-cream);
  }
  .pricing-table td {
    padding: 4px 0;
    border: 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
  }
  .pricing-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-3);
  }
  .pricing-table td:first-child {
    font-size: 17px;
    font-family: var(--font-display);
    color: var(--ink);
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--line-cream);
    display: block;
  }
  .pricing-table td:first-child::before { display: none; }
  .pricing-table td:first-child strong { font-weight: 500; }
  .pricing-table .price-cell { font-size: 14.5px; }
}

/* ---- Inclusions on mobile ---- */
@media (max-width: 640px) {
  .inclusions-grid { gap: 16px; }
  .inclusion-list li { font-size: 14px; }
}

/* ---- Itinerary on mobile ---- */
@media (max-width: 640px) {
  .itin-day-head { padding: 14px 16px; gap: 12px; }
  .itin-day-num { width: 34px; height: 34px; font-size: 14px; }
  .itin-day-title { font-size: 15px; }
  .itin-day.open .itin-day-body { padding: 18px 16px; }
  .itin-day-body p { font-size: 14px; }
}

/* ---- Footer mobile polish ---- */
@media (max-width: 768px) {
  .site-footer { padding: 60px 0 36px; }
  .footer-grid { gap: 32px; }
  .footer-col-brand .footer-brand img { height: 38px; }
  .footer-about { font-size: 14px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    font-size: 12px;
  }
}

/* ---- Floating WhatsApp on mobile ---- */
@media (max-width: 640px) {
  .floating-wa {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }
  .floating-wa svg { width: 22px; height: 22px; }
}

/* ---- Sticky tour CTA ---- */
@media (max-width: 1023px) {
  .tour-mobile-cta {
    padding: 10px 14px env(safe-area-inset-bottom, 10px);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  }
  .tour-mobile-price .price { font-size: 20px; }
  .tour-mobile-cta .btn { padding: 11px 18px; font-size: 13px; }
}

/* ---- CTA strip on mobile ---- */
@media (max-width: 640px) {
  .cta-strip { padding: 38px 22px; }
  .cta-strip h2 { font-size: clamp(24px, 6vw, 32px); margin-bottom: 12px; }
  .cta-strip p { font-size: 14.5px; margin-bottom: 24px; }
  .cta-strip .btn-primary { padding: 14px 24px; font-size: 13.5px; }
}

/* ---- Testimonial cards on mobile ---- */
@media (max-width: 640px) {
  .testimonial-card { padding: 26px 22px; }
  .testimonial-body { font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
  .testimonial-quote-mark { font-size: 60px; top: 10px; right: 18px; }
}

/* ---- Header mobile polish ---- */
@media (max-width: 640px) {
  .brand-logo { height: 36px; }
  .header-tools { gap: 8px; }
  .hamburger { width: 38px; height: 38px; }
}

/* ---- Drawer polish ---- */
@media (max-width: 480px) {
  .drawer-panel { padding: 20px 22px env(safe-area-inset-bottom, 20px); }
  .drawer-nav a { font-size: 22px; padding: 10px 0; }
}

/* ===========================================================================
   21. MOBILE OVERFLOW LOCKDOWN
   ===========================================================================
   This section makes sure NOTHING on the page can cause horizontal scroll
   on mobile, regardless of content (long titles, wide tables, embedded
   media, dynamic widgets, etc).
*/
@media (max-width: 1023px) {
  /* Belt + suspenders: prevent any descendant from breaking out */
  html, body { max-width: 100vw; overflow-x: hidden; }
  body > * { max-width: 100vw; }

  /* Containers and sections all stay within viewport */
  .container,
  section,
  main,
  header,
  footer,
  aside,
  .tour-detail-layout,
  .inquiry-sidebar,
  .tour-tabs-wrap,
  .tour-info-strip,
  .pricing-table,
  .form-row,
  .form-row-3,
  .footer-grid,
  .stats-grid,
  .dest-grid,
  .tours-grid,
  .blog-grid {
    max-width: 100%;
    min-width: 0;
  }

  /* All grid/flex children must allow shrinking. Without min-width:0,
     long content (URLs, titles, table cells) forces grid columns wider
     than the viewport. This is THE common cause of horizontal scroll. */
  .container > *,
  .tour-detail-layout > *,
  .inquiry-sidebar > *,
  .form-row > *,
  .form-row-3 > *,
  .footer-grid > *,
  .stats-grid > *,
  [class*="-grid"] > * {
    min-width: 0;
    max-width: 100%;
  }

  /* Long unbreakable strings (URLs, slugs) wrap instead of overflow */
  .form-field input,
  .form-field select,
  .form-field textarea,
  .inquiry-detail a,
  .footer-col a,
  .breadcrumb,
  .tour-card-title,
  .dest-card-title,
  .blog-card-title {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Tables that haven't been converted to mobile cards: scroll inside */
  table { max-width: 100%; }

  /* Drawer must never exceed viewport */
  .drawer-panel {
    max-width: 100vw;
    width: min(360px, 100vw);
    box-sizing: border-box;
  }
  .drawer-panel a {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Inquiry sidebar form on small screens: no horizontal overflow */
  .inquiry-sidebar { max-width: 100%; box-sizing: border-box; }
  .inquiry-sidebar input,
  .inquiry-sidebar select,
  .inquiry-sidebar textarea {
    max-width: 100%;
    min-width: 0;
  }
}

/* Small phones — make form-row-3 labels smaller so they fit */
@media (max-width: 420px) {
  .form-row-3 { gap: 5px; }
  .form-row-3 .form-field { margin-bottom: 0; }
  .form-row-3 .form-field label {
    font-size: 10px;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .form-row-3 .form-field input {
    padding: 9px 8px;
    font-size: 14px;
    text-align: center;
  }
}



/* ===========================================================================
   22. MEGA MENU — Dark, contained, editorial
   =========================================================================== */
.nav-item-mega { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s var(--ease);
}
.nav-chevron {
  opacity: 0.5;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-item-mega:hover .nav-link { color: var(--gold); }
.nav-item-mega:hover .nav-chevron { transform: rotate(180deg); opacity: 1; color: var(--gold); }

/* The panel — dark navy, dropping cleanly from the dark header --------- */
.megamenu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background:
    radial-gradient(ellipse 900px 320px at 85% -20%, rgba(232,162,78,0.10), transparent 65%),
    var(--navy);
  border-top: 1px solid rgba(232,162,78,0.22);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.28s var(--ease), transform 0.32s var(--ease), visibility 0s 0.32s;
  z-index: 90;
}
.nav-item-mega:hover .megamenu,
.nav-item-mega.open .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.28s var(--ease), transform 0.32s var(--ease), visibility 0s 0s;
}
/* Inner content constrained to the same container width as the rest of the site */
.megamenu-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px var(--gutter) 38px;
}

/* Editorial header ----------------------------------------------------- */
.megamenu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(232,162,78,0.18);
}
.megamenu-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin-bottom: 4px;
  opacity: 0.9;
}
.megamenu-head h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  line-height: 1;
}
.megamenu-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 9px 16px;
  border: 1px solid rgba(232,162,78,0.3);
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.megamenu-viewall svg { transition: transform 0.25s var(--ease); }
.megamenu-viewall:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}
.megamenu-viewall:hover svg { transform: translateX(3px); }

/* DESTINATIONS — compact photo cards ---------------------------------- */
.megamenu-grid.destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1180px) {
  .megamenu-grid.destinations { grid-template-columns: repeat(3, 1fr); }
}
.megamenu-dest {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
  position: relative;
}
.megamenu-dest:hover {
  transform: translateY(-3px);
  border-color: rgba(232,162,78,0.4);
  background: rgba(255,255,255,0.06);
}
.megamenu-dest-img {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
  overflow: hidden;
}
.megamenu-dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.megamenu-dest:hover .megamenu-dest-img img { transform: scale(1.06); }
.megamenu-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.5), transparent 55%);
  pointer-events: none;
}
.megamenu-dest-code {
  position: absolute;
  top: 10px; left: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--cream);
  background: rgba(10,22,40,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(232,162,78,0.3);
  text-transform: uppercase;
}
.megamenu-dest-arrow {
  position: absolute;
  bottom: 10px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-6px, 6px) scale(0.8);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease-spring);
}
.megamenu-dest:hover .megamenu-dest-arrow {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.megamenu-dest-meta {
  padding: 12px 14px 14px;
}
.megamenu-dest-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 3px;
}
.megamenu-dest:hover .megamenu-dest-name { color: var(--gold-light); }
.megamenu-dest-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(250,246,238,0.55);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.megamenu-dest-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(250,246,238,0.45);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.megamenu-dest-count {
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
}
.megamenu-dest-sep { opacity: 0.4; }
.megamenu-dest-best {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 11.5px;
  color: rgba(250,246,238,0.6);
}

/* PACKAGES / EXCURSIONS / HOTELS — tighter numbered columns ----------- */
.megamenu-columns {
  display: grid;
  gap: 28px;
}
.megamenu-columns-2 { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
.megamenu-columns-3 { grid-template-columns: repeat(3, 1fr); }
.megamenu-columns-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.megamenu-columns-5,
.megamenu-columns-6,
.megamenu-columns-7,
.megamenu-columns-8 { grid-template-columns: repeat(4, 1fr); gap: 22px; }

.megamenu-col-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(232,162,78,0.18);
}
.megamenu-col-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  opacity: 0.7;
  flex-shrink: 0;
}
.megamenu-col-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.2;
  transition: color 0.2s var(--ease);
}
a.megamenu-col-title:hover { color: var(--gold); }

.megamenu-col-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.megamenu-col-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(250,246,238,0.62);
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.megamenu-link-arrow {
  opacity: 0;
  transform: translateX(-5px);
  color: var(--gold);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.megamenu-col-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.megamenu-col-links a:hover .megamenu-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Below 1024px the drawer takes over; hide the hover menus */
@media (max-width: 1023px) {
  .megamenu { display: none; }
  .nav-chevron { display: none; }
  .nav-link-cta {
    background: var(--gold);
    color: var(--navy) !important;
    border-radius: 999px;
    padding: 8px 18px;
  }
}



/* ===========================================================================
   23. SEARCH MODAL
   =========================================================================== */
.header-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(232, 162, 78, 0.25);
  border-radius: 50%;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.header-search-btn:hover {
  border-color: var(--gold);
  background: rgba(232, 162, 78, 0.06);
}
@media (max-width: 640px) {
  .header-search-btn { display: none; }   /* mobile has search in drawer */
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  visibility: hidden;
  pointer-events: none;
}
.search-modal.open { visibility: visible; pointer-events: auto; }
.search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.search-modal.open .search-modal-backdrop { opacity: 1; }
.search-modal-panel {
  position: relative;
  width: min(720px, 92vw);
  max-height: 70vh;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.search-modal.open .search-modal-panel {
  transform: translateY(0);
  opacity: 1;
}
.search-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-cream);
}
.search-modal-icon { color: var(--ink-2); flex-shrink: 0; }
.search-modal-input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 17px;
  color: var(--ink);
  outline: none;
  padding: 6px 0;
}
.search-modal-input::placeholder { color: var(--ink-2); opacity: 0.7; }
.search-modal-close {
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.search-modal-close:hover { background: var(--cream-2); color: var(--ink); }
.search-modal-results {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.search-modal-empty {
  text-align: center;
  padding: 36px 22px;
  color: var(--ink-2);
}
.search-modal-empty p { font-size: 14.5px; margin-bottom: 10px; }
.search-modal-popular {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.search-modal-popular a {
  font-size: 12.5px;
  padding: 6px 13px;
  background: var(--cream-2);
  color: var(--ink-2);
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.search-modal-popular a:hover {
  background: var(--gold);
  color: var(--navy);
}

.search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line-cream);
  transition: background 0.15s var(--ease);
}
.search-result:hover { background: var(--cream-2); }
.search-result-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-2);
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-meta { flex: 1; min-width: 0; }
.search-result-type {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  margin-bottom: 2px;
}
.search-result-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.25;
}
.search-result-sub {
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 2px;
}
.search-modal-loading {
  text-align: center;
  padding: 30px 20px;
  color: var(--ink-2);
  font-size: 14px;
}

/* ===========================================================================
   24. DRAWER NAV — collapsible groups with sublinks
   =========================================================================== */
.drawer-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,162,78,0.18);
  color: var(--cream);
  padding: 12px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.drawer-search:hover { border-color: var(--gold); background: rgba(232,162,78,0.08); }
.drawer-search svg { color: var(--gold); }
.drawer-search span { letter-spacing: 0.02em; }

.drawer-nav-group {
  border-bottom: 1px solid rgba(232,162,78,0.08);
}
.drawer-nav-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.drawer-nav-group summary::-webkit-details-marker { display: none; }
.drawer-nav-group summary svg {
  opacity: 0.7;
  transition: transform 0.25s var(--ease);
}
.drawer-nav-group[open] summary { color: var(--gold); }
.drawer-nav-group[open] summary svg { transform: rotate(180deg); color: var(--gold); }

.drawer-sublinks {
  padding: 4px 0 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid rgba(232,162,78,0.15);
  margin-left: 4px;
}
.drawer-sublink {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(250,246,238,0.75);
  padding: 7px 12px;
  border-radius: 6px;
  border-bottom: 0;
  transition: background 0.15s, color 0.15s;
}
.drawer-sublink:hover {
  background: rgba(232,162,78,0.08);
  color: var(--gold);
  padding-left: 12px;
}
.drawer-sublink-all {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.drawer-sublink-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  padding: 12px 12px 4px;
  opacity: 0.7;
}

/* ===========================================================================
   25. PRODUCT-TYPE PAGE BADGE
   =========================================================================== */
.product-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(232, 162, 78, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
}
.product-type-badge svg { width: 13px; height: 13px; }

/* ===========================================================================
   26. DEAL BADGE on tour cards
   =========================================================================== */
.tour-card-badge-deal {
  background: #dc2626 !important;
  color: white !important;
  top: auto !important;
  bottom: 14px !important;
  left: 14px !important;
  right: auto !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===========================================================================
   27. DESTINATION HERO STATS + CARD-TYPE LABEL
   =========================================================================== */
.dest-hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,162,78,0.18);
  flex-wrap: wrap;
}
.dest-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dest-hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.dest-hero-stat-text {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.dest-hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.6);
}

.dest-intro {
  padding-top: 56px;
  padding-bottom: 24px;
}
.dest-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.dest-intro-inner p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}

.tour-card-type {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  margin-left: auto;
}

@media (max-width: 640px) {
  .dest-hero-meta { gap: 24px; margin-top: 20px; padding-top: 18px; }
  .dest-hero-stat-num { font-size: 28px; }
  .dest-hero-stat-text { font-size: 17px; }
  .dest-intro { padding-top: 36px; }
  .dest-intro-inner p { font-size: 16px; }
}
