/* ============================================
   NERO CRUISES — Premium Design System
   Pure custom CSS, no frameworks
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --charcoal:     #1A1A1A;
  --teal:         #1A8C8E;
  --teal-deep:    #0B3D3E;
  --teal-light:   #2AA8AA;
  --coral:        #E8874A;
  --coral-light:  #F2A06A;
  --peach:        #F2C4A8;
  --cream:        #F5EDE4;
  --cream-light:  #FAF7F3;
  --sand:         #E8DDD1;
  --warm-white:   #FEFDFB;
  --text:         #2D2D2D;
  --text-light:   #6B6B6B;
  --text-muted:   #9A9A9A;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad:     120px;
  --section-pad-md:  80px;
  --section-pad-sm:  60px;
  --content-max:     1400px;
  --content-narrow:  800px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.4s;
  --dur-slow:    0.6s;
  --dur-fast:    0.25s;

  /* Nav */
  --nav-height: 80px;
}

/* ---------- Scrollbar — thin overlay, no gutter ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(245,237,228,0.25) transparent;
  scrollbar-gutter: auto;
}
::-webkit-scrollbar {
  width: 5px;
  position: absolute;
}
::-webkit-scrollbar-track {
  display: none;
}
::-webkit-scrollbar-thumb {
  background: rgba(245,237,228,0.25);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(245,237,228,0.45);
}
/* Prevent scrollbar from reserving space */
html, body {
  overflow-x: hidden;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--teal-deep);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--dur) var(--ease-smooth); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--cream);
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 48px;
}
.text-center { text-align: center; }

/* ---------- Section Labels ---------- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: rgba(245, 237, 228, 0.6);
  font-weight: 300;
  max-width: 560px;
}
.section-subtitle.centered { margin: 0 auto; }

/* Pattern fade at edges — applied to all section ::before patterns */
.journey-section::before,
.fleet-section::before,
.testimonials::before,
.cta-section::before,
.exp-heading::before {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}

/* Section Divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(245, 237, 228, 0.08);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--dur) var(--ease-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--cream);
  color: var(--charcoal);
}
.btn--primary:hover {
  background: var(--warm-white);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
}
.btn--outline:hover {
  background: var(--cream);
  color: var(--charcoal);
}
.btn--cream {
  background: var(--cream);
  color: var(--charcoal);
}
.btn--cream:hover {
  background: var(--warm-white);
  transform: translateY(-1px);
}
.btn .arrow {
  transition: transform var(--dur) var(--ease-smooth);
  font-size: 1.1em;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Floating Language Switcher ---------- */
.lang-float {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  opacity: 1;
}
.lang-float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 10px 8px;
  background: rgba(245, 237, 228, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 237, 228, 0.2);
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}
.lang-float-btn:hover {
  background: rgba(245, 237, 228, 0.22);
  border-color: rgba(245, 237, 228, 0.35);
}
.lang-float-active,
.lang-float-inactive {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 4px;
  display: block;
  line-height: 1;
  transition: color 0.3s var(--ease-smooth);
}
.lang-float-active {
  color: var(--cream);
}
.lang-float-inactive {
  color: rgba(245, 237, 228, 0.4);
}
.lang-float-btn:hover .lang-float-inactive {
  color: var(--cream);
}
.lang-float-divider {
  width: 14px;
  height: 1px;
  background: rgba(245, 237, 228, 0.25);
  display: block;
}

@media (max-width: 768px) {
  .lang-float {
    left: 12px;
    top: auto;
    bottom: 24px;
    transform: none;
  }
}

/* ---------- Page Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--teal-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo-wrap {
  position: relative;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Ghost logo — faint, always visible */
.loader-logo-ghost {
  width: 100%;
  object-fit: contain;
  opacity: 0.15;
}

/* Filled logo — clips from bottom to top */
.loader-logo-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: contain;
  opacity: 1;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  animation: loaderClipFill 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

/* Progress bar below logo */
.loader-bar {
  width: 48px;
  height: 2px;
  background: rgba(245, 237, 228, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--cream);
  border-radius: 2px;
  animation: loaderBarFill 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes loaderClipFill {
  0%   { -webkit-clip-path: inset(100% 0 0 0); clip-path: inset(100% 0 0 0); }
  100% { -webkit-clip-path: inset(0% 0 0 0); clip-path: inset(0% 0 0 0); }
}
@keyframes loaderBarFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 237, 228, 0.1);
  border: 1px solid rgba(245, 237, 228, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth),
              visibility 0.4s, background 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth),
              background 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
  mix-blend-mode: difference;
  opacity: 0.8;
}
.cursor.expand,
.cursor.expand-dark {
  width: 10px; height: 10px;
  opacity: 0.8;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--dur) var(--ease-smooth),
              box-shadow var(--dur) var(--ease-smooth);
}
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 48px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; z-index: 10; position: relative; }
.nav-logo img { height: 48px; transition: opacity var(--dur) var(--ease-smooth); }
.logo-dark { display: none; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width var(--dur) var(--ease-smooth);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--cream); }

/* Mega Menu */
.nav-mega-trigger {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-mega-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-mega-label svg {
  opacity: 0.5;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
}
.nav-mega-trigger:hover .nav-mega-label svg {
  opacity: 1;
}
.nav-mega-trigger:hover .nav-mega-label svg {
  transform: rotate(180deg);
}
.nav-mega-label::after { display: none !important; }

/* Mobile bottom section — hidden on desktop */
.nav-mobile-bottom { display: none; }

.nav-mega {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth), visibility 0.35s;
  z-index: 100;
}
.nav-mega-trigger:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px;
  background: rgba(11, 61, 62, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 237, 228, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.nav-mega-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(245, 237, 228, 0.04);
  border: 1px solid rgba(245, 237, 228, 0.06);
  transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
  text-decoration: none;
}
.nav-mega-card:hover {
  border-color: rgba(245, 237, 228, 0.15);
  transform: translateY(-3px);
}
.nav-mega-card::after { display: none !important; }

