/* ============================================
   Baobab Safari Adventure ? Main Stylesheet
   ============================================ */

:root {
  /* Brand palette (logo-inspired) */
  --primary:    #2A1D13;
  --secondary:  #E08337;
  --accent:     #F5B850;
  --neutral:    #836141;
  --background: #E0D6C9;

  /* Mapped system tokens (layout rules keep using these names) */
  --forest-green: var(--primary);
  --forest-deep:  #1a120c;
  --forest-soft:  #3d2b1c;
  --gold:         var(--secondary);
  --gold-soft:    var(--accent);
  --gold-deep:    #c66a28;
  --cream:        var(--background);
  --cream-deep:   #d4c8b8;
  --ink:          var(--primary);
  --white:        #ffffff;
  --muted:        var(--neutral);
  --line:         rgba(42, 29, 19, 0.14);

  /* Legacy aliases (existing rules) */
  --baobab-brown: var(--secondary);
  --safari-green: var(--primary);
  --sand-gold:    var(--accent);
  --sunset-orange: var(--secondary);
  --dark-green:   var(--forest-deep);
  --text-dark:    var(--ink);
  --text-muted:   var(--muted);

  --shadow-sm: 0 6px 18px rgba(42, 29, 19, 0.08);
  --shadow-md: 0 18px 44px rgba(42, 29, 19, 0.12);
  --shadow-lg: 0 30px 70px rgba(42, 29, 19, 0.18);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
  --radius-lg: 22px;
  --nav-height: 86px;
  --announce-h: 42px;
  --bar-h: 42px;
  --container: 1200px;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--secondary); color: var(--white); }

/* Page loader (lion paw) */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  text-align: center;
  color: var(--sand-gold);
}

.loader-mark .loader-paw,
.loader-mark i {
  font-size: 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
  animation: pawPulse 1.1s var(--transition) infinite;
  display: block;
  margin: 0 auto 0.8rem;
  color: var(--sand-gold);
}

.loader-mark span {
  font-family: var(--font-heading);
  color: var(--white);
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

@keyframes pawPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-mark .loader-paw,
  .loader-mark i { animation: none; opacity: 1; }
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--forest-green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest-green);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p { margin-bottom: 1rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 10px 26px rgba(224, 131, 55, 0.38);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(245, 184, 80, 0.5);
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 10px 26px rgba(224, 131, 55, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 16px 34px rgba(245, 184, 80, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn-secondary {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--forest-soft);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

/* ============================================
   Navigation
   ============================================ */
/* Announcement / Promo Bar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1190;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  transition: transform var(--transition);
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-offer {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-offer svg { color: var(--sand-gold); flex-shrink: 0; }
.announcement-offer strong { color: var(--sand-gold); font-weight: 700; }

.announcement-contact { display: flex; gap: 1.4rem; }

.announcement-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.announcement-contact a:hover { color: var(--sand-gold); }
.announcement-contact svg { color: var(--sand-gold); }

/* Shift the fixed navbar + page content down when the promo bar is present */
body.has-announcement .navbar { top: var(--announce-h); }
body.has-announcement { padding-top: var(--announce-h); }

@media (max-width: 768px) {
  .announcement-bar { display: none; }
  body.has-announcement .navbar { top: 0; }
  body.has-announcement { padding-top: 0; }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.navbar .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  padding-right: clamp(1rem, 2vw, 1.75rem);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
  padding: 0.35rem 0;
  transition: transform var(--transition), opacity var(--transition);
}

.logo:hover {
  transform: scale(1.02);
  opacity: 0.92;
}

.navbar .logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand .logo-img {
  height: 110px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  min-width: 0;
  gap: 0.15rem;
  overflow: visible;
}

@media (min-width: 1281px) {
  .navbar .container {
    justify-content: center;
    gap: 1.15rem;
  }

  .nav-menu {
    position: static;
    left: auto;
    transform: none;
    flex: 0 0 auto;
  }

  .nav-cta {
    margin-left: 0.5rem;
  }

  .hamburger {
    position: absolute;
    right: clamp(1rem, 2vw, 1.75rem);
    margin-left: 0;
  }
}

.nav-menu > li {
  flex-shrink: 0;
  position: relative;
}

.nav-link {
  color: var(--forest-green);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus-visible {
  color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  background: var(--accent);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  border: 1px solid var(--line);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  transition: all var(--transition);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active {
  background: var(--cream);
  color: var(--forest-green);
  padding-left: 1.1rem;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
}

.dropdown-submenu-toggle:hover,
.dropdown-submenu-toggle:focus-visible,
.dropdown-submenu-toggle.active {
  background: var(--cream);
  color: var(--forest-green);
  padding-left: 1.1rem;
}

.dropdown-submenu-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  opacity: 0.65;
}

.dropdown-submenu-menu {
  position: absolute;
  top: 0;
  left: calc(100% + 0.35rem);
  min-width: 210px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all var(--transition);
  border: 1px solid var(--line);
  list-style: none;
}

.dropdown-submenu:hover .dropdown-submenu-menu,
.dropdown-submenu.open .dropdown-submenu-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-submenu-menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
}

.dropdown-submenu-menu a:hover,
.dropdown-submenu-menu a:focus-visible,
.dropdown-submenu-menu a.active {
  background: var(--cream);
  color: var(--forest-green);
  padding-left: 1.1rem;
}

/* ============================================
   Tours Mega Menu
   ============================================ */
.nav-dropdown--mega {
  position: static;
}

@media (min-width: 1281px) {
  .navbar .container,
  .site-header .container {
    position: relative;
  }

  .nav-dropdown--mega .mega-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(680px, calc(100vw - 2rem));
    min-width: unset;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(42, 29, 19, 0.1);
    box-shadow: 0 14px 36px rgba(42, 29, 19, 0.12), 0 4px 12px rgba(42, 29, 19, 0.05);
  }

  .mega-menu__layout {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: stretch;
  }

  .nav-dropdown--mega:hover .mega-menu,
  .nav-dropdown--mega.open .mega-menu {
    transform: translateX(-50%) translateY(0);
  }
}

.mega-menu__section {
  padding: 0.55rem 0.75rem 0.5rem;
  min-width: 0;
  transition: background var(--transition);
}

.mega-menu__section:hover {
  background: linear-gradient(135deg, rgba(244, 241, 232, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
}

.mega-menu__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0 0.65rem;
}

.mega-menu__divider--vertical {
  width: 1px;
  height: auto;
  margin: 0.55rem 0;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
}

.mega-menu__header {
  margin-bottom: 0.4rem;
}

.mega-menu__label {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.1rem;
}

.mega-menu__heading {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest-green);
  line-height: 1.2;
  margin: 0;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.65rem;
  align-items: start;
}

.mega-menu__media {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mega-menu__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mega-menu__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(26, 18, 12, 0.72) 100%);
  pointer-events: none;
}

.mega-menu__media-caption {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.35rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  z-index: 1;
}

.mega-menu__media:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.mega-menu__media:hover img {
  transform: scale(1.06);
}

.mega-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.mega-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.28rem 0.4rem;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.25;
  white-space: normal;
  transition: background var(--transition), color var(--transition), transform var(--transition), padding-left var(--transition);
}

