/* ============================================================
   KATAMBUGA EXPEDITION — Custom Stylesheet
   Brand: Premium Tanzania Safari & Tour Operator
   ============================================================ */

/* -- CSS Variables ------------------------------------------ */
:root {
  --orange:     #F47A2E;
  --orange-dark:#d96520;
  --charcoal:   #4A4646;
  --taupe:      #A37F6E;
  --beige:      #F8F4EF;
  --white:      #FFFFFF;
  --text:       #1F1F1F;
  --text-light: #6B6B6B;
  --radius:     24px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* -- Skip Link (accessibility) ------------------------------ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 99999;
  background: var(--orange);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 0 0 10px 10px;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: top .2s ease;
  outline: none;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* -- Reset & Base ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--beige);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; }
ul { list-style: none; }

/* -- Screen-reader only utility ----------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* -- Focus Visible (keyboard navigation) -------------------- */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* -- Lightweight Utility Classes ---------------------------- */
.grid { display: grid; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mr-2 { margin-right: .5rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.gap-0 { gap: 0; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
}


/* -- Main landmark (no visual impact) ---------------------- */
main { display: block; }

/* -- Scroll Progress Bar ------------------------------------ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--orange); width: 0%;
  z-index: 9999; transition: width .1s linear;
}

/* -- Navigation --------------------------------------------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.1rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.1);
  padding: .7rem 0;
}
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--white);
  padding: .45rem .9rem;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: .02em;
}
#navbar.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { background: rgba(244,122,46,.12); color: var(--orange); }
.nav-links a.active { color: var(--orange); font-weight: 700; background: rgba(244,122,46,.12); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.btn-whatsapp {
  display: flex; align-items: center; gap: .4rem;
  background: #25D366;
  color: #fff;
  padding: .5rem 1.1rem;
  min-height: 44px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-plan {
  background: var(--orange);
  color: #fff;
  padding: .5rem 1.3rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-plan:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,122,46,.4); }

/* Hamburger */
#hamburger {
  display: none;
  position: relative;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .85rem .75rem;
  min-width: 48px;
  background: none;
  border: none;
  z-index: 1002;
}
#hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled #hamburger span { background: var(--charcoal); }
body.menu-open #navbar { z-index: 1001; }
#hamburger.open span,
body.menu-open #hamburger span { background: var(--white) !important; }
#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 Menu */
#mobile-menu {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: auto;
  width: min(50vw, 420px);
  min-width: 300px;
  max-width: calc(100vw - 3.5rem);
  background: rgba(74,70,70,.98);
  z-index: 1000;
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: flex-start;
  gap: .35rem;
  padding: 6.5rem 1.35rem 2rem;
  opacity: 0; pointer-events: none;
  transform: translateX(-104%);
  box-shadow: 28px 0 80px rgba(0,0,0,.35);
  transition: opacity .35s ease, transform .42s cubic-bezier(.77,0,.175,1);
}
#mobile-menu.open,
body.menu-open #mobile-menu { opacity: 1; pointer-events: all; transform: translateX(0); }
body.menu-open { overflow: hidden; }
#mobile-menu a {
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  padding: .82rem 1rem;
  border-radius: 12px;
  transition: var(--transition);
}
#mobile-menu a:hover,
#mobile-menu a.active { color: var(--white); background: rgba(244,122,46,.18); }
#mobile-menu a.active { box-shadow: inset 4px 0 0 var(--orange); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; width: 100%; }
.mobile-menu-actions .btn-plan { display: flex; justify-content: center; }

