/* ============================================================
   MAASAI HORIZON SAFARIS — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Josefin+Sans:wght@200;300;400;500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C878;
  --gold-dark: #8B6914;
  --earth: #1E0F08;
  --earth-mid: #3A1F10;
  --savanna: #F0E2C4;
  --cream: #FAF6EE;
  --sage: #5C6B4E;
  --white: #FFFFFF;
  --footer-bg: #0D0503;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Josefin Sans', sans-serif;

  --nav-height: 80px;
  --section-pad: 120px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--footer-bg);
}

/* Webkit scrollbar (Chrome, Edge, Safari — desktop) */
@media (min-width: 769px) {
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-track {
    background: var(--footer-bg);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
  }
}

/* Mobile scroll progress bar */
.scroll-progress {
  display: none;
}
@media (max-width: 768px) {
  .scroll-progress {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    z-index: 9999;
    transition: width 0.1s linear;
    pointer-events: none;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--savanna);
  background: var(--earth);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-weight: 300;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
}

/* ── Utility ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.text-gold { color: var(--gold); }
.text-savanna { color: var(--savanna); }
.bg-dark { background: var(--earth); }
.bg-cream { background: var(--cream); color: var(--earth); }
.bg-earth-mid { background: var(--earth-mid); }
.bg-footer { background: var(--footer-bg); }

/* ── Noise Texture Overlay ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Custom Cursor ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s;
  opacity: 0.6;
}

.cursor-dot.hover {
  width: 16px;
  height: 16px;
  background: var(--gold-light);
}

.cursor-ring.hover {
  width: 54px;
  height: 54px;
  border-color: var(--gold-light);
}

@media (max-width: 640px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto !important; }
}

/* ── Loading Screen ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: var(--earth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderFill 1.5s ease-in-out forwards;
}

@keyframes loaderFill {
  0% { width: 0; }
  60% { width: 75%; }
  100% { width: 100%; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(30, 15, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(201, 168, 76, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-logo .logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--savanna);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
  background: var(--gold);
  padding: 12px 28px;
  border-radius: 0;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--savanna);
  transition: transform 0.35s ease, opacity 0.25s ease;
  margin: 4px 0;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 8, 3, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 300;
  color: var(--savanna);
  text-decoration: none;
  letter-spacing: 2px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, color 0.3s, background 0.3s;
}

.mobile-menu a:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.mobile-book-btn {
  margin-top: 16px !important;
  background: var(--gold) !important;
  color: var(--earth) !important;
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  padding: 14px 40px !important;
  border: none !important;
  width: auto !important;
  border-radius: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
}

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── Section Headers ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
  background: var(--gold);
  padding: 16px 36px;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-gold .arrow {
  transition: transform 0.3s;
}

.btn-gold:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--savanna);
  background: transparent;
  border: 1px solid rgba(240, 226, 196, 0.3);
  padding: 16px 36px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  cursor: pointer;
}

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

.btn-ghost .arrow {
  transition: transform 0.3s;
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 15, 8, 0.85) 0%, rgba(30, 15, 8, 0.3) 60%, rgba(30, 15, 8, 0.15) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 60px;
}

.page-hero-content .section-tag {
  justify-content: center;
  margin-bottom: 16px;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 300;
  color: var(--savanna);
}

/* ── Homepage Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: heroFloat 22s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% { transform: scale(1.04) translateX(0); }
  100% { transform: scale(1.1) translateX(-12px); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 15, 8, 0.82) 0%,
    rgba(30, 15, 8, 0.55) 45%,
    rgba(30, 15, 8, 0.15) 75%,
    rgba(30, 15, 8, 0.45) 100%
  );
  z-index: 1;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(30, 15, 8, 0.9) 0%, transparent 100%);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.4s;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--savanna);
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.7s;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 200;
  line-height: 1.7;
  color: rgba(240, 226, 196, 0.75);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 1s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 1.25s;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 1.6s;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ── Marquee Strip ── */
.marquee {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  padding: 0 24px;
}

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