.nav-mega-card-img {
  height: 150px;
  overflow: hidden;
}
.nav-mega-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.nav-mega-card:hover .nav-mega-card-img img {
  transform: scale(1.06);
}

.nav-mega-card-text {
  padding: 18px 16px;
}
.nav-mega-card-label {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--peach);
  opacity: 0.6;
}
.nav-mega-card-text h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin: 6px 0 8px;
  text-transform: none;
  letter-spacing: 0.01em;
}
.nav-mega-card-text p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245, 237, 228, 0.5);
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Scrolled state — subtle dark glass behind for readability */
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar.scrolled .nav-links a {
  color: var(--cream);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--cream); }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.btn-book-nav {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  background: var(--cream);
  color: var(--charcoal);
  border-radius: 4px;
  transition: all var(--dur) var(--ease-smooth);
}
.btn-book-nav:hover { background: var(--warm-white); transform: translateY(-1px); }
.navbar.scrolled .btn-book-nav { box-shadow: 0 2px 12px rgba(0,0,0,0.3); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}
.navbar.scrolled .hamburger span { background: var(--cream); }
.hamburger.active span { background: var(--cream) !important; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Overlay (mobile) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.3) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}
.hero-logo {
  width: 64px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.3s forwards;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.6s forwards;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--peach);
}
.hero-content .hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,237,228,0.8);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.9s forwards;
}
.hero-content .btn {
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 1.2s forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   QUOTE MARQUEE STRIP
   ============================================ */
.marquee-strip {
  overflow: hidden;
  background: rgba(245, 237, 228, 0.04);
  border-top: 1px solid rgba(245, 237, 228, 0.06);
  border-bottom: 1px solid rgba(245, 237, 228, 0.06);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-item {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 237, 228, 0.5);
  padding: 0 24px;
  flex-shrink: 0;
}
.marquee-dot {
  color: var(--peach);
  opacity: 0.4;
  font-size: 0.6rem;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-item {
    font-size: 0.85rem;
  }
}

/* ============================================
   EXPERIENCES — Expanding Columns
   ============================================ */
.experiences {
  padding-top: 40px;
  padding-bottom: 0;
  background: rgba(14, 79, 81, 0.6);
  position: relative;
}
.experiences > .container {
  max-width: 100%;
  padding: 0;
}

/* Section heading between quote and columns */
.exp-heading {
  text-align: center;
  padding: 32px 24px 48px;
  position: relative;
}
.exp-heading::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

/* Columns container */
.exp-columns {
  display: flex;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  gap: 4px;
  border-radius: 0;
  overflow: hidden;
}

/* Individual column */
.exp-col {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}
.exp-col:hover {
  flex: 1.5;
}

/* Background image */
.exp-col-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth), filter 0.6s var(--ease-smooth);
}
.exp-col:hover .exp-col-bg {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Dark overlay — always visible for readability */
.exp-col-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 61, 62, 0.88) 0%,
    rgba(11, 61, 62, 0.5) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  transition: background 0.6s var(--ease-smooth);
}
.exp-col:hover .exp-col-overlay {
  background: linear-gradient(
    to top,
    rgba(11, 61, 62, 0.92) 0%,
    rgba(11, 61, 62, 0.35) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Content */
.exp-col-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Number */
.exp-col-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(245, 237, 228, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

/* Title */
.exp-col-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  transition: color 0.4s var(--ease-smooth);
}

/* Description — always visible */
.exp-col-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 237, 228, 0.7);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 16px;
  transition: opacity 0.5s var(--ease-smooth);
}

/* CTA link — always visible */
.exp-col-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--peach);
  transition: gap 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}
.exp-col:hover .exp-col-link { gap: 14px; color: var(--cream); }
.exp-col-link .arrow { font-size: 1.1em; }

/* ---- Mobile: stack vertically ---- */
@media (max-width: 768px) {
  .exp-columns {
    flex-direction: column;
    height: auto;
    min-height: auto;
    max-height: none;
    gap: 4px;
  }
  .exp-col {
    flex: none !important;
    height: 280px;
  }
  .exp-col-content {
    padding: 24px 20px;
  }
  .exp-col-num {
    font-size: 2.5rem;
    margin-bottom: 4px;
  }
  .exp-col-title {
    font-size: 1.4rem;
  }
  .exp-col-desc {
    font-size: 0.8rem;
  }
}


/* ============================================
   DESTINATIONS — VERTICAL JOURNEY
   ============================================ */
