/* ══════════════════════════════════════════════════════
   Jawai Safari - Main Stylesheet
   ══════════════════════════════════════════════════════ */

:root {
  --green: #1F5134;
  --green-dark: #163b25;
  --green-light: #eaf2ed;
  --gold: #C8A76A;
  --gold-light: #f7f0e3;
  --bg: #FAF9F6;
  --white: #FFFFFF;
  --dark: #1F2937;
  --gray-light: #F5F5F5;
  --border: #E5E7EB;
  --text-muted: #6B7280;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }

/* ── Layout ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px,4vw,48px); }

/* ── Shared Components ─────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-light); border: 1px solid #e8d9bb;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-family: var(--font-head); font-size: clamp(26px,3.5vw,42px); font-weight: 800; color: var(--dark); letter-spacing: -.02em; margin-bottom: 10px; }
.section-head p { font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 100px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(31,81,52,.25); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green);
  font-size: 15px; font-weight: 600; padding: 13px 27px; border-radius: 100px;
  border: 1.5px solid var(--green); transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 100px;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: #b8924d; transform: translateY(-1px); }


/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
#header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(95%, 1280px); z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.10); border: 1px solid rgba(255,255,255,.7);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,.14); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 0 18px; height: 66px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon-box {
  width: 60px; height: 60px; background: var(--green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text-main { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--green); }
.logo-text-sub { font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 8px 12px; border-radius: 100px; transition: color .15s, background .15s; white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--green); background: var(--green-light); }

.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--dark); white-space: nowrap; }
.header-phone svg { color: var(--green); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px;
  background: var(--green-light); border-radius: 10px; border: none; cursor: pointer; flex-shrink: 0;
}
.hamburger span { display: block; height: 2px; background: var(--green); border-radius: 2px; transition: transform .25s, opacity .2s; }
.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); }


/* ═══════════════════════════════════════════════════
   MOBILE DROPDOWN (inside header box)
   ═══════════════════════════════════════════════════ */
.mobile-dropdown {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  opacity: 0;
  padding: 0 18px;
}
.mobile-dropdown.open {
  max-height: 600px;
  opacity: 1;
  padding: 0 18px 18px;
}
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 8px;
}

.dropdown-nav { display: flex; flex-direction: column; gap: 2px; }
.dropdown-nav a {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--dark);
  padding: 11px 12px; border-radius: 10px;
  transition: background .15s, color .15s;
}
.dropdown-nav a:hover { background: var(--green-light); color: var(--green); }
.nav-icon {
  width: 32px; height: 32px; background: var(--gray-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .15s;
}
.dropdown-nav a:hover .nav-icon { background: var(--green); }
.dropdown-nav a .nav-icon svg { color: var(--green); transition: color .15s; }
.dropdown-nav a:hover .nav-icon svg { color: white; }

.dropdown-foot {
  padding-top: 12px; margin-top: 6px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 9px;
}
.dropdown-foot .btn-primary { justify-content: center; }
.dropdown-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: 100px; transition: background .2s, border-color .2s;
}
.dropdown-wa:hover { background: #25D366; color: white; border-color: #25D366; }
.dropdown-wa svg { color: #25D366; }
.dropdown-wa:hover svg { color: white; }

/* Overlay behind dropdown */
.dropdown-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.3); z-index: 999;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.dropdown-overlay.open { display: block; }

/* When dropdown is open, header needs higher z-index than overlay */
#header { z-index: 1000; }

/* On desktop, force-hide the dropdown */
@media (min-width: 861px) {
  .mobile-dropdown { display: none !important; }
  .dropdown-overlay { display: none !important; }
}

/* On mobile, allow it to show */
@media (max-width: 860px) {
  .mobile-dropdown { display: block; }
}


/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
#hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,18,10,.94) 0%, rgba(8,18,10,.55) 42%, rgba(8,18,10,.15) 70%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(16px,4vw,48px) clamp(48px,8vw,80px);
  padding-top: 120px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,.3); border: 1px solid rgba(200,167,106,.4);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--font-head); font-size: clamp(34px,6vw,80px); font-weight: 800;
  line-height: 1.0; color: var(--white); margin-bottom: 16px;
  letter-spacing: -.02em; max-width: 680px; text-transform: uppercase;
}
.hero-desc { font-size: clamp(14px,1.4vw,16px); color: rgba(255,255,255,.72); max-width: 440px; margin-bottom: 22px; line-height: 1.7; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 13px; border-radius: 100px; backdrop-filter: blur(6px);
}
.badge svg { color: var(--gold); width: 12px; height: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.btn-wa-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3); font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 100px; backdrop-filter: blur(6px); transition: background .2s;
}
.btn-wa-hero:hover { background: rgba(255,255,255,.20); }
.hero-stats-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  background: rgba(10,20,12,.65); border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px); border-radius: 14px;
  padding: 16px 24px; width: fit-content; max-width: 100%;
}
.hero-stat { text-align: center; padding: 0 20px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: clamp(20px,3vw,26px); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 3px; }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 500; }
.hero-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,.12); flex-shrink: 0; }