.mega-menu__link-text {
  flex: 1;
}

.mega-menu__link-arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  color: var(--gold-deep);
  transition: opacity var(--transition), transform var(--transition);
}

.mega-menu__links a:hover,
.mega-menu__links a:focus-visible,
.mega-menu__links a.is-active {
  background: var(--cream);
  color: var(--forest-green);
  padding-left: 0.55rem;
  transform: translateX(1px);
}

.mega-menu__links a:hover .mega-menu__link-arrow,
.mega-menu__links a:focus-visible .mega-menu__link-arrow,
.mega-menu__links a.is-active .mega-menu__link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mega-menu__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-deep);
  transition: gap var(--transition), color var(--transition);
}

.mega-menu__view-all svg {
  width: 11px;
  height: 11px;
  transition: transform var(--transition);
}

.mega-menu__view-all:hover,
.mega-menu__view-all:focus-visible {
  color: var(--forest-green);
  gap: 0.65rem;
}

.mega-menu__view-all:hover svg,
.mega-menu__view-all:focus-visible svg {
  transform: translateX(3px);
}

/* Destination mega menu — single rectangle with one photo */
.mega-menu--destination {
  width: min(420px, calc(100vw - 2rem)) !important;
}

/* Trekking mega menu — two columns like Tours */
.mega-menu--trekking {
  width: min(680px, calc(100vw - 2rem)) !important;
}

.mega-menu--destination .mega-menu__section {
  padding: 0.7rem 0.85rem 0.65rem;
}

.mega-menu--destination .mega-menu__grid {
  grid-template-columns: 140px 1fr;
  gap: 0.7rem;
}

.mega-menu--destination .mega-menu__media {
  aspect-ratio: 4 / 3;
}

@media (max-width: 1440px) and (min-width: 1281px) {
  .nav-dropdown--mega .mega-menu {
    width: min(600px, calc(100vw - 2rem));
  }

  .mega-menu--destination {
    width: min(380px, calc(100vw - 2rem)) !important;
  }

  .mega-menu__grid {
    grid-template-columns: 118px 1fr;
    gap: 0.6rem;
  }

  .mega-menu--destination .mega-menu__grid {
    grid-template-columns: 118px 1fr;
  }
}

@media (max-width: 1280px) {
  .nav-dropdown--mega .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    border-radius: 12px;
    margin-top: 0.35rem;
    box-shadow: none;
    border: 1px solid var(--line);
    overflow: visible;
  }

  .mega-menu__layout {
    display: flex;
    flex-direction: column;
  }

  .mega-menu__section {
    padding: 1rem;
  }

  .mega-menu__divider--vertical {
    width: auto;
    height: 1px;
    margin: 0 0.75rem;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .mega-menu__media {
    aspect-ratio: 16 / 9;
  }

  .mega-menu__links a {
    padding: 0.7rem 0.85rem;
  }

  .mega-menu__link-arrow {
    opacity: 0.45;
    transform: translateX(0);
  }
}

.zanzibar-category {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  color: var(--forest-green);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 1rem;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 10px 26px rgba(224, 131, 55, 0.38);
}

.nav-cta .btn:hover,
.nav-cta .btn:focus-visible {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .nav-cta {
    margin-left: 0.25rem;
  }

  .nav-cta .btn {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .navbar .logo-img {
    max-width: 170px;
    height: 56px;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #000000;
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

/* Full-bleed luxury safari hero banner */
.hero--image.hero--banner {
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  max-height: none;
}

.hero--image .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: none;
  animation: none;
  background: var(--forest-deep);
}

.hero--image.hero--banner .hero-bg {
  animation: none;
}

.hero--image .hero-bg-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero--image.hero--banner .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 80% at 50% 45%, rgba(8, 20, 16, 0.25) 0%, rgba(8, 20, 16, 0.72) 100%),
    linear-gradient(
      180deg,
      rgba(8, 20, 16, 0.62) 0%,
      rgba(8, 20, 16, 0.38) 42%,
      rgba(8, 20, 16, 0.72) 100%
    );
}

.hero--image.hero--banner .hero-content {
  padding: calc(var(--nav-height) + 2.5rem) 1.75rem 3.5rem;
  max-width: 960px;
}

.hero--image.hero--banner .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.35rem;
  animation: heroContentFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  opacity: 0;
}

.hero--image.hero--banner .hero-accent {
  display: block;
  width: 4.5rem;
  height: 2px;
  margin: 0 auto 1.75rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: heroContentFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  opacity: 0;
}

.hero--image.hero--banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  animation: heroContentFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  opacity: 0;
}

.hero--image.hero--banner .hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
  max-width: 720px;
  margin: 0 auto 3rem;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
  animation: heroContentFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  opacity: 0;
}

.hero--image.hero--banner .hero-buttons {
  animation: heroContentFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
  opacity: 0;
  gap: 1.25rem;
}

.hero--image.hero--banner .hero-buttons .btn {
  min-width: 200px;
  padding: 1rem 2.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.hero--image.hero--banner .hero-buttons .btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(224, 131, 55, 0.42);
}

.hero--image.hero--banner .hero-buttons .btn-gold:hover,
.hero--image.hero--banner .hero-buttons .btn-gold:focus-visible {
  box-shadow: 0 18px 42px rgba(224, 131, 55, 0.55);
}

.hero--image.hero--banner .hero-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero--image.hero--banner .hero-buttons .btn-outline:hover,
.hero--image.hero--banner .hero-buttons .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest-deep);
  border-color: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.hero--image.hero--banner .hero-buttons .btn:hover {
  transform: translateY(-4px);
}

.hero-slideshow {
  overflow: hidden;
}

.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.4s ease-in-out;
}

.hero-slideshow .hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slideshow .hero-slide .hero-bg-img {
  transform: none;
  filter: brightness(0.95);
  transition: filter 1.4s ease-in-out;
}

.hero-slideshow .hero-slide.is-active .hero-bg-img {
  filter: brightness(1);
}

.hero-slideshow-progress {
  display: none;
}