.journey-section {
  padding: var(--section-pad) 0;
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.journey-header {
  margin-bottom: 64px;
}

/* Timeline container */
.journey {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

/* Vertical timeline line */
.journey-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(245, 237, 228, 0.1);
  transform: translateX(-50%);
}

/* Each destination stop */
.journey-stop {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}
.journey-stop:last-child {
  margin-bottom: 0;
}

/* Alternating layout */
.journey-stop:nth-child(odd) .journey-img { grid-column: 1; }
.journey-stop:nth-child(odd) .journey-text { grid-column: 3; }
.journey-stop:nth-child(even) .journey-img { grid-column: 3; }
.journey-stop:nth-child(even) .journey-text { grid-column: 1; grid-row: 1; text-align: right; }
.journey-stop:nth-child(even) .journey-tags { justify-content: flex-end; }

/* Center dot */
.journey-dot-wrap {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.journey-dot {
  width: 16px;
  height: 16px;
  background: var(--coral);
  border: 3px solid var(--cream);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease-smooth);
}
.journey-stop:hover .journey-dot {
  transform: scale(1.3);
}
.journey-dot--home {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-width: 3px;
}

/* Image */
.journey-img {
  border-radius: 6px;
  overflow: hidden;
  height: 260px;
}
.journey-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.journey-stop:hover .journey-img img {
  transform: scale(1.04);
}

/* Text content */
.journey-text {
  padding: 0 24px;
}
.journey-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.journey-text p {
  font-size: 0.9rem;
  color: rgba(245, 237, 228, 0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Activity tags */
.journey-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.journey-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(245, 237, 228, 0.15);
  border-radius: 4px;
  color: var(--peach);
  transition: border-color var(--dur) var(--ease-smooth), color var(--dur) var(--ease-smooth);
}
.journey-stop:hover .journey-tag {
  border-color: rgba(245, 237, 228, 0.3);
}

/* ---- Mobile: stack vertically ---- */
@media (max-width: 768px) {
  .journey { padding: 0 20px; }
  .journey-line { left: 20px; }
  .journey-stop {
    grid-template-columns: 40px 1fr;
    margin-bottom: 48px;
  }
  .journey-dot-wrap {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 8px;
  }
  .journey-stop .journey-img,
  .journey-stop:nth-child(odd) .journey-img,
  .journey-stop:nth-child(even) .journey-img {
    grid-column: 2;
    grid-row: 1;
    height: 200px;
  }
  .journey-stop .journey-text,
  .journey-stop:nth-child(odd) .journey-text,
  .journey-stop:nth-child(even) .journey-text {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    padding: 16px 0 0;
  }
  .journey-stop:nth-child(even) .journey-tags { justify-content: flex-start; }
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-section {
  padding: var(--section-pad) 0;
  background: rgba(14, 79, 81, 0.6);
  overflow: hidden;
  position: relative;
}
.fleet-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.fleet-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 60px;
}

/* 3D Carousel */
.fleet-carousel-wrap {
  perspective: 1400px;
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
}
.fleet-carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}
.fleet-carousel-item {
  position: absolute;
  left: 50%;
  top: 0;
  width: 420px;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.7s var(--ease-smooth);
  cursor: pointer;
}
.fleet-carousel-inner {
  width: 100%;
  height: 100%;
  background: rgba(245, 237, 228, 0.06);
  border: 1px solid rgba(245, 237, 228, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}
.fleet-carousel-item.active .fleet-carousel-inner {
  border-color: rgba(245, 237, 228, 0.25);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}
.fleet-carousel-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(135deg, rgba(26, 140, 142, 0.15) 0%, rgba(11, 61, 62, 0.3) 100%);
  overflow: hidden;
}
.fleet-carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.fleet-carousel-item.active .fleet-carousel-img img {
  transform: scale(1.03);
}
.fleet-carousel-body {
  padding: 24px;
  background: rgba(11, 61, 62, 0.4);
}
.fleet-carousel-line {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 6px;
}
.fleet-carousel-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.fleet-carousel-specs {
  font-size: 0.85rem;
  color: rgba(245, 237, 228, 0.5);
}
.fleet-carousel-specs span {
  margin: 0 6px;
  color: rgba(245, 237, 228, 0.2);
}

/* Carousel arrows */
.fleet-carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.fleet-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 237, 228, 0.08);
  border: 1px solid rgba(245, 237, 228, 0.15);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease-smooth);
}
.fleet-carousel-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .fleet-carousel-wrap { height: 420px; }
  .fleet-carousel-item { width: 280px; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.testimonial-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 220px;
}
.testimonial-item {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  pointer-events: none;
}
.testimonial-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--peach);
  opacity: 0.3;
  margin-bottom: -16px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 24px;
}
.testimonial-divider {
  width: 40px; height: 1px;
  background: rgba(245, 237, 228, 0.15);
  margin: 0 auto 16px;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 237, 228, 0.6);
}
.testimonial-stars {
  color: var(--coral);
  font-size: 0.85rem;
  margin-top: 8px;
  letter-spacing: 2px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245, 237, 228, 0.2);
  cursor: pointer;
  transition: background var(--dur) var(--ease-smooth), transform var(--dur) var(--ease-smooth);
}
.testimonial-dot.active {
  background: var(--peach);
  transform: scale(1.2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background: rgba(14, 79, 81, 0.6);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.cta-section .section-title {
  color: var(--cream);
  margin-bottom: 16px;
  position: relative;
}
.cta-section .section-subtitle {
  color: rgba(245,237,228,0.7);
  margin-bottom: 40px;
  position: relative;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* Testimonial review link */
.testimonial-review-link { text-align: center; margin-top: 32px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  position: relative;
}
.footer-brand img {
  height: 56px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245,237,228,0.5);
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,237,228,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.85rem;
  transition: all var(--dur) var(--ease-smooth);
}
.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(245,237,228,0.5);
  padding: 5px 0;
  transition: color var(--dur) var(--ease-smooth);
}
.footer-col a:hover { color: var(--cream); }

/* Newsletter */
.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(245,237,228,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
}
.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(245,237,228,0.06);
  border: 1px solid rgba(245,237,228,0.12);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--dur) var(--ease-smooth);
}
.footer-newsletter-form input::placeholder { color: rgba(245,237,228,0.3); }
.footer-newsletter-form input:focus { border-color: var(--teal); }
.footer-newsletter-form button {
  padding: 12px 20px;
  background: var(--teal);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 0 4px 4px 0;
  transition: background var(--dur) var(--ease-smooth);
}
.footer-newsletter-form button:hover { background: var(--teal-light); }

/* Footer bottom */
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(245,237,228,0.08);
  text-align: center;
  position: relative;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,237,228,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(245,237,228,0.35);
  transition: color var(--dur) var(--ease-smooth);
}
.footer-bottom-links a:hover { color: var(--cream); }

.footer-credit {
  margin-top: 8px;
}
.footer-credit p {
  font-size: 0.75rem;
  color: rgba(245,237,228,0.45);
  letter-spacing: 0.03em;
}
.footer-credit a {
  color: var(--peach);
  font-weight: 500;
  transition: color var(--dur) var(--ease-smooth);
}
.footer-credit a:hover { color: var(--cream); }

/* ============================================
   CINEMATIC SCROLL ANIMATIONS
   ============================================ */

