/* ============================================================
   ISLAND ADVENTURES MEXICO — Design System & Landing Page
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --navy:         #0D1B45;
  --navy-dark:    #07122E;
  --navy-deeper:  #040e1f;
  --teal:         #1A8A96;
  --teal-bright:  #4DC8D2;
  --teal-glow:    rgba(77, 200, 210, 0.15);
  --gold:         #E0B820;
  --gold-bright:  #F0C040;
  --gold-glow:    rgba(240, 192, 64, 0.15);
  --white:        #FFFFFF;
  --white-80:     rgba(255,255,255,0.80);
  --white-60:     rgba(255,255,255,0.60);
  --white-20:     rgba(255,255,255,0.20);
  --white-10:     rgba(255,255,255,0.10);
  --white-06:     rgba(255,255,255,0.06);
  --glass-bg:     rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);

  --font-display: 'Oswald', sans-serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Barlow', sans-serif;
  --font-label:   'Barlow Condensed', sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill: 100px;

  --shadow-card: 0 8px 32px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  --shadow-hover: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--teal-bright);

  --transition-fast:   0.2s ease;
  --transition-medium: 0.35s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-deeper);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography helpers --- */
.label-pill {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.label-teal {
  color: var(--teal-bright);
  border: 1px solid rgba(77, 200, 210, 0.4);
  background: rgba(77, 200, 210, 0.08);
}
.label-gold {
  color: var(--gold-bright);
  border: 1px solid rgba(240, 192, 64, 0.4);
  background: rgba(240, 192, 64, 0.08);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bright);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 192, 64, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--white-20);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}
.btn-secondary:hover {
  border-color: var(--white-60);
  background: var(--white-06);
  transform: translateY(-2px);
}

.btn-hero { font-size: 16px; padding: 16px 32px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Glass card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

/* --- Section headers --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

/* --- Scroll animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}
.nav.scrolled {
  background: rgba(7, 18, 46, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-family: var(--font-script);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-book-btn {
  color: var(--teal-bright) !important;
  border: 1.5px solid var(--teal-bright);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), color var(--transition-fast) !important;
}
.nav-book-btn:hover {
  background: var(--teal-bright) !important;
  color: var(--navy-dark) !important;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-40, rgba(255,255,255,0.4));
  transition: color var(--transition-fast);
  padding: 2px 4px;
}
.lang-btn.active { color: var(--teal-bright); }
.lang-btn:hover { color: var(--white-80); }
.lang-sep { color: var(--white-20); font-size: 11px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-medium), opacity var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Self-contained card that drops under the nav, rather than a full-height
   side panel — there are only a few destinations, so a floating menu reads
   lighter and keeps the page visible behind it. */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  background: rgba(7, 18, 46, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  padding: 10px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-12px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-medium);
}
.mobile-drawer.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links > li:not(.mobile-lang) a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white-80);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--white-06);
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.mobile-nav-links > li:not(.mobile-lang) a:hover,
.mobile-nav-links > li:not(.mobile-lang) a:active {
  background: rgba(77, 200, 210, 0.12);
  border-color: rgba(77, 200, 210, 0.35);
  color: var(--white);
}
/* Primary action stands out from the plain destinations */
.mobile-nav-links > li:not(.mobile-lang) a.nav-book-btn {
  background: var(--teal-bright) !important;
  color: var(--navy-dark) !important;
  border-color: var(--teal-bright) !important;
  justify-content: center;
}
.mobile-lang {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--glass-border);
}
.mobile-lang .lang-btn { font-size: 14px; padding: 4px 10px; }

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 14, 31, 0.55);
  backdrop-filter: blur(2px);
  z-index: 998;
}
.drawer-overlay.open { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(160deg, rgba(4,14,31,0.80) 0%, rgba(7,18,46,0.55) 50%, rgba(13,27,69,0.20) 100%),
    url('../img/hero.webp') center/cover no-repeat;
  overflow: hidden;
}

/* SVG animated whale background */
.hero-svg-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.whale-bg-svg {
  position: absolute;
  right: -5%;
  bottom: 10%;
  width: 70%;
  max-width: 900px;
  opacity: 1;
}
.whale-drift {
  animation: whaleDrift 30s ease-in-out infinite alternate;
  transform-origin: center;
}
.fish-group {
  animation: fishFloat 20s ease-in-out infinite alternate;
}
.fish-group-2 {
  animation: fishFloat2 25s ease-in-out infinite alternate;
}