.hero-slideshow-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: inherit;
  animation: heroProgress 4.5s linear forwards;
}

@keyframes heroProgress {
  to { width: 100%; }
}

.hero-slideshow-dots {
  display: none;
}

.hero-slideshow-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slideshow-dot:hover,
.hero-slideshow-dot:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.15);
}

.hero-slideshow-dot.is-active {
  background: var(--gold, #E08337);
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(224, 131, 55, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide {
    transition: none;
  }

  .hero-slideshow .hero-slide.is-active .hero-bg-img {
    transform: none;
  }

  .hero-slideshow-progress span {
    animation: none;
    width: 100%;
  }

  .hero--image.hero--banner .hero-bg {
    animation: none;
  }

  .hero--image.hero--banner .hero-eyebrow,
  .hero--image.hero--banner .hero-accent,
  .hero--image.hero--banner h1,
  .hero--image.hero--banner .hero-subtitle,
  .hero--image.hero--banner .hero-buttons {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

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

.hero--split {
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero--split .hero-content {
  padding: 0;
  text-align: center;
}

.hero-tagline {
  position: absolute;
  left: clamp(0.5rem, 5vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: min(50vw, 480px);
  text-align: left;
}

.hero-tagline .hero-headline {
  align-items: flex-start;
  margin-bottom: 0;
}

.hero-tagline .hero-headline__main {
  font-size: clamp(2.5rem, 4.8vw, 4.75rem);
}

.hero-tagline .hero-headline__signature {
  font-size: clamp(3.25rem, 7vw, 6.25rem);
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 1.75rem;
  line-height: 1.05;
}

.hero-headline__main {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 4.75rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.01em;
}

.hero-headline__signature {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 7.5vw, 5.75rem);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  margin-top: -0.12em;
  line-height: 1;
}

.hero--image .hero-headline__main,
.hero--image .hero-headline__signature {
  color: #fff;
}

.hero--split .hero-scroll {
  color: var(--safari-green);
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-tagline {
    position: static;
    transform: none;
    max-width: 100%;
    text-align: center;
  }

  .hero-tagline .hero-headline {
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero--image.hero--banner .hero-bg-img {
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .hero--image.hero--banner {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
  }

  .hero--image.hero--banner .hero-content {
    padding: calc(var(--nav-height) + 1.5rem) 1.25rem 2.5rem;
  }

  .hero--image.hero--banner .hero-eyebrow {
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
  }

  .hero--image.hero--banner .hero-accent {
    margin-bottom: 1.25rem;
  }

  .hero--image.hero--banner h1 {
    font-size: clamp(1.55rem, 6.5vw, 2.05rem);
  }

  .hero--image.hero--banner .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
  }

  .hero--image.hero--banner .hero-buttons .btn {
    min-width: 0;
    letter-spacing: 0.06em;
  }

  .hero--image.hero--banner .hero-bg-img {
    object-position: center center;
    object-fit: cover;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 18, 12, 0.62) 0%,
    rgba(26, 18, 12, 0.42) 40%,
    rgba(26, 18, 12, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.92;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: var(--nav-height);
}

.page-hero .hero-content {
  padding: 3rem 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.day-trips-hero .hero-bg {
  background-image: url('../images/day-trips/hero-zebras.jpg');
  background-size: cover;
  background-position: center;
}

.day-trips-hero .hero-overlay {
  background: none;
}

.contact-page-hero {
  min-height: 42vh;
}

.contact-page-hero .hero-bg {
  background-image: url('../images/hero-cheetah-serengeti.png');
  background-size: cover;
  background-position: center;
}

.contact-page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(26, 18, 12, 0.35) 0%, rgba(26, 18, 12, 0.72) 100%);
}

.contact-page-hero .hero-content p {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.contact-page-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.zanzibar-page-hero .hero-bg {
  background-image: url('../images/zanzibar-safari-hero-hd.jpg');
}

@media (min-resolution: 2dppx), (min-width: 1400px) {
  .zanzibar-page-hero .hero-bg {
    background-image: url('../images/zanzibar-safari-hero-2x.jpg');
  }
}

.zanzibar-page-hero .hero-overlay {
  background: none;
}

.zanzibar-page-hero h1,
.zanzibar-page-hero .breadcrumb,
.zanzibar-page-hero .breadcrumb a,
.zanzibar-page-hero .breadcrumb span,
.zanzibar-page-hero p {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.day-trips-hero h1,
.day-trips-hero .breadcrumb,
.day-trips-hero .breadcrumb a {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.breadcrumb a:hover {
  color: var(--sand-gold);
}

/* ============================================
   Sections
   ============================================ */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-green { background: var(--safari-green); color: var(--white); }
.bg-green h2, .bg-green h3 { color: var(--white); }
.bg-green .section-label { color: var(--sand-gold); }
.bg-green .section-subtitle { color: rgba(255, 255, 255, 0.75); }
.bg-green .about-safari-label { color: var(--sand-gold); }

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   About / Intro — split black / white layout
   ============================================ */
.about-split {
  --about-split-black: #1f3b2c;
  position: relative;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(to bottom, var(--about-split-black) 0 52%, var(--white) 52% 100%);
}

.about-split .container {
  position: relative;
  z-index: 1;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.about-split-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.15fr);
  gap: 3.5rem 4rem;
  align-items: start;
}

.about-split-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.about-split-portrait {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.about-split-portrait img {
  width: 100%;
  height: clamp(420px, 58vh, 640px);
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--transition);
}

.about-split-portrait:hover img {
  transform: scale(1.04);
}

.about-split-caption {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.3;
  max-width: 14ch;
  margin: 0;
}

.about-split-copy {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  padding-top: 0.75rem;
}

.about-split-intro {
  max-width: 36rem;
}

.about-split-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
  margin: 0 0 1.35rem;
  text-align: left;
}

.about-split-intro p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.about-split-intro p:last-child {
  margin-bottom: 0;
}

.about-split-landscape {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-split-landscape img {
  width: 100%;
  height: clamp(220px, 28vw, 320px);
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--transition);
}

.about-split-landscape:hover img {
  transform: scale(1.03);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .about-split-grid {
    gap: 2.5rem 2.75rem;
  }

  .about-split-portrait img {
    height: clamp(360px, 48vh, 520px);
  }

  .about-split-landscape img {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-split-portrait img,
  .about-split-landscape img,
  .about-split-portrait:hover img,
  .about-split-landscape:hover img {
    transition: none;
    transform: none;
  }
}

.about-safari-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.about-safari-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0;
}

.about-safari-icon {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.about-safari-label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--baobab-brown);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: -0.15rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(224, 131, 55, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--baobab-brown);
}

.about-feature-icon svg {
  width: 24px;
  height: 24px;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--safari-green);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--sand-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* ============================================
   Package Cards
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.08);
}

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sunset-orange);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(47, 62, 46, 0.85);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.package-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-body h3 {
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.package-card:hover .package-body h3 {
  color: var(--baobab-brown);
}

.package-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.package-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(47, 62, 46, 0.1);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--baobab-brown);
}

.package-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-link {
  color: var(--safari-green);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition);
}

.package-link:hover {
  color: var(--secondary);
  gap: 0.6rem;
}

.packages-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}