/* -- Hero --------------------------------------------------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(28,20,12,.76) 0%, rgba(28,20,12,.54) 44%, rgba(28,20,12,.22) 100%),
    linear-gradient(0deg, rgba(20,14,8,.58) 0%, rgba(20,14,8,0) 44%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto; padding: 7.5rem 2.5rem 3rem;
  min-height: 100svh;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 460px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-content: center;
  align-items: center;
}
.hero-copy {
  grid-column: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.94);
  font-family: 'Manrope', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .46rem 1rem; border-radius: 100px;
  margin-bottom: 1.35rem;
}
.hero-badge i,
.hero-badge span { color: var(--orange); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.45rem, 6vw, 5.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  max-width: 780px;
  margin-bottom: 1rem;
  text-shadow: 0 12px 36px rgba(0,0,0,.35);
}
.hero-title em { color: var(--orange); font-style: italic; }

.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(.98rem, 1.45vw, 1.16rem);
  color: rgba(255,255,255,.88);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary-hero {
  background: var(--orange);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: .03em;
  transition: var(--transition);
  display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 6px 28px rgba(244,122,46,.5);
}
.btn-primary-hero:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(244,122,46,.6); }
.btn-secondary-hero {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600; font-size: 1rem;
  letter-spacing: .03em;
  transition: var(--transition);
}
.btn-secondary-hero:hover { background: rgba(255,255,255,.22); border-color: #fff; transform: translateY(-3px); }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: .75rem;
  grid-column: 1 / -1;
  margin-top: .5rem;
  margin-bottom: 0;
}
.trust-badge {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: .8rem; font-weight: 500;
}
.trust-badge i { color: var(--orange); }

.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white); display: block;
}
.hero-stat .num span { color: var(--orange); }
.hero-stat .label {
  font-family: 'Manrope', sans-serif;
  font-size: .75rem; color: rgba(255,255,255,.65);
  letter-spacing: .05em; text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.scroll-indicator span {
  color: rgba(255,255,255,.6);
  font-family: 'Manrope', sans-serif; font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 13px; position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--orange); border-radius: 2px;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* -- Quote Card --------------------------------------------- */
#quote-card {
  position: relative;
  z-index: 3;
  grid-column: 2;
  width: 100%;
  max-width: 460px;
  margin: 0;
  padding: 0;
  justify-self: end;
  align-self: center;
}
.quote-card-inner {
  position: relative;
  overflow: hidden;
  background: rgba(255,250,244,.96);
  color: var(--charcoal);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  padding: 2rem;
  backdrop-filter: blur(16px);
}
.quote-card-inner::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #f7bd58);
}
.quote-card-inner form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .95rem;
}
.quote-form-head {
  grid-column: 1 / -1;
  font-family: 'Manrope', sans-serif;
  color: var(--charcoal);
  margin-bottom: .25rem;
}
.quote-form-head span {
  display: block;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.quote-form-head strong {
  display: block;
  color: #2c2926;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}
.quote-form-head p {
  margin-top: .55rem;
  color: rgba(74,70,70,.72);
  font-size: .9rem;
  line-height: 1.55;
}
.quote-field label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .75rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(74,70,70,.72);
  margin-bottom: .45rem;
}
.quote-field select,
.quote-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(74,70,70,.16);
  border-radius: 12px;
  padding: .88rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: #fff;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.quote-field select {
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(74,70,70,.55) 50%), linear-gradient(135deg, rgba(74,70,70,.55) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}
.quote-field select:focus,
.quote-field input:focus {
  outline: none;
  border-color: rgba(244,122,46,.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,122,46,.16);
}
.quote-field-full { grid-column: 1 / -1; }
.quote-note {
  margin: -.1rem 0 0;
  color: rgba(74,70,70,.68);
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}
.btn-quote-submit {
  background: var(--orange);
  color: #fff;
  padding: .95rem 1.55rem;
  min-height: 50px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  border: none; cursor: pointer;
  box-shadow: 0 12px 28px rgba(244,122,46,.32);
}
.btn-quote-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(244,122,46,.42); }

/* -- Section Shared ----------------------------------------- */
.section-pad { padding: 6rem 2.5rem; }
.container { max-width: 1440px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}
.section-title em { color: var(--orange); font-style: italic; }
.section-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  margin-top: .75rem;
}

/* -- Safari Categories -------------------------------------- */
.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-card .img-wrap {
  overflow: hidden; height: 220px;
}
.category-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.category-card:hover .img-wrap img { transform: scale(1.08); }
.category-card .card-body { padding: 1.5rem; }
.card-tag {
  font-family: 'Manrope', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .4rem;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: .5rem;
}
.card-desc {
  font-family: 'Manrope', sans-serif;
  font-size: .88rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 1rem;
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--charcoal);
}
.card-price small { font-family: 'Manrope', sans-serif; font-size: .75rem; font-weight: 400; color: var(--text-light); }
.card-arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-size: .85rem; font-weight: 600;
  transition: var(--transition);
}
.category-card:hover .card-arrow { gap: .6rem; }

