/* ═══════════════════════════════════════════════
   JOSHIMWA PACKA — GLOBAL STYLESHEET
   ═══════════════════════════════════════════════ */

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

:root {
  --gold:       #c9a84c;
  --gold-light: #e8c87a;
  --dark:       #0d0d0d;
  --dark-2:     #141414;
  --dark-3:     #1c1c1c;
  --dark-4:     #242424;
  --olive:      #4a4a35;
  --olive-mid:  #6b6b4a;
  --cream:      #f5f0e8;
  --text-muted: rgba(255,255,255,0.55);
  --text-sub:   rgba(255,255,255,0.75);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     14px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

/* ─── Shared Section Labels ─── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  background: #f2b800;
  color: #0d0d0d;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(242,184,0,0.25);
}
.btn-primary:hover {
  background: #ffc400;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,184,0,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  border: 1.5px solid rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  background: #d4cab4;  /* cream/beige matching the reference */
  border-left: 5px solid #7a1a1a;  /* dark maroon left accent */
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 3px 16px rgba(0,0,0,0.22);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo group: image + text */
.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.2px;
}
.logo-tagline {
  font-size: 11px;
  font-weight: 400;
  color: #4a6741;  /* olive green matching reference */
  letter-spacing: 0.3px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #2a2a2a;
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: #7a1a1a;
  transition: width var(--transition);
}
.nav-links a:hover { color: #7a1a1a; }
.nav-links a:hover::after { width: 100%; }
.nav-burger {
  display: none;
  font-size: 26px;
  color: #1a1a1a;
  margin-left: auto;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.6);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero-script-tag {
  font-family: 'Caveat', 'Yellowtail', 'Great Vibes', cursive;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: 700;
  color: #f2b800;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6), 0 0 20px rgba(242,184,0,0.3);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.45s forwards;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.8vw, 19px);
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 34px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.75s forwards;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.hero-arrow:hover { background: rgba(201,168,76,0.3); }
.hero-arrow.prev { left: 32px; }
.hero-arrow.next { right: 32px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}


/* ═══════════════════════════════════════════════
   GALLERY — MOMENTS CAPTURED IN MOTION
   ═══════════════════════════════════════════════ */
.gallery-section {
  padding: 100px 0 80px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.gallery-section .section-label { color: #a07c30; }
.gallery-section .section-title { color: #111; }
.gallery-section .section-sub { color: #555; }

.gallery-track-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 18px;
}
.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

/* Row 1: slides to the right (left → right) */
.track-right { animation: slideRight 28s linear infinite; }
/* Row 2: slides to the left (right → left) */
.track-left  { animation: slideLeft  28s linear infinite; }

.gallery-track:hover { animation-play-state: paused; }

.gallery-card {
  width: 260px;
  height: 175px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.gallery-card img { transition: transform 0.5s ease; }
.gallery-card:hover img { transform: scale(1.07); }


/* ═══════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════ */
.why-section {
  background: var(--olive);
  padding: 56px 48px 48px;
  text-align: center;
}
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-label { color: rgba(255,255,255,0.6); }
.why-section .section-title { color: #fff; margin-bottom: 10px; }
.why-section .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 32px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: left;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}
.why-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   CONTACT HERO BANNER (MATCHING REFERENCE IMAGE 1)
   ═══════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 8% 60px;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 1;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.25) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    transparent 60%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 2;
}
.contact-hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
  text-align: left;
}
.contact-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8);
}
.contact-hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.8vw, 18.5px);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
/* ═══════════════════════════════════════════════
   DESTINATIONS PAGE (EXACT MATCH TO SCREENSHOTS)
   ═══════════════════════════════════════════════ */
.dest-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 8% 60px;
  overflow: hidden;
}
.dest-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 2;
}
.dest-hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  text-align: left;
}
.dest-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8);
}
.dest-hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(14.5px, 1.7vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Destinations Body Section (Warm Cream Background) */
.dest-main-section {
  background: #f9f7ea;
  padding: 72px 8% 120px;
}
.dest-group {
  max-width: 1240px;
  margin: 0 auto 80px;
}
.dest-group:last-child {
  margin-bottom: 0;
}
.dest-group-header {
  text-align: center;
  margin-bottom: 48px;
}
.dest-group-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.dest-group-sub {
  font-size: 14.5px;
  color: #555555;
  font-weight: 400;
}

/* Cards Grid */
.dest-cards-grid {
  width: 100%;
}
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2col-centered {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.grid-2col-centered .dest-card {
  width: calc(33.333% - 22px);
  min-width: 320px;
  max-width: 380px;
}

/* Destination Card */
.dest-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.dest-card-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-card-img img {
  transform: scale(1.06);
}
.dest-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.dest-card-title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
  line-height: 1.3;
}
.dest-card-location {
  font-size: 12px;
  color: #777777;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.dest-card-bullets {
  list-style: none;
  font-size: 13px;
  color: #444444;
  line-height: 1.85;
  margin-bottom: 24px;
  flex-grow: 1;
}
.dest-card-bullets li {
  margin-bottom: 2px;
}
.btn-card-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 9px 22px;
  background: #2a2503;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn-card-explore:hover {
  background: #3d3604;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   PROGRAM DETAIL PAGES (1 & 2 NIGHTS, WASINI, MOMBASA)
   ═══════════════════════════════════════════════ */
.program-detail-section {
  background: #ffffff;
  padding: 64px 8% 100px;
}
.program-detail-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.program-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.program-times-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.time-item {
  font-size: 13.5px;
  color: #444444;
}
.program-lead {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 40px;
}
.itinerary-section {
  margin-bottom: 48px;
}
.itinerary-heading {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
}
.itinerary-day {
  margin-bottom: 24px;
}
.day-title {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}
.day-desc {
  font-size: 13.5px;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 10px;
}
.day-overnight {
  font-size: 13px;
  color: #555555;
  margin-top: 6px;
}

/* Safari Moments Gallery */
.program-gallery-section {
  margin-top: 56px;
  margin-bottom: 48px;
}
.gallery-section-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 32px;
}
.program-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 180px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* CTA Wrap */
.program-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.btn-book-safari {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
  background: #f2b800;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(242, 184, 0, 0.35);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-book-safari:hover {
  background: #ffc400;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(242, 184, 0, 0.5);
}
.back-destinations-link {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-destinations-link:hover {
  color: #000000;
}

/* ═══════════════════════════════════════════════
   ABOUT US PAGE MAIN SECTION (EXACT MATCH TO SCREENSHOT)
   ═══════════════════════════════════════════════ */
.about-main-section {
  position: relative;
  background: #0a0a0a;
  padding: 100px 8% 120px;
  overflow: hidden;
}
.about-main-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-text-col {
  text-align: left;
}
.about-gold-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e6b800;
  margin-bottom: 20px;
}
.about-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-paragraph {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 520px;
}
.about-actions {
  margin-top: 32px;
}

/* Overlapping Dual Image Cards (Exact Match to Screenshot) */
.about-images-col {
  position: relative;
  height: 560px;
  width: 100%;
}
.about-image-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.4s ease;
}
.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-card.card-top {
  top: 15px;
  left: 0;
  width: 82%;
  max-width: 500px;
  height: 300px;
  z-index: 1;
  transform: rotate(3.5deg);
}
.about-image-card.card-bottom {
  bottom: 15px;
  right: 0;
  width: 85%;
  max-width: 520px;
  height: 315px;
  z-index: 2;
  transform: rotate(-2.5deg);
}
.about-image-card.card-top:hover {
  transform: rotate(3.5deg) scale(1.03) translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
}
.about-image-card.card-bottom:hover {
  transform: rotate(-2.5deg) scale(1.03) translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
}

/* ═══════════════════════════════════════════════
   HOMEPAGE TSAVO GATE CONTACT SECTION (EXACT MATCH)
   ═══════════════════════════════════════════════ */
.home-contact-section {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 8% 130px;
}
.home-contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.home-contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 15, 0.65);
  backdrop-filter: blur(2px);
  z-index: 2;
}
.home-contact-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.home-contact-left {
  text-align: left;
}
.home-contact-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  opacity: 0.9;
}
.home-contact-title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #e6b800;
  line-height: 1.18;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.home-contact-sub {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 16.5px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 480px;
}
.home-glass-card {
  background: rgba(30, 30, 25, 0.55) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5) !important;
}

/* ═══════════════════════════════════════════════
   CONTACT MAIN SECTION (MATCHING IMAGES 1 & 2)
   ═══════════════════════════════════════════════ */
.contact-main-section {
  position: relative;
  background: #0a0a0a;
  padding: 40px 8% 100px;
}
.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: flex-start;
}

/* Left side: Contact Information */
.contact-info-col {
  padding-top: 12px;
}
.contact-info-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #786b1a;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  color: #786b1a;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 15px;
  font-weight: 600;
  color: #786b1a;
}
.contact-val {
  font-size: 15px;
  color: #3e4f66;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-val:hover {
  color: #596f8c;
}

/* Right side: Contact Form Card */
.contact-form-card {
  background: #1c1c1c;
  border: 1px solid #333333;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.contact-form-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field-full {
  width: 100%;
}
.contact-form-card input,
.contact-form-card textarea {
  background: #252525;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  padding: 13px 18px;
  color: #e5e5e5;
  font-family: var(--font-sans);
  font-size: 13.5px;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #8c8c8c;
  font-size: 13.5px;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: #6b5f19;
  background: #292929;
}
.contact-form-card textarea {
  min-height: 155px;
  resize: vertical;
}
.btn-submit-contact {
  width: 100%;
  background: #302a04;
  border: 1px solid #484006;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  margin-top: 4px;
}
.btn-submit-contact:hover {
  background: #423b05;
  border-color: #594f08;
  transform: translateY(-1px);
}

.form-field-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.error-msg {
  font-size: 11.5px;
  color: #ff6b6b;
  margin-top: 4px;
  margin-left: 4px;
  min-height: 16px;
  display: block;
}
.input-error {
  border-color: #e63946 !important;
  background: rgba(230, 57, 70, 0.08) !important;
}
.form-status-msg {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 14px;
  margin-bottom: 6px;
  text-align: left;
}
.form-status-msg.status-success {
  background: rgba(37, 162, 68, 0.18);
  border: 1px solid #25a244;
  color: #72efdd;
}
.form-status-msg.status-info {
  background: rgba(242, 184, 0, 0.18);
  border: 1px solid #f2b800;
  color: #ffe6a7;
}


/* ═══════════════════════════════════════════════
   FOOTER (EXACT MATCH TO REFERENCE SCREENSHOT)
   ═══════════════════════════════════════════════ */
.site-footer {
  background: #cfc8b6;
  padding: 56px 48px 0;
  position: relative;
  color: #222222;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.6fr 1.6fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.footer-brand p {
  font-size: 13.5px;
  color: #2b2b2b;
  line-height: 1.6;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: #2b2b2b;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul li a:hover { color: #000000; }
.footer-contact li {
  font-size: 13.5px;
  color: #2b2b2b;
  line-height: 1.55;
  margin-bottom: 10px;
}
.footer-contact a { color: #2b2b2b; transition: color var(--transition); text-decoration: none; }
.footer-contact a:hover { color: #000000; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom p {
  font-size: 13px;
  color: #2b2b2b;
  font-weight: 400;
}
.site-courtesy {
  font-size: 12px !important;
  color: #444444 !important;
}

/* WhatsApp FAB / Yellow Action Button */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #f2b800;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  background: #ffc400;
  box-shadow: 0 6px 24px rgba(242,184,0,0.4);
}


/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.9); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* Gallery row animations — right (positive = scroll left, appears as track moving right) */
@keyframes slideRight {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes slideLeft {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


/* ═══════════════════════════════════════════════
   COMPREHENSIVE TABLET & MOBILE RESPONSIVE STYLES
   ═══════════════════════════════════════════════ */

/* Tablets (iPad / 769px to 1024px) */
@media (max-width: 1024px) {
  .site-nav { padding: 0 32px; }
  .home-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-main-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-images-col {
    height: 480px;
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .grid-2col-centered .dest-card {
    width: calc(50% - 16px);
    max-width: 100%;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* Mobile Phones (up to 768px) */
@media (max-width: 768px) {
  .site-nav {
    padding: 0 20px;
    height: 68px;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-burger {
    display: block !important;
    margin-left: auto !important;
    font-size: 26px !important;
    background: transparent !important;
    border: none !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    padding: 6px !important;
  }
  
  /* Mobile Menu Drawer */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    background: #111111 !important;
    padding: 24px 32px !important;
    gap: 16px !important;
    border-bottom: 2px solid #7a1a1a !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.85) !important;
    z-index: 9999 !important;
  }
  .nav-links.mobile-open a {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: left !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
  }
  .nav-links.mobile-open a:last-child {
    border-bottom: none !important;
  }
  .nav-links.mobile-open a:hover {
    color: #f2b800 !important;
    padding-left: 6px !important;
  }
  .nav-links.mobile-open a::after {
    display: none !important;
  }

  /* Hero Section */
  .hero {
    padding: 0 20px;
  }
  .hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 12px;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .hero-arrow {
    display: none;
  }

  /* About Section Images */
  .about-main-section {
    padding: 60px 20px 80px;
  }
  .about-images-col {
    height: 380px;
    width: 100%;
  }
  .about-image-card.card-top {
    width: 88%;
    height: 220px;
    top: 10px;
  }
  .about-image-card.card-bottom {
    width: 90%;
    height: 230px;
    bottom: 10px;
  }

  /* Destinations & Cards */
  .dest-main-section {
    padding: 48px 20px 80px;
  }
  .dest-hero {
    padding: 80px 20px 48px;
    min-height: 400px;
  }
  .grid-3col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .grid-2col-centered {
    flex-direction: column;
  }
  .grid-2col-centered .dest-card {
    width: 100%;
    max-width: 100%;
  }

  /* Program Details & Gallery */
  .program-detail-section {
    padding: 40px 20px 60px;
  }
  .program-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item {
    height: 140px;
  }

  /* Homepage Contact Section */
  .home-contact-section {
    padding: 60px 20px 80px;
    min-height: auto;
  }
  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-section {
    padding: 44px 20px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .site-footer {
    padding: 48px 20px 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

/* Small Mobile Screens (up to 480px) */
@media (max-width: 480px) {
  .program-gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-images-col {
    height: 320px;
  }
  .about-image-card.card-top {
    height: 180px;
  }
  .about-image-card.card-bottom {
    height: 190px;
  }
  .whatsapp-btn {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }
}