.related-safaris-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.related-safari-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.related-safari-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.related-safari-image {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
}

.related-safari-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-safari-card:hover .related-safari-image img {
  transform: scale(1.07);
}

.related-safari-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.related-safari-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.related-safari-body h3 {
  min-height: 2.8em;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.4;
  text-wrap: balance;
}

.related-safari-body p {
  flex: 1;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.related-safari-link {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .related-safaris-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .related-safaris-grid {
    grid-template-columns: 1fr;
  }
}

.packages-page-hero .hero-bg {
  background-image: url('../images/safari-packages-hero.jpg');
  background-size: cover;
  background-position: center;
}

.packages-page-hero h1,
.packages-page-hero .hero-eyebrow {
  color: var(--white);
}

.terms-page-hero {
  min-height: 36vh;
  background: linear-gradient(135deg, var(--forest-soft), var(--forest-deep));
}

.terms-page-hero h1 {
  color: var(--white);
}

.terms-page-hero p {
  max-width: 40rem;
  margin: 0.85rem auto 0;
  color: rgba(255, 255, 255, 0.9);
}

.terms-section {
  padding: 5rem 0;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.terms-content section + section {
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--line);
}

.terms-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.terms-content p,
.terms-content li {
  color: var(--text-muted);
  line-height: 1.8;
}

.terms-content ul,
.terms-content ol {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.5rem;
}

.terms-content li + li {
  margin-top: 0.5rem;
}

.terms-contact {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text-dark);
  font-style: normal;
  line-height: 1.9;
}

.terms-contact a {
  color: var(--secondary);
  font-weight: 600;
}

.destinations-page-hero .hero-bg {
  background-image: url('../images/safari-destinations-hero.jpg');
  background-size: cover;
  background-position: center;
}

.destinations-page-hero h1,
.destinations-page-hero .hero-eyebrow {
  color: var(--white);
}

.destinations-page-section {
  --dest-primary: #8B5A2B;
  --dest-accent: #D4A017;
  background: var(--cream);
}

.destinations-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.destinations-page-grid .dest-card {
  width: 100%;
  min-height: 440px;
  transform: none;
}

.destinations-page-grid .dest-card::after {
  display: none;
}

.destinations-page-grid .dest-card__desc {
  max-height: 8rem;
  margin-top: 0.7rem;
  opacity: 1;
  transform: none;
}

.destinations-page-grid .dest-card__btn {
  margin-top: 1rem;
  opacity: 1;
  transform: none;
}

.destinations-page-grid .dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .destinations-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .destinations-page-grid {
    grid-template-columns: 1fr;
  }

  .destinations-page-grid .dest-card {
    width: 100%;
    max-width: none;
  }
}

/* ============================================
   Day Trips Page
   ============================================ */
.day-tours-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gold, #E08337);
  margin-bottom: 2.5rem;
}

.day-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.day-tour-card {
  min-width: 0;
}

.day-tour-card__toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.day-tour-card__toggle:hover {
  transform: translateY(-4px);
}

.day-tour-tile__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.day-tour-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.day-tour-card__toggle:hover .day-tour-tile__image img {
  transform: scale(1.05);
}

.day-tour-card__toggle h3 {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.day-tour-tile__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(42, 29, 19, 0.9);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Full-page day trip detail */
.day-trip-fullpage {
  background: var(--white);
  padding-bottom: 4rem;
  animation: dayTripFadeIn 0.35s ease;
}

.day-trip-fullpage[hidden] {
  display: none !important;
}

body.day-trip-page-open .day-trips-hero,
body.day-trip-page-open #day-trips-list,
body.day-trip-page-open .day-trips-cta {
  display: none !important;
}

body.day-trip-page-open .day-trip-fullpage {
  display: block;
}

body.day-trip-page-open {
  background: var(--white);
}

body.day-trip-page-open main {
  padding-top: 0;
}

/* Expanded trip detail — Heavenly Horizon style */
.day-trip-detail {
  background: var(--white);
}

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

.day-trip-banner {
  position: relative;
  min-height: clamp(220px, 32vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

body.day-trip-page-open .day-trip-banner {
  min-height: clamp(560px, 80vh, 900px);
  padding-top: var(--nav-height);
}

body.day-trip-page-open .day-trip-banner__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  padding: 3.5rem 1.5rem;
}

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

.day-trip-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 20, 0.45);
}

.day-trip-banner__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 2rem 1.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.day-trip-body {
  padding: 2.5rem 0 0;
  background: var(--white);
}

.day-trip-highlights--top {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-bottom: 2.5rem;
}

.day-trip-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 2.5rem;
  align-items: start;
}

.day-trip-main p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.day-trip-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.day-trip-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.day-trip-inquire {
  background: #f5f3ef;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--nav-height, 72px) + 1.5rem);
}

.day-trip-inquire h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.day-trip-inquire .form-group {
  margin-bottom: 0.85rem;
}

.day-trip-inquire label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.day-trip-inquire input,
.day-trip-inquire textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(47, 62, 46, 0.2);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--white);
}

.day-trip-inquire .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.day-trip-inquire__success {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--safari-green);
  font-weight: 600;
}

.day-trip-highlights {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
}

.day-trip-highlights__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #5c3d1e;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.day-trip-highlights__script {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold, #E08337);
  line-height: 0.9;
  margin-bottom: 0.15rem;
}

.day-trip-highlights__divider {
  width: 0;
  border-left: 2px dashed rgba(47, 62, 46, 0.2);
}

.day-trip-chevron-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.day-trip-chevron-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.day-trip-chevron-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold, #E08337);
  font-weight: 700;
  font-size: 1.1rem;
}

.day-trip-meta {
  margin: 0;
}

.day-trip-meta > div {
  margin-bottom: 1rem;
}