/* -- Why Choose --------------------------------------------- */
.why-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}
.why-image-wrap img {
  width: 100%;
  height: auto;
  min-height: 360px;
  max-height: 600px;
  object-fit: cover;
  display: block;
}
.why-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  border-radius: 14px;
  padding: .85rem 1.3rem;
  display: flex; align-items: center; gap: .7rem;
  box-shadow: var(--shadow-md);
}
.why-badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(244,122,46,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem;
}
.why-badge-text { font-family: 'Manrope', sans-serif; }
.why-badge-text strong { display: block; font-size: .95rem; color: var(--charcoal); }
.why-badge-text span { font-size: .78rem; color: var(--text-light); }

.feature-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
}
.feature-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-left: 3px solid var(--orange); }
.feature-icon {
  min-width: 40px; height: 40px;
  background: rgba(244,122,46,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--orange); color: #fff; }
.feature-text h4 {
  font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: .2rem;
}
.feature-text p {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; color: var(--text-light); line-height: 1.5;
}

/* -- Destination Carousel ----------------------------------- */
.dest-slider-wrap {
  position: relative;
  overflow: hidden;
}
.dest-slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  transform: translate3d(0,0,0);
  will-change: transform;
  /* Percentage-based: no offsetWidth calculation needed */
}
.dest-slide {
  flex: 0 0 calc(100% / 3);
  padding-right: 1.5rem;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Destination nav buttons */
.dest-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 1rem;
}
.dest-nav-btn:hover { background: var(--orange); }
#dest-prev { left: -22px; }
#dest-next { right: -22px; }

.dest-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-top: 1.5rem;
}
.dest-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d0c7;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dest-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* -- Dest Card ---------------------------------------------- */
.dest-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card .img-wrap { overflow: hidden; height: 260px; }
.dest-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover .img-wrap img { transform: scale(1.1); }
.dest-card .card-body { background: var(--white); padding: 1.5rem; }
.dest-card .best-time {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: 'Manrope', sans-serif;
  font-size: .75rem; font-weight: 600;
  color: var(--taupe);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .75rem;
}
.btn-read-more {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-size: .85rem; font-weight: 600;
  margin-top: .75rem;
  transition: var(--transition);
}
.btn-read-more:hover { gap: .7rem; }

/* -- Packages ----------------------------------------------- */
.filter-btns { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: 'Manrope', sans-serif;
  font-size: .85rem; font-weight: 600;
  padding: .55rem 1.3rem;
  border-radius: 100px;
  border: 1.5px solid #d9d0c7;
  background: transparent;
  color: var(--charcoal);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Safari filter sticky */
.filter-sticky {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: var(--beige);
  padding: .75rem 0;
  margin-bottom: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.pkg-card {
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
  width: 100%;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card .img-wrap { overflow: hidden; height: 220px; position: relative; }
.pkg-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pkg-card:hover .img-wrap img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--orange); color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 100px;
}
.pkg-card .card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; background: var(--white); color: var(--charcoal); }
.pkg-meta { display: flex; gap: 1rem; margin-bottom: .75rem; flex-wrap: wrap; }
.pkg-meta span {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem; color: var(--text-light);
  display: flex; align-items: center; gap: .3rem;
}
.pkg-meta i { color: var(--orange); }
.pkg-stars {
  display: flex; gap: .1rem; margin-bottom: .6rem;
  color: #F5A623; font-size: .85rem;
}
.pkg-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: .5rem;
}
.pkg-highlights { margin-bottom: 1rem; }
.pkg-highlights li {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; color: var(--text-light);
  padding: .2rem 0;
  display: flex; align-items: center; gap: .35rem;
}
.pkg-highlights li::before {
  content: ''; display: block;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--orange); flex-shrink: 0;
}
.pkg-footer {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #f0e8e0; padding-top: 1rem;
  flex-wrap: wrap; gap: .75rem;
}
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--charcoal);
}
.pkg-price small { font-family: 'Manrope', sans-serif; font-size: .75rem; font-weight: 400; color: var(--text-light); }
.btn-pkg {
  background: var(--orange); color: #fff;
  padding: .55rem 1.2rem;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; font-weight: 700;
  transition: var(--transition);
}
.btn-pkg:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-itinerary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .9rem;
  background: transparent;
  color: var(--orange) !important;
  border: 2px solid var(--orange);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}