/* ═══════════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════════ */
#trust { padding: clamp(28px,4vw,56px) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.trust-card {
  background: var(--white); border-radius: var(--radius-md); padding: 22px 18px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px; transition: box-shadow .2s, transform .2s;
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.trust-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.trust-icon svg { color: var(--green); }
.trust-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--dark); }
.trust-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }


/* ═══════════════════════════════════════════════════
   PACKAGES SLIDER
   ═══════════════════════════════════════════════════ */
#packages { padding: clamp(32px,4vw,64px) 0; }

.slider-wrap { position: relative; }
.slider-viewport { overflow: hidden; padding: 8px 4px 12px; }
.slider-track {
  display: flex; gap: 22px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.pkg-card {
  flex: 0 0 calc((100% - 44px) / 3);
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s;
}
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pkg-card.featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green), var(--shadow-md); }

.pkg-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #c8d8cc; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.pkg-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-badge { position: absolute; top: 12px; left: 12px; background: var(--green); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; }
.pkg-badge.gold { background: var(--gold); }
.pkg-duration { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.65); color: #fff; font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(4px); }

.pkg-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pkg-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.pkg-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; flex: 1; }
.pkg-price { display: flex; align-items: baseline; gap: 6px; padding-top: 8px; border-top: 1px solid var(--gray-light); }
.pkg-price strong { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--green); }
.pkg-price span { font-size: 12px; color: var(--text-muted); }

.pkg-actions { display: flex; gap: 8px; margin-top: 4px; }
.pkg-btn-details {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--green); border: 1.5px solid var(--green);
  font-size: 13px; font-weight: 600; padding: 10px 14px; border-radius: 100px;
  transition: background .2s, color .2s;
}
.pkg-btn-details:hover { background: var(--green); color: #fff; }
.pkg-btn-book {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  font-size: 13px; font-weight: 600; padding: 10px 14px; border-radius: 100px;
  transition: background .2s;
}
.pkg-btn-book:hover { background: var(--green-dark); }

/* Arrows */
.slider-arrow {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); z-index: 5; transition: background .2s, color .2s, opacity .2s;
}
.slider-arrow:hover { background: var(--green); color: #fff; }
.slider-arrow.prev { left: -20px; }
.slider-arrow.next { right: -20px; }
.slider-arrow:disabled { opacity: .35; cursor: not-allowed; }

/* Dots */
.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 24px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d1d5db; border: none; padding: 0;
  transition: background .2s, width .2s;
}
.slider-dot.active { background: var(--green); width: 24px; border-radius: 100px; }


/* ═══════════════════════════════════════════════════
   WHY
   ═══════════════════════════════════════════════════ */
#why { padding: clamp(32px,4vw,64px) 0; background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: #c8d8cc; box-shadow: var(--shadow-lg); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img-badge { position: absolute; top: 18px; right: 18px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.why-img-badge svg { color: var(--gold); }
.why-img-badge span { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--dark); }
.why-checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-check { width: 30px; height: 30px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check svg { color: var(--green); }
.why-item-text strong { font-size: 14px; font-weight: 600; color: var(--dark); display: block; margin-bottom: 2px; }
.why-item-text p { font-size: 13px; color: var(--text-muted); }
.why-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.why-stat { background: var(--gray-light); border-radius: var(--radius-md); padding: 16px 12px; text-align: center; }
.why-stat strong { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--green); display: block; }
.why-stat span { font-size: 11px; color: var(--text-muted); }