.day-trip-meta dt {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.day-trip-meta dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.day-trip-meta dd em {
  font-style: italic;
}

.day-trip-itinerary {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(47, 62, 46, 0.1);
}

.day-trip-itinerary--after-highlights {
  margin-top: 0;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.day-trip-itinerary p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.day-trip-itinerary p:last-child {
  margin-bottom: 0;
}

.day-trip-itinerary h2,
.day-trip-itinerary h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--safari-green);
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .day-tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .day-trip-layout {
    grid-template-columns: 1fr;
  }

  .day-trip-inquire {
    position: static;
  }

  .day-trip-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .day-trip-highlights__divider {
    display: none;
  }
}

@media (max-width: 560px) {
  .day-tours-grid {
    grid-template-columns: 1fr;
  }

  body.day-trip-page-open .day-trip-banner {
    min-height: clamp(440px, 68vh, 680px);
  }

  .day-trip-body {
    padding-top: 1.5rem;
  }

  .day-trip-gallery {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Tour Full Itinerary Carousel
   ============================================ */
.full-itinerary-block {
  margin-top: 0.5rem;
}

.full-itinerary-heading {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.75rem;
  line-height: 1;
}

.full-itinerary-carousel {
  position: relative;
}

.full-itinerary-viewport {
  overflow: hidden;
  margin: 0 0.25rem;
}

.full-itinerary-track {
  display: flex;
  gap: 14px;
  transition: transform 0.65s ease;
  will-change: transform;
}

.full-itinerary-slide {
  flex: 0 0 calc((100% - 28px) / 3);
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
}

.full-itinerary-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.full-itinerary-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #4b5563;
  box-shadow: 0 4px 14px rgba(31, 41, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.full-itinerary-nav:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 18px rgba(31, 41, 55, 0.2);
}

.full-itinerary-nav svg {
  width: 18px;
  height: 18px;
}

.full-itinerary-nav--prev { left: 10px; }
.full-itinerary-nav--next { right: 10px; }

.full-itinerary-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.full-itinerary-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.full-itinerary-dot.is-active {
  background: #111827;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .full-itinerary-slide {
    flex: 0 0 calc((100% - 14px) / 2);
  }

  .full-itinerary-nav {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 520px) {
  .full-itinerary-slide {
    flex: 0 0 100%;
  }

  .full-itinerary-nav--prev { left: 6px; }
  .full-itinerary-nav--next { right: 6px; }
}

/* Zanzibar Safari section */
.zanzibar-why {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.zanzibar-why h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--safari-green);
}

.zanzibar-why__list {
  display: inline-block;
  text-align: left;
}

.zanzibar-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.zanzibar-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.zanzibar-cta p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}

body.zanzibar-safari-page-open .zanzibar-page-hero,
body.zanzibar-safari-page-open .zanzibar-hide-on-detail {
  display: none !important;
}

body.zanzibar-safari-page-open .day-trip-fullpage {
  display: block;
}

body.zanzibar-safari-page-open {
  background: var(--white);
}

body.zanzibar-safari-page-open main {
  padding-top: 0;
}

/* ============================================
   Top Safari Destinations
   ============================================ */
.destinations-section {
  --dest-primary: #8B5A2B;
  --dest-accent: #D4A017;
  background: #fff;
}

.dest-carousel-wrap {
  position: relative;
}

.dest-carousel {
  overflow: hidden;
  padding: 2rem 0;
  cursor: grab;
}

/* Navigation arrows */
.dest-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--forest-deep);
  background: var(--dest-accent);
  box-shadow: 0 10px 26px rgba(47, 62, 46, 0.28);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.dest-nav:hover {
  background: #e9b428;
  transform: translateY(-50%) scale(1.08);
}

.dest-nav:focus-visible {
  outline: 3px solid var(--dest-primary);
  outline-offset: 3px;
}

.dest-nav svg {
  width: 22px;
  height: 22px;
}

.dest-nav--prev {
  left: -8px;
}

.dest-nav--next {
  right: -8px;
}

.dest-carousel.is-dragging {
  cursor: grabbing;
}

.dest-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  will-change: transform;
  touch-action: pan-y;
}

.dest-card {
  position: relative;
  flex: 0 0 auto;
  width: 350px;
  min-height: 470px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(47, 62, 46, 0.18);
  transform: scale(0.82);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Black mask over non-centered cards */
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* Centered card large, clear, unmasked */
.dest-card.is-center {
  transform: scale(1.06);
  z-index: 3;
  box-shadow: 0 34px 70px rgba(47, 62, 46, 0.32);
}

.dest-card.is-center::after {
  opacity: 0;
}

.dest-carousel.is-dragging .dest-card {
  transition: none;
}

.dest-card:focus-visible {
  outline: 3px solid var(--dest-accent);
  outline-offset: 4px;
}

/* Media + image zoom */
.dest-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02) translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.dest-card.is-center .dest-card__media img {
  transform: scale(1.1) translate3d(var(--px, 0px), var(--py, 0px), 0);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
              rgba(26, 35, 25, 0) 28%,
              rgba(26, 35, 25, 0.55) 68%,
              rgba(20, 14, 8, 0.92) 100%);
  transition: opacity 0.6s ease, background 0.6s ease;
}

.dest-card.is-center .dest-card__overlay {
  background: linear-gradient(180deg,
              rgba(139, 90, 43, 0.25) 0%,
              rgba(26, 35, 25, 0.7) 55%,
              rgba(15, 10, 5, 0.96) 100%);
}

/* Glassmorphism content panel */
.dest-card__panel {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  transform: translate3d(var(--ppx, 0px), var(--ppy, 0px), 0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s ease;
}

.dest-card__tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--dest-accent);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.dest-card__title {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.dest-card__desc {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              max-height 0.5s ease, margin 0.5s ease;
}

.dest-card.is-center .dest-card__desc {
  max-height: 8rem;
  opacity: 1;
  transform: translateY(0);
}

.dest-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--forest-deep);
  background: var(--dest-accent);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.5s ease 0.05s,
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
              background 0.3s ease;
}

.dest-card__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dest-card.is-center .dest-card__btn {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dest-card.is-center .dest-card__btn:hover {
  background: #e9b428;
}

.dest-card.is-center .dest-card__btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-section {
  --why-primary: #8B5A2B;
  --why-accent: #D4A017;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(212, 160, 23, 0.10), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(139, 90, 43, 0.10), transparent 60%),
    #E0D6C9;
}

/* Floating subtle shapes */
.why-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.why-shape--1 {
  width: 220px;
  height: 220px;
  top: 8%;
  right: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(212, 160, 23, 0.28), transparent 70%);
  animation: whyFloat 14s ease-in-out infinite;
}

.why-shape--2 {
  width: 280px;
  height: 280px;
  bottom: 4%;
  left: -90px;
  background: radial-gradient(circle at 70% 40%, rgba(139, 90, 43, 0.22), transparent 70%);
  animation: whyFloat 18s ease-in-out infinite reverse;
}