.btn-itinerary:hover {
  background: var(--orange);
  color: #fff !important;
  transform: translateY(-1px);
}
.pkg-footer-stacked {
  flex-direction: column;
  align-items: stretch;
  gap: .5rem;
}
.pkg-footer-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  width: 100%;
}
.pkg-footer-btns .btn-pkg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.about-stat-badge,
.cert-badge,
.trust-badge {
  text-decoration: none;
}

.pkg-card[hidden],
.pkg-card[data-hidden="true"] { display: none !important; }

/* Contrast guard for package cards on light backgrounds */
.pkg-card .pkg-title,
.pkg-card .pkg-price { color: var(--charcoal) !important; }
.pkg-card .pkg-meta span,
.pkg-card .pkg-highlights li,
.pkg-card .pkg-price small { color: var(--text-light) !important; }
.pkg-card a:not(.btn-pkg),
.pkg-card button:not(.btn-pkg) { color: inherit; }

/* -- Kilimanjaro -------------------------------------------- */
#kilimanjaro {
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
#kilimanjaro::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/mountain-kilimanjaro-view.jpg') center/cover no-repeat;
  opacity: .2; z-index: 0;
}
#kilimanjaro .container { position: relative; z-index: 1; }
.kili-route-card {
  background: rgba(18,16,15,.82);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1.5rem;
  transition: var(--transition);
  width: 100%;
}
.kili-route-card:hover { background: rgba(18,16,15,.92); border-color: var(--orange); transform: translateY(-4px); }
.kili-route-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: .4rem;
}
.kili-route-card p {
  font-family: 'Manrope', sans-serif;
  font-size: .83rem; color: rgba(255,255,255,.86);
  line-height: 1.5;
}
.kili-route-meta {
  display: flex; gap: 1rem; margin-top: .75rem; flex-wrap: wrap;
}
.kili-route-meta span {
  font-family: 'Manrope', sans-serif;
  font-size: .75rem; font-weight: 600;
  color: var(--orange);
  display: flex; align-items: center; gap: .3rem;
}

/* Kilimanjaro 2-col grid image overflow fix */
.kili-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.kili-grid-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.kili-grid-image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

/* -- Zanzibar ----------------------------------------------- */
#zanzibar {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a4a6b 100%);
  position: relative; overflow: hidden;
}
#zanzibar::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/zanzibar-1.jpg') center/cover no-repeat;
  opacity: .25; z-index: 0;
}
#zanzibar .container { position: relative; z-index: 1; }

/* Zanzibar 2-col grid image overflow fix */
.zanzibar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.zanzibar-grid-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.zanzibar-grid-image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

/* -- Activities --------------------------------------------- */
.activity-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--orange); }
.activity-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(244,122,46,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--orange);
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.activity-card:hover .activity-icon { background: rgba(255,255,255,.2); color: #fff; }
.activity-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--charcoal);
  transition: var(--transition);
}
.activity-card:hover h4 { color: #fff; }

/* -- About -------------------------------------------------- */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 560px;
  object-fit: cover;
  display: block;
}
.about-stat-badge {
  position: absolute; bottom: 1rem; right: 1rem;
  background: var(--orange);
  color: #fff; border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 120px;
}
.about-stat-badge .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; display: block;
}
.about-stat-badge span {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem; opacity: .9;
}

/* -- Process ------------------------------------------------ */
.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}
.process-step::after {
  content: '';
  position: absolute; top: 3rem; right: -50%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  z-index: 0;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
  box-shadow: 0 6px 20px rgba(244,122,46,.4);
  transition: var(--transition);
}
.process-step:hover .step-num { transform: scale(1.1); box-shadow: 0 10px 30px rgba(244,122,46,.5); }
.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: .5rem;
}
.process-step p {
  font-family: 'Manrope', sans-serif;
  font-size: .88rem; color: var(--text-light); line-height: 1.6;
}