/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */
#gallery { padding: clamp(32px,4vw,64px) 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.gal-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; background: #c8d8cc; aspect-ratio: 4/3;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gal-item:hover img { transform: scale(1.06); }
.gallery-cta { text-align: center; }


/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
#testimonials { padding: clamp(32px,4vw,64px) 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: var(--bg); border-radius: var(--radius-md); padding: 24px 20px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.review-top { display: flex; align-items: center; gap: 12px; }
.reviewer-img { width: 40px; height: 40px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--green); font-size: 13px; flex-shrink: 0; }
.reviewer-name { font-weight: 600; color: var(--dark); font-size: 13px; }
.reviewer-meta { font-size: 12px; color: var(--text-muted); }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { color: #FBBF24; width: 13px; height: 13px; }
.review-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.review-source { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border); }
.google-dot { width: 8px; height: 8px; border-radius: 50%; background: #4285F4; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════ */
#cta-section { padding: clamp(32px,4vw,64px) 0; }
.cta-card { background: linear-gradient(135deg, var(--green) 0%, #2d7048 60%, #1a4028 100%); border-radius: var(--radius-lg); padding: clamp(28px,5vw,56px) clamp(22px,5vw,56px); display: flex; justify-content: space-between; align-items: center; gap: 36px; position: relative; overflow: hidden; }
.cta-bg-shape { position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none; }
.cta-left { position: relative; z-index: 1; }
.cta-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.cta-h2 { font-family: var(--font-head); font-size: clamp(22px,3vw,36px); font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -.02em; }
.cta-p { font-size: 14px; color: rgba(255,255,255,.72); max-width: 400px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; flex-shrink: 0; }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.3); font-size: 15px; font-weight: 600; padding: 14px 24px; border-radius: 100px; transition: background .2s; }
.btn-cta-outline:hover { background: rgba(255,255,255,.20); }


/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
#faq { padding: clamp(32px,4vw,64px) 0; background: var(--white); }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 20px; text-align: left; font-size: 14px; font-weight: 600; color: var(--dark); background: none; border: none; cursor: pointer; transition: color .15s; }
.faq-question:hover { color: var(--green); }
.faq-icon { width: 26px; height: 26px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.faq-icon svg { color: var(--green); transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--green); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 16px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
#footer { background: var(--dark); color: rgba(255,255,255,.7); padding: clamp(40px,5vw,64px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--white); margin-bottom: 14px; }
.footer-logo-icon { width: 34px; height: 34px; background: var(--green); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-rating { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); padding: 9px 13px; width: fit-content; }
.footer-rating-stars { display: flex; gap: 2px; }
.footer-rating-stars svg { color: #FBBF24; width: 12px; }
.footer-rating span { font-size: 12px; color: rgba(255,255,255,.5); }
.footer-rating strong { font-size: 13px; color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pkg-card { flex: 0 0 calc((100% - 22px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .slider-arrow.prev { left: -8px; }
  .slider-arrow.next { right: -8px; }
}
@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .header-right .btn-primary { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-img { max-width: 440px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-p { margin: 0 auto; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
  .pkg-card { flex: 0 0 100%; }
  .slider-arrow { width: 40px; height: 40px; top: 35%; }
  .slider-arrow.prev { left: 4px; }
  .slider-arrow.next { right: 4px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-stats-bar { padding: 12px 14px; }
  .hero-stat { padding: 0 12px; }
  .hero-stat-div { height: 26px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   INNER PAGE HERO
   ═══════════════════════════════════════════════════ */
.page-hero {
  position: relative; min-height: 380px; display: flex; align-items: flex-end;
  overflow: hidden; padding-top: 90px;
}
.page-hero--short { min-height: 320px; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,18,10,.92) 0%, rgba(8,18,10,.5) 50%, rgba(8,18,10,.2) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-bottom: 48px; }
.page-hero-h1 {
  font-family: var(--font-head); font-size: clamp(30px,5vw,56px); font-weight: 800;
  color: #fff; letter-spacing: -.02em; margin-bottom: 10px; text-transform: uppercase;
}
.page-hero-desc { font-size: clamp(14px,1.4vw,16px); color: rgba(255,255,255,.7); max-width: 520px; line-height: 1.7; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { color: rgba(255,255,255,.35); }
.breadcrumb span { color: var(--gold); }


/* ═══════════════════════════════════════════════════
   SAFARIS PAGE
   ═══════════════════════════════════════════════════ */
.safaris-stats-strip { padding: 0; margin-top: -28px; position: relative; z-index: 3; }
.stats-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 900px; margin: 0 auto;
}
.stats-strip-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); padding: 12px 20px; border-radius: 100px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--dark);
}
.stats-strip-item svg { color: var(--green); flex-shrink: 0; }

.safaris-section { padding: clamp(40px,5vw,72px) 0; }
.safaris-count {
  margin-bottom: 24px; font-size: 14px; color: var(--text-muted);
}
.safaris-count strong { color: var(--dark); }

.safaris-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.safari-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: row; transition: box-shadow .25s, transform .25s;
}
.safari-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.safari-card.featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green), var(--shadow-md); }

.safari-card-img {
  position: relative; width: 280px; min-height: 220px; flex-shrink: 0; overflow: hidden; background: #c8d8cc;
}
.safari-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.safari-card:hover .safari-card-img img { transform: scale(1.05); }
.safari-card-img .pkg-badge { position: absolute; top: 12px; left: 12px; }
.safari-card-img .pkg-duration { position: absolute; top: 12px; right: 12px; }

.safari-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.safari-card-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--dark); }
.safari-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; }

.safari-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; border-top: 1px solid var(--gray-light); margin-top: auto; }
.safari-card-price strong { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--green); }
.safari-card-price span { font-size: 12px; color: var(--text-muted); display: block; }
.safari-card-actions { display: flex; gap: 8px; }

