@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* OFFICIAL BRAND PALETTE SPECS FROM SHEET */
  /* OFFICIAL COLOR SYSTEM FROM BRAND STYLE GUIDE */
  --c-warm-ivory: #FCF9F4;
  --c-soft-sand: #F5EFE6;
  --c-desert-bronze: #A86A3D;
  --c-deep-bronze: #8C542E;
  --c-golden-sand: #D8B47A;
  --c-desert-olive: #6E7D52;
  --c-charcoal: #262626;
  --c-warm-gray: #5C5C5C;
  --c-border-color: #E8DFD4;

  /* TYPOGRAPHY TOKENS */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* SPACING SCALE */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 120px;
  --space-5xl: 140px;
  --space-6xl: 160px;

  /* BORDER RADIUS */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* SHADOWS */
  --shadow-card: 0 10px 30px rgba(38, 38, 38, 0.06);
  --shadow-hover: 0 20px 40px rgba(38, 38, 38, 0.12);
  --shadow-button: 0 4px 14px rgba(168, 106, 61, 0.25);

  /* LEGACY ALIASES FOR COMPATIBILITY */
  --c-ivory-sand: #FCF9F4;
  --c-warm-beige: #F5EFE6;
  --c-sand-dune: #E8DFD4;
  --c-taupe: #5C5C5C;
  --c-oasis-brown: #A86A3D;
  --c-deep-brown: #262626;
  --c-stone-gray: #5C5C5C;
  --c-sage-green: #6E7D52;
  --gold-bright: #D8B47A;
  --bg-dark: #262626;
  
  /* FUNCTIONAL MAPPING */
  --bg-dark-deep: #141414;
  --bg-dark-header: #6F5B45; /* Oasis Brown Header */
  --bg-dark-surface: #2E2520;/* Deep Brown Surface */
  --bg-dark-card: #28211C;
  
  --bg-sand-light: #F6F3ED;  /* Ivory Sand Surface */
  --bg-sand-warm: #E7DEC9;   /* Warm Beige Surface */
  --bg-sand-card: #FFFFFF;
  
  /* TEXT COLOR DEFINITIONS (HIGH CONTRAST) */
  --text-sand-bright: #F6F3ED;
  --text-sand-muted: #E7DEC9;
  --text-sand-subtle: #D2C3AD;
  --text-dark: #2E2520;
  --text-dark-muted: #4A3A2C;
  
  /* UI BUTTONS */
  --btn-primary-bg: #2E2520;
  --btn-primary-text: #F6F3ED;
  --btn-primary-hover: #1C1C1C;
  
  --btn-gold: #7D8876;
  --gold-bright: #94A38C;  /* Brighter Sage Green for Dark Mode Contrast */
  --gold-sand: #E7DEC9;
  
  /* BORDERS & SHADOWS */
  --border-gold: rgba(210, 195, 173, 0.35);
  --border-dark: rgba(46, 37, 32, 0.15);
  --border-glass: rgba(246, 243, 237, 0.22);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.06);
  --shadow-dark-card: 0 20px 50px rgba(0, 0, 0, 0.4);
  
  /* ANIMATIONS */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 450ms var(--ease-editorial);
  --transition-fast: all 250ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-sand-bright);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* AUDIT #3: SKIP TO MAIN CONTENT LINK */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--c-ivory-sand);
  color: var(--c-deep-brown);
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 9999;
  transition: top 200ms ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.skip-link:focus {
  top: 16px;
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  width: 100%;
}

/* Typography Utilities */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(10px, 0.85vw, 11px);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow.dark-text {
  color: var(--c-oasis-brown);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.section-title.dark-text {
  color: var(--text-dark);
}

.section-desc {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-sand-muted);
  max-width: 600px;
}

.section-desc.dark-text {
  color: var(--text-dark-muted);
}

.section-desc.centered {
  margin: 0 auto;
}

/* CUSTOM ICON CONTAINER BADGES */
.icon-badge-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(148, 163, 140, 0.18);
  border: 1px solid var(--gold-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 18px;
  transition: transform 400ms var(--ease-editorial), background-color 300ms ease, color 300ms ease;
}