/* -- Testimonials ------------------------------------------- */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-stars { color: #F5A623; font-size: 1.1rem; letter-spacing: .05em; margin-bottom: 1.25rem; }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: var(--charcoal); line-height: 1.7;
  margin-bottom: 1.75rem;
}
.testimonial-text::before { content: '\201C'; color: var(--orange); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: .1em; }
.testimonial-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--beige); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--orange);
  border: 2px solid var(--orange);
  flex-shrink: 0;
}
.testimonial-meta h5 {
  font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 700; color: var(--charcoal);
}
.testimonial-meta span {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; color: var(--text-light);
}
.testimonial-trip-badge {
  margin-left: auto;
  background: rgba(244,122,46,.1);
  color: var(--orange);
  padding: .3rem .85rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: .75rem; font-weight: 600;
}
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid #d9d0c7;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); font-size: 1rem;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.slider-dots { display: flex; gap: .4rem; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d9d0c7;
  transition: var(--transition); cursor: pointer;
}
.slider-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* -- Gallery ------------------------------------------------ */
.gallery-grid {
  columns: 4 220px;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 1.8rem; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}
#lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; font-size: 1.8rem;
  background: rgba(255,255,255,.1); border: none;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
#lightbox-close:hover { background: var(--orange); }

/* -- FAQ ---------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid #e8e0d8;
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--charcoal);
  transition: color .2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(244,122,46,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: .9rem; flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: .93rem; color: var(--text-light);
  line-height: 1.8;
}

/* -- Final CTA ---------------------------------------------- */
#final-cta {
  position: relative; overflow: hidden;
  background: url('../images/elephant-sunset-serengeti-national-park.jpg') center/cover no-repeat;
}
#final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,20,10,.87) 0%, rgba(74,70,70,.75) 100%);
  z-index: 0;
}
#final-cta .container { position: relative; z-index: 1; }

/* -- Footer ------------------------------------------------- */
#footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.footer-logo img { height: 50px; }
.footer-desc {
  font-family: 'Manrope', sans-serif;
  font-size: .87rem; line-height: 1.7;
  color: rgba(255,255,255,.76); margin-top: .75rem;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: #fff; margin-bottom: 1.1rem;
}
.footer-links li a {
  font-family: 'Manrope', sans-serif;
  font-size: .87rem; color: rgba(255,255,255,.8);
  display: flex; align-items: center; padding: .6rem 0; min-height: 44px;
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  font-family: 'Manrope', sans-serif;
  font-size: .87rem; color: rgba(255,255,255,.8);
  margin-bottom: .75rem;
}
.footer-contact-item i { color: var(--orange); margin-top: .1rem; flex-shrink: 0; }
.newsletter-form { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: .7rem 1rem;
  color: #fff;
  font-family: 'Manrope', sans-serif; font-size: .87rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.65); }
.newsletter-form input:focus { outline: none; border-color: var(--orange); }
.newsletter-form button {
  background: var(--orange); color: #fff;
  padding: .7rem 1.2rem; border-radius: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .87rem;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--orange-dark); }
.social-icons { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.social-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 1rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 3rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; color: rgba(255,255,255,.72);
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; color: rgba(255,255,255,.72);
  transition: color .2s;
  display: inline-flex; align-items: center; min-height: 44px; padding: .5rem 0;
}
.footer-bottom-links a:hover { color: var(--orange); }

/* Tap target: breadcrumb hero links */
nav[aria-label="Breadcrumb"] a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .5rem .2rem;
}