/* ── About Preview ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

.about-images .img-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 84%;
  object-fit: cover;
}

.about-images .img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 46%;
  object-fit: cover;
  border: 4px solid var(--cream);
  z-index: 2;
}

.about-images .gold-line {
  position: absolute;
  top: 10%;
  left: -20px;
  width: 1px;
  height: 60%;
  background: var(--gold);
}

.about-images .diamond {
  position: absolute;
  bottom: 38%;
  left: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  transform: rotate(45deg) translateX(-50%);
  z-index: 3;
}

.about-text .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-text p {
  font-size: 0.95rem;
  color: rgba(240, 226, 196, 0.72);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-text .btn-ghost {
  margin-top: 20px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--savanna);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.78rem !important;
  color: rgba(240, 226, 196, 0.55) !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--earth-mid);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 48px 60px;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}

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

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.55);
}

/* ── Safari Cards (Homepage Featured) ── */
.safari-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 40px;
}

.safari-header-right {
  max-width: 380px;
  text-align: right;
}

.safari-header-right p {
  font-size: 0.92rem;
  color: rgba(240, 226, 196, 0.65);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.safari-card {
  position: relative;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.safari-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.safari-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 15, 8, 0.9) 0%, rgba(30, 15, 8, 0.1) 55%);
  transition: background 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.safari-card:hover .safari-card-overlay {
  background: linear-gradient(to top, rgba(30, 15, 8, 0.95) 0%, rgba(30, 15, 8, 0.35) 65%);
}

.safari-card-overlay h3 {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--savanna);
  margin-bottom: 8px;
}

.safari-card-desc {
  font-size: 0.85rem;
  color: rgba(240, 226, 196, 0.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin 0.5s ease;
  margin-bottom: 0;
}

.safari-card:hover .safari-card-desc {
  max-height: 100px;
  margin-bottom: 16px;
}

.safari-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin-top: 12px;
}

.safari-card-footer span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.5);
}

.safari-card-footer .card-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.safari-card:hover .card-link {
  gap: 12px;
}

/* ── Destination Cards (Homepage Preview) ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.dest-card {
  position: relative;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 15, 8, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.dest-card-overlay .country-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.dest-card-overlay h3 {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 6px;
}

.dest-card-overlay .pkg-count {
  font-size: 0.75rem;
  color: rgba(240, 226, 196, 0.5);
}

.dest-card .gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.dest-card:hover .gold-bar {
  width: 100%;
}

/* ── Testimonials ── */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  min-height: 320px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(16px);
  will-change: opacity, transform;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-slide .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
  color: var(--savanna);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 660px;
}

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

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.3);
}

.testimonial-author .author-info strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--savanna);
}

.testimonial-author .author-info span {
  font-size: 0.72rem;
  color: rgba(240, 226, 196, 0.5);
  letter-spacing: 0.08em;
}

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

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testimonial-dots button.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 15, 8, 0.78);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--savanna);
  margin-bottom: 14px;
}

.cta-banner-content p {
  font-size: 1rem;
  color: rgba(240, 226, 196, 0.6);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Safaris Page — Card Grid ── */
.safari-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.safari-page-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.safari-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.safari-page-card .card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

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

.safari-page-card .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--earth);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.safari-page-card .card-body {
  padding: 28px;
}

.safari-page-card .card-body h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 12px;
}

.safari-page-card .card-body p {
  font-size: 0.88rem;
  color: #6B5D50;
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid #E8DFD0;
  margin-bottom: 20px;
}

.card-details span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #8B7D6E;
}

.card-details span strong {
  font-weight: 400;
  color: var(--earth);
}

.safari-page-card .btn-gold {
  width: 100%;
  justify-content: center;
}

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.15);
  margin-bottom: 16px;
  line-height: 1;
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--savanna);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.85rem;
  color: rgba(240, 226, 196, 0.55);
  line-height: 1.65;
}

.step-item::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 38px;
  color: rgba(201, 168, 76, 0.3);
  font-size: 1.2rem;
}

.step-item:last-child::after { display: none; }