.icon-badge-box.light-mode {
  background: var(--c-ivory-sand);
  border: 1px solid var(--c-sand-dune);
  color: var(--c-oasis-brown);
}

.icon-badge-box:hover {
  transform: translateY(-4px) scale(1.05);
  background: var(--c-sage-green);
  color: #FFFFFF !important;
}

/* OFFICIAL BRAND BUTTON STYLES FROM GUIDELINES SHEET */
.btn-primary {
  position: relative;
  background: var(--c-desert-bronze);
  color: #FFFFFF !important;
  border: none;
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--shadow-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 300ms ease;
  touch-action: manipulation;
}

.btn-primary:hover {
  background: var(--c-deep-bronze);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(140, 84, 46, 0.35);
}

.btn-secondary {
  position: relative;
  background: transparent;
  color: var(--c-desert-bronze) !important;
  border: 1px solid var(--c-desert-bronze);
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 300ms ease;
}

.btn-secondary:hover {
  background: var(--c-desert-bronze);
  color: #FFFFFF !important;
}
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 400ms var(--ease-editorial), border-color 300ms ease, background-color 300ms ease;
  touch-action: manipulation;
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--c-deep-brown);
  transform: translateY(-2px);
}

.btn-text-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  transition: transform 300ms var(--ease-editorial), color 300ms ease;
}

.btn-text-link:hover {
  color: var(--c-ivory-sand);
  transform: translateX(4px);
}

.btn-text-link.dark-text {
  color: var(--c-oasis-brown);
}

.btn-text-link.dark-text:hover {
  color: var(--c-deep-brown);
}

/* NAVIGATION HEADER BAR (SOLID OASIS BROWN #6F5B45 FOR AUDIT #1) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(246, 243, 237, 0.3);
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold-bright);
  transition: width 100ms linear;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: background-color 300ms ease, backdrop-filter 300ms ease;
}

.navbar.scrolled, body.scrolled .navbar {
  position: fixed;
  background-color: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND LOGO WITH ICON & SUB-HEADLINE FROM SHEET */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-ivory-sand);
}

.brand-logo-icon {
  flex-shrink: 0;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 19px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ivory-sand);
  font-weight: 500;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-warm-beige);
  margin-top: 3px;
  font-weight: 500;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ivory-sand);
  font-weight: 500;
  padding: 4px 0;
  white-space: nowrap;
  position: relative;
  transition: color 300ms ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--c-warm-beige);
}

/* AUDIT #10: STYLED CURRENCY & LANGUAGE SELECTORS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-divider {
  color: var(--c-sand-dune);
  opacity: 0.4;
  font-size: 10px;
}

.simple-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(246, 243, 237, 0.08);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F6F3ED' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 12px;
  border: 1px solid rgba(246, 243, 237, 0.22);
  border-radius: 4px;
  color: var(--c-ivory-sand);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  padding: 6px 22px 6px 10px;
  transition: border-color 250ms ease, background-color 250ms ease;
}

.simple-select:hover, .simple-select:focus {
  border-color: var(--c-warm-beige);
  background-color: rgba(246, 243, 237, 0.15);
}

.simple-select option {
  background: #6F5B45;
  color: #F6F3ED;
  padding: 8px;
}

/* Mobile Hamburger Icon (Crisp White Lines) */
.mobile-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
  min-width: 36px;
  min-height: 36px;
}

.mobile-burger svg {
  stroke: #FFFFFF !important;
}

/* Mobile Nav Drawer (Oasis Brown Background) */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-oasis-brown);
  z-index: 999;
  flex-direction: column;
  padding: 28px 20px;
  gap: 20px;
  overflow-y: auto;
  border-top: 1px solid rgba(246, 243, 237, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.mobile-nav-drawer.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--c-ivory-sand);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(246,243,237,0.2);
  padding-top: 20px;
}