/* -- Floating Buttons --------------------------------------- */
#floating-whatsapp {
  position: fixed; bottom: 5.5rem; right: 1.75rem;
  z-index: 800;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--transition);
  text-decoration: none;
}
#floating-whatsapp:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
#back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 800;
  background: var(--orange); color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(244,122,46,.4);
  opacity: 0; pointer-events: none;
  transition: var(--transition); transform: translateY(8px);
}
#back-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* -- Page Hero (Safari & inner pages) ---------------------- */
.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,20,10,.80) 0%, rgba(31,20,10,.50) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  padding: 7rem 2.5rem 4rem;
  width: 100%;
  color: var(--white);
}
.page-hero-content .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 700px;
}
.page-hero-content .hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* -- Hero CSS Keyframe Animations --------------------------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim-1 { animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) .1s both; }
.hero-anim-2 { animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) .25s both; }
.hero-anim-3 { animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) .45s both; }
.hero-anim-4 { animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) .6s both; }
.hero-anim-5 { animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) .75s both; }
.hero-anim-6 { animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) .9s both; }

/* -- AOS-like scroll animations ---------------------------- */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(.4,0,.2,1);
}
[data-aos="fade-up"]    { transform: translateY(36px); }
[data-aos="fade-right"] { transform: translateX(-36px); }
[data-aos="fade-left"]  { transform: translateX(36px); }
[data-aos="zoom-in"]    { transform: scale(.93); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* Fallback: reveal after 1.5s if JS never runs */
@keyframes revealFallback { to { opacity: 1; transform: none; } }
[data-aos] { animation: revealFallback 0s 1.5s both; }

/* ============================================================
   RESPONSIVE — Mobile-first breakpoints
   ============================================================ */

/* -- Tablet <= 1024px ---------------------------------------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 2rem;
  }
  .quote-card-inner form {
    grid-template-columns: 1fr 1fr;
  }

  /* Nav */
  .nav-links { display: none; }
  #hamburger { display: flex; }
  .nav-actions .btn-plan { display: none; }

  /* Destination carousel: 2 slides */
  .dest-slide {
    flex: 0 0 50%;
    padding-right: 1.5rem;
  }

  /* Footer: 2-col grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Kilimanjaro / Zanzibar 2-col stays but add overflow protection */
  .kili-grid,
  .zanzibar-grid {
    gap: 1.5rem;
  }

  /* Gallery: 2 cols on tablet */
  .gallery-grid { columns: 2; column-gap: 1rem; }

  /* Process arrows still visible at 1024 */
}

