/* ═══════════════════════════════════════════════════════════
   QARIBIA — Premium Kenya Travel
   CSS Design System
   ══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  /* Brand Palette — Vibrant Luxury Kenya */
  --gold: #C8963E;
  --gold-light: #E8B96A;
  --gold-dark: #9A6E22;
  --amber: #E07B39;
  --amber-light: #F5A76C;
  --deep-green: #1A3A2E;
  --forest: #2D5A42;
  --sage: #6B8F71;
  --teal: #1B6B72;
  --teal-light: #2A9BA5;
  --midnight: #0D1B2A;
  --charcoal: #1C2536;
  --slate: #2E3B4E;
  --warm-white: #FAF8F3;
  --cream: #F5F0E8;
  --text-primary: #1C2536;
  --text-muted: #6B7280;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-subtle: rgba(255, 255, 255, 0.55);

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.30);

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --max-w: 1380px;
  --section-py: 100px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --trans-base: 0.3s var(--ease-smooth);
}

/* ── Custom Cursor ──────────────────────────────────────── */
body {
  cursor: none;
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 150, 62, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.cursor-hover .cursor-dot {
  opacity: 0;
}

.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(200, 150, 62, 0.1);
  border-color: var(--gold);
  backdrop-filter: blur(2px);
}

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

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

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ── Typography Classes ──────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-eyebrow--light {
  color: var(--gold-light);
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* Editorial Lora Typography Overrides */
.section-title em,
.hero__headline em,
.cta-banner__title em {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 1.15em;
  font-style: italic;
}

.section-title em {
  color: var(--gold);
}

.hero__headline em {
  font-family: 'Lora', serif;
  background: linear-gradient(135deg, var(--gold-light), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner__title em {
  color: var(--gold-light);
}

.testi-card__quote i {
  font-family: 'Lora', serif;
}


.section-title--light {
  color: #fff;
}

.section-title--light em {
  color: var(--gold-light);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.section-sub--light {
  color: var(--text-light);
  max-width: 520px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.dot--amber {
  background: var(--amber);
}

.dot--gold {
  background: var(--gold);
}

.link-arrow {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--trans-base);
}

.link-arrow:hover {
  gap: 14px;
}

.link-arrow i {
  font-size: 0.8rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--trans-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.40);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 150, 62, 0.55);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn--dark {
  background: var(--charcoal);
  color: #fff;
}

.btn--dark:hover {
  background: var(--midnight);
  transform: translateY(-2px);
}

.btn--outline-dark {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}

.btn--outline-dark:hover {
  background: var(--charcoal);
  color: #fff;
}

.btn--outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn--full {
  width: 100%;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--trans-base), padding var(--trans-base), box-shadow var(--trans-base);
}

.nav.scrolled {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Logo image replacement */
.nav__logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 36px;
  flex: 1;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--trans-base);
  letter-spacing: 0.01em;
}

.nav__links a:hover {
  color: var(--gold-light);
}

.nav__links a.nav__link--active {
  color: var(--gold-light);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__btn {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 5px;
  transition: all var(--trans-base);
}

.nav__btn--ghost {
  color: rgba(255, 255, 255, 0.8);
}

.nav__btn--ghost:hover {
  color: #fff;
}

.nav__btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #fff;
}

.nav__btn--primary:hover {
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.5);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--trans-base);
}

/* Mobile Nav */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--midnight);
  z-index: 999;
  padding: 80px 40px 40px;
  transition: right 0.4s var(--ease-smooth);
}

.nav__mobile.open {
  right: 0;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav__mobile ul a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color var(--trans-base);
}

.nav__mobile ul a:hover {
  color: var(--gold-light);
}

.btn-primary-mobile {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════
   HERO & TEXTURES
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Organic Noise Texture Overlay */
.hero::after,
.cta-banner::after,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Video / Image Background */
.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero__video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.12) translateX(-2%);
  }
}

/* Video Placeholder Badge */
.hero__video-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 0.82rem;
  z-index: 5;
}

.hero__video-badge i {
  font-size: 1.6rem;
  color: var(--gold-light);
}

.hero__video-badge small {
  display: block;
  opacity: 0.6;
  font-size: 0.72rem;
  margin-top: 2px;
}

/* Overlays */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(13, 27, 42, 0.88) 0%,
      rgba(13, 27, 42, 0.60) 45%,
      rgba(13, 27, 42, 0.15) 100%);
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 90px;
}

.hero__content-left {
  max-width: 640px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s var(--ease-smooth) forwards;
}

.hero__headline {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.4s var(--ease-smooth) forwards;
}