.mobile-drawer-selects {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mobile-drawer-phone {
  font-size: 13px;
  color: var(--c-warm-beige);
  text-align: center;
}

/* SECTION 1: HERO SECTION */
.hero-section {
  position: relative;
  min-height: calc(100vh - 56px);
  min-height: calc(100svh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding-top: clamp(24px, 4vh, 48px);
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: kenBurnsZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.45) 0%,
    rgba(28, 28, 28, 0.35) 40%,
    rgba(28, 28, 28, 0.75) 75%,
    rgba(28, 28, 28, 0.96) 100%
  );
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-text-box {
  max-width: 680px;
  padding-top: 10px;
  padding-bottom: 30px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: clamp(10px, 0.85vw, 11px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-editorial) 0.2s forwards;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5.8vw, 80px);
  font-weight: 400;
  color: var(--c-ivory-sand);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-editorial) 0.4s forwards;
}

.hero-h1 span.accent-line {
  display: block;
  font-style: italic;
  color: var(--c-warm-beige);
  font-weight: 400;
}

.hero-paragraph {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--text-sand-bright);
  font-weight: 300;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-editorial) 0.6s forwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-editorial) 0.8s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(40px, 7vh, 80px);
  right: clamp(16px, 4vw, 48px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}

.scroll-text {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.75);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-pill {
  width: 20px;
  height: 36px;
  border: 1px solid rgba(210, 195, 173, 0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-bright);
  animation: scrollDotPulse 2s ease-in-out infinite;
}

/* SECTION 2: TRUST STRIP */
.trust-strip {
  position: relative;
  z-index: 2;
  background: rgba(28, 28, 28, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(210, 195, 173, 0.22);
  border-bottom: 1px solid rgba(210, 195, 173, 0.22);
}

.trust-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 32px) 14px;
  border-right: 1px solid rgba(210, 195, 173, 0.15);
  text-align: left;
}

.trust-strip-item:last-child {
  border-right: none;
}

.trust-svg-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  color: var(--c-ivory-sand);
  line-height: 1;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-sand-dune);
  margin-top: 4px;
}

/* INTERACTIVE TOUR FINDER QUIZ */
.section-quiz {
  background-color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--border-gold);
}

.quiz-card-box {
  background: var(--c-charcoal);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-dark-card);
  max-width: 960px;
  margin: 0 auto;
}

.quiz-progress-track {
  height: 4px;
  background: rgba(210, 195, 173, 0.18);
  border-radius: 999px;
  margin-bottom: 28px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--gold-bright);
  transition: width 400ms var(--ease-editorial);
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.quiz-option-btn {
  background: rgba(246, 243, 237, 0.05);
  border: 1px solid rgba(210, 195, 173, 0.25);
  border-radius: 8px;
  padding: 20px 16px;
  color: var(--c-ivory-sand);
  cursor: pointer;
  text-align: center;
  transition: transform 400ms var(--ease-editorial), border-color 300ms ease;
}

.quiz-option-btn:hover, .quiz-option-btn.selected {
  background: rgba(148, 163, 140, 0.22);
  border-color: var(--gold-bright);
  transform: translateY(-3px);
}

.quiz-option-title {
  font-family: var(--font-heading);
  font-size: 19px;
  margin-bottom: 4px;
}

.quiz-option-desc {
  font-size: 11.5px;
  color: var(--c-sand-dune);
}

.quiz-result-box {
  display: none;
  text-align: center;
  padding-top: 20px;
}

.quiz-result-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.quiz-result-desc {
  font-size: 15px;
  color: var(--text-sand-muted);
  max-width: 560px;
  margin: 0 auto 24px;
}

/* SECTION 3: ABOUT SAHARA EXPLORE (LIGHT IVORY SAND BACKGROUND FROM SHEET) */
.section-about {
  background-color: var(--c-ivory-sand);
  color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid rgba(46, 37, 32, 0.12);
  border-bottom: 1px solid rgba(46, 37, 32, 0.12);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 30px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-deep-brown);
  font-weight: 500;
}

.about-checklist .check-icon-svg {
  width: 18px;
  height: 18px;
  color: var(--c-oasis-brown);
  flex-shrink: 0;
  margin-top: 2px;
}

