/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d4a3e;
  --green-light: #3b5e4e;
  --gold: #c8942a;
  --gold-light: #daa94a;
  --cream: #f0ead6;
  --cream-light: #f5f0e1;
  --brown: #5c3d2e;
  --brown-light: #8b6f47;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #e8e0d0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-script: 'Special Elite', cursive;
  --top-bar-height: 36px;
  --navbar-height: 62px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1010;
  background: #0d1f14;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(200,148,42,0.2);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: rgba(240, 234, 214, 0.65);
  letter-spacing: 0.5px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-left svg {
  color: var(--gold);
  flex-shrink: 0;
}

.tb-div {
  opacity: 0.25;
}

.top-bar-left a,
.top-bar-right a:not(.tb-cta) {
  color: inherit;
  transition: color 0.2s;
}

.top-bar-left a:hover,
.top-bar-right a:not(.tb-cta):hover {
  color: var(--gold);
}

.tb-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 4px 14px;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.tb-cta:hover {
  background: var(--gold-light) !important;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(26, 58, 42, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,148,42,0.15);
  transition: padding 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 10px 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--top-bar-height) + var(--navbar-height));
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 28, 18, 0.82) 0%,
    rgba(26, 58, 42, 0.55) 50%,
    rgba(10, 28, 18, 0.35) 100%
  );
}

/* Subtle giraffe-patch texture overlay on hero */
.hero-giraffe-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cpolygon points='40,15 100,5 130,38 122,82 75,96 30,70' fill='%23c8942a'/%3E%3Cpolygon points='185,25 258,14 285,52 276,100 220,114 175,85' fill='%235c3d2e'/%3E%3Cpolygon points='315,10 378,2 398,32 390,72 350,84 308,58' fill='%23c8942a'/%3E%3Cpolygon points='12,150 78,135 108,168 100,215 55,228 8,198' fill='%23c8942a'/%3E%3Cpolygon points='165,155 235,140 262,178 254,224 205,238 160,208' fill='%235c3d2e'/%3E%3Cpolygon points='295,148 362,136 388,172 380,218 334,230 288,202' fill='%23c8942a'/%3E%3Cpolygon points='55,285 118,272 144,308 137,352 95,364 50,338' fill='%235c3d2e'/%3E%3Cpolygon points='192,278 260,265 285,302 278,345 232,358 188,330' fill='%23c8942a'/%3E%3Cpolygon points='318,272 378,260 398,295 392,334 352,344 312,320' fill='%235c3d2e'/%3E%3C/svg%3E");
  background-size: 400px 400px;
}

/* Vertical side label decoration */
.hero-side-label {
  position: absolute;
  left: 28px;
  bottom: 120px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 0 80px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid rgba(200,148,42,0.4);
  padding: 6px 16px;
  backdrop-filter: blur(4px);
  background: rgba(200,148,42,0.08);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2.5s ease-in-out infinite;
}

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

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero-pre {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(240, 234, 214, 0.75);
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero-main {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.hero-rule {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(240, 234, 214, 0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

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

.hero-btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--gold);
  padding: 15px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}

.hero-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,148,42,0.4);
}

.hero-btn-ghost {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 15px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.hero-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Stats bar at bottom of hero */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10, 28, 18, 0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,148,42,0.2);
  padding: 18px 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(240, 234, 214, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(200,148,42,0.3);
  flex-shrink: 0;
}

/* Scroll Indicator — far right, vertical */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  right: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.scroll-indicator:hover {
  color: var(--gold);
}

.scroll-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-track {
  width: 2px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.scroll-thumb {
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 28px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -28px; }
  100% { top: 56px; }
}

.scroll-chevron {
  color: inherit;
  animation: bounceChevron 2s ease-in-out infinite;
}