.hero__subtext {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.55s var(--ease-smooth) forwards;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.7s var(--ease-smooth) forwards;
}

#openSearchPill {
  transition: opacity 0.3s ease;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.85s var(--ease-smooth) forwards;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  display: block;
  font-size: 0.74rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 220px;
  left: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transform: rotate(90deg);
  transform-origin: left center;
  opacity: 0;
  animation: fadeSlideUp 1s 1.2s var(--ease-smooth) forwards;
}

.hero__scroll span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 50px;
  height: 1px;
  background: var(--gold);
  animation: scrollLineAnim 2s 1.5s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════
   GLASSMORPHIC SEARCH BAR (Expandable)
   ══════════════════════════════════════════════════════════ */
.search-bar {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 40px;

  /* Expandable Default States */
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: bottom center;
}

.search-bar.is-expanded {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.search-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto 16px;
  color: #fff;
  padding: 0 40px;
}

.search-bar__header h4 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--gold-light);
}

.search-bar__close {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: color var(--trans-base);
}

.search-bar__close:hover {
  color: #fff;
}

.search-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;

  /* Refined Ultra-thin Glassmorphism */
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  border-radius: 14px;
  padding: 10px 10px 10px 28px;
  display: flex;
  align-items: center;
  gap: 0;
}

.search-field {
  flex: 1;
  padding: 10px 16px;
  position: relative;
  min-width: 0;
}

.search-field__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.search-field__label i {
  font-size: 0.7rem;
}

.search-field__control {
  position: relative;
}

.search-field__control--dates {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  caret-color: var(--gold-light);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-input--date {
  width: auto;
  color-scheme: dark;
  cursor: pointer;
  font-size: 0.88rem;
}

.search-input--date::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}

.date-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Destination Dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  right: -16px;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.search-dropdown.active {
  display: block;
}

.search-dropdown__item {
  padding: 13px 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background var(--trans-base), color var(--trans-base);
}

.search-dropdown__item:hover {
  background: rgba(200, 150, 62, 0.15);
  color: var(--gold-light);
}

.search-dropdown__item i {
  font-size: 0.8rem;
  color: var(--gold);
}

/* Traveller Dropdown */
.traveller-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

.traveller-control #travellerChevron {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform var(--trans-base);
  flex-shrink: 0;
}

.traveller-control.open #travellerChevron {
  transform: rotate(180deg);
}

.traveller-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  right: -16px;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 16px 20px 12px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 20;
  min-width: 280px;
}

.traveller-dropdown.active {
  display: flex;
}

.traveller-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.traveller-row__type {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  display: block;
}

.traveller-row__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 2px;
}

.traveller-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-base);
  line-height: 1;
}

.counter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 150, 62, 0.12);
}

.counter-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  min-width: 22px;
  text-align: center;
}

.traveller-done {
  margin-top: 4px;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans-base);
}

.traveller-done:hover {
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.45);
}

/* Search Divider */
.search-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Search Button */
.search-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #fff;
  padding: 18px 32px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: all var(--trans-base);
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.4);
  letter-spacing: 0.02em;
  margin-left: 8px;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 150, 62, 0.55);
}

.search-btn i {
  font-size: 0.95rem;
}


/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
  padding: 0 20px;
}

.trust-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

.trust-flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.trust-sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   DESTINATIONS
   ══════════════════════════════════════════════════════════ */
.destinations {
  padding: var(--section-py) 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.destinations__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}

.destinations__header-left {
  max-width: 560px;
}

.destinations__header-right {
  flex-shrink: 0;
  padding-bottom: 4px;
}

/* Grid */
.destinations__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: 520px;
  gap: 18px;
}

/* Destination Cards */
.dest-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
  background: var(--slate);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.dest-card__img-wrap {
  position: absolute;
  inset: 0;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.dest-card:hover .dest-card__img {
  transform: scale(1.08);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 20, 30, 0.92) 0%,
      rgba(10, 20, 30, 0.50) 40%,
      rgba(10, 20, 30, 0.12) 80%,
      transparent 100%);
  transition: background 0.8s ease;
}

.dest-card:hover .dest-card__overlay {
  background: linear-gradient(to top,
      rgba(10, 20, 30, 0.98) 0%,
      rgba(10, 20, 30, 0.60) 40%,
      rgba(10, 20, 30, 0.2) 80%,
      transparent 100%);
}

.dest-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.dest-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--amber);
  color: #fff;
  margin-bottom: 12px;
}

.dest-card__badge--teal {
  background: var(--teal-light);
}

.dest-card__badge--gold {
  background: var(--gold-dark);
}

.dest-card__badge--blue {
  background: #1a7abf;
}