/* ── Included Grid ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.included-item {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s;
}

.included-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.included-item .inc-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.included-item .inc-icon svg {
  color: var(--gold);
  display: block;
}

.included-item h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--savanna);
  margin-bottom: 8px;
}

.included-item p {
  font-size: 0.82rem;
  color: rgba(240, 226, 196, 0.5);
  line-height: 1.6;
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #DDD3C2;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--earth);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.35s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 24px;
}

.faq-answer-inner p {
  font-size: 0.92rem;
  color: #6B5D50;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ── Destinations Page ── */
.dest-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.dest-block:nth-child(even) {
  direction: rtl;
}

.dest-block:nth-child(even) > * {
  direction: ltr;
}

.dest-block-img {
  position: relative;
  overflow: hidden;
}

.dest-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dest-block-img:hover img {
  transform: scale(1.05);
}

.dest-block-text {
  background: var(--earth);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-block-text .country-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.dest-block-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--savanna);
  margin-bottom: 20px;
}

.dest-block-text p {
  font-size: 0.92rem;
  color: rgba(240, 226, 196, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.dest-tags span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 6px 16px;
  border-radius: 20px;
}

.dest-block-text .wildlife-list {
  font-size: 0.78rem;
  color: rgba(240, 226, 196, 0.4);
  margin-top: 20px;
}

/* Seasons Table */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.season-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 32px;
}

.season-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--savanna);
  margin-bottom: 24px;
}

.season-row {
  margin-bottom: 16px;
}

.season-row .season-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(240, 226, 196, 0.5);
  margin-bottom: 6px;
}

.season-bar {
  height: 4px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.season-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0;
  transition: width 1.2s ease;
}

/* ── About Page — Values Grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.value-card .value-bg-num {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--savanna);
  margin-bottom: 12px;
  position: relative;
}

.value-card p {
  font-size: 0.88rem;
  color: rgba(240, 226, 196, 0.55);
  line-height: 1.65;
  position: relative;
}

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-card .team-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-card .team-bar {
  height: 2px;
  background: rgba(201, 168, 76, 0.15);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.team-card .team-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.5s ease;
}

.team-card:hover .team-bar::after {
  width: 100%;
}

.team-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 4px;
}

.team-card .team-role {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: #6B5D50;
  line-height: 1.6;
}

/* ── Conservation Section ── */
.conservation-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.conservation-img {
  overflow: hidden;
}

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

.conservation-text {
  background: var(--earth);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conservation-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--savanna);
  margin-bottom: 20px;
}

.conservation-text p {
  font-size: 0.92rem;
  color: rgba(240, 226, 196, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.conservation-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.conservation-stat {
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px;
}

.conservation-stat .stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.conservation-stat .stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.45);
}

/* ── Gallery ── */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--savanna);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--earth);
  border-color: var(--gold);
}

.masonry-gallery {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.gallery-item.hidden { display: none; }

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.85);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(30, 15, 8, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption .cap-cat {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--savanna);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10003;
  background: rgba(13, 5, 3, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

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

.lightbox-img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--savanna);
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 200;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: var(--savanna);
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 16px;
}

.lightbox-arrow:hover { color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.lightbox-caption .cap-cat {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.lightbox-caption h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--savanna);
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: border-color 0.3s;
}

.info-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.info-card-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.info-card p, .info-card a {
  font-size: 0.9rem;
  color: rgba(240, 226, 196, 0.7);
  line-height: 1.6;
}

.info-card a:hover { color: var(--gold); }

.response-note {
  font-size: 0.82rem;
  color: rgba(240, 226, 196, 0.45);
  margin-top: 20px;
  line-height: 1.6;
  font-style: italic;
}

/* ── Form ── */
.form-card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 44px;
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--savanna);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 226, 196, 0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 14px 16px;
  color: var(--savanna);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23C9A84C'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--earth);
  color: var(--savanna);
}

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

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.form-submit.sent {
  background: var(--sage);
  pointer-events: none;
}

.privacy-note {
  font-size: 0.72rem;
  color: rgba(240, 226, 196, 0.35);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

/* ── Offices Grid ── */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.office-card {
  padding: 36px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
}

.office-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--savanna);
  margin-bottom: 8px;
}