/* MEET YOUR GUIDES CARDS */
.section-guides {
  background-color: var(--c-charcoal);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--border-gold);
}

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

.guide-card {
  background: var(--c-deep-brown);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 500ms var(--ease-editorial), border-color 300ms ease;
}

.guide-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-bright);
}

.guide-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--gold-bright);
}

.guide-name {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--c-ivory-sand);
  margin-bottom: 4px;
}

.guide-role {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.guide-bio {
  font-size: 13px;
  color: var(--c-warm-beige);
  line-height: 1.65;
}

/* SECTION 4: WHY TRAVEL WITH US (AUDIT #6: EXPANDED BORDER & DEPTH) */
.section-why-us {
  background-color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.why-us-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-us-card {
  background: var(--c-charcoal);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 500ms var(--ease-editorial), border-color 300ms ease, box-shadow 400ms var(--ease-editorial);
}

.why-us-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.why-us-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  color: var(--c-ivory-sand);
  margin-bottom: 8px;
}

.why-us-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--c-sand-dune);
  line-height: 1.6;
}

/* SECTION 5: FEATURED JOURNEYS */
.section-journeys {
  background-color: var(--c-charcoal);
  padding: clamp(70px, 9vw, 120px) 0;
}

.journeys-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

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

.journey-card {
  position: relative;
  min-height: 580px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-deep-brown);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-dark-card);
  transition: transform 600ms var(--ease-editorial), border-color 300ms ease;
  border: 1px solid rgba(210, 195, 173, 0.2);
}

.journey-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-bright);
}

.journey-card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.journey-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-editorial);
}

.journey-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.05) 0%,
    rgba(28, 28, 28, 0.15) 35%,
    rgba(28, 28, 28, 0.75) 70%,
    rgba(28, 28, 28, 0.98) 100%
  );
}

.journey-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(28, 28, 28, 0.88);
  backdrop-filter: blur(8px);
  color: var(--c-ivory-sand);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}

.journey-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 28px);
}

.journey-card-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--c-ivory-sand);
  margin-bottom: 8px;
  line-height: 1.18;
}

.journey-card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-sand-bright);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Day-by-Day Accordion */
.card-itinerary-preview {
  margin-bottom: 16px;
  border-top: 1px solid rgba(210, 195, 173, 0.2);
  padding-top: 10px;
}

.itinerary-toggle-btn {
  background: transparent;
  border: none;
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.itinerary-drawer {
  display: none;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--c-warm-beige);
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.45);
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(210, 195, 173, 0.15);
}

.itinerary-drawer.open {
  display: block;
  animation: fadeIn 300ms ease forwards;
}

.journey-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(210, 195, 173, 0.2);
}

.journey-price {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--c-ivory-sand);
}

.journey-price span {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--c-sand-dune);
}

/* ROUTE MAP SECTION */
.section-route-map {
  background-color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--border-gold);
}

.map-box-container {
  background: var(--c-charcoal);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
}

.map-pins-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 32px 0 16px;
}

.map-pins-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--gold-bright);
  z-index: 1;
}

.map-stop-pin {
  position: relative;
  z-index: 2;
  background: var(--c-deep-brown);
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--c-ivory-sand);
  transition: transform 400ms var(--ease-editorial), background-color 300ms ease;
}

.map-stop-pin:hover, .map-stop-pin.active {
  background: var(--gold-bright);
  color: #FFF;
  transform: scale(1.15);
}

.map-stop-details {
  background: rgba(246, 243, 237, 0.05);
  border: 1px solid rgba(210, 195, 173, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-top: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.map-detail-img {
  width: 140px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

.map-detail-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--c-ivory-sand);
  margin-bottom: 6px;
}

.map-detail-desc {
  font-size: 14px;
  color: var(--text-sand-muted);
  line-height: 1.6;
}

/* BANNER SECTION */
.section-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.7);
}