.dest-card__title {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dest-card--large .dest-card__title {
  font-size: 2.2rem;
}

.dest-card__region {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.dest-card__region i {
  font-size: 0.65rem;
  color: var(--gold);
}

.dest-card__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: none;
}

.dest-card--large .dest-card__desc,
.dest-card:hover .dest-card__desc {
  display: block;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 18px;
}

.dest-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-card__price {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.dest-card__price strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.dest-card__link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans-base);
}

.dest-card__link:hover {
  gap: 10px;
}


/* ═══════════════════════════════════════════════════════════
   EXPERIENCES
   ══════════════════════════════════════════════════════════ */
.experiences {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.experiences__bg {
  position: absolute;
  inset: 0;
}

.experiences__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.experiences__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(13, 27, 42, 0.95) 0%,
      rgba(13, 27, 42, 0.80) 45%,
      rgba(13, 27, 42, 0.50) 100%);
}

.experiences__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.experiences__left {}

.experiences__left .btn {
  margin-top: 36px;
}

/* Experience Cards */
.experiences__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.exp-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all var(--trans-base);
}

.exp-card:hover {
  background: rgba(200, 150, 62, 0.12);
  border-color: rgba(200, 150, 62, 0.35);
  transform: translateY(-4px);
}

.exp-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.exp-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.exp-card__text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.6;
  margin-bottom: 18px;
}

.exp-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  background: rgba(200, 150, 62, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
}


/* ═══════════════════════════════════════════════════════════
   WILDLIFE — Split Layout
   ══════════════════════════════════════════════════════════ */
.wildlife {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.wildlife__image-col {
  position: relative;
  overflow: hidden;
}

.wildlife__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.wildlife__image-col:hover .wildlife__img {
  transform: scale(1.04);
}

.wildlife__img-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.wildlife__img-badge i {
  font-size: 1.5rem;
  color: var(--gold);
}

.wildlife__img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.wildlife__img-badge span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.wildlife__content-col {
  padding: 80px 70px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wildlife__animals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.animal-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all var(--trans-base);
}

.animal-tag:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.animal-tag i {
  font-size: 0.72rem;
  color: var(--gold);
  transition: color var(--trans-base);
}

.animal-tag:hover i {
  color: #fff;
}

.wildlife__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--warm-white);
  overflow: hidden;
}

.testimonials__header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 50px;
}

.testimonials__track-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(4, calc(33.333% - 12px));
  gap: 18px;
  transition: transform 0.5s var(--ease-smooth);
  overflow: hidden;
}

.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all var(--trans-base);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.testi-card__quote i {
  font-size: 1.8rem;
  color: var(--gold-light);
  opacity: 0.6;
}

.testi-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 18px;
}

.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-green), var(--teal));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.testi-card__author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testi-card__author span {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testi-card__stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Testimonial Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 36px;
}

.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: all var(--trans-base);
  cursor: pointer;
}

.testi-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all var(--trans-base);
}

.testi-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}


/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(130deg, var(--midnight) 0%, var(--deep-green) 60%, var(--forest) 100%);
  padding: var(--section-py) 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-banner__left {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: calc((100vw - var(--max-w)) / 2);
  padding-left: max(40px, calc((100vw - var(--max-w)) / 2));
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA Form Card */
.cta-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px 36px;
  max-width: 440px;
}

.cta-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-card__sub {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-card__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color var(--trans-base);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-input:focus {
  border-color: rgba(200, 150, 62, 0.6);
}

.cta-card__privacy {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.cta-card__privacy i {
  color: var(--sage);
}

.cta-banner__right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: max(40px, calc((100vw - var(--max-w)) / 2));
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.footer__top {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 70px 40px 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer__logo {
  margin-bottom: 18px;
}

.footer__tagline {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: all var(--trans-base);
}

.footer__socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer__col h5 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a,
.footer__col ul li {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--trans-base);
}

.footer__col ul li a:hover {
  color: var(--gold-light);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__awards {
  margin-top: 20px;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(200, 150, 62, 0.12);
  border: 1px solid rgba(200, 150, 62, 0.25);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
}

.award-badge i {
  color: var(--gold);
}

.footer__bottom {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--trans-base);
}

.footer__links a:hover {
  color: var(--gold-light);
}


/* ═══════════════════════════════════════════════════════════
   SEARCH TOAST NOTIFICATION
   ══════════════════════════════════════════════════════════ */
.search-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--charcoal);
  color: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s var(--ease-spring);
}

.search-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.search-toast i {
  color: var(--gold);
  font-size: 1.1rem;
}


/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Centered Loading Overlay */
/* ═══════════════════════════════════════════════════════════
   PREMIUM LOADING OVERLAY (REFINED)
   ══════════════════════════════════════════════════════════ */