@keyframes whaleDrift {
  from { transform: translate(0, 0) rotate(-3deg) scale(1); }
  to   { transform: translate(-60px, -40px) rotate(2deg) scale(1.05); }
}
@keyframes fishFloat {
  from { transform: translate(0, 0); }
  to   { transform: translate(30px, -20px); }
}
@keyframes fishFloat2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-20px, 15px); }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 40px 10%;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  border: 1px solid rgba(77, 200, 210, 0.35);
  background: rgba(77, 200, 210, 0.08);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  width: fit-content;
}
.season-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(56px, 7.5vw, 92px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-line1 { color: var(--white); }
.hero-line2 {
  background: linear-gradient(90deg, var(--teal-bright), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--white-60);
  margin-bottom: 28px;
  font-weight: 400;
}

/* Countdown */
.hero-countdown {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 32px;
  max-width: 440px;
}
.countdown-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 10px;
}
.countdown-time {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-bright);
  letter-spacing: 0.04em;
}
.season-progress { display: flex; flex-direction: column; gap: 6px; }
.season-bar {
  height: 4px;
  background: var(--white-10);
  border-radius: 4px;
  overflow: hidden;
}
.season-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  border-radius: 4px;
  transition: width 1s ease;
}
.season-pct {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--white-40, rgba(255,255,255,0.4));
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  background: rgba(4, 14, 31, 0.9);
  border-top: 1px solid var(--glass-border);
  padding: 16px 0;
}
.stats-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.stat-item {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-80);
}
.stat-sep { color: var(--teal-bright); font-weight: 700; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 22px 0;
  border-bottom: 1px solid var(--glass-border);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-80);
}

/* ============================================================
   HERO PARTNER PERKS PANEL
   ============================================================ */
@keyframes perkPanelIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes perkGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
.hero-perks {
  position: absolute;
  right: clamp(20px, 4vw, 52px);
  bottom: 88px;
  z-index: 4;
  pointer-events: none;
  width: clamp(260px, 28vw, 320px);
}
.perks-panel {
  background: rgba(4, 14, 31, 0.84);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(240,192,64,0.22);
  border-top: 2px solid var(--gold-bright);
  border-radius: 18px;
  padding: 20px 22px 22px;
  pointer-events: all;
  opacity: 0;
  animation: perkPanelIn 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) 1.3s forwards;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(240,192,64,0.08);
}
.perks-panel-header {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-bright);
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: perkGlow 2.5s ease-in-out 2.2s infinite;
}
.perks-panel-header svg { flex-shrink: 0; }
.perks-panel-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: var(--white-60);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.perk-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-row--coffee .perk-icon {
  background: rgba(77,200,210,0.12);
  color: var(--teal-bright);
  border: 1px solid rgba(77,200,210,0.20);
}
.perk-row--pickup .perk-icon {
  background: rgba(240,192,64,0.10);
  color: var(--gold-bright);
  border: 1px solid rgba(240,192,64,0.20);
}
.perk-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}
.perk-title {
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}
.perk-sub {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--white-60);
  line-height: 1.45;
}
@media (max-width: 960px) {
  .hero-perks { display: none; }
}

/* ============================================================
   WHALE SHARK FEATURED SECTION
   ============================================================ */
.whale-shark-section {
  position: relative;
  background:
    linear-gradient(180deg, var(--navy-dark) 0%, rgba(7,18,46,0.88) 100%),
    url('../img/whale-shark.webp') center/cover no-repeat;
  padding: 80px 0 80px;
  overflow: hidden;
}
.wave-divider-top, .wave-divider-bottom {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
  overflow: hidden;
}
.wave-divider-top  { top: -1px; }
.wave-divider-bottom { bottom: -1px; }
.wave-divider-top svg, .wave-divider-bottom svg {
  display: block;
  width: 100%;
  height: auto;
}

.ws-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}
.ws-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.ws-desc {
  font-size: 17px;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 32px;
}
.ws-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.ws-feature-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
}
.feature-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40, rgba(255,255,255,0.4));
  margin-top: 4px;
}
.feature-val {
  font-family: var(--font-label);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

/* Season timeline */
.season-timeline {
  margin-bottom: 32px;
}
.season-line {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.season-track {
  flex: 1;
  height: 4px;
  background: var(--white-10);
  border-radius: 4px;
  overflow: hidden;
}
.season-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  border-radius: 4px;
}
.season-marker {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  color: var(--white-40, rgba(255,255,255,0.4));
  white-space: nowrap;
}
.season-marker.today { color: var(--teal-bright); }
.season-days-left {
  display: block;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-bright);
  letter-spacing: 0.06em;
  margin-top: 10px;
}

.ws-price-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  color: var(--white-60);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-amount {
  font-family: var(--font-label);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}
.price-per {
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--white-60);
}