.banner-glass-panel {
  position: relative;
  z-index: 2;
  background: rgba(28, 28, 28, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(210, 195, 173, 0.3);
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  padding: 50px clamp(20px, 4vw, 48px);
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--c-ivory-sand);
  line-height: 1.12;
  margin-bottom: 18px;
}

.banner-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-bright);
  object-fit: cover;
}

/* DESTINATIONS SECTION (AUDIT #5: ENHANCED GRADIENT OVERLAY FOR TEXT READABILITY) */
.section-destinations {
  background-color: var(--c-warm-beige);
  color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid rgba(46, 37, 32, 0.12);
  border-bottom: 1px solid rgba(46, 37, 32, 0.12);
}

.destinations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.destination-card {
  position: relative;
  aspect-ratio: 3 / 4.2;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 600ms var(--ease-editorial);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-editorial);
}

.destination-card:hover img {
  transform: scale(1.07);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0) 30%,
    rgba(28, 28, 28, 0.65) 65%,
    rgba(28, 28, 28, 0.95) 100%
  );
}

.destination-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 14px;
  color: var(--c-ivory-sand);
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.destination-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sand-dune);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms var(--ease-editorial);
}

.destination-card:hover .destination-sub {
  opacity: 1;
  transform: translateY(0);
}

/* EXPERIENCES SECTION (LIGHT IVORY SAND FROM SHEET) */
.section-experiences {
  background-color: var(--c-ivory-sand);
  color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--border-dark);
}

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

.experience-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid rgba(210, 195, 173, 0.4);
  transition: transform 500ms var(--ease-editorial);
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-deep-brown);
  margin-bottom: 10px;
}

.experience-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--c-oasis-brown);
  line-height: 1.65;
  font-weight: 400;
}

/* GALLERY SECTION */
.section-gallery {
  background-color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-editorial);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.open {
  display: flex;
  animation: fadeIn 300ms ease forwards;
}

.lightbox-content-box {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
}

.lightbox-content-box img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 10px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -36px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--c-ivory-sand);
  font-size: 24px;
  cursor: pointer;
}

/* FAQ SECTION (AUDIT #7: ARIA COLLAPSIBLE PANELS) */
.section-faq {
  background-color: var(--c-charcoal);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--border-gold);
}

.faq-box-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--c-deep-brown);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
}

.faq-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--c-ivory-sand);
  text-align: left;
}

.faq-icon {
  transition: transform 300ms ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--c-warm-beige);
  line-height: 1.7;
}

.faq-item.active .faq-body {
  display: block;
}

/* JOURNAL SECTION */
.section-journal {
  background-color: var(--c-warm-beige);
  color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid rgba(46, 37, 32, 0.12);
  border-bottom: 1px solid rgba(46, 37, 32, 0.12);
}

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

.journal-card {
  background: var(--c-ivory-sand);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(210, 195, 173, 0.4);
  box-shadow: var(--shadow-card);
  transition: transform 500ms var(--ease-editorial);
}

.journal-card:hover {
  transform: translateY(-5px);
}

.journal-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.journal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-editorial);
}

.journal-body {
  padding: 24px;
}

.journal-tag {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-oasis-brown);
  font-weight: 600;
  margin-bottom: 6px;
}

.journal-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--c-deep-brown);
  line-height: 1.25;
  margin-bottom: 10px;
}

/* TESTIMONIALS SECTION (AUDIT #2: DISTINCT REALISTIC INITIAL CIRCLES) */
.section-testimonials {
  background-color: var(--c-ivory-sand);
  color: var(--c-deep-brown);
  padding: clamp(70px, 9vw, 120px) 0;
  border-bottom: 1px solid rgba(46, 37, 32, 0.12);
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

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

.testimonial-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px 22px;
  border: 1px solid rgba(210, 195, 173, 0.4);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--c-oasis-brown);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #E7DEC9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(231, 222, 201, 0.3);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-initials-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-sage-green);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-sand-dune);
  flex-shrink: 0;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-deep-brown);
}

.testimonial-source {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-oasis-brown);
}