.office-card p {
  font-size: 0.85rem;
  color: rgba(240, 226, 196, 0.5);
  line-height: 1.6;
}

/* Trust Signals */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 28px;
}

.trust-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.trust-item h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--savanna);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.8rem;
  color: rgba(240, 226, 196, 0.45);
  line-height: 1.5;
}

/* ── Footer ── */
.footer {
  background: var(--footer-bg);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand .logo-img {
  height: 54px;
  width: auto;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(240, 226, 196, 0.45);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: border-color 0.3s, background 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(240, 226, 196, 0.5);
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(240, 226, 196, 0.3);
}

/* ── Reveal Animations ── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal { transform: translateY(36px); }
.reveal-l { transform: translateX(-36px); }
.reveal-r { transform: translateX(36px); }

.reveal.visible, .reveal-l.visible, .reveal-r.visible {
  opacity: 1;
  transform: translate(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .container { padding: 0 28px; }
  .nav { padding: 0 28px; }

  .about-preview { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 420px; }

  .safari-cards { grid-template-columns: 1fr 1fr; }
  .safari-grid-page { grid-template-columns: 1fr 1fr; }

  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-block { grid-template-columns: 1fr; min-height: auto; }
  .dest-block:nth-child(even) { direction: ltr; }
  .dest-block-img { height: 360px; }
  .dest-block-text { padding: 40px 28px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-item::after { display: none; }
  .included-grid { grid-template-columns: 1fr 1fr; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .conservation-split { grid-template-columns: 1fr; }
  .conservation-img { height: 320px; }

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

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

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

  .safari-header { flex-direction: column; align-items: flex-start; }
  .safari-header-right { text-align: left; }
  .masonry-gallery { columns: 2; }

  .offices-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }

  /* Lightbox: larger touch targets */
  .lightbox-arrow { padding: 24px; font-size: 2.8rem; }
  .lightbox-close { font-size: 2.4rem; top: 16px; right: 16px; }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 56px;
    --nav-height: 64px;
  }

  .container { padding: 0 18px; }
  .nav { padding: 0 18px; }

  /* Logo smaller on mobile */
  .nav-logo .logo-img { height: 46px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 0 18px; }
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .scroll-indicator { display: none; }

  /* Marquee: smaller text */
  .marquee { padding: 10px 0; }
  .marquee-track span { font-size: 0.62rem; padding: 0 16px; }

  /* About images: stack instead of overlap */
  .about-images {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about-images .img-large {
    position: relative;
    width: 100%;
    height: 280px;
  }
  .about-images .img-small {
    position: relative;
    width: 70%;
    height: 200px;
    align-self: flex-end;
    border-width: 3px;
    margin-top: -40px;
  }
  .about-images .gold-line { display: none; }
  .about-images .diamond { display: none; }

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

  .safari-cards { grid-template-columns: 1fr; }
  .safari-grid-page { grid-template-columns: 1fr; }
  .safari-card { height: 360px; }

  .dest-grid { grid-template-columns: 1fr; }
  .dest-card { height: 300px; }
  .dest-block-img { height: 280px; }
  .dest-block-text { padding: 32px 18px; }

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

  /* Testimonials: mobile-friendly layout */
  .testimonials-slider { min-height: 420px; }
  .testimonial-slide { padding: 0 8px; }
  .testimonial-slide blockquote { font-size: 1rem; line-height: 1.65; }
  .testimonial-author { flex-direction: column; gap: 10px; text-align: center; }
  .testimonial-author .author-info { text-align: center; }

  /* CTA Banner */
  .cta-banner { padding: 64px 0; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .cta-banner-buttons .btn-gold,
  .cta-banner-buttons .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 18px; }

  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .masonry-gallery { columns: 1; }

  /* Gallery: show captions on touch devices */
  .gallery-caption { transform: translateY(0); }
  .gallery-item img { filter: saturate(1); }

  /* Lightbox mobile */
  .lightbox-img { max-width: 95vw; max-height: 70vh; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-arrow { font-size: 2rem; padding: 12px; }
  .lightbox-close { top: 12px; right: 12px; font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand .logo-img { height: 46px; }

  .page-hero { height: 45vh; min-height: 320px; }
  .page-hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .page-hero-content { padding-bottom: 40px; }

  .trust-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }

  /* Button min tap size */
  .btn-gold, .btn-ghost { padding: 14px 28px; min-height: 48px; }
  .filter-btn { padding: 10px 18px; min-height: 44px; }

  /* Offices / contact */
  .offices-grid { grid-template-columns: 1fr; }
  .info-card { padding: 20px 16px; }
  .conservation-text { padding: 40px 18px; }
  .conservation-img { height: 260px; }
}

/* ── Extra-small devices ── */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .nav { padding: 0 14px; }
  .nav-logo .logo-img { height: 40px; }

  .hero-h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-eyebrow { font-size: 0.6rem; }

  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .safari-card { height: 320px; }
  .dest-card { height: 260px; }
  .dest-block-img { height: 220px; }

  .about-images .img-large { height: 220px; }
  .about-images .img-small { height: 160px; width: 65%; }

  .stat-item .stat-number { font-size: 2rem; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card .team-img { aspect-ratio: 4 / 3; }

  .mobile-menu a { font-size: 1.8rem; }

  .footer-brand .logo-img { height: 38px; }
  .footer-social a { width: 36px; height: 36px; }
}

/* ── Touch device enhancements ── */
@media (hover: none) and (pointer: coarse) {
  /* Show card descriptions without hover */
  .safari-card .safari-card-desc {
    max-height: 100px;
    margin-bottom: 12px;
  }

  /* Show gallery captions */
  .gallery-caption { transform: translateY(0); }
  .gallery-item img { filter: saturate(1); }

  /* Prevent hover-stuck states */
  .safari-card:hover img { transform: none; }
  .dest-card:hover img { transform: none; }
  .gallery-item:hover img { transform: none; }

  /* Larger touch targets */
  .lightbox-arrow { padding: 20px; min-width: 48px; min-height: 48px; }
  .lightbox-close { min-width: 48px; min-height: 48px; }
  .testimonial-dots button { width: 14px; height: 14px; }
  .filter-btn { min-height: 44px; }
}

/* ── Back to Top Button ── */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth);
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ── WhatsApp Floating Button ── */
#whatsapp-btn {
  position: fixed;
  bottom: 36px;
  right: 96px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9000;
  transition: all 0.3s ease;
  text-decoration: none;
}
#whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-3px) scale(1.05);
}

/* ── Testimonial Stars ── */
.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 18px;
  display: block;
}

@media (max-width: 768px) {
  #whatsapp-btn {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  #back-to-top {
    bottom: 84px;
    right: 24px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .testimonials-section,
  section.testimonials,
  [class*="testi"] {
    margin-top: 60px;
    padding-top: 60px;
  }
  .testi-dot, .dot {
    width: 10px;
    height: 10px;
    padding: 8px;
    box-sizing: content-box;
  }
  .testimonials-slider {
    touch-action: pan-y;
    user-select: none;
  }
}

@media (max-width: 768px) {
  .reveal, .reveal-l, .reveal-r {
    transition-duration: 0.5s;
  }
  /* Prevent horizontal overflow from side-enter animations */
  .reveal-l, .reveal-r { transform: translateY(24px); }
  .hero-bg, .page-hero-bg {
    animation: none;
    transform: none !important;
  }
}

/* ── Styled Select Dropdowns ── */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.form-select:hover {
  border-color: rgba(201, 168, 76, 0.5);
}
.form-select:focus {
  border-color: var(--gold);
  background-color: rgba(201, 168, 76, 0.07);
  outline: none;
}
.form-select option {
  background: #1E0F08;
  color: #F0E2C4;
  padding: 10px;
}

/* ── Offices Single Card ── */
.offices-grid {
  display: block;
}
.office-card {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 48px;
}
.office-country {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.office-city {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--savanna);
  margin-bottom: 20px;
}
.office-addr {
  font-size: 0.9rem;
  color: rgba(240, 226, 196, 0.6);
  line-height: 1.8;
}