/* -- Small tablet / large phone <= 768px -------------------- */
@media (max-width: 768px) {
  /* Section padding scales down */
  .section-pad { padding: 4rem 1.25rem; }

  /* Nav container */
  .nav-container { padding: 0 1.25rem; }

  /* Hero — compact so form fills viewport without scrolling */
  #hero { min-height: auto; }
  .hero-content { min-height: auto; padding: 5rem 1.25rem 1.5rem; grid-template-columns: 1fr; gap: 1rem; }
  .hero-copy { grid-column: 1; }
  .hero-badge { font-size: .7rem; padding: .35rem .85rem; margin-bottom: .6rem; }
  .hero-title { font-size: clamp(1.4rem, 5vw, 2rem); margin-bottom: .35rem; }
  #quote-card { grid-column: 1; justify-self: stretch; max-width: 100%; margin: 0; padding: 0; }
  .quote-card-inner { padding: 1.2rem; }
  .quote-card-inner form { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .quote-form-head strong { font-size: clamp(1.15rem, 4vw, 1.4rem); }
  .quote-form-head p { font-size: .8rem; margin-top: .25rem; }
  .quote-field label { font-size: .7rem; margin-bottom: .25rem; }
  .quote-field select,
  .quote-field input { min-height: 42px; padding: .65rem .85rem; font-size: .88rem; }
  .btn-quote-submit { width: 100%; justify-content: center; padding: .75rem 1.2rem; min-height: 44px; font-size: .82rem; }
  .quote-note { font-size: .72rem; }
  .trust-badges { margin-top: .25rem; gap: .4rem; }

  /* Process: stack vertically, hide arrow lines */
  .process-step::after { display: none; }
  .process-step { padding: 1.25rem 1rem; }

  /* Gallery: 2 cols */
  .gallery-grid { columns: 2; column-gap: .75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Kilimanjaro/Zanzibar: 1 col */
  .kili-grid,
  .zanzibar-grid {
    grid-template-columns: 1fr;
  }
  .kili-grid-image img,
  .zanzibar-grid-image img {
    max-height: 340px;
  }

  /* About image */
  .about-img-wrap img { min-height: 240px; max-height: 400px; }
  .about-stat-badge { bottom: .75rem; right: .75rem; padding: 1rem; min-width: 100px; }
  .about-stat-badge .big-num { font-size: 1.6rem; }

  /* Why-choose image */
  .why-image-wrap img { min-height: 280px; max-height: 420px; }

  /* Destination carousel: 1 slide on small tablet */
  .dest-slide {
    flex: 0 0 100%;
    padding-right: 0;
  }
  #dest-prev { left: 0; }
  #dest-next { right: 0; }

  /* Cards full-width */
  .category-card,
  .pkg-card,
  .dest-card,
  .kili-route-card,
  .activity-card,
  .feature-card {
    width: 100%;
  }

  /* Testimonial card padding */
  .testimonial-card { padding: 1.75rem 1.25rem; }

  /* Whatsapp btn label */
  .btn-whatsapp .btn-label { display: none; }

  /* Page hero */
  .page-hero { min-height: 380px; }
  .page-hero-content { padding: 6rem 1.25rem 3rem; }

  /* Filter sticky offset for smaller nav */
  .filter-sticky { top: 60px; }
}

/* -- Mobile <= 480px ----------------------------------------- */
@media (max-width: 480px) {
  /* Section padding: 3rem mobile */
  .section-pad { padding: 3rem 1rem; }
  .nav-container { padding: 0 1rem; }

  /* Hero — ultra compact for small phones, form fills screen */
  #hero { min-height: auto; }
  .hero-content { padding: 4.5rem 1rem 1rem; gap: .65rem; }
  .hero-title { font-size: clamp(1.2rem, 6vw, 1.7rem); margin-bottom: .2rem; }
  .hero-badge { font-size: .62rem; padding: .25rem .65rem; margin-bottom: .35rem; }
  .hero-sub { font-size: .88rem; margin-bottom: .75rem; }
  .hero-buttons { flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
  .btn-primary-hero,
  .btn-secondary-hero { text-align: center; justify-content: center; width: 100%; }

  /* Quote card */
  .quote-card-inner { padding: .85rem; border-radius: 16px; }
  .quote-card-inner form { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .quote-form-head span { font-size: .68rem; margin-bottom: .25rem; }
  .quote-form-head strong { font-size: clamp(1rem, 4vw, 1.2rem); }
  .quote-form-head p { font-size: .72rem; margin-top: .15rem; }
  .quote-field label { font-size: .62rem; margin-bottom: .15rem; }
  .quote-field select,
  .quote-field input { min-height: 36px; padding: .5rem .7rem; font-size: .82rem; border-radius: 10px; }
  .quote-field select { background-position: calc(100% - 14px) 17px, calc(100% - 9px) 17px; background-size: 4px 4px, 4px 4px; padding-right: 2rem; }
  .quote-field-full { grid-column: 1 / -1; }
  .btn-quote-submit { padding: .6rem 1rem; min-height: 38px; font-size: .78rem; border-radius: 10px; }
  .quote-note { font-size: .68rem; }
  .trust-badges { gap: .3rem; margin-top: 0; }
  .trust-badge { font-size: .68rem; padding: .2rem .55rem; }

  /* Gallery: 1 col on mobile */
  .gallery-grid { columns: 1; }

  /* Footer: 1 col */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Process: steps centered, no lines */
  .process-step { padding: 1rem .5rem; }

  /* Kilimanjaro/Zanzibar images */
  .kili-grid-image img,
  .zanzibar-grid-image img { max-height: 240px; }

  /* Destination carousel */
  .dest-slide {
    flex: 0 0 100%;
    padding-right: 0;
  }
  #dest-prev { left: 0; }
  #dest-next { right: 0; }

  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* Testimonial */
  .testimonial-card { padding: 1.25rem 1rem; }
  .testimonial-trip-badge { margin-left: 0; margin-top: .5rem; }

  /* About */
  .about-img-wrap img { min-height: 200px; max-height: 300px; }
  .about-stat-badge { position: static; margin-top: 1rem; display: inline-block; }

  /* Why choose */
  .why-image-wrap img { min-height: 220px; max-height: 320px; }
  .why-badge { position: static; margin-top: 1rem; border-radius: 12px; }

  /* Page hero */
  .page-hero { min-height: 300px; }
  .page-hero-content { padding: 5rem 1rem 2.5rem; }
  .page-hero-content .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Pkg footer stacks */
  .pkg-footer { flex-direction: column; align-items: flex-start; }
  .btn-pkg { width: 100%; text-align: center; justify-content: center; }

  /* Filter buttons wrap */
  .filter-btns { gap: .4rem; }
  .filter-btn { font-size: .8rem; padding: .45rem 1rem; }
}

/* -- Very small screens 320px ------------------------------- */
@media (max-width: 360px) {
  .section-pad { padding: 2.5rem .75rem; }
  .hero-content { padding: 5.5rem .75rem 1.75rem; }
  .nav-container { padding: 0 .75rem; }
  #quote-card { padding: 0; }
  .quote-card-inner { padding: 1rem; }
  .quote-form-head strong { font-size: 1.35rem; }
  .hero-title { font-size: 1.6rem; }
}


/* Quote display aliases used when public prices are hidden */
.card-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.card-quote small { font-family: 'Manrope', sans-serif; font-size: .75rem; font-weight: 400; color: var(--text-light); }
.pkg-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
}
.pkg-quote small { font-family: 'Manrope', sans-serif; font-size: .75rem; font-weight: 400; color: var(--text-light); }
.pkg-card .pkg-quote { color: var(--charcoal) !important; }
.pkg-card .pkg-quote small { color: var(--text-light) !important; }

/* -- Blog / Travel Journal ---------------------------------- */
.blog-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--taupe);
  margin: .75rem 0 .2rem;
}
.blog-meta i { color: var(--orange); }
.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}
.blog-toolbar .filter-btns { margin-bottom: 0; }
.blog-search {
  position: relative;
  display: block;
  min-width: min(100%, 260px);
  flex: 0 1 360px;
}
.blog-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: .9rem;
}
.blog-search input {
  width: 100%;
  min-height: 46px;
  border: 1.5px solid #d9d0c7;
  border-radius: 100px;
  padding: .75rem 1rem .75rem 2.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  color: var(--charcoal);
  background: #fff;
}
.blog-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,122,46,.12);
}
.blog-card .card-body { min-height: 265px; }
.blog-card .card-desc { margin-bottom: .5rem; }
.blog-detail-stack {
  display: grid;
  gap: 1.5rem;
}
.blog-detail-card {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.blog-detail-card .img-wrap {
  min-height: 100%;
  height: 100%;
}
.blog-detail-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-detail-content {
  padding: 2rem;
}
.blog-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: .6rem;
}
.blog-detail-content p {
  font-family: 'Manrope', sans-serif;
  color: var(--text-light);
  line-height: 1.75;
  margin-top: .9rem;
}
@media (max-width: 768px) {
  .blog-toolbar { align-items: stretch; }
  .blog-search { flex-basis: 100%; }
  .blog-detail-card { grid-template-columns: 1fr; }
  .blog-detail-card .img-wrap { height: 240px; }
  .blog-detail-content { padding: 1.5rem; }
}
.blog-post-hero .page-hero-content .hero-title {
  max-width: 900px;
}
.blog-article-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.blog-article-card .section-title {
  margin: .75rem 0 .35rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
}
.blog-article-content {
  margin-top: 1.5rem;
  font-family: 'Manrope', sans-serif;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.85;
}
.blog-article-content p + p {
  margin-top: 1.15rem;
}
.blog-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(163,127,110,.18);
}
.blog-list-card .blog-meta {
  flex-wrap: wrap;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .blog-article-card {
    border-radius: 18px;
    padding: 1.35rem;
  }
  .blog-detail-actions {
    margin-top: 1.5rem;
  }
}
.blog-article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--charcoal);
  line-height: 1.25;
  margin: 1.8rem 0 .7rem;
}
.blog-article-content h3:first-child {
  margin-top: 0;
}
.blog-article-content a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.blog-article-content a:hover {
  color: var(--orange-dark);
}