/* CONFIDENCE BADGES STRIP */
.confidence-badges-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* RECENTLY BOOKED TICKER TOAST */
.recent-booking-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  background: var(--c-oasis-brown);
  border: 1px solid rgba(246, 243, 237, 0.25);
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--c-ivory-sand);
  max-width: 320px;
  animation: slideInLeft 600ms var(--ease-editorial) forwards;
}

.recent-booking-toast .toast-close {
  background: transparent;
  border: none;
  color: var(--c-warm-beige);
  cursor: pointer;
  margin-left: auto;
}

/* AUDIT #17: FLOATING WHATSAPP BUTTON WITH HOVER LABEL */
.whatsapp-float-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-label {
  background: rgba(28, 28, 28, 0.92);
  color: var(--c-ivory-sand);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}

.whatsapp-float-container:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float {
  width: 50px;
  height: 50px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 300ms var(--ease-editorial), box-shadow 300ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}


/* CTA SECTION */
.section-cta {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--c-charcoal);
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.82);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 70px clamp(16px, 4vw, 44px);
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* FOOTER (OASIS BROWN #6F5B45 BACKGROUND FROM USER REQUEST) */
.footer {
  background-color: var(--c-oasis-brown);
  color: var(--c-ivory-sand);
  padding: 70px 0 32px;
  border-top: 1px solid rgba(246, 243, 237, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr) 1.6fr;
  gap: 36px;
  margin-bottom: 60px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--c-ivory-sand);
  margin-bottom: 18px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-links a {
  color: var(--c-warm-beige);
  font-weight: 400;
  transition: color 250ms ease;
}

.footer-links a:hover {
  color: var(--c-ivory-sand);
}

.footer-trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--c-warm-beige);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact-list {
  font-size: 13px;
  color: var(--c-warm-beige);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  gap: 6px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(246,243,237,0.1);
  border: 1px solid rgba(246,243,237,0.25);
  border-radius: 4px;
  color: #F6F3ED;
  font-size: 12px;
  outline: none;
}

.footer-newsletter-btn {
  background: var(--c-deep-brown);
  color: #F6F3ED;
  border: 1px solid var(--c-sand-dune);
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 243, 237, 0.18);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-warm-beige);
  flex-wrap: wrap;
  gap: 14px;
}

/* Keyframe Animations */
@keyframes kenBurnsZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideInLeft {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes scrollDotPulse {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Scroll Reveal Observer Classes */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-editorial), transform 800ms var(--ease-editorial);
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 800ms var(--ease-editorial), transform 800ms var(--ease-editorial);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 800ms var(--ease-editorial), transform 800ms var(--ease-editorial);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 800ms var(--ease-editorial), transform 800ms var(--ease-editorial);
}

.is-revealed {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* AUDIT #20: ACCESSIBILITY REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-fade-up, .reveal-fade-left, .reveal-fade-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .journeys-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-item:nth-child(2) { border-right: none; }
  .trust-strip-item { border-bottom: 1px solid rgba(210, 195, 173, 0.12); }
  .trust-strip-item:nth-child(3), .trust-strip-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  /* REMOVE CTA BUTTON AND CURRENCY SELECTORS FROM MOBILE HEADER TOP BAR */
  .nav-actions .btn-primary,
  .simple-select,
  .nav-actions span {
    display: none !important;
  }

  /* Sleek Mobile Floating WhatsApp Button Position */
  .whatsapp-float-container {
    bottom: 20px !important;
    right: 16px !important;
  }

  .whatsapp-float {
    width: 46px !important;
    height: 46px !important;
  }

  /* AUDIT #15: HIDE TICKER TOAST ON MOBILE TO AVOID OVERLAPPING */
  .recent-booking-toast {
    display: none !important;
  }

  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .journeys-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .experiences-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .hero-scroll-indicator { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .quiz-options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-strip-item { border-right: none; border-bottom: 1px solid rgba(210, 195, 173, 0.12); }
  .trust-strip-item:last-child { border-bottom: none; }
  .hero-h1 { font-size: clamp(32px, 8.5vw, 44px); }
}