@keyframes whyFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -26px, 0); }
}

.why-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
}

/* Left cinematic visual with subtle zoom */
.why-visual {
  flex: 1 1 46%;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translate3d(var(--wx, 0px), var(--wy, 0px), 0);
  animation: whyKenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes whyKenBurns {
  0% { transform: scale(1.05) translate3d(var(--wx, 0px), var(--wy, 0px), 0); }
  100% { transform: scale(1.14) translate3d(var(--wx, 0px), var(--wy, 0px), 0); }
}

/* Right column feature cards */
.why-features {
  flex: 1 1 54%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 10px 30px rgba(47, 62, 46, 0.08);
  transition: transform 0.4s ease-in-out,
              box-shadow 0.4s ease-in-out,
              border-color 0.4s ease-in-out;
}

/* Highlight glow border on hover */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--why-accent), rgba(139, 90, 43, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(139, 90, 43, 0.22);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--why-primary);
  background: rgba(139, 90, 43, 0.10);
  transition: color 0.4s ease-in-out, background 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
}

.why-card:hover .why-card__icon {
  color: var(--why-accent);
  background: rgba(212, 160, 23, 0.16);
  transform: scale(1.08);
}

.why-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0 0 0.2rem;
}

.why-card__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Testimonials Slider
   ============================================ */
.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 3rem;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
}

.testimonial-stars {
  color: var(--sand-gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sand-gold);
}

.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--safari-green);
  margin-bottom: 0.15rem;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--baobab-brown);
  color: var(--baobab-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: var(--baobab-brown);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(224, 131, 55, 0.3);
  transition: all var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--baobab-brown);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   Beach Holidays
   ============================================ */
.beach-section {
  --beach-accent: #D4A017;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.beach-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.beach-mask {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 23, 30, 0.72) 0%, rgba(15, 23, 30, 0.55) 45%, rgba(10, 16, 22, 0.85) 100%),
    radial-gradient(1000px 600px at 50% 0%, rgba(212, 160, 23, 0.12), transparent 60%);
}

.beach-content {
  position: relative;
  z-index: 1;
}

.beach-section .section-label {
  color: var(--beach-accent);
}

.beach-section .section-title {
  color: var(--white);
}

.beach-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.beach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.beach-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.75rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.beach-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(212, 160, 23, 0.7);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
}

.beach-card h3 {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0;
  padding-bottom: 0.6rem;
}

.beach-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 3px;
  background: var(--beach-accent);
  transition: width 0.4s ease;
}

.beach-card:hover h3::after {
  width: 70px;
}

.beach-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(224, 131, 55, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(224, 131, 55, 0.25);
}

.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--baobab-brown);
  transition: transform var(--transition);
  font-size: 1.25rem;
}

.gallery-item:hover .gallery-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: var(--sunset-orange);
}

/* ============================================
   Mount Kilimanjaro Routes
   ============================================ */
.kili-section {
  background: #fff;
  padding: 5rem 0 4.5rem;
}

.kili-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.65fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.kili-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.8vw, 3.15rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.12;
  margin: 0 0 1.35rem;
}

.kili-title span {
  color: var(--accent);
}

.kili-intro {
  padding-top: 0.35rem;
}

.kili-intro p {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  max-width: 26rem;
}

.kili-intro strong {
  color: var(--primary);
  font-weight: 600;
}

.kili-routes-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  grid-template-rows: minmax(200px, 1fr) minmax(200px, 1fr);
  grid-template-areas:
    "marangu lemosho rongai"
    "machame lemosho umbwe";
  gap: 0.9rem;
  min-height: 500px;
}

.kili-route-card--marangu { grid-area: marangu; }
.kili-route-card--lemosho { grid-area: lemosho; }
.kili-route-card--rongai { grid-area: rongai; }
.kili-route-card--machame { grid-area: machame; }
.kili-route-card--umbwe { grid-area: umbwe; }

.kili-route-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  min-height: 0;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.kili-route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

.kili-route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 12, 0.62) 0%, rgba(26, 18, 12, 0.12) 48%, rgba(26, 18, 12, 0.28) 100%);
  transition: background 0.45s ease;
  z-index: 1;
}

.kili-route-card:hover img,
.kili-route-card:focus-visible img {
  transform: scale(1.06);
}

.kili-route-card:hover::after,
.kili-route-card:focus-visible::after {
  background: linear-gradient(180deg, rgba(224, 131, 55, 0.48) 0%, rgba(26, 18, 12, 0.18) 50%, rgba(26, 18, 12, 0.42) 100%);
}

.kili-route-card__label {
  position: absolute;
  top: 1.05rem;
  left: 1.05rem;
  right: 1.05rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.kili-route-card__label span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  opacity: 0.95;
}

.kili-route-card__label strong {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.45vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.kili-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}

.btn-kili {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  min-width: 15rem;
  box-shadow: 0 10px 26px rgba(42, 29, 19, 0.28);
}

.btn-kili:hover,
.btn-kili:focus-visible {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  box-shadow: 0 16px 34px rgba(224, 131, 55, 0.4);
}

@media (max-width: 1024px) {
  .kili-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kili-intro p {
    max-width: none;
  }

  .kili-routes-grid {
    min-height: 440px;
  }
}

@media (max-width: 768px) {
  .kili-section {
    padding: 3.5rem 0 3rem;
  }

  .kili-routes-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "lemosho lemosho"
      "marangu rongai"
      "machame umbwe";
    min-height: 0;
  }

  .kili-route-card {
    min-height: 190px;
  }

  .kili-route-card--lemosho {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .kili-routes-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lemosho"
      "marangu"
      "machame"
      "rongai"
      "umbwe";
  }
}

@media (prefers-reduced-motion: reduce) {
  .kili-route-card img,
  .kili-route-card:hover img,
  .kili-route-card:focus-visible img {
    transition: none;
    transform: none;
  }
}

/* ============================================
   Contact Form
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(224, 131, 55, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--baobab-brown);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--baobab-brown);
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--safari-green);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(47, 62, 46, 0.12);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--baobab-brown);
  box-shadow: 0 0 0 3px rgba(224, 131, 55, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-success {
  display: none;
  background: rgba(47, 62, 46, 0.1);
  color: var(--safari-green);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* ============================================
   Circuit / Inner Page Content
   ============================================ */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.content-main h2 {
  margin: 2rem 0 1rem;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p {
  color: var(--text-muted);
}

.content-main ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
  color: var(--text-muted);
}

.content-main ul li {
  margin-bottom: 0.5rem;
}