/* Booking card sidebar */
.ws-booking-card {
  padding: 28px;
  position: sticky;
  top: 100px;
}
.booking-card-header { margin-bottom: 20px; }
.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseDot 1.5s ease-in-out infinite;
}
.ws-booking-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.departure-list { margin-bottom: 20px; }
.departure-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
}
.departure-item:last-child { border-bottom: none; }
.dep-date {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-80);
}
.dep-spots {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.availability-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ============================================================
   TOURS SECTION
   ============================================================ */
.tours-section {
  background: var(--navy-deeper);
  padding: 100px 0;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.filter-pill {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--glass-border);
  color: var(--white-60);
  background: var(--glass-bg);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-pill:hover {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
}
.filter-pill.active {
  background: var(--teal);
  border-color: var(--teal-bright);
  color: var(--white);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Tour card */
.tour-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  /* Non-overshoot curve: the old spring overshoot amplified the repaint below. */
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
  /* Replaces the grid every filter click; this animation just plays automatically on the new nodes. */
  animation: tourCardIn 0.35s ease both;
}
@keyframes tourCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-bright);
}
.tour-card-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  /* Paint containment keeps the zooming photo clipped by THIS box. Without it
     the card's rounded corners had to re-mask a composited child every frame,
     and the solid bottom of the gradient below flickered as that mask
     regenerated. Fewer layers here is what fixes it — not more. */
  contain: paint;
}
.tour-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-photo img { transform: scale(1.06); }
.tour-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,14,31,0.85) 0%, transparent 60%);
  /* Deliberately NOT promoted to its own layer: painting it together with the
     photo is what keeps it locked to the image. */
}
.tour-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  /* Opaque instead of blur: backdrop-filter re-samples everything behind it
     every frame, and the photo behind IS animating on hover. Visually the
     same badge, without forcing that per-frame work. */
  background: rgba(4,14,31,0.92);
  color: var(--teal-bright);
  border: 1px solid rgba(77, 200, 210, 0.3);
}
.tour-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.tour-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.tour-card-price {
  font-family: var(--font-label);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-bright);
  white-space: nowrap;
  padding-left: 10px;
}
.tour-card-price small {
  font-size: 11px;
  color: var(--white-40, rgba(255,255,255,0.4));
  display: block;
  text-align: right;
  font-weight: 500;
}
.tour-card-tag {
  font-size: 13px;
  color: var(--white-60);
  margin-bottom: 12px;
  line-height: 1.4;
}
.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  color: var(--white-60);
}
.tour-meta-item svg { flex-shrink: 0; }
.tour-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.tour-card-actions .btn-secondary {
  font-size: 12px;
  padding: 9px 16px;
  flex: 1;
}
.tour-card-actions .btn-primary {
  font-size: 12px;
  padding: 9px 16px;
  flex: 1.5;
  justify-content: center;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  position: relative;
  background: var(--navy-dark);
  padding: 100px 0;
  overflow: hidden;
}
.manta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 700px;
  pointer-events: none;
}
.manta-bg svg { width: 100%; height: auto; }

.steps-container { position: relative; }
.steps-path {
  position: absolute;
  top: 80px;
  left: 8%;
  right: 8%;
  height: 120px;
  pointer-events: none;
}
.steps-path svg { width: 100%; height: 100%; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.step-item {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-bg-num {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  color: var(--white-10);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.step-icon {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  align-items: center;
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.step-item p {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: linear-gradient(180deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
  padding: 100px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews-cta {
  text-align: center;
  margin-top: 48px;
}
.reviews-cta p {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--white-60);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.reviews-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.review-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: var(--white-80);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}
.review-platform-btn:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #fff;
}
.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition-spring), box-shadow var(--transition-spring);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.review-origin {
  font-size: 12px;
  color: var(--white-60);
}
.review-date {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--white-40, rgba(255,255,255,0.4));
  text-align: right;
  white-space: nowrap;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-stars span {
  font-size: 14px;
  color: var(--gold-bright);
}
.review-text {
  font-size: 14px;
  color: var(--white-80);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}
.review-tour-pill {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--teal-glow);
  color: var(--teal-bright);
  border: 1px solid rgba(77, 200, 210, 0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--navy-deeper);
  padding: 80px 0 0;
}
.footer-wave { position: static; margin-top: -40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--glass-border);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.65;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--white-60);
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.social-link:hover {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
  background: var(--teal-glow);
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--white-60);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--teal-bright); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--white-60);
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: var(--white-60); transition: color var(--transition-fast); }
.footer-contact a:hover { color: var(--teal-bright); }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--white-40, rgba(255,255,255,0.4));
  letter-spacing: 0.04em;
}
/* Agency credit — doubles as a contact touchpoint for Guentrow */
.guentrow-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white-40, rgba(255,255,255,0.4));
  transition: color var(--transition-fast);
}
.guentrow-credit strong {
  font-weight: 700;
  color: var(--white-60);
  transition: color var(--transition-fast);
}
.guentrow-credit:hover { color: var(--white-60); }
.guentrow-credit:hover strong { color: var(--gold-bright); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 1px solid var(--glass-border);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--teal-glow); }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--navy-dark);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  pointer-events: auto;
  white-space: nowrap;
}
.toast.success { border-color: rgba(34, 197, 94, 0.4); color: #4ade80; }
.toast.error   { border-color: rgba(239, 68, 68, 0.4);  color: #f87171; }
@keyframes toastIn  { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { to   { opacity: 0; transform: translateY(-8px); } }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .ws-grid { grid-template-columns: 1fr; }
  .ws-sidebar { display: none; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-path { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }

  .hero-content { padding: 120px 24px 40px; }
  .hero-title { font-size: clamp(44px, 11vw, 72px); }

  .tours-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .trust-items { gap: 6px 20px; }
  .ws-features { grid-template-columns: 1fr 1fr; }

  .section-header h2 { font-size: 32px; }

  .filter-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-hero { text-align: center; justify-content: center; }
  .hero-title { font-size: 40px; letter-spacing: -1px; }
  .ws-price-cta { flex-direction: column; align-items: flex-start; }

  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; }
}

@media (min-width: 1025px) {
  .ws-grid { grid-template-columns: 1fr 380px; }
}

.tour-card-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #F0C040, #E0B820);
  color: #07122E;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(240, 192, 64, 0.4);
  animation: discount-pulse 2s ease-in-out infinite;
}
.tour-card-price-original {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--white-60, rgba(255,255,255,0.6));
  text-decoration: line-through;
}
@keyframes discount-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============================================================
   WHATSAPP MODAL — editable message before leaving the site
   ============================================================ */