@media (max-width: 960px) {
  .safaris-grid { grid-template-columns: 1fr; }
  .safari-card { flex-direction: column; }
  .safari-card-img { width: 100%; min-height: 200px; aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .stats-strip-inner { flex-direction: column; align-items: center; }
}


/* ═══════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════ */
.about-h2 {
  font-family: var(--font-head); font-size: clamp(24px,3vw,36px); font-weight: 800;
  color: var(--dark); letter-spacing: -.02em; margin-bottom: 16px;
}

/* Intro */
.about-intro { padding: clamp(40px,5vw,72px) 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: #c8d8cc; box-shadow: var(--shadow-lg); }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-text p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }

/* Mission */
.about-mission { padding: clamp(32px,4vw,64px) 0; background: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: center;
}
.mission-icon { width: 60px; height: 60px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.mission-icon svg { color: var(--green); }
.mission-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.mission-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Values */
.about-values { padding: clamp(32px,4vw,64px) 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 22px; position: relative; transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-num {
  font-family: var(--font-head); font-size: 42px; font-weight: 800;
  color: var(--green-light); position: absolute; top: 16px; right: 18px; line-height: 1;
}
.value-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-icon svg { color: var(--green); }
.value-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Timeline */
.about-timeline { padding: clamp(32px,4vw,64px) 0; background: var(--white); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding: 20px 0; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: var(--border); transform: translateX(-50%); z-index: 0;
}
.timeline-item { position: relative; display: flex; margin-bottom: 32px; z-index: 1; }
.timeline-item:last-of-type { margin-bottom: 0; }
.timeline-item { justify-content: flex-start; padding-right: 50%; }
.timeline-item.right { justify-content: flex-end; padding-right: 0; padding-left: 50%; }
.timeline-dot {
  position: absolute; left: 50%; top: 20px; width: 14px; height: 14px;
  background: var(--green); border: 3px solid var(--white); border-radius: 50%;
  transform: translateX(-50%); z-index: 2; box-shadow: 0 0 0 3px var(--green-light);
}
.timeline-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; margin: 0 24px;
}
.timeline-year {
  display: inline-block; font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: var(--green); background: var(--green-light); padding: 3px 10px; border-radius: 100px;
  margin-bottom: 8px;
}
.timeline-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.timeline-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Team */
.about-team { padding: clamp(32px,4vw,64px) 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-img { aspect-ratio: 1/1; background: var(--green-light); overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--green);
}
.team-info { padding: 18px; }
.team-info h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.team-role { font-size: 12px; font-weight: 600; color: var(--gold); display: block; margin-bottom: 10px; }
.team-info p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-img { max-width: 480px; margin: 0 auto; }
  .mission-grid { grid-template-columns: 1fr; }
  .timeline-item, .timeline-item.right { padding: 0 0 0 50%; justify-content: flex-start; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .timeline-line { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-item, .timeline-item.right { padding: 0 0 0 48px; }
  .timeline-card { margin: 0; }
}


/* ═══════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════ */
.contact-section { padding: clamp(40px,5vw,72px) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: flex-start; }

/* Info Column */
.contact-info-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; background: var(--green-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { color: var(--green); }
.contact-info-icon.wa { background: #dcf8e6; }
.contact-info-icon.wa svg { color: #25D366; }
.contact-info-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { font-size: 13px; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--green); }

/* Form Column */
.contact-form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.contact-form-card h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.contact-form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

.contact-form-body { display: flex; flex-direction: column; gap: 0; }
.form-row { margin-bottom: 16px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px;
}
.form-group .req { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg); transition: border-color .2s, box-shadow .2s;
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,81,52,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: auto; }

.contact-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* Alerts */
.form-alert {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px; border-radius: 14px; margin-bottom: 20px;
}
.form-alert.success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.form-alert.success svg { color: #059669; flex-shrink: 0; margin-top: 2px; }
.form-alert.success strong { display: block; font-size: 14px; margin-bottom: 4px; }
.form-alert.success p { font-size: 13px; line-height: 1.5; }
.form-alert.error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.form-alert.error svg { color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.form-alert.error p { font-size: 13px; }

/* Map */
.contact-map { padding: 0 0 clamp(40px,5vw,72px); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .form-row.two-col { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
}


/* ═══════════════════════════════════════════════════
   SINGLE SAFARI DETAIL PAGE
   ═══════════════════════════════════════════════════ */

/* Hero */
.safari-hero {
  position: relative; min-height: 420px; display: flex; align-items: flex-end;
  overflow: hidden; padding-top: 90px;
}
.safari-hero-bg { position: absolute; inset: 0; z-index: 0; }
.safari-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.safari-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,18,10,.95) 0%, rgba(8,18,10,.55) 45%, rgba(8,18,10,.15) 100%);
}
.safari-hero-content { position: relative; z-index: 2; padding-bottom: 48px; }
.safari-hero-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--green); color: #fff; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.safari-hero-badge.gold { background: var(--gold); }
.safari-hero-h1 {
  font-family: var(--font-head); font-size: clamp(28px,5vw,52px); font-weight: 800;
  color: #fff; letter-spacing: -.02em; margin-bottom: 16px; line-height: 1.1;
}
.safari-hero-meta { display: flex; flex-wrap: wrap; gap: 16px; }
.shm-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 7px 14px; border-radius: 100px; backdrop-filter: blur(6px);
}
.shm-item svg { color: var(--gold); }

/* Two-column layout */
.safari-detail { padding: clamp(36px,5vw,64px) 0; }
.safari-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: flex-start; }

/* Content blocks */
.safari-content { display: flex; flex-direction: column; gap: 32px; }
.sd-block h2 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--dark); margin-bottom: 14px; letter-spacing: -.01em;
}
.sd-block h3 {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.sd-block p {
  font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px;
}
.sd-block p:last-child { margin-bottom: 0; }

/* Lists */
.sd-list { display: flex; flex-direction: column; gap: 8px; }
.sd-list-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--dark); padding: 8px 12px;
  background: var(--bg); border-radius: 10px;
}
.sd-list-item svg { flex-shrink: 0; margin-top: 2px; }
.sd-list-item.highlight svg { color: var(--gold); }
.sd-list-item.included svg { color: var(--green); }
.sd-list-item.excluded svg { color: #ef4444; }
.sd-list-item.bring svg { color: var(--gold); }
.highlights-list .sd-list-item { background: var(--gold-light); border: 1px solid #e8d9bb; }

/* Inclusions / Exclusions side by side */
.sd-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sd-inc-col, .sd-exc-col { min-width: 0; }

/* Quick info grid */
.sd-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sd-info-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 16px; display: flex; flex-direction: column; gap: 4px;
}
.sd-info-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.sd-info-icon svg { color: var(--green); }
.sd-info-card strong { font-size: 13px; font-weight: 600; color: var(--dark); }
.sd-info-card span { font-size: 12px; color: var(--text-muted); }

/* Gallery */
.sd-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sd-gal-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: #c8d8cc; }
.sd-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.sd-gal-item:hover img { transform: scale(1.06); }

/* ── Sticky Sidebar ── */
.safari-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 16px;
}
.sidebar-price { text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sidebar-price strong {
  font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--green);
  display: block; line-height: 1;
}
.sidebar-price span { font-size: 13px; color: var(--text-muted); }