.highlight-list {
  list-style: none !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.highlight-list li::before {
  content: '?';
  color: var(--baobab-brown);
  font-size: 0.75rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.sidebar-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.sidebar-card .price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--baobab-brown);
  margin-bottom: 0.5rem;
}

.sidebar-card .price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.sidebar-features {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(47, 62, 46, 0.1);
  border-bottom: 1px solid rgba(47, 62, 46, 0.1);
}

.sidebar-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sidebar-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C17A3F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.itinerary-timeline {
  margin-top: 2rem;
}

.itinerary-day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(47, 62, 46, 0.08);
}

.itinerary-day:last-child {
  border-bottom: none;
}

.day-number {
  width: 60px;
  height: 60px;
  background: var(--baobab-brown);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.day-number strong {
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.itinerary-day h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--safari-green);
  margin-bottom: 0.35rem;
}

.itinerary-day p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-banner .hero-bg {
  animation: none;
}

.cta-banner .hero-overlay {
  background: rgba(47, 62, 46, 0.88);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  --footer-bg: #161616;
  --footer-heading: var(--secondary);
  position: relative;
  background-color: var(--footer-bg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='140' viewBox='0 0 220 140'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1' d='M-10 30c40 0 40 20 80 20s40-20 80-20 40 20 80 20M-10 70c40 0 40 18 80 18s40-18 80-18 40 18 80 18M-10 110c40 0 40 16 80 16s40-16 80-16 40 16 80 16'/%3E%3C/svg%3E");
  background-size: 220px 140px;
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 0 0;
  overflow: hidden;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top,
.footer-mid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem 2rem;
}

.footer-top {
  padding-bottom: 2.75rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-mid {
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 220px;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand .logo-img {
  height: 110px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 0 0 0.15rem;
  line-height: 1.2;
}

.footer-brand-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-col h4 {
  color: var(--footer-heading);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  margin: 0 0 1.15rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul a,
.footer-col p,
.footer-contact-line {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  transition: color var(--transition);
}

.footer-col ul a:hover,
.footer-col ul a:focus-visible {
  color: var(--accent);
  padding-left: 0;
}

.footer-contact-line {
  margin: 0 0 0.55rem;
}

.footer-contact-line a {
  color: inherit;
}

.footer-contact-line a:hover {
  color: var(--accent);
}

.footer-payments {
  margin-top: 1.35rem;
}

.footer-payments-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.65rem;
}

.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 46px;
  padding: 0 0.85rem;
  border-radius: 6px;
  background: var(--white);
  color: #1a1f71;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer-pay--mc {
  color: #eb001b;
}

.footer-social-title {
  color: var(--white) !important;
  margin-bottom: 1rem !important;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  background: transparent;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
  color: var(--accent);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Legacy single-row footer grid (fallback) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-card {
    width: 300px;
    min-height: 420px;
  }

  .why-layout {
    flex-direction: column;
  }

  .why-visual {
    min-height: 340px;
  }

  .beach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid,
  .footer-top,
  .footer-mid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 1280px) {
  :root {
    --nav-height: 76px;
  }

  .navbar .container {
    justify-content: space-between;
  }

  .navbar .logo-img {
    height: 56px;
    max-width: 165px;
  }

  .hamburger {
    display: flex;
    position: static;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    transform: none;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: none;
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    gap: 0;
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    pointer-events: none;
    transition: clip-path var(--transition), visibility 0s linear var(--transition);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-lg);
    z-index: 1;
  }

  body.has-announcement .nav-menu {
    padding-top: calc(var(--nav-height) + var(--announce-h) + 1.5rem);
  }

  .nav-menu.active {
    clip-path: inset(0);
    visibility: visible;
    pointer-events: auto;
    transition: clip-path var(--transition), visibility 0s;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    color: var(--forest-green);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--cream);
    box-shadow: none;
    display: none;
    margin-top: 0;
    border-radius: 8px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-dropdown.open .mega-menu {
    max-height: none;
    display: block;
  }

  .dropdown-menu a {
    color: #000000;
    padding: 0.6rem 1rem;
    white-space: normal;
  }

  .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--baobab-brown);
    padding-left: 1rem;
  }

  .dropdown-submenu-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 0.75rem;
    margin-top: 0.15rem;
    display: none;
  }

  .dropdown-submenu.open .dropdown-submenu-menu {
    display: block;
  }

  .dropdown-submenu-toggle {
    white-space: normal;
  }

  .nav-cta {
    margin: 1.5rem 0 0;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-split {
    background:
      linear-gradient(to bottom, var(--about-split-black) 0 42%, var(--white) 42% 100%);
  }

  .about-split .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-split-visual {
    order: 1;
    margin-top: 0;
  }

  .about-split-copy {
    order: 2;
    gap: 2rem;
    padding-top: 0;
  }

  .about-split-portrait img {
    height: min(58vw, 420px);
  }

  .about-split-caption {
    max-width: none;
  }

  .about-split-intro p {
    color: var(--ink);
  }

  .about-split-landscape img {
    height: 220px;
  }

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

  .dest-card {
    width: 80vw;
    max-width: 320px;
    min-height: 400px;
  }

  .dest-nav {
    width: 44px;
    height: 44px;
  }

  .dest-nav--prev {
    left: 4px;
  }

  .dest-nav--next {
    right: 4px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-top,
  .footer-mid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .highlight-list {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero--image.hero--banner .hero-bg-img {
    object-position: center center;
  }

  .hero--image.hero--banner .hero-content {
    padding: calc(var(--nav-height) + 1.5rem) 1.25rem 2.5rem;
  }

  .testimonial-slide {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3.5rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   About Us page
   ============================================ */
.about-page-hero {
  min-height: 42vh;
  background: var(--white);
  color: var(--ink);
}

.about-page-hero .hero-content p {
  margin: 0.75rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-intro {
  padding: 5rem 0;
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem 4rem;
  align-items: center;
}

.about-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  color: var(--primary);
  margin: 0.35rem 0 1.35rem;
  line-height: 1.15;
}

.about-intro-copy p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.1rem;
  max-width: 38rem;
}

.about-intro-media {
  margin: 0;
  overflow: hidden;
}

.about-intro-media img {
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  object-fit: cover;
  display: block;
}

.about-vm {
  padding: 4.5rem 0;
}

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3.5rem;
}

.about-vm-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  color: var(--primary);
  margin: 0.35rem 0 1rem;
}

.about-vm-block p {
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
  max-width: 34rem;
}

.about-why {
  padding: 5rem 0;
  background: var(--white);
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 2rem;
}

.about-why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin: 0 0 0.65rem;
}

.about-why-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.about-pledge {
  padding: 5rem 0;
}