#centered-feedback {
  position: fixed;
  inset: 0;
  /* Translucent midnight blue with a heavy blur lets the site peek through */
  background: rgba(13, 27, 42, 0.65); 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  opacity: 0;
  animation: overlayFadeIn 0.4s ease-out forwards;
}

.feedback-content {
  /* Ultra-thin glassmorphism */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 3rem 4.5rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Soft outer shadow + sharp inner highlight to mimic glass edges */
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
  min-width: 340px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: cardFloatUp 0.6s 0.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.feedback-content i {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  /* Adds a subtle glowing aura to your spinning icon */
  filter: drop-shadow(0 0 12px rgba(200, 150, 62, 0.4));
  display: inline-block;
}

.feedback-content p {
  margin: 0;
  font-family: var(--font-heading); /* Sora looks much sleeker here */
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}

/* Animations */
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cardFloatUp {
  from { 
    opacity: 0; 
    transform: translateY(20px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  :root {
    --max-w: 1180px;
  }

  .nav__inner {
    padding: 20px 32px;
  }

  .destinations__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 520px;
  }

  .destinations__grid .dest-card:last-child {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-py: 70px;
  }

  .destinations__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 380px;
  }

  .destinations__grid .dest-card:last-child {
    display: block;
  }

  .dest-card--large {
    grid-column: span 2;
  }

  .experiences__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wildlife {
    grid-template-columns: 1fr;
  }

  .wildlife__image-col {
    height: 420px;
  }

  .wildlife__content-col {
    padding: 60px 40px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-banner__left {
    padding-left: 40px;
  }

  .cta-banner__right {
    padding-right: 40px;
    justify-content: flex-start;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: span 3;
  }

  .testimonials__track {
    grid-template-columns: repeat(4, 50%);
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
  }

  /* Disable custom cursor on mobile */
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner {
    gap: 0;
    padding: 18px 24px;
  }

  .hero__content {
    padding: 0 24px;
    padding-top: 80px;
  }

  .hero__scroll {
    display: none;
  }

  .search-bar {
    position: relative;
    padding: 20px 24px 0;
    bottom: auto;

    /* Override expandable for mobile to keep layout natural */
    opacity: 1;
    pointer-events: all;
    transform: none;
    display: none;
    /* Hide on mobile by default to let pill take over */
  }

  .search-bar.is-expanded {
    display: block;
    /* Show when pill is clicked */
  }

  .search-bar__inner {
    flex-direction: column;
    padding: 20px;
    border-radius: 14px;
    gap: 6px;
    background: rgba(13, 27, 42, 0.92);
    margin-top: -70px;
    position: relative;
    z-index: 10;
  }

  .search-bar__header {
    padding: 0 10px;
    margin-bottom: 24px;
  }

  .search-field {
    padding: 12px 0;
  }

  .search-divider {
    width: 100%;
    height: 1px;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding: 16px;
    margin-top: 6px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 40px;
  }

  .hero__overlay {
    background: linear-gradient(to bottom,
        rgba(13, 27, 42, 0.7) 0%,
        rgba(13, 27, 42, 0.55) 60%,
        rgba(13, 27, 42, 0.85) 100%);
  }

  .trust-bar__inner {
    gap: 0;
    flex-wrap: wrap;
    padding: 16px 24px;
  }

  .trust-item {
    flex: none;
    width: 50%;
    justify-content: flex-start;
    padding: 8px 12px;
  }

  .trust-sep {
    display: none;
  }

  .destinations {
    padding: var(--section-py) 24px;
  }

  .destinations__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .destinations__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dest-card {
    height: 360px;
  }

  .dest-card--large {
    height: 440px;
    grid-column: span 1;
  }

  .dest-card__desc {
    max-height: 80px;
  }

  .experiences__content {
    padding: var(--section-py) 24px;
  }

  .experiences__cards {
    grid-template-columns: 1fr;
  }

  .wildlife__content-col {
    padding: 48px 24px;
  }

  .testimonials {
    padding: var(--section-py) 0;
  }

  .testimonials__header {
    padding: 0 24px;
  }

  .testimonials__track-wrapper {
    padding: 0 24px;
  }

  .testimonials__track {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: var(--section-py) 24px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-banner__left {
    padding-left: 0;
  }

  .cta-banner__right {
    padding-right: 0;
  }

  .cta-card {
    max-width: 100%;
  }

  .footer__top {
    padding: 50px 24px 36px;
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }

  .footer__bottom {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .destinations__grid {
    gap: 14px;
  }

  .trust-item {
    width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }
}