/* Base reveal — fade up */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal from left */
.reveal--left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}
.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal from right */
.reveal--right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}
.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal fade only (no movement) */
.reveal--fade {
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.reveal--fade.visible {
  opacity: 1;
}

/* Stagger children — used inside .reveal parent */
.stagger-child {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}
.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slow reveal for dramatic sections */
.reveal--slow {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s var(--ease-out),
              transform 1.2s var(--ease-out);
}
.reveal--slow.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section titles get a subtle scale transition via JS */
.section-title {
  transform-origin: center bottom;
  transition: transform 0.1s linear;
}

/* ============================================
   SAFARI PAGE
   ============================================ */

/* Safari Hero — image-based, 70vh */
.safari-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.safari-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-color: var(--teal-deep);
  z-index: 0;
}
.safari-hero .hero-overlay {
  z-index: 1;
}
.safari-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}
.safari-hero .hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.4s forwards;
}
.safari-hero .hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245,237,228,0.8);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) 0.7s forwards;
}
/* Safari Overview Strip */
.safari-overview {
  position: relative;
  z-index: 10;
  margin-bottom: 56px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}
.safari-overview-card {
  width: 90%;
  max-width: 800px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(11, 61, 62, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 237, 228, 0.1);
  border-radius: 6px;
  /* reuse reveal--quote animation */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.safari-overview-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.safari-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.safari-stat-icon {
  color: var(--peach);
  line-height: 1;
}
.safari-stat-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.safari-stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 228, 0.45);
}
.safari-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(245, 237, 228, 0.12);
  flex-shrink: 0;
}

/* Safari How it Works */
.safari-how {
  padding: var(--section-pad) 0;
  background: rgba(14, 79, 81, 0.6);
  position: relative;
}
.safari-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}

.safari-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.safari-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}
.safari-step-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(245, 237, 228, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.safari-step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.safari-step p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 237, 228, 0.55);
  line-height: 1.6;
}
.safari-step-line {
  width: 40px;
  height: 1px;
  background: rgba(245, 237, 228, 0.12);
  margin-top: 36px;
  flex-shrink: 0;
}

/* Safari Routes */
.safari-routes {
  padding: var(--section-pad) 0;
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}
.safari-routes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}
.safari-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.safari-route-card {
  background: rgba(245, 237, 228, 0.05);
  border: 1px solid rgba(245, 237, 228, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}
.safari-route-card:hover {
  border-color: rgba(245, 237, 228, 0.2);
  transform: translateY(-4px);
}
.safari-route-img {
  height: 260px;
  overflow: hidden;
}
.safari-route-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.safari-route-card:hover .safari-route-img img {
  transform: scale(1.06);
}
.safari-route-body {
  padding: 28px 24px;
}
.safari-route-duration {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 8px;
}
.safari-route-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}
.safari-route-body p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 237, 228, 0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}
.safari-route-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.safari-route-highlights span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 237, 228, 0.6);
  background: rgba(245, 237, 228, 0.06);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(245, 237, 228, 0.08);
}
.safari-route-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--coral);
}

/* Safari What's Included */
.safari-included {
  padding: var(--section-pad) 0;
  background: rgba(14, 79, 81, 0.6);
  position: relative;
  overflow: hidden;
}
.safari-included::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}
/* Included — glass cards */
.included-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  position: relative;
}
.included-card {
  flex: 0 0 180px;
  padding: 28px 20px;
  text-align: center;
  background: rgba(245, 237, 228, 0.05);
  border: 1px solid rgba(245, 237, 228, 0.08);
  border-radius: 8px;
  transition: border-color 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}
.included-card:hover {
  border-color: rgba(245, 237, 228, 0.18);
  transform: translateY(-4px);
}
.included-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26, 140, 142, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal-light);
}
.included-card h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(245, 237, 228, 0.7);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Good to Know — inline strip */
.included-info {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 237, 228, 0.06);
  position: relative;
}
.included-info h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}
.included-info-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 237, 228, 0.5);
}
.included-info-dot {
  color: var(--peach);
  opacity: 0.3;
  font-size: 0.5rem;
}

/* Safari Gallery */
.safari-gallery {
  padding: var(--section-pad) 0 var(--section-pad-md);
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}
.safari-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}

/* Gallery Carousel — center peek */
.gallery-carousel {
  position: relative;
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 0;
  overflow: hidden;
}
.gallery-carousel-track {
  display: flex;
  transition: transform 0.6s var(--ease-smooth);
}
.gallery-slide {
  flex: 0 0 70%;
  padding: 0 8px;
  cursor: pointer;
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
  opacity: 0.4;
  transform: scale(0.92);
}
.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
}
.gallery-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(245, 237, 228, 0.08);
  transition: transform 0.5s var(--ease-smooth);
}
.gallery-slide.active:hover img {
  transform: scale(1.02);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245, 237, 228, 0.08);
  border: 1px solid rgba(245, 237, 228, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease-smooth);
  z-index: 5;
}
.gallery-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.gallery-arrow--left { left: 24px; }
.gallery-arrow--right { right: 24px; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245, 237, 228, 0.2);
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease-smooth), transform var(--dur) var(--ease-smooth);
}
.gallery-dot.active {
  background: var(--peach);
  transform: scale(1.3);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-smooth);
}
.lightbox.open .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--cream);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 2;
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245, 237, 228, 0.08);
  border: 1px solid rgba(245, 237, 228, 0.15);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  z-index: 2;
}
.lightbox-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(245, 237, 228, 0.5);
  letter-spacing: 0.08em;
}

/* ============================================
   CONTACT PAGE — SPLIT SCREEN
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.contact-split-left {
  background: rgba(14, 79, 81, 0.6);
  padding: 80px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}
.contact-split-content {
  max-width: 540px;
  width: 100%;
}
.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.15;
}
.contact-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 237, 228, 0.65);
  margin-bottom: 40px;
}

/* Contact Info Items */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cream);
  transition: opacity var(--dur) var(--ease-smooth);
}
.contact-info-item:hover { opacity: 0.8; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 140, 142, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-light);
}
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info-text strong {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
}
.contact-info-text span {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream);
}