.sidebar-meta { display: flex; flex-direction: column; gap: 10px; }
.sidebar-meta-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
}
.sidebar-meta-row svg { color: var(--green); flex-shrink: 0; }
.sidebar-meta-row strong { color: var(--dark); }

.sidebar-book { width: 100%; justify-content: center; font-size: 16px; padding: 16px 28px; }
.sidebar-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: transparent; color: var(--dark); border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 600; padding: 13px 20px; border-radius: 100px;
  transition: background .2s, border-color .2s, color .2s;
}
.sidebar-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.sidebar-wa svg { color: #25D366; }
.sidebar-wa:hover svg { color: #fff; }
.sidebar-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-muted); transition: color .15s;
}
.sidebar-phone svg { color: var(--green); }
.sidebar-phone:hover { color: var(--green); }

/* Related Safaris */
.related-safaris { padding: clamp(32px,4vw,64px) 0; background: var(--white); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.related-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #c8d8cc; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-img .pkg-duration { position: absolute; top: 10px; right: 10px; }
.related-body { padding: 16px; }
.related-body h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.related-price strong { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--green); }
.related-price span { font-size: 12px; color: var(--text-muted); margin-left: 4px; }

/* Responsive */
@media (max-width: 960px) {
  .safari-detail-grid { grid-template-columns: 1fr; }
  .safari-sidebar { position: static; }
  .sidebar-card { max-width: 480px; }
  .sd-inc-exc { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .safari-hero { min-height: 340px; }
  .sd-info-grid { grid-template-columns: 1fr; }
  .sd-gallery { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════ */
.gallery-page-section { padding: clamp(36px,5vw,64px) 0; }

/* Filter Tabs */
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 20px;
}
.gf-tab {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--text-muted); background: var(--white); border: 1.5px solid var(--border);
  padding: 9px 18px; border-radius: 100px; cursor: pointer;
  transition: all .2s;
}
.gf-tab:hover { border-color: var(--green); color: var(--green); }
.gf-tab.active {
  background: var(--green); color: #fff; border-color: var(--green);
}
.gf-count {
  font-size: 11px; font-weight: 700; min-width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.08); border-radius: 100px; padding: 0 6px;
}
.gf-tab.active .gf-count { background: rgba(255,255,255,.25); }