@keyframes bounceChevron {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ===== MICRO-RIDGE DIVIDERS ===== */
.micro-ridge-divider {
  position: relative;
  z-index: 10;
  line-height: 0;
  font-size: 0;
}

.micro-ridge-divider svg {
  display: block;
  width: 100%;
  height: 20px;
}

/* Background colors for each transition */
.mrd-dark-to-cream  { background: var(--green-dark); }
.mrd-cream-to-dark  { background: var(--cream-light); }
.mrd-dark-to-mid    { background: var(--green-dark); }
.mrd-mid-to-cream   { background: var(--green-mid); }
/* Cream-to-cream transitions: gold gradient line */
.mrd-cream-to-contact,
.mrd-contact-to-marquee {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 4px 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 12px;
}

.section-tag-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--cream-light);
  display: block;
  margin-bottom: 4px;
}

.section-tag-script.dark {
  color: var(--brown-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--cream-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 16px;
}

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

.section-header.light .section-title,
.section-header.light .section-desc {
  color: var(--cream-light);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.9;
}

/* Ornament arrows */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.arrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
  background: var(--cream-light);
  padding: 80px 0;
  position: relative;
}

.destinations::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='350' height='350'%3E%3Cpolygon points='35,12 92,4 120,34 112,76 68,90 26,65' fill='%235c3d2e'/%3E%3Cpolygon points='178,20 248,10 278,46 268,92 214,106 170,78' fill='%23c8942a'/%3E%3Cpolygon points='10,145 72,132 100,162 93,208 52,220 8,194' fill='%23c8942a'/%3E%3Cpolygon points='162,138 230,126 256,158 250,202 208,216 162,188' fill='%235c3d2e'/%3E%3Cpolygon points='285,130 340,120 358,150 352,188 318,198 280,174' fill='%23c8942a'/%3E%3Cpolygon points='50,265 110,254 136,284 130,325 90,336 46,312' fill='%235c3d2e'/%3E%3Cpolygon points='188,260 252,250 276,280 270,318 232,330 186,306' fill='%23c8942a'/%3E%3C/svg%3E");
  background-size: 350px 350px;
  pointer-events: none;
}

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

.destinations .section-tag {
  color: var(--gold);
}

.destinations .section-desc {
  color: var(--text-dark);
  opacity: 0.7;
}

.destinations .ornament {
  color: var(--gold);
}

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

.dest-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: transform 0.4s;
}

.dest-card:hover {
  transform: translateY(-6px);
}

.dest-card-tall {
  grid-row: span 2;
  height: 100%;
}

.dest-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}

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

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,58,42,0.9) 0%, transparent 100%);
  color: var(--white);
}

.dest-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.dest-info p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* ===== SAFARIS SECTION ===== */
.safaris {
  position: relative;
  background: var(--green-dark);
  padding: 80px 0 100px;
  overflow: hidden;
}

.topo-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 14px,
      rgba(200,148,42,0.06) 14px,
      rgba(200,148,42,0.06) 28px
    );
}

.topo-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cpolygon points='30,10 82,2 108,32 100,72 60,84 22,60' fill='%23c8942a' opacity='0.12'/%3E%3Cpolygon points='160,20 220,12 248,46 240,88 196,100 155,74' fill='%235c3d2e' opacity='0.1'/%3E%3Cpolygon points='8,140 66,128 92,158 86,200 48,212 6,186' fill='%23c8942a' opacity='0.1'/%3E%3Cpolygon points='155,134 215,124 240,155 234,196 192,208 150,182' fill='%235c3d2e' opacity='0.12'/%3E%3Cpolygon points='45,255 100,245 125,272 118,310 80,320 40,296' fill='%23c8942a' opacity='0.1'/%3E%3Cpolygon points='175,248 232,238 256,268 250,306 210,318 168,294' fill='%235c3d2e' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

.safari-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.safari-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.safari-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s;
}

.safari-card:hover {
  transform: translateY(-4px);
}

.safari-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.safari-body {
  padding: 20px;
  color: var(--text-light);
}

.safari-duration {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.safari-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 8px 0;
  color: var(--white);
}

.safari-body p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 12px;
  line-height: 1.5;
}

.safari-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(26,58,42,0.8);
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ===== WHY US SECTION ===== */
.why-us {
  position: relative;
  background: var(--green-mid);
  padding: 80px 0 100px;
  overflow: hidden;
}

.leopard-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cellipse cx='30' cy='30' rx='14' ry='10' fill='%23c8942a'/%3E%3Cellipse cx='55' cy='36' rx='8' ry='6' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='18' cy='46' rx='7' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='110' cy='20' rx='12' ry='9' fill='%23c8942a'/%3E%3Cellipse cx='134' cy='26' rx='7' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='98' cy='34' rx='7' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='195' cy='15' rx='13' ry='9' fill='%23c8942a'/%3E%3Cellipse cx='218' cy='22' rx='8' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='182' cy='28' rx='7' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='60' cy='110' rx='14' ry='10' fill='%23c8942a'/%3E%3Cellipse cx='82' cy='118' rx='8' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='46' cy='124' rx='7' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='160' cy='100' rx='12' ry='9' fill='%23c8942a'/%3E%3Cellipse cx='183' cy='108' rx='8' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='146' cy='115' rx='7' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='20' cy='195' rx='13' ry='9' fill='%23c8942a'/%3E%3Cellipse cx='44' cy='202' rx='7' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='120' cy='185' rx='14' ry='10' fill='%23c8942a'/%3E%3Cellipse cx='143' cy='193' rx='8' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3Cellipse cx='210' cy='175' rx='12' ry='8' fill='%23c8942a'/%3E%3Cellipse cx='232' cy='183' rx='7' ry='5' fill='%23c8942a' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

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

.feature-card {
  text-align: center;
  color: var(--text-light);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200,148,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--cream-light);
}

.feature-card:hover .feature-icon {
  background: rgba(200,148,42,0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--cream);
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s;
}

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

/* ===== EXPERIENCES SECTION ===== */
.experiences {
  background: var(--cream-light);
  padding: 80px 0;
}

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.exp-text p {
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 24px;
  line-height: 1.8;
}

.exp-nav {
  display: flex;
  gap: 12px;
}

.exp-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--brown-light);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-btn:hover {
  background: var(--gold);
}

.exp-cards-wrap {
  overflow: hidden;
}

.exp-cards-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.exp-card {
  flex: 0 0 calc(50% - 10px);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.exp-card:hover img {
  transform: scale(1.06);
}

.exp-card-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
}

/* ===== CONTACT SECTION ===== */
.contact {
  position: relative;
  background: #1e3020;
  padding: 100px 0;
  overflow: hidden;
}

/* Giraffe-patch background for contact */
.contact-giraffe-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cpolygon points='45,18 112,6 145,42 135,92 82,108 32,78' fill='%23c8942a' opacity='0.18'/%3E%3Cpolygon points='200,28 275,14 308,54 296,106 238,122 190,88' fill='%235c3d2e' opacity='0.22'/%3E%3Cpolygon points='360,15 430,4 458,38 448,82 400,96 355,68' fill='%23c8942a' opacity='0.15'/%3E%3Cpolygon points='15,185 85,170 115,205 107,254 58,268 10,238' fill='%235c3d2e' opacity='0.2'/%3E%3Cpolygon points='185,178 258,164 288,200 280,248 226,262 178,232' fill='%23c8942a' opacity='0.17'/%3E%3Cpolygon points='358,165 425,152 454,186 446,232 396,246 352,218' fill='%235c3d2e' opacity='0.19'/%3E%3Cpolygon points='62,355 128,342 156,376 148,420 100,434 55,406' fill='%23c8942a' opacity='0.16'/%3E%3Cpolygon points='220,345 290,332 318,366 310,410 260,424 215,396' fill='%235c3d2e' opacity='0.2'/%3E%3Cpolygon points='385,338 448,326 474,358 466,400 420,414 378,388' fill='%23c8942a' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 500px 500px;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,30,20,0.85) 0%, rgba(26,58,42,0.7) 100%);
}

.contact > .container {
  position: relative;
  z-index: 2;
}

/* Two-column grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.contact-left {
  color: var(--text-light);
}

.contact-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 2px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.0;
  margin-bottom: 24px;
}

.contact-title-accent {
  color: var(--gold);
}

.contact-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 24px;
}

.contact-tagline {
  font-size: 1rem;
  color: rgba(240, 234, 214, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(240, 234, 214, 0.8);
  letter-spacing: 0.3px;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Right column — contact cards */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200,148,42,0.2);
  padding: 28px 32px 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.contact-card:hover {
  background: rgba(200,148,42,0.08);
  border-color: rgba(200,148,42,0.5);
  transform: translateX(4px);
}

.contact-step {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(200,148,42,0.22);
  line-height: 1;
  letter-spacing: -2px;
  flex-shrink: 0;
  min-width: 50px;
  text-align: right;
  padding-top: 2px;
}

.contact-card-body {
  flex: 1;
}

.contact-card-icon {
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.85rem;
  color: rgba(240, 234, 214, 0.6);
  line-height: 1.5;
  margin-bottom: 14px;
}

.contact-action-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 9px 20px;
  transition: all 0.3s;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}
.whatsapp-btn:hover { background: #1ebe5a; }

.email-btn {
  background: var(--brown-light);
  color: var(--white);
}
.email-btn:hover { background: var(--brown); }

.schedule-btn {
  background: var(--gold);
  color: var(--green-dark);
}
.schedule-btn:hover { background: var(--gold-light); }

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--cream-light);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.marquee-track {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.marquee-dot {
  color: var(--gold);
  font-size: 0.6rem;
}

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

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--green-dark);
  padding: 80px 0 0;
  color: var(--text-light);
  overflow: hidden;
}

.footer-topo {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cpolygon points='28,12 75,4 98,30 90,68 54,80 20,56' fill='%23c8942a'/%3E%3Cpolygon points='148,8 198,0 220,28 212,66 175,78 140,54' fill='%235c3d2e'/%3E%3Cpolygon points='235,15 275,8 280,36 272,66 246,74 228,52' fill='%23c8942a'/%3E%3Cpolygon points='8,138 56,128 78,156 72,196 38,206 4,182' fill='%235c3d2e'/%3E%3Cpolygon points='118,130 168,120 190,148 184,188 148,198 114,174' fill='%23c8942a'/%3E%3Cpolygon points='218,122 264,114 280,140 274,176 244,186 212,164' fill='%235c3d2e'/%3E%3Cpolygon points='40,228 86,220 108,246 102,280 68,280 36,258' fill='%23c8942a'/%3E%3Cpolygon points='155,220 202,212 224,238 218,272 184,280 152,258' fill='%235c3d2e'/%3E%3C/svg%3E");
  background-size: 280px 280px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 6px;
  color: var(--text-light);
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,148,42,0.1);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.6;
  transition: all 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 8px;
}

.footer-contact a {
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ===== ANIMATIONS (scroll reveal) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .safari-card {
    flex: 0 0 calc(50% - 12px);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero-stat {
    padding: 0 28px;
  }
}

@media (max-width: 768px) {
  .top-bar-left span:not(:first-child):not(.tb-div),
  .top-bar-left a {
    display: none;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 58, 42, 0.97);
    padding: 20px 24px;
    gap: 16px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-side-label {
    display: none;
  }

  .hero-stats-bar {
    padding: 14px 16px;
    gap: 0;
  }

  .hero-stat {
    padding: 0 14px;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.52rem;
  }

  .stat-sep {
    height: 24px;
  }

  .scroll-indicator {
    right: 16px;
    bottom: 80px;
  }

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

  .dest-card-tall {
    grid-row: span 1;
    height: 280px;
  }

  .safari-card {
    flex: 0 0 calc(100% - 0px);
  }

  .safari-carousel {
    padding: 0 40px;
  }

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

  .exp-cards-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .exp-cards-wrap::-webkit-scrollbar {
    display: none;
  }

  .exp-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

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

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

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

  .contact-card {
    padding: 22px 20px;
  }

  .contact-card h3,
  .contact-card p,
  .contact-action-btn {
    padding-left: 0;
    margin-left: 0;
    margin-top: 8px;
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .top-bar-right a:not(.tb-cta) {
    display: none;
  }

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

  .hero-main {
    letter-spacing: 2px;
  }

  .hero-stats-bar {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .stat-sep {
    display: none;
  }

  .hero-stat {
    flex: 0 0 50%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(200,148,42,0.15);
  }
}