/* Contact Form (inside split) */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
}
.contact-form-group--full {
  margin-bottom: 20px;
}
.contact-form-group label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 8px;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(245, 237, 228, 0.06);
  border: 1px solid rgba(245, 237, 228, 0.12);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--dur) var(--ease-smooth), background var(--dur) var(--ease-smooth);
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: rgba(245, 237, 228, 0.3);
}
.contact-form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23F5EDE4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form-group select option {
  background: var(--teal-deep);
  color: var(--cream);
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-color: var(--teal-light);
  background: rgba(245, 237, 228, 0.1);
}
.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-submit {
  text-align: left;
  margin-top: 8px;
}
.contact-status {
  margin-bottom: 20px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  display: none;
}
.contact-status--success {
  display: block;
  background: rgba(26, 140, 142, 0.2);
  border: 1px solid var(--teal);
  color: var(--cream);
}
.contact-status--error {
  display: block;
  background: rgba(232, 135, 74, 0.2);
  border: 1px solid var(--coral);
  color: var(--cream);
}

/* Right side: Map */
.contact-split-right {
  position: relative;
  min-height: 100%;
}
.contact-split-right iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(0.7) brightness(0.8);
}

/* ============================================
   DESTINATIONS PAGE — FULL SECTIONS
   ============================================ */
.dest-intro {
  padding: var(--section-pad) 0 40px;
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}
.dest-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}
.dest-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.dest-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}
.dest-section--odd {
  background: var(--teal-deep);
}
.dest-section--even {
  background: rgba(14, 79, 81, 0.6);
}
.dest-section--home {
  background: var(--teal-deep);
  border-left: 3px solid var(--peach);
}
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dest-grid--reverse {
  direction: rtl;
}
.dest-grid--reverse > * {
  direction: ltr;
}
.dest-image {
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
}
.dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.dest-section:hover .dest-image img {
  transform: scale(1.03);
}
.dest-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dest-distance {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  background: rgba(242, 196, 168, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}
.dest-distance--home {
  background: rgba(242, 196, 168, 0.2);
  border: 1px solid rgba(242, 196, 168, 0.3);
}
.dest-name {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.dest-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 237, 228, 0.7);
}
.dest-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dest-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 237, 228, 0.6);
  border: 1px solid rgba(245, 237, 228, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  transition: border-color var(--dur) var(--ease-smooth), color var(--dur) var(--ease-smooth);
}
.dest-section:hover .dest-tag {
  border-color: rgba(245, 237, 228, 0.3);
}
.dest-tours {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.dest-tours-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.dest-tours-label--home {
  color: var(--peach);
  font-style: italic;
}
.dest-tour-pill {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream);
  background: rgba(245, 237, 228, 0.08);
  border: 1px solid rgba(245, 237, 228, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: background var(--dur) var(--ease-smooth), border-color var(--dur) var(--ease-smooth);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.dest-tour-pill:hover {
  background: rgba(242, 196, 168, 0.15);
  border-color: var(--peach);
  color: var(--peach);
}

/* ---- Destinations page: mobile ---- */
@media (max-width: 768px) {
  .dest-grid,
  .dest-grid--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .dest-image {
    height: 260px;
  }
  .dest-name {
    font-size: 1.8rem;
  }
  .dest-section {
    padding: 48px 0;
  }
  .dest-section--home {
    border-left: none;
    border-top: 3px solid var(--peach);
  }
}

/* ============================================
   FLEET PAGE — LINE SECTIONS & DETAIL CARDS
   ============================================ */

/* Line sections */
.fleet-line-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.fleet-line--light {
  background: var(--teal-deep);
}
.fleet-line--dark {
  background: rgba(14, 79, 81, 0.6);
}
.fleet-line-pattern {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/Nero Brand Pattern-25.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}

/* Line intro */
.fleet-line-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.fleet-line-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.fleet-line-divider {
  width: 60px;
  height: 2px;
  background: var(--peach);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.fleet-line-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 237, 228, 0.6);
  font-weight: 300;
}

/* Detail cards — horizontal layout */
.fleet-detail-card {
  display: grid;
  grid-template-columns: 45% 55%;
  background: rgba(245, 237, 228, 0.05);
  border: 1px solid rgba(245, 237, 228, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  transition: border-color var(--dur) var(--ease-smooth), box-shadow var(--dur) var(--ease-smooth);
}
.fleet-detail-card:last-child {
  margin-bottom: 0;
}
.fleet-detail-card:hover {
  border-color: rgba(245, 237, 228, 0.2);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.2);
}

/* Reverse layout — image on right */
.fleet-detail-card--reverse {
  direction: rtl;
}
.fleet-detail-card--reverse > * {
  direction: ltr;
}

/* Boat image area */
.fleet-detail-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 140, 142, 0.15) 0%, rgba(11, 61, 62, 0.3) 100%);
  min-height: 400px;
}
.fleet-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 410px;
  transition: transform 0.6s var(--ease-smooth);
}
.fleet-detail-card:hover .fleet-detail-img img {
  transform: scale(1.04);
}

/* Boat info area */
.fleet-detail-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Line badge */
.fleet-detail-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 8px;
}

/* Boat name */
.fleet-detail-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 20px;
}

/* Specs row with icons */
.fleet-detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.fleet-detail-spec {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fleet-detail-spec svg {
  color: var(--peach);
  flex-shrink: 0;
  opacity: 0.7;
}
.fleet-detail-spec div {
  display: flex;
  flex-direction: column;
}
.fleet-detail-spec-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 237, 228, 0.4);
  margin-bottom: 2px;
}
.fleet-detail-spec-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
}

/* Description */
.fleet-detail-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(245, 237, 228, 0.65);
  margin-bottom: 20px;
}