/* Count text */
.gallery-count {
  text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 28px;
}
.gallery-count span { font-weight: 700; color: var(--green); }

/* Grid */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gp-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/3; background: #c8d8cc; cursor: pointer;
  transition: opacity .35s, transform .35s;
}
.gp-item.hidden {
  display: none;
}
.gp-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.gp-item:hover img { transform: scale(1.06); }

/* Hover Overlay */
.gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%, rgba(0,0,0,.3) 100%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 14px;
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay-top { display: flex; justify-content: flex-start; }
.gp-cat-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.2); color: #fff; padding: 4px 10px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.gp-overlay-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.gp-caption { font-size: 12px; color: rgba(255,255,255,.9); line-height: 1.4; flex: 1; }
.gp-zoom {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; cursor: pointer;
  transition: background .2s;
}
.gp-zoom:hover { background: var(--green); }

/* Make first item span 2 cols and 2 rows on large screens */
.gallery-page-grid .gp-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 1024px) {
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-page-grid .gp-item:first-child { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid .gp-item:first-child { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 6px; }
  .gf-tab { font-size: 12px; padding: 7px 14px; }
}


/* ═══════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }

.lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: background .2s;
}
.lb-arrow:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-content {
  max-width: 90vw; max-height: 85vh; display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.lb-content img {
  max-width: 100%; max-height: 75vh; border-radius: 12px;
  object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-info { text-align: center; }
.lb-caption { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.5; margin-bottom: 4px; }
.lb-counter { font-size: 12px; color: rgba(255,255,255,.4); }

@media (max-width: 640px) {
  .lb-arrow { width: 40px; height: 40px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 12px; right: 12px; }
}