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

:root {
  --green-darkest: #0c2206;
  --green-dark:    #1a3d0a;
  --green-mid:     #2e7914;
  --green-light:   #4aad1f;
  --gold:          #f0aa1e;
  --gold-dark:     #c47d08;
  --beige:         #f4eee4;
  --beige-light:   #fdfaf5;
  --text-body:     #1f2933;
  --text-muted:    #4b5563;
  --text-light:    #e8f0e4;
  --text-pale:     #9cbf90;
  --border-light:  rgba(46, 121, 20, 0.15);
  --border-green:  rgba(74, 173, 31, 0.2);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--beige);
  color: var(--text-body);
  line-height: 1.6;
}

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

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar-transparent {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.navbar-solid {
  background: var(--green-darkest);
  border-bottom: 1px solid var(--border-green);
  box-shadow: 0 4px 20px rgba(12, 34, 6, 0.5);
}

.navbar-scrolled {
  background: rgba(12, 34, 6, 0.97);
  border-bottom: 1px solid var(--border-green);
  box-shadow: 0 10px 30px rgba(12, 34, 6, 0.6);
  backdrop-filter: blur(12px);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo { display: flex; align-items: center; }

.logo-img { max-height: 60px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  font-size: 0.95rem;
}

.nav-links a,
.nav-link-btn {
  background: none;
  border: none;
  font: inherit;
  font-size: 0.95rem;
  color: #e8f0e4;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s, transform 0.15s;
}

.nav-links a:hover,
.nav-link-btn:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.5rem 1.3rem !important;
  border-radius: 999px;
  border: 1px solid rgba(240, 170, 30, 0.75) !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--green-darkest) !important;
  transform: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8f0e4;
  border-radius: 2px;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   DROPDOWN MENUS
   =========================== */

.nav-item { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  /* padding-top creates the visual gap while keeping hover connected */
  padding: 0.75rem 1.8rem 1.8rem;
  background: transparent;
  color: #111;
  display: none;
  min-width: 300px;
  z-index: 200;
}

/* the visible box is on the inner wrapper */
.dropdown::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px rgba(12, 34, 6, 0.2);
  border: 1px solid rgba(46, 121, 20, 0.12);
  z-index: -1;
}

/* Wide dropdown gets flex only when shown */
.dropdown-wide {
  gap: 2rem;
  padding: 0.75rem 1.2rem 1.2rem;
  min-width: 560px;
}

.dropdown-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1.2;
}

.dropdown-right {
  flex: 1;
  background: var(--beige);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-width: 210px;
}

.dropdown-right img { width: 100%; height: auto; }

.drop-caption { padding: 0.75rem; }

.drop-caption h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.drop-caption p {
  font-size: 0.82rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.drop-btn {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  background: var(--gold);
  color: var(--green-darkest);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.drop-btn:hover { background: var(--gold-dark); }

.dropdown-column + .dropdown-column { margin-top: 1rem; }

.dropdown h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.dropdown a {
  display: block;
  font-size: 0.9rem;
  color: #111827;
  text-decoration: none;
  padding: 0.45rem 0;
  transition: color 0.15s, padding-left 0.15s;
}
.dropdown a:hover { color: var(--green-mid); padding-left: 0.3rem; }

/* Show dropdowns on hover */
.has-dropdown:hover > .dropdown { display: block; }
.has-dropdown:hover > .dropdown-wide { display: flex; }

/* ===========================
   HERO — full height (homepage)
   =========================== */

.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(12, 34, 6, 0.35), transparent 50%),
    linear-gradient(to right, rgba(12, 34, 6, 0.92) 0%, rgba(12, 34, 6, 0.4) 55%, rgba(12, 34, 6, 0.1) 100%);
}

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

.slide-content { position: relative; max-width: 620px; }

.slide-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: #f0ede8;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.slide-content p {
  max-width: 28rem;
  color: #c8dfc0;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

/* ===========================
   DESTINATION HERO (individual destination pages)
   =========================== */

.dest-hero {
  padding: 9rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
}

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

.dest-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 24, 4, 0.93) 0%,
    rgba(16, 46, 7, 0.78) 55%,
    rgba(8, 24, 4, 0.50) 100%
  );
}

.dest-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--beige);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.dest-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.dest-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  color: #f0ede8;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.dest-hero-content p {
  color: #b8d4b0;
  max-width: 34rem;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.dest-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.dest-hero-fact {
  background: rgba(10, 28, 5, 0.72);
  border: 1px solid rgba(74, 173, 31, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  color: #c0d8b8;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Best-time grid reused across dest pages */
.best-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.best-time-card {
  background: var(--beige-light);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
}

.best-time-card h4 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.best-time-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Related destinations mini-strip */
.related-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-dest-card {
  border-radius: 0.9rem;
  overflow: hidden;
  position: relative;
  height: 160px;
  display: block;
  text-decoration: none;
}

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

.related-dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 24, 4, 0.82) 0%, rgba(8, 24, 4, 0.2) 55%, transparent 100%);
}

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

.related-dest-label {
  position: absolute;
  bottom: 0.8rem; left: 1rem;
  z-index: 1;
  color: #f0ede8;
  font-size: 0.88rem;
  font-weight: 700;
}

.related-dest-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .best-time-grid { grid-template-columns: 1fr; }
  .related-dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-hero { padding: 7rem 0 4rem; }
  .dest-hero::after { display: none; }
}

/* ===========================
   PAGE HERO — inner pages
   =========================== */

.page-hero {
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 65%, #1e5c10 100%);
  padding: 9rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234aad1f' fill-opacity='0.05'%3E%3Cpath d='M40 40c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20zm-40 0c0-11 9-20 20-20s20 9 20 20-9 20-20 20S0 51 0 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--beige);
  clip-path: ellipse(55% 100% at 50% 100%);
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f0ede8;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.page-hero p {
  color: #9cbf90;
  max-width: 32rem;
  font-size: 1.05rem;
}

/* ===========================
   EYEBROW
   =========================== */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 700;
  display: block;
}

/* ===========================
   BUTTONS
   =========================== */

.btn-primary, .btn-ghost, .btn-gold {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: #f0ede8;
  box-shadow: 0 8px 28px rgba(46, 121, 20, 0.45);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(46, 121, 20, 0.6);
}

.btn-ghost {
  background: transparent;
  color: #e8f0e4;
  border: 1px solid rgba(232, 240, 228, 0.4);
}
.btn-ghost:hover {
  background: rgba(12, 34, 6, 0.5);
  border-color: rgba(240, 170, 30, 0.5);
  color: var(--gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-darkest);
  box-shadow: 0 8px 28px rgba(240, 170, 30, 0.4);
  border: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(240, 170, 30, 0.55);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ===========================
   SLIDER DOTS
   =========================== */

.slider-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1.5px solid rgba(240, 237, 232, 0.7);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, width 0.25s, border-color 0.25s;
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
}

/* ===========================
   SECTIONS
   =========================== */

.section       { padding: 4.5rem 0; background: var(--beige); }
.section-alt   { padding: 4.5rem 0; background: var(--green-darkest); }
.section-forest{ padding: 4.5rem 0; background: var(--green-dark); }

.section-title {
  font-size: 1.95rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--green-darkest);
}
.section-alt .section-title,
.section-forest .section-title { color: #f0ede8; }

.section-text {
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.75;
}
.section-alt .section-text,
.section-forest .section-text { color: var(--text-pale); }

.section-subtitle {
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.section-alt .section-subtitle { color: var(--text-pale); }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.section-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--green-mid);
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}
.section-link:hover { color: var(--gold-dark); }
.section-alt .section-link { color: var(--gold); }
.section-alt .section-link:hover { color: #e8f0e4; }

/* ===========================
   INTRO GRID (homepage)
   =========================== */

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 3rem;
  align-items: start;
}

.pill-grid { display: grid; gap: 1.2rem; }

.pill-card {
  background: var(--beige-light);
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  padding: 1.3rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pill-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 121, 20, 0.1);
}
.pill-card h3 { margin-bottom: 0.4rem; color: var(--green-dark); font-size: 1rem; }
.pill-card p  { color: var(--text-muted); font-size: 0.92rem; }

/* ===========================
   SAFARI CARDS
   =========================== */

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

.card {
  background: rgba(26, 61, 10, 0.55);
  border-radius: 1.2rem;
  padding: 1.6rem;
  border: 1px solid var(--border-green);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 170, 30, 0.45);
}

.card h3 { color: #f0ede8; font-size: 1.08rem; line-height: 1.3; }
.card p  { color: var(--text-pale); font-size: 0.93rem; flex: 1; }

.card-meta { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.card-meta span {
  font-size: 0.78rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(46, 121, 20, 0.3);
  color: #a8d898;
  border: 1px solid rgba(74, 173, 31, 0.25);
}

.card-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}
.card-link:hover { color: #fbbf24; }

/* ===========================
   DESTINATIONS STRIP (homepage)
   =========================== */

.destinations-strip {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 121, 20, 0.3);
  font-size: 0.85rem;
  background: var(--beige-light);
  color: var(--green-dark);
  font-weight: 500;
  transition: all 0.2s;
}
.tag:hover {
  background: rgba(46, 121, 20, 0.08);
  border-color: var(--green-mid);
}

/* ===========================
   DESTINATION PHOTO CARDS (homepage)
   =========================== */

.dest-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.dest-photo-card {
  position: relative;
  height: 260px;
  border-radius: 1.1rem;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--green-dark);
}

.dest-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* gradient covers that give each card its own colour identity */
.dest-photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.3s;
}

.dest-photo-card[data-color="green"]::before {
  background: linear-gradient(160deg, rgba(12, 34, 6, 0.35) 0%, rgba(12, 34, 6, 0.72) 100%);
}
.dest-photo-card[data-color="amber"]::before {
  background: linear-gradient(160deg, rgba(30, 20, 0, 0.3) 0%, rgba(90, 45, 0, 0.72) 100%);
}
.dest-photo-card[data-color="teal"]::before {
  background: linear-gradient(160deg, rgba(0, 30, 30, 0.3) 0%, rgba(0, 60, 55, 0.72) 100%);
}

/* bottom text gradient */
.dest-photo-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(8, 20, 4, 0.88) 0%, transparent 100%);
  z-index: 1;
}

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

.dest-photo-card:hover .dest-photo-body {
  transform: translateY(-3px);
}

.dest-photo-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.3rem;
  z-index: 2;
  transition: transform 0.3s ease;
}

.dest-photo-region {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.dest-photo-body h3 {
  font-size: 1.1rem;
  color: #f0ede8;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.dest-photo-body p {
  font-size: 0.82rem;
  color: rgba(220, 235, 215, 0.85);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.dest-photo-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dest-photo-card:hover .dest-photo-link {
  opacity: 1;
  transform: translateX(0);
}

/* emoji placeholder for cards without a photo */
.dest-photo-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  z-index: 0;
}

@media (max-width: 900px) {
  .dest-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dest-photo-grid { grid-template-columns: 1fr; }
  .dest-photo-card { height: 220px; }
}

/* ===========================
   CTA SECTION
   =========================== */

.section-cta {
  position: relative;
  overflow: hidden;
  background: var(--green-darkest);
}

/* background image layer */
.section-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

/* greenish tint overlay */
.section-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(10, 28, 5, 0.82) 0%,
      rgba(22, 58, 10, 0.75) 50%,
      rgba(10, 28, 5, 0.85) 100%);
}

.section-cta .container { position: relative; z-index: 1; }
.section-cta .section-title { color: #f0ede8; }
.section-cta .section-text  { color: #b8d4b0; }

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* ===========================
   TRUST STRIP
   =========================== */

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 0.5rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-pale);
  font-weight: 500;
}
.trust-icon { font-size: 1.3rem; }

/* ===========================
   STATS BAR
   =========================== */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
}
.stat-item {
  text-align: center;
  padding: 2.2rem 1rem;
  border-right: 1px solid var(--border-green);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-pale);
  margin-top: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===========================
   TESTIMONIALS
   =========================== */

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

.testimonial-card {
  background: rgba(26, 61, 10, 0.5);
  border: 1px solid var(--border-green);
  border-radius: 1.2rem;
  padding: 1.6rem;
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #c0d8b8;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}
.testimonial-location {
  font-size: 0.78rem;
  color: #6a9660;
}

/* ===========================
   DESTINATIONS GRID
   =========================== */

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

.dest-card {
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--beige-light);
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
}
.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(12, 34, 6, 0.14);
}

.dest-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.dest-placeholder {
  font-size: 3.5rem;
  user-select: none;
}
.dest-card-label {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  background: rgba(12, 34, 6, 0.75);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.dest-card-body { padding: 1.4rem; }

.dest-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--green-darkest);
}
.dest-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.dest-highlight {
  font-size: 0.77rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(46, 121, 20, 0.09);
  color: var(--green-dark);
  border: 1px solid rgba(46, 121, 20, 0.2);
}

/* ===========================
   SAFARI PHOTO CARDS (homepage)
   =========================== */

.safari-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.safari-photo-card {
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(18, 46, 8, 0.7);
  border: 1px solid var(--border-green);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.safari-photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 170, 30, 0.45);
  box-shadow: 0 16px 40px rgba(8, 20, 4, 0.5);
}

.safari-photo-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.safari-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

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

.safari-photo-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(12, 34, 6, 0.82);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.safari-photo-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.safari-photo-body h3 {
  font-size: 1.08rem;
  color: #f0ede8;
  line-height: 1.3;
}

.safari-photo-body p {
  font-size: 0.9rem;
  color: var(--text-pale);
  line-height: 1.65;
  flex: 1;
}

.safari-photo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.safari-photo-meta span {
  font-size: 0.76rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(46, 121, 20, 0.25);
  color: #a8d898;
  border: 1px solid rgba(74, 173, 31, 0.22);
  font-weight: 500;
}

.safari-photo-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
  align-self: flex-start;
}

.safari-photo-card:hover .safari-photo-link {
  gap: 0.55rem;
  color: #fbbf24;
}

@media (max-width: 900px) {
  .safari-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .safari-photo-grid { grid-template-columns: 1fr; }
}

/* ===========================
   SAFARI PACKAGES
   =========================== */

.safari-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 121, 20, 0.3);
  background: transparent;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-mid);
  color: #f0ede8;
  border-color: var(--green-mid);
}

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

.safari-card {
  background: var(--beige-light);
  border-radius: 1.2rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.safari-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(12, 34, 6, 0.12);
}

.safari-card-accent {
  height: 5px;
  background: linear-gradient(to right, var(--green-mid), var(--gold));
}

.safari-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.safari-card-body h3 {
  font-size: 1.18rem;
  color: var(--green-darkest);
  line-height: 1.3;
}
.safari-card-body p {
  color: var(--text-muted);
  font-size: 0.93rem;
  flex: 1;
  line-height: 1.65;
}

.safari-meta { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.safari-meta span {
  font-size: 0.78rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(46, 121, 20, 0.09);
  color: var(--green-dark);
  border: 1px solid rgba(46, 121, 20, 0.2);
  font-weight: 500;
}

.safari-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.safari-highlights li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.3rem;
  position: relative;
}
.safari-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

/* ===========================
   ABOUT PAGE
   =========================== */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-block {
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.about-img-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

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

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

.value-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(26, 61, 10, 0.5);
  border: 1px solid var(--border-green);
  transition: transform 0.2s, border-color 0.2s;
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 170, 30, 0.4);
}
.value-icon { font-size: 2rem; margin-bottom: 0.85rem; display: block; }
.value-card h3 { color: #f0ede8; margin-bottom: 0.4rem; font-size: 1rem; }
.value-card p  { color: var(--text-pale); font-size: 0.87rem; line-height: 1.55; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  border: 3px solid rgba(240, 170, 30, 0.35);
}
.team-card h3 {
  font-size: 1rem;
  color: var(--green-darkest);
  margin-bottom: 0.2rem;
}
.team-card .role {
  font-size: 0.83rem;
  color: var(--green-mid);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.team-card p { font-size: 0.87rem; color: var(--text-muted); }

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--beige-light);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}
.contact-form h2 {
  font-size: 1.5rem;
  color: var(--green-darkest);
  margin-bottom: 1.5rem;
}

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

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(46, 121, 20, 0.25);
  background: #fff;
  color: var(--text-body);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46, 121, 20, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-sidebar h2 {
  font-size: 1.4rem;
  color: var(--green-darkest);
  margin-bottom: 0.5rem;
}
.contact-sidebar > p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

.info-items { display: flex; flex-direction: column; gap: 1.2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(46, 121, 20, 0.09);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-text strong {
  display: block;
  font-size: 0.78rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
}
.info-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-block h3 {
  font-size: 1.1rem;
  color: var(--green-darkest);
  margin-bottom: 1rem;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0.95rem 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-darkest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-mid); }

.faq-icon {
  font-size: 1rem;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 0.9rem;
}

/* ===========================
   FOOTER
   =========================== */

.footer { background: var(--green-darkest); }

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-brand .logo-img { max-height: 100px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.87rem;
  color: #5a8252;
  max-width: 22rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: #5a8252;
  text-decoration: none;
  padding: 0.2rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #e8f0e4; }

.footer-bottom {
  border-top: 1px solid rgba(74, 173, 31, 0.12);
  padding: 1.2rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #3a5c34;
}

/* ===========================
   MOBILE NAV MENU
   =========================== */

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--green-darkest);
  border-top: 1px solid var(--border-green);
  padding: 1rem 0 1.5rem;
  gap: 0;
}
.mobile-nav.open { display: flex; }

.mobile-nav a,
.mobile-nav-label {
  padding: 0.75rem 5%;
  color: #c8dfc0;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(74, 173, 31, 0.08);
  display: block;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-label {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 1rem;
}

.mobile-nav-sub {
  padding: 0.55rem 5% 0.55rem 8%;
  color: #8ab882;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(74, 173, 31, 0.06);
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-sub:hover { color: #e8f0e4; }

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

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-story  { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-green); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { height: auto; min-height: 500px; padding: 5rem 0 3rem; }
  .slide { position: relative; }
  .intro-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .safari-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 1.2rem; font-size: 0.88rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .dropdown { display: none !important; }
}

@media (max-width: 640px) {
  .card-grid,
  .dest-grid,
  .values-grid,
  .team-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .safari-grid { grid-template-columns: 1fr; }
  .cta-content { flex-direction: column; align-items: flex-start; }
  .slide-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 7rem 0 4rem; }
  .page-hero::after { display: none; }
  .trust-strip { gap: 1.5rem; }
}