/* Feature pills */
.fleet-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.fleet-detail-pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(245, 237, 228, 0.7);
  background: rgba(245, 237, 228, 0.06);
  border: 1px solid rgba(245, 237, 228, 0.12);
  border-radius: 20px;
  transition: background var(--dur-fast) var(--ease-smooth), border-color var(--dur-fast) var(--ease-smooth);
}
.fleet-detail-card:hover .fleet-detail-pill {
  background: rgba(245, 237, 228, 0.1);
  border-color: rgba(245, 237, 228, 0.18);
}

/* Book button */
.fleet-detail-btn {
  align-self: flex-start;
}

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

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-pad: var(--section-pad-md);
    --nav-height: 70px;
  }
  .container { padding: 0 32px; }
  .navbar .nav-inner { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.7rem; }

  /* Contact tablet */
  .contact-split { grid-template-columns: 1fr 1fr; }
  .contact-split-left { padding: 60px 32px; }

  /* Fleet page tablet */
  .fleet-detail-card { grid-template-columns: 1fr 1fr; }
  .fleet-detail-info { padding: 28px; }
  .fleet-detail-name { font-size: 1.6rem; }
  .fleet-line-heading { font-size: 1.8rem; }

  /* Safari tablet */
  .safari-routes-grid { gap: 20px; }
  .safari-route-img { height: 180px; }
  .safari-steps { gap: 0; }
  .safari-step { max-width: 180px; padding: 0 10px; }
  .safari-step-line { width: 24px; }
  .gallery-slide img { height: 380px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-sm);
  }
  .container { padding: 0 20px; }
  .navbar .nav-inner { padding: 0 20px; }

  /* Mobile navbar — solid bg on scroll, no blur glitch */
  .navbar.scrolled {
    background: var(--teal-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--teal-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-smooth);
    z-index: 1001;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    padding: 16px 0;
    color: var(--cream);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth), color 0.3s var(--ease-smooth);
  }
  .nav-links.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links.open a,
  .nav-links.open .nav-mega-trigger {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links.open > *:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open > *:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.open > *:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.open > *:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.open > *:nth-child(5) { transition-delay: 0.3s; }
  .nav-links a::after { display: none; }
  .nav-links a:hover,
  .nav-links a.active { color: var(--teal-light); }

  /* Mega menu on mobile — flatten to simple link */
  .nav-mega-trigger {
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  }
  .nav-mega-label svg { display: none; }
  .nav-mega-label {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    padding: 16px 0;
    color: var(--cream);
  }
  /* Mobile mega menu — hidden until tapped */
  .nav-mega {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
    visibility: visible;
    transform: none !important;
  }
  .nav-mega-trigger:hover .nav-mega {
    max-height: 0;
    opacity: 0;
  }
  .nav-mega-trigger.open .nav-mega {
    max-height: 200px;
    opacity: 1;
  }
  .nav-mega-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .nav-mega-card {
    flex-direction: row;
    border: none;
    border-radius: 0;
    background: none;
    padding: 6px 0;
    justify-content: center;
    text-align: center;
  }
  .nav-mega-card::after { display: none !important; }
  .nav-mega-card:hover {
    border-color: transparent;
    transform: none;
  }
  .nav-mega-card-img { display: none; }
  .nav-mega-card-text { padding: 0; text-align: center; }
  .nav-mega-card-text .nav-mega-card-label { display: none; }
  .nav-mega-card-text h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(245, 237, 228, 0.5);
    text-transform: none;
    letter-spacing: 0.02em;
  }
  .nav-mega-card-text p { display: none; }
  .nav-mega-card:hover .nav-mega-card-text h4,
  .nav-mega-card:active .nav-mega-card-text h4 {
    color: var(--cream);
  }
  .hamburger { display: flex; }
  .btn-book-nav { display: none; }

  /* Mobile nav bottom: Book Now + socials */
  .nav-mobile-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 237, 228, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  }
  .nav-links.open .nav-mobile-bottom {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
  }
  .nav-mobile-book {
    padding: 12px 32px !important;
    font-size: 1rem !important;
    background: var(--cream) !important;
    color: var(--charcoal) !important;
    border: none !important;
  }
  .nav-mobile-social {
    display: flex;
    gap: 16px;
  }
  .nav-mobile-social a {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(245, 237, 228, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    opacity: 0.6;
    padding: 0;
    font-size: 0;
    text-transform: none;
    letter-spacing: 0;
    transition: opacity 0.3s, border-color 0.3s;
  }
  .nav-mobile-social a:hover { opacity: 1; border-color: var(--peach); }

  /* Hero */
  .hero-content h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-logo { width: 48px; margin-bottom: 24px; }

  /* Journey */
  .journey-header { margin-bottom: 40px; }

  /* Fleet */
  /* Fleet carousel handled in its own media query */

  /* Testimonials */
  .testimonial-wrap { min-height: 280px; }

  /* CTA */
  .cta-section { padding: var(--section-pad-sm) 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Contact mobile */
  .contact-split { grid-template-columns: 1fr; }
  .contact-split-left { padding: 48px 20px; }
  .contact-split-right { min-height: 300px; position: relative; }
  .contact-form-row { grid-template-columns: 1fr; gap: 16px; }

  /* Fleet page mobile */
  .fleet-detail-card,
  .fleet-detail-card--reverse { grid-template-columns: 1fr; direction: ltr; }
  .fleet-detail-img { min-height: 200px; padding: 20px; }
  .fleet-detail-img img { max-height: 200px; }
  .fleet-detail-info { padding: 24px 20px; }
  .fleet-detail-name { font-size: 1.5rem; }
  .fleet-detail-specs { gap: 12px; }
  .fleet-line-heading { font-size: 1.5rem; }
  .fleet-line-intro { margin-bottom: 36px; }
  .fleet-line-desc { font-size: 0.95rem; }

  /* Safari mobile */
  .safari-hero { height: 55vh; min-height: 380px; padding-top: var(--nav-height); }
  .safari-hero .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .safari-overview { margin-bottom: 32px; padding: 0 16px; }
  .safari-overview-card {
    flex-wrap: wrap;
    padding: 24px 20px;
    gap: 20px;
    width: 95%;
  }
  .safari-stat { flex: 0 0 calc(50% - 10px); }
  .safari-stat-divider { display: none; }
  .safari-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .safari-step { max-width: 100%; padding: 0; }
  .safari-step-line {
    width: 1px;
    height: 32px;
    margin: 16px auto;
  }
  .safari-routes-grid { grid-template-columns: 1fr; gap: 20px; }
  .safari-route-img { height: 200px; }
  .included-cards { gap: 12px; }
  .included-card { flex: 0 0 calc(50% - 6px); }
  .included-info-items { gap: 8px; font-size: 0.8rem; }
  .gallery-carousel { margin-top: 32px; }
  .gallery-slide { flex: 0 0 85%; }
  .gallery-arrow { display: none; }
  .gallery-slide img { height: 260px; }
}

/* ============================================
   RESPONSIVE — TABLET (1024px)
   Additional fixes
   ============================================ */
@media (max-width: 1024px) {
  /* Destination grid gets tighter */
  .dest-grid { gap: 40px; }
  .dest-image { height: 320px; }
  .dest-name { font-size: 2rem; }

  /* Fleet carousel slightly smaller */
  .fleet-carousel-wrap { height: 460px; }
  .fleet-carousel-item { width: 360px; }
}

/* ============================================
   RESPONSIVE — MOBILE (768px)
   Additional fixes
   ============================================ */
@media (max-width: 768px) {
  /* Prevent any horizontal overflow globally */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Loader — scale down for mobile */
  .loader-logo-wrap { width: 56px; }

  /* Custom cursor — hide on touch devices */
  .cursor { display: none; }

  /* Back-to-top — position to avoid overlap with lang switcher */
  .back-to-top {
    bottom: 24px;
    right: 16px;
  }

  /* Marquee — reduce padding for mobile */
  .marquee-strip { padding: 12px 0; }
  .marquee-item { padding: 0 16px; }

  /* Hero sub-page — value and label sizing for stat cards */

  /* Safari overview — ensure stat values don't overflow */
  .safari-stat-value { font-size: 1.05rem; }
  .safari-stat-label { font-size: 0.65rem; }

  /* Included cards — ensure proper wrapping */
  .included-card h4 { font-size: 0.78rem; }

  /* Gallery — mobile swipe-friendly */
  .gallery-carousel { padding: 0; }
  .gallery-dots { margin-top: 16px; }

  /* Gallery dots — ensure 44px touch target */
  .gallery-dot {
    position: relative;
    width: 10px;
    height: 10px;
  }
  .gallery-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
  }

  /* Testimonial dots — ensure 44px touch target */
  .testimonial-dot {
    position: relative;
  }
  .testimonial-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
  }

  /* Lightbox — mobile friendly */
  .lightbox-arrow { display: none; }
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lightbox-img-wrap {
    max-width: 95vw;
    max-height: 80vh;
    padding: 0 8px;
  }
  .lightbox-counter { bottom: 16px; }

  /* Section label & subtitle spacing */
  .section-subtitle { font-size: 0.95rem; }

  /* Destinations intro section — less top padding on mobile */
  .dest-intro { padding: 60px 0 32px; }
  .dest-desc { font-size: 0.88rem; }

  /* Tour pills wrapping on mobile */
  .dest-tours { gap: 8px; }
  .dest-tour-pill { font-size: 0.7rem; padding: 5px 12px; }

  /* Fleet page mobile — ensure feature pills wrap nicely */
  .fleet-detail-features { gap: 6px; }
  .fleet-detail-pill { font-size: 0.7rem; padding: 5px 12px; }

  /* Fleet page — specs should wrap to 2 columns on mobile */
  .fleet-detail-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Contact form — full width inputs */
  .contact-form-group input,
  .contact-form-group textarea {
    width: 100%;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* Footer — newsletter form usable */
  .footer-newsletter-form input { font-size: 16px; /* Prevents iOS zoom */ }
  .footer-newsletter-form button {
    padding: 12px 16px;
    min-width: 60px;
    min-height: 44px;
  }

  /* Footer social — ensure 44px touch targets */
  .footer-social a {
    width: 44px;
    height: 44px;
  }

  /* Footer links — ensure readable and tappable */
  .footer-col a {
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .footer-bottom-links a {
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Contact info items — ensure tappable */
  .contact-info-item {
    min-height: 44px;
    padding: 8px 0;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content .hero-sub { font-size: 0.9rem; }
  .section-title { font-size: 1.8rem; }
  .nav-links a { font-size: 1.4rem; }
  .nav-mega-label { font-size: 1.4rem !important; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Container padding for small screens */
  .container { padding: 0 16px; }
  .navbar .nav-inner { padding: 0 16px; }

  /* Hero — appropriate height */
  .hero { min-height: 500px; }
  .safari-hero { height: 45vh; min-height: 320px; }
  .safari-hero .hero-content h1 { font-size: 1.8rem; }
  .safari-hero .hero-sub { font-size: 0.95rem; }

  /* Experience columns — slightly shorter */
  .exp-col { height: 240px; }
  .exp-col-content { padding: 20px 16px; }
  .exp-col-num { font-size: 2rem; }
  .exp-col-title { font-size: 1.2rem; }
  .exp-col-desc { font-size: 0.75rem; }

  /* Journey — tighter on small */
  .journey { padding: 0 16px; }
  .journey-line { left: 16px; }
  .journey-stop .journey-img,
  .journey-stop:nth-child(odd) .journey-img,
  .journey-stop:nth-child(even) .journey-img { height: 160px; }
  .journey-text h3 { font-size: 1.3rem; }
  .journey-text p { font-size: 0.82rem; }

  /* Fleet carousel — even smaller */
  .fleet-carousel-wrap { height: 360px; }
  .fleet-carousel-item { width: 240px; }
  .fleet-carousel-body { padding: 16px; }
  .fleet-carousel-name { font-size: 1.2rem; }
  .fleet-carousel-specs { font-size: 0.75rem; }
  .fleet-carousel-btn { width: 44px; height: 44px; }

  /* Testimonials — ensure enough height for longer testimonials */
  .testimonial-wrap { min-height: 320px; }
  .testimonial-text { font-size: 1rem; }
  .testimonial-quote-mark { font-size: 3.5rem; }

  /* Safari overview card — stack to single column at smallest sizes */
  .safari-overview-card {
    padding: 20px 16px;
    gap: 16px;
    width: 100%;
  }
  .safari-stat { flex: 0 0 calc(50% - 8px); }
  .safari-stat-value { font-size: 0.95rem; }

  /* Safari steps — tighter */
  .safari-step-num { font-size: 2.2rem; }
  .safari-step h3 { font-size: 1rem; }
  .safari-step p { font-size: 0.78rem; }

  /* Route cards */
  .safari-route-img { height: 180px; }
  .safari-route-body { padding: 20px 16px; }
  .safari-route-body h3 { font-size: 1.3rem; }
  .safari-route-body p { font-size: 0.8rem; }

  /* Included cards — still 2 per row but smaller */
  .included-card {
    flex: 0 0 calc(50% - 6px);
    padding: 20px 12px;
  }
  .included-card h4 { font-size: 0.72rem; }
  .included-card-icon { width: 40px; height: 40px; margin-bottom: 12px; }

  /* Gallery — full width on small mobile */
  .gallery-slide { flex: 0 0 92%; }
  .gallery-slide img { height: 220px; }

  /* Destinations page — smaller elements */
  .dest-image { height: 220px; }
  .dest-name { font-size: 1.5rem; }
  .dest-desc { font-size: 0.82rem; }
  .dest-tag { font-size: 0.65rem; padding: 4px 10px; }
  .dest-distance { font-size: 0.7rem; }
  .dest-section { padding: 36px 0; }

  /* Fleet page mobile — stacked cards */
  .fleet-detail-img { min-height: 160px; padding: 16px; }
  .fleet-detail-img img { max-height: 160px; }
  .fleet-detail-info { padding: 20px 16px; }
  .fleet-detail-name { font-size: 1.3rem; }
  .fleet-detail-desc { font-size: 0.85rem; }
  .fleet-line-section { padding: 48px 0; }
  .fleet-line-heading { font-size: 1.3rem; }
  .fleet-line-desc { font-size: 0.88rem; }
  .fleet-line-intro { margin-bottom: 28px; }

  /* Contact page — smaller padding */
  .contact-split-left { padding: 36px 16px; }
  .contact-heading { font-size: 1.8rem; }
  .contact-subtitle { font-size: 0.92rem; margin-bottom: 28px; }
  .contact-split-right { min-height: 260px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-brand img { height: 44px; }
  .footer-brand p { font-size: 0.82rem; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-newsletter p { font-size: 0.8rem; }
  .footer-bottom { margin-top: 36px; padding: 20px 0; }
  .footer-bottom p { font-size: 0.72rem; }
  .footer-bottom-links a { font-size: 0.72rem; }

  /* Section divider */
  .section-label { font-size: 0.7rem; margin-bottom: 12px; }
  .section-subtitle { font-size: 0.88rem; }

  /* Back-to-top — ensure not overlapping lang switcher */
  .back-to-top { bottom: 20px; right: 12px; }

  /* Language switcher on small mobile */
  .lang-float { left: 8px; bottom: 20px; }
}

/* Extra small mobile (375px and below) */
@media (max-width: 375px) {
  .container { padding: 0 12px; }
  .navbar .nav-inner { padding: 0 12px; }

  .hero-content h1 { font-size: 1.6rem; }
  .hero-content .hero-sub { font-size: 0.85rem; margin-bottom: 28px; }
  .section-title { font-size: 1.5rem; }
  .nav-links a { font-size: 1.2rem; padding: 12px 0; }
  .nav-mega-label { font-size: 1.2rem !important; padding: 12px 0 !important; }

  /* Safari overview — stack to 1 column */
  .safari-overview-card { padding: 16px 12px; }
  .safari-stat { flex: 0 0 calc(50% - 8px); }
  .safari-stat-value { font-size: 0.88rem; }
  .safari-stat-icon svg { width: 20px; height: 20px; }

  /* Experience columns — even shorter */
  .exp-col { height: 210px; }

  /* Included cards — single column on very small */
  .included-card { flex: 0 0 100%; }

  /* Gallery */
  .gallery-slide { flex: 0 0 96%; }
  .gallery-slide img { height: 190px; }

  /* Fleet carousel */
  .fleet-carousel-wrap { height: 320px; }
  .fleet-carousel-item { width: 220px; }

  /* Testimonials */
  .testimonial-wrap { min-height: 350px; }
  .testimonial-text { font-size: 0.92rem; }

  /* Buttons — ensure full width */
  .btn { padding: 12px 24px; font-size: 0.82rem; }
  .cta-buttons .btn { max-width: 100%; }

  /* Contact form */
  .contact-form-submit .btn { width: 100%; justify-content: center; }

  /* Footer newsletter */
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form input {
    border-right: 1px solid rgba(245,237,228,0.12);
    border-radius: 4px;
    margin-bottom: 8px;
  }
  .footer-newsletter-form button {
    border-radius: 4px;
    width: 100%;
  }

  /* Destinations */
  .dest-image { height: 190px; }
  .dest-name { font-size: 1.3rem; }
  .dest-grid { gap: 24px; }

  /* Fleet detail specs — single column on very small */
  .fleet-detail-specs {
    grid-template-columns: 1fr;
  }
}