.about-pledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem 4rem;
  align-items: center;
}

.about-pledge-media {
  margin: 0;
  overflow: hidden;
}

.about-pledge-media img {
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  object-fit: cover;
  display: block;
}

.about-pledge-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--primary);
  margin: 0.35rem 0 1.25rem;
}

.about-pledge-copy p {
  color: var(--ink);
  line-height: 1.8;
  margin: 0 0 1rem;
  max-width: 36rem;
}

.about-book {
  padding: 5rem 0 4.5rem;
  background: var(--white);
}

.about-book-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin: 0 0 3rem;
  padding: 0;
  counter-reset: none;
}

.about-book-step {
  padding-top: 0.25rem;
}

.about-book-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.about-book-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 0 0.55rem;
}

.about-book-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.about-book-help {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.about-book-help p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin: 0 0 1.25rem;
}

.about-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.about-book-actions .btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.about-book-actions .btn-outline-dark:hover,
.about-book-actions .btn-outline-dark:focus-visible {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 992px) {
  .about-intro-grid,
  .about-vm-grid,
  .about-pledge-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-book-steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-intro-media img,
  .about-pledge-media img {
    height: min(52vw, 360px);
  }
}

@media (max-width: 640px) {
  .about-why-grid,
  .about-book-steps {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .about-why,
  .about-pledge,
  .about-book {
    padding: 3.5rem 0;
  }
}

/* ============================================
   Safari Activities page
   ============================================ */
.activities-hero {
  min-height: 48vh;
}

.activities-hero .hero-bg {
  background-image: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.activities-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(26, 18, 12, 0.45) 0%, rgba(26, 18, 12, 0.78) 100%);
}

.activities-hero .hero-content p:not(.hero-eyebrow) {
  margin: 0.85rem auto 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.activities-hero .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
}

.activities-intro {
  padding: 4.5rem 0 1rem;
  background: var(--white);
}

.activities-intro .section-header {
  margin-bottom: 0;
}

/* Full-width alternating activity sections */
.activity-feature {
  padding: 4.5rem 0;
  background: var(--white);
  /* Anchor jumps land below the fixed navbar */
  scroll-margin-top: calc(var(--nav-height, 90px) + 1rem);
}

.activity-feature--alt {
  background: var(--cream);
}

.activity-feature--night {
  background: var(--forest-deep);
}

.activity-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem 4.5rem;
  align-items: center;
}

/* Alternate: image right, content left */
.activity-feature--alt .activity-feature-grid .activity-media {
  order: 2;
}

.activity-feature--alt .activity-feature-grid .activity-copy {
  order: 1;
}

.activity-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 55px rgba(26, 18, 12, 0.22);
}

.activity-media img {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

.activity-media:hover img {
  transform: scale(1.05);
}

.activity-copy {
  position: relative;
  max-width: 36rem;
}

.activity-copy .section-label {
  display: inline-block;
  margin-bottom: 0.6rem;
}

.activity-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.activity-copy p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 0 0 1.1rem;
}

.activity-copy .btn {
  margin-top: 0.75rem;
}

/* Dark variant keeps text readable on the deep forest background */
.activity-feature--night .activity-title {
  color: var(--white);
}

.activity-feature--night .activity-copy p {
  color: rgba(255, 255, 255, 0.85);
}

.activity-feature--night .activity-copy .section-label {
  color: var(--sand-gold);
}

/* Tablet: 2-column becomes tighter, then stacks */
@media (max-width: 1024px) and (min-width: 769px) {
  .activity-feature-grid {
    gap: 2.25rem 2.5rem;
  }

  .activity-media img {
    height: clamp(280px, 38vw, 420px);
  }
}

@media (max-width: 768px) {
  .activity-feature {
    padding: 3.25rem 0;
  }

  .activity-feature-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* Stacked: image always first, copy second */
  .activity-feature--alt .activity-feature-grid .activity-media {
    order: 1;
  }

  .activity-feature--alt .activity-feature-grid .activity-copy {
    order: 2;
  }

  .activity-media img {
    height: min(62vw, 380px);
  }

  .activity-copy {
    max-width: none;
  }

  .activities-intro {
    padding: 3.25rem 0 0.5rem;
  }
}

/* Responsive safeguards. Desktop declarations above remain authoritative. */
html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img,
picture,
video,
iframe,
canvas {
  max-width: 100%;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1024px) {
  main,
  section,
  header,
  footer,
  nav,
  .container,
  .hero-content,
  .content-main,
  .content-sidebar,
  .package-card,
  .contact-form,
  .footer-col,
  .why-features,
  .why-card__body,
  .packages-grid > *,
  .gallery-grid > *,
  .form-row > * {
    min-width: 0;
  }

  p,
  li,
  a,
  button,
  label,
  input,
  select,
  textarea,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    overflow-wrap: break-word;
  }
}

@media (max-width: 767px) {
  :root { --nav-height: 72px; }
  .nav-menu {
    width: min(100%, 22rem);
    height: 100dvh;
    max-height: 100dvh;
    padding:
      calc(var(--nav-height) + 1rem + env(safe-area-inset-top))
      max(1rem, env(safe-area-inset-right))
      max(1rem, env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-left));
  }
  .hero-content,
  .page-hero .hero-content {
    max-width: 100%;
    padding-inline: max(1rem, env(safe-area-inset-left));
  }
  .hero-buttons,
  .cta-buttons { width: 100%; }
  .hero-buttons .btn,
  .cta-buttons .btn { width: 100%; max-width: 22rem; white-space: normal; }
  .about-image img { height: clamp(16rem, 85vw, 24rem); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-form,
  .sidebar-card,
  .package-body,
  .testimonial-slide { padding: clamp(1rem, 5vw, 1.5rem); }
  .package-meta,
  .contact-item,
  .testimonial-author { flex-wrap: wrap; }
  .breadcrumb { flex-wrap: wrap; }
  .hamburger,
  .nav-link,
  .dropdown-menu a,
  .slider-btn,
  .dest-nav,
  .lightbox-close,
  .social-link,
  .whatsapp-float,
  button,
  input,
  select { min-height: 44px; }
  .hamburger,
  .slider-btn,
  .dest-nav,
  .lightbox-close,
  .social-link,
  .whatsapp-float { min-width: 44px; }
  .whatsapp-float {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .packages-grid,
  .beach-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid,
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .itinerary-day {
    grid-template-columns: 3.75rem minmax(0, 1fr);
    gap: 0.75rem;
  }
}

/* Keep reveal transforms and decorative paint inside the page viewport. */
main,
.footer {
  overflow-x: clip;
}
