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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C6963A;
  --gold-light: #E2B96A;
  --gold-dark: #9A7220;
  --black: #080B0F;
  --dark: #0D1117;
  --dark2: #121820;
  --dark3: #1A2332;
  --white: #FFFFFF;
  --grey: #8A9BB0;
  --grey-light: #C4D0DC;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

/* ─── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── ANIMATIONS ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.from-left { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── NAV ───────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  padding: 18px 60px;
  background: rgba(8, 11, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(198, 150, 58, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.1);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo-text span:last-child {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 11px 26px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ──────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,11,15,0.98) 0%,
    rgba(8,11,15,0.60) 40%,
    rgba(8,11,15,0.15) 70%,
    rgba(8,11,15,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 100px;
  max-width: 1200px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero-badge-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-badge span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.0s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover svg { transform: translateX(6px); }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ─── STATS ─────────────────────────────── */
#stats {
  background: var(--dark);
  border-top: 1px solid rgba(198,150,58,0.2);
  border-bottom: 1px solid rgba(198,150,58,0.2);
  padding: 70px 60px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 50px;
  text-align: center;
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(198,150,58,0.2);
}
.stat-item:first-child::before { display: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
  display: block;
}

/* ─── SECTION BASE ──────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-label span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }


 /* ─── ABOUT ─────────────────────────────── */
    #about {
      padding: 140px 60px;
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-image-main {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
    }
    .about-image-badge {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 160px;
      height: 160px;
      background: var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }
    .about-image-badge strong {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--black);
      line-height: 1;
    }
    .about-image-badge span {
      font-family: var(--font-display);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--black);
      margin-top: 6px;
    }
    .about-text { padding-top: 20px; }
    .about-text p {
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      line-height: 1.9;
      margin-top: 24px;
    }
    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
    }
    .about-feature {
      padding: 20px;
      border: 1px solid rgba(198,150,58,0.2);
      transition: border-color 0.3s, background 0.3s;
    }
    .about-feature:hover {
      border-color: var(--gold);
      background: rgba(198,150,58,0.05);
    }
    .about-feature-icon {
      font-size: 1.5rem;
      margin-bottom: 10px;
      display: block;
    }
    .about-feature h4 {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .about-feature p {
      font-size: 0.82rem;
      color: var(--grey);
      line-height: 1.6;
      margin: 0;
    }
    .about-cta { margin-top: 40px; }

/* ─── SERVICES ──────────────────────────── */
#services {
  background: var(--dark);
  padding: 140px 60px;
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.services-header-text { max-width: 500px; }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card-bg { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,11,15,0.95) 0%, rgba(8,11,15,0.2) 60%);
  transition: background 0.4s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(8,11,15,0.98) 0%, rgba(8,11,15,0.5) 60%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
}
.service-card-number {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 12px;
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  opacity: 0;
}
.service-card:hover .service-card-desc {
  max-height: 100px;
  opacity: 1;
}
.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── SAFARI ────────────────────────────── */
#safari {
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.safari-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.safari-intro p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.9;
  margin-top: 20px;
}
.safari-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.package-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  text-decoration: none;
  display: block;
}
.package-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.package-card:hover .package-card-bg { transform: scale(1.06); }
.package-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,11,15,0.85) 0%, rgba(8,11,15,0.3) 100%);
}
.package-card-content {
  position: relative;
  z-index: 2;
  padding: 44px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.package-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  align-self: flex-start;
}
.package-location {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.package-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.package-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.package-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.package-meta-item span:first-child {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.package-meta-item span:last-child {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.package-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.package-price small {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.package-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s;
}
.package-card:hover .package-cta {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

/* ─── WHY RED SEA ───────────────────────── */
#why {
  background: var(--dark2);
  padding: 140px 60px;
}
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header {
  text-align: center;
  margin-bottom: 90px;
}
.why-header .section-label { justify-content: center; }
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-feature {
  padding: 36px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.why-feature:hover { background: rgba(198,150,58,0.04); }
.why-feature:nth-child(2n) { border-right: none; }
.why-feature:nth-child(n+3) { border-bottom: none; }
.why-feature-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(198,150,58,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.why-feature h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.why-feature p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.7;
}
.why-image-stack { position: relative; }
.why-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.why-image-accent {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--dark2);
}

/* ─── QUOTE ─────────────────────────────── */
#quote {
  padding: 120px 60px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#quote::before {
  content: '"';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 30rem;
  color: rgba(198,150,58,0.03);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}
.quote-text em { color: var(--gold); font-style: inherit; }
.quote-author {
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  z-index: 1;
}

/* ─── CTA SECTION ───────────────────────── */
#cta {
  position: relative;
  padding: 160px 60px;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg2.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,11,15,0.7) 0%, rgba(8,11,15,0.4) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner .section-label { justify-content: center; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 28px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 52px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 20px 44px;
  transition: all 0.3s;
}
.btn-primary-lg:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(198,150,58,0.3);
}
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 44px;
  transition: all 0.3s;
}
.btn-outline-lg:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── FOOTER ────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(198,150,58,0.15);
  padding: 80px 60px 40px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-logo img { height: 44px; width: auto; }
.footer-logo-text span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}
.footer-logo-text span:last-child {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--grey);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-padi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── KEYFRAMES ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── MOBILE ────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 22px 30px; }
  nav.scrolled { padding: 14px 30px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,11,15,0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; z-index: 1001; }

  #hero { height: 100svh; }
  .hero-content { padding: 0 30px 80px; }
  .hero-scroll-hint { right: 30px; }

  #stats { padding: 40px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; width: 100%; }
  .stat-item { padding: 20px 10px; }
  .stat-item::before { display: none; }
  .stat-number { font-size: 2.6rem; }
  .stat-label { font-size: 0.68rem; letter-spacing: 0.1em; }

      #about { padding: 80px 30px; grid-template-columns: 1fr; gap: 60px; }
      .about-image-badge { bottom: -20px; right: 0; }

  #services { padding: 80px 30px; }
  .services-header { flex-direction: column; gap: 20px; margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/3; }
  .service-card-desc { max-height: 100px; opacity: 1; }

  #safari { padding: 80px 30px; }
  .safari-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .safari-packages { grid-template-columns: 1fr; }

  #why { padding: 80px 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-stack { display: none; }

  #quote { padding: 80px 30px; }
  #cta { padding: 100px 30px; }

  footer { padding: 60px 30px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px 0; }
  .stat-item { padding: 16px 8px; }
  .stat-number { font-size: 2.2rem; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
}



/* ─── whatsapp ──────────────────────────────── */

.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:15px;
    z-index:99999;

    background:#25D366;
    color:#fff;

    padding:12px 16px;
    border-radius:50px;

    text-decoration:none;
    font-weight:700;
    font-size:14px;

    box-sizing:border-box;
    max-width:calc(100vw - 30px);

    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