.wa-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(4, 14, 31, 0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wa-modal-overlay.open { display: flex; }
.wa-modal {
  width: 100%;
  max-width: 480px;
  background: var(--navy-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  animation: waModalIn 0.28s ease;
}
@keyframes waModalIn {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.wa-modal-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.wa-modal-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 50%;
  color: #25D366;
}
.wa-modal-head h3 {
  flex: 1;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.wa-modal-close {
  background: none;
  border: none;
  color: var(--white-60);
  cursor: pointer;
  padding: 6px;
  display: flex;
  transition: color var(--transition-fast);
}
.wa-modal-close:hover { color: var(--white); }
.wa-modal-hint {
  font-size: 13px;
  color: var(--white-60);
  margin-bottom: 14px;
  line-height: 1.5;
}
#wa-modal-msg {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  padding: 14px;
  resize: vertical;
  outline: none;
  transition: border-color var(--transition-fast);
}
#wa-modal-msg:focus { border-color: var(--teal-bright); }
.wa-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.wa-modal-cancel {
  background: none;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-pill);
  color: var(--white-60);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.wa-modal-cancel:hover { border-color: var(--white-20); color: var(--white); }
.wa-modal-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  border: none;
  border-radius: var(--radius-pill);
  color: #062818;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wa-modal-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}
@media (max-width: 480px) {
  .wa-modal { padding: 20px; }
  .wa-modal-actions { flex-direction: column-reverse; }
  .wa-modal-actions button { width: 100%; justify-content: center; }
}

/* ============================================================
   BACKGROUND TEXTURE — whale shark spot pattern
   Inline SVG data-URI: no extra request, no image file to upload.
   Sits ABOVE the sections (they each paint their own solid navy, which
   would bury a layer placed behind them) but below nav/modals, and is
   click-through so it never intercepts a tap.
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(77, 200, 210, 0.10) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='%23A8E6EC' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='18' r='4'/%3E%3Ccircle cx='60' cy='10' r='2.4'/%3E%3Ccircle cx='104' cy='24' r='3.4'/%3E%3Ccircle cx='130' cy='54' r='2.2'/%3E%3Ccircle cx='38' cy='48' r='2.8'/%3E%3Ccircle cx='82' cy='44' r='3.8'/%3E%3Ccircle cx='9' cy='66' r='2.6'/%3E%3Ccircle cx='52' cy='78' r='3.4'/%3E%3Ccircle cx='98' cy='72' r='2.3'/%3E%3Ccircle cx='126' cy='96' r='3.1'/%3E%3Ccircle cx='28' cy='100' r='3.6'/%3E%3Ccircle cx='70' cy='110' r='2.7'/%3E%3Ccircle cx='110' cy='126' r='3.2'/%3E%3Ccircle cx='16' cy='130' r='2.4'/%3E%3Ccircle cx='88' cy='136' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
}
/* The nav, floating buttons and modals must stay above the texture layer */
.nav, .mobile-drawer, .drawer-overlay,
.whatsapp-float, .back-to-top, .wa-modal-overlay, .toast-container {
  z-index: 900;
}
.nav { z-index: 1000; }
.mobile-drawer { z-index: 999; }
.drawer-overlay { z-index: 998; }
.wa-modal-overlay { z-index: 6000; }
.toast-container { z-index: 6100; }
