/* =========================================================
   MIHAYO'S SAFARIS — Design System
   Concept: "Field Journal / Topographic Survey"
   A ranger's logbook meets a cartographer's contour map —
   GPS-coordinate eyebrows, stamped destination cards, and
   thin contour-line dividers replace generic numbered steps.
   ========================================================= */

:root {
  /* --- Brand palette (client-specified) --- */
  --c-primary: #0B6E4F;      /* deep safari green */
  --c-primary-dark: #073D2C; /* forest shadow, hero overlay / dark mode */
  --c-secondary: #FFD166;    /* savanna gold */
  --c-accent: #EF476F;       /* sunset pink/red */
  --c-bg: #F8F9FA;
  --c-text: #222222;

  /* --- Derived neutrals --- */
  --c-sand: #F1E7D0;
  --c-sand-dark: #E4D6B4;
  --c-line: #DDD9CE;
  --c-white: #FFFFFF;
  --c-muted: #6B6F6D;

  /* --- Type --- */
  --font-display: 'Bricolage Grotesque', 'Archivo Black', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* --- Layout --- */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px -12px rgba(7, 61, 44, 0.25);
  --shadow-lift: 0 20px 45px -15px rgba(7, 61, 44, 0.35);

  --nav-h: 84px;
}

[data-theme="dark"] {
  --c-bg: #0E1512;
  --c-text: #EDEFEC;
  --c-sand: #16211C;
  --c-sand-dark: #1D2A23;
  --c-line: #2A3830;
  --c-white: #14201A;
  --c-muted: #9AA79E;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  transition: background .3s ease, color .3s ease;
  overflow-x: hidden;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--c-text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }

/* --- Eyebrow / GPS-stamp labels (the signature motif) --- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid var(--c-primary);
  border-radius: 100px;
  background: rgba(11, 110, 79, 0.06);
}
[data-theme="dark"] .eyebrow { background: rgba(11,110,79,0.18); }
.eyebrow::before { content: "◎"; font-size: 12px; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin: 0 0 14px; }
.section-head p { color: var(--c-muted); font-size: 1.08rem; margin: 0; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* --- Contour-line divider (topographic signature) --- */
.contour-divider { width: 100%; height: 46px; overflow: hidden; opacity: 0.55; }
.contour-divider svg { width: 100%; height: 100%; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-accent); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { box-shadow: var(--shadow-lift); background: #d93a60; }
.btn-outline { background: transparent; border-color: currentColor; color: var(--c-white-inv, var(--c-text)); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-gold { background: var(--c-secondary); color: #3a2b00; box-shadow: var(--shadow-soft); }
.btn-gold:hover { box-shadow: var(--shadow-lift); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease, backdrop-filter .35s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1320px; gap: 18px; }
.navbar nav { flex: 1; min-width: 0; display: flex; justify-content: center; overflow: hidden; }
.navbar.scrolled {
  height: 68px;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
[data-theme="dark"] .navbar.scrolled { background: rgba(14, 21, 18, 0.85); }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; white-space: nowrap; flex-shrink: 0; }
.navbar.scrolled .brand { color: var(--c-text); }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; background: var(--c-primary); color: var(--c-secondary); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 0.95rem; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: #FDF8ED; padding: 2px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; white-space: nowrap; }
.nav-links li { flex-shrink: 0; }
.nav-links a { font-weight: 600; font-size: 0.88rem; color: rgba(255,255,255,0.92); position: relative; padding: 4px 0; white-space: nowrap; }
.navbar.scrolled .nav-links a { color: var(--c-text); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--c-accent); transition: width .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mobile-nav-cta { display: block; text-align: center; margin-top: 20px; width: 100%; }

.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  padding: 8px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08); color: #fff; cursor: pointer;
}
.navbar.scrolled .lang-btn { color: var(--c-text); border-color: var(--c-line); background: var(--c-white); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft); min-width: 160px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s ease; z-index: 1100;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  padding: 9px 12px; border: none; background: none; text-align: left; cursor: pointer;
  border-radius: 6px; font-size: 0.88rem; color: var(--c-text);
}
.lang-menu button:hover { background: var(--c-sand); }
.lang-menu button.active { color: var(--c-primary); font-weight: 700; }

.currency-switch { position: relative; }
.currency-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  padding: 8px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08); color: #fff; cursor: pointer;
}
.navbar.scrolled .currency-btn { color: var(--c-text); border-color: var(--c-line); background: var(--c-white); }
.currency-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft); min-width: 220px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s ease; z-index: 1100;
}
.currency-switch.open .currency-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.currency-menu button {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  padding: 9px 12px; border: none; background: none; text-align: left; cursor: pointer;
  border-radius: 6px; font-size: 0.85rem; color: var(--c-text);
}
.currency-menu button:hover { background: var(--c-sand); }
.currency-menu button.active { color: var(--c-primary); font-weight: 700; }
.currency-live-note { display: none; font-size: 0.7rem; color: var(--c-muted); padding: 8px 12px 2px; border-top: 1px solid var(--c-line); margin-top: 4px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.navbar.scrolled .theme-toggle { color: var(--c-text); border-color: var(--c-line); background: var(--c-white); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: #fff; cursor: pointer; }
.navbar.scrolled .nav-toggle { color: var(--c-text); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,61,44,0.35), rgba(7,61,44,0.85));
}
.hero video, .hero .hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(255,209,102,0.18), transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 200px 0 90px; width: 100%; color: #fff; }
.hero-eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-eyebrow-row .eyebrow { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #FFE9B8; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); color: #fff; max-width: 850px; margin: 0 0 22px; }
.hero h1 em { font-style: italic; color: var(--c-secondary); }
.hero-sub { max-width: 560px; font-size: 1.12rem; color: rgba(255,255,255,0.88); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 70px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 48px; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 28px; width: fit-content; }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--c-secondary); display: block; }
.hero-stat .label { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }

.scroll-cue {
  position: absolute; left: 32px; bottom: 36px; z-index: 3; color: rgba(255,255,255,0.75);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: scrollCueFloat 2.4s ease-in-out infinite;
}
.scroll-label { writing-mode: vertical-rl; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em; }
.scroll-mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.65); border-radius: 12px;
  position: relative; flex-shrink: 0;
}
.scroll-dot {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: var(--c-secondary);
  animation: scrollDotMove 1.6s ease-in-out infinite;
}
@keyframes scrollDotMove {
  0%   { top: 6px; opacity: 1; }
  60%  { top: 20px; opacity: 0; }
  61%  { top: 6px; opacity: 0; }
  100% { top: 6px; opacity: 1; }
}
@keyframes scrollCueFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =========================================================
   SEARCH BAR (floating card)
   ========================================================= */
.search-card {
  position: relative; z-index: 5;
  background: var(--c-white); border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  margin-top: -64px; padding: 28px;
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 16px; align-items: end;
  border: 1px solid var(--c-line);
}
.search-field label { display: block; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); margin-bottom: 8px; }
.search-field select, .search-field input {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--c-line);
  font-family: var(--font-body); font-size: 0.94rem; background: var(--c-bg); color: var(--c-text);
}

/* =========================================================
   CARDS — Destination "field stamp" cards (signature element)
   ========================================================= */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--c-white);
  box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid var(--c-line);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.dest-card .media { position: relative; height: 240px; overflow: hidden; }
.dest-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover .media img { transform: scale(1.08); }
.dest-card .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55)); }

.gps-stamp {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em;
  background: rgba(0,0,0,0.55); color: #FFE9B8; padding: 5px 10px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.dest-card .region-tag {
  position: absolute; bottom: 14px; left: 16px; z-index: 2; color: #fff;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85;
}
.dest-card .body { padding: 22px; }
.dest-card h3 { font-size: 1.28rem; margin: 0 0 8px; }
.dest-card p { color: var(--c-muted); font-size: 0.92rem; margin: 0 0 16px; }
.dest-card .meta-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.dest-card .meta-row a { font-weight: 700; color: var(--c-primary); display: inline-flex; align-items: center; gap: 6px; }

/* Park card variant */
.park-card { border-radius: var(--radius); overflow: hidden; position: relative; height: 320px; box-shadow: var(--shadow-soft); }
.park-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.park-card:hover img { transform: scale(1.1); }
.park-card .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,110,79,0) 30%, rgba(7,32,24,0.92)); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: #fff; }
.park-card .overlay .eyebrow { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: var(--c-secondary); }
.park-card h3 { color: #fff; margin: 6px 0; font-size: 1.3rem; }
.park-card p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin: 0; }

/* Why-choose feature cards */
.feature-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 30px 26px; height: 100%; transition: transform .3s ease, border-color .3s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--c-primary); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--c-primary); color: var(--c-secondary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.12rem; margin: 0 0 10px; }
.feature-card p { color: var(--c-muted); font-size: 0.92rem; margin: 0; }

/* Package cards */
.pkg-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.pkg-card .media { position: relative; height: 200px; }
.pkg-card .media img { width: 100%; height: 100%; object-fit: cover; }
.pkg-card .duration-badge { position: absolute; top: 14px; right: 14px; background: var(--c-secondary); color: #3a2b00; font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem; padding: 6px 12px; border-radius: 100px; }
.pkg-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pkg-card .tag { font-family: var(--font-mono); font-size: 0.74rem; color: var(--c-primary); letter-spacing: 0.03em; margin-bottom: 8px; display: block; }
.pkg-card h3 { font-size: 1.2rem; margin: 0 0 12px; }
.pkg-card .price-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px dashed var(--c-line); }
.pkg-pdf-link { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; color: var(--c-accent); margin-top: 12px; }
.pkg-pdf-link:hover { text-decoration: underline; }
.pkg-pdf-link i { font-size: 0.95rem; }
.pkg-card .price { font-family: var(--font-display); font-size: 1.3rem; color: var(--c-accent); }
.pkg-card .price small { font-family: var(--font-mono); font-size: 0.7rem; color: var(--c-muted); display: block; font-weight: 400; }

/* Testimonials */
.testi-card { background: var(--c-white); border-radius: var(--radius); padding: 30px; border: 1px solid var(--c-line); height: 100%; }
.testi-stars { color: var(--c-secondary); margin-bottom: 14px; letter-spacing: 3px; }
.testi-card p.quote { font-size: 1.02rem; font-style: italic; margin: 0 0 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-person strong { display: block; font-size: 0.92rem; }
.testi-person span { font-size: 0.8rem; color: var(--c-muted); }

/* Blog cards */
.blog-card { background: var(--c-white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-soft); }
.blog-card .media { height: 190px; overflow: hidden; }
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .media img { transform: scale(1.08); }
.blog-card .body { padding: 22px; }
.blog-card .date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--c-muted); }
.blog-card h3 { font-size: 1.08rem; margin: 10px 0; }
.blog-card a.readmore { color: var(--c-primary); font-weight: 700; font-size: 0.88rem; }

/* Gallery masonry */
.masonry { columns: 4 220px; column-gap: 16px; }
.masonry .g-item { break-inside: avoid; margin-bottom: 16px; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; }
.masonry .g-item img { width: 100%; display: block; transition: transform .4s ease; }
.masonry .g-item:hover img { transform: scale(1.06); }
.masonry .g-item::after { content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; background: rgba(7,61,44,0); opacity: 0; transition: all .3s ease; }
.masonry .g-item:hover::after { background: rgba(7,61,44,0.45); opacity: 1; }

/* CTA band */
.cta-band { background: linear-gradient(115deg, var(--c-primary-dark), var(--c-primary)); color: #fff; border-radius: 24px; padding: 64px; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,209,102,0.25), transparent 55%); }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 0 28px; position: relative; }

/* Footer */
footer { background: var(--c-primary-dark); color: rgba(255,255,255,0.85); padding: 80px 0 0; }
footer h4 { color: #fff; font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
footer .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 12px; font-size: 0.92rem; }
footer ul li a:hover { color: var(--c-secondary); }
footer p { font-size: 0.9rem; line-height: 1.7; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; transition: all .25s ease; }
.social-row a:hover { background: var(--c-secondary); color: #3a2b00; border-color: var(--c-secondary); }
.foot-newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.foot-newsletter-form input { flex: 1; padding: 11px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; font-size: 0.88rem; }
.foot-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.foot-bottom a { margin-left: 18px; }

/* Floating action buttons */
.floating-actions { position: fixed; right: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; box-shadow: var(--shadow-lift); transition: transform .25s ease; }
.fab:hover { transform: scale(1.08); }
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--c-primary); }
.fab-top { background: var(--c-accent); opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .25s ease; }
.fab-top.show { opacity: 1; pointer-events: auto; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; max-width: 560px;
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 22px; z-index: 950;
  display: flex; flex-direction: column; gap: 14px;
  transform: translateY(140%); transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.88rem; color: var(--c-muted); }
.cookie-actions { display: flex; gap: 10px; }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: 210px 0 90px; color: #fff; background: linear-gradient(180deg, rgba(7,61,44,0.55), rgba(7,61,44,0.9)); background-size: cover; background-position: center; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin: 14px 0 0; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--c-secondary); }

/* Filters (pill tabs) */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 42px; }
.filter-pill { padding: 10px 20px; border-radius: 100px; border: 1px solid var(--c-line); background: var(--c-white); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all .2s ease; }
.filter-pill.active, .filter-pill:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* Timeline / route steps (Kilimanjaro etc.) */
.route-list { display: flex; flex-direction: column; gap: 0; }
.route-item { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--c-line); }
.route-item .stat { font-family: var(--font-mono); font-size: 0.85rem; color: var(--c-primary); }
.route-item h4 { margin: 0 0 6px; font-size: 1.15rem; }
.route-item p { margin: 0; color: var(--c-muted); font-size: 0.92rem; }
.difficulty-dots span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--c-line); margin-right: 3px; }
.difficulty-dots span.on { background: var(--c-accent); }

/* Accordion (FAQ) */
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; font-weight: 700; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--c-muted); font-size: 0.94rem; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 20px; }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-q .chevron { transition: transform .3s ease; }

/* Forms */
.form-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid var(--c-line);
  background: var(--c-bg); color: var(--c-text); font-family: var(--font-body); font-size: 0.95rem;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.8rem; color: var(--c-muted); margin-top: 6px; }
.was-validated .form-group input:invalid, .form-group input.is-invalid { border-color: var(--c-accent); }
.invalid-feedback { display: none; color: var(--c-accent); font-size: 0.78rem; margin-top: 6px; }
.form-group input:invalid ~ .invalid-feedback { display: none; }
.form-group.error .invalid-feedback { display: block; }
.form-group.error input, .form-group.error textarea { border-color: var(--c-accent); }

.info-card { background: var(--c-sand); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.info-card h4 { margin: 0 0 10px; display: flex; align-items: center; gap: 10px; }
.info-card p { margin: 0; color: var(--c-muted); font-size: 0.92rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); height: 280px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Utility */
.text-muted { color: var(--c-muted); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.bg-sand { background: var(--c-sand); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.stat-strip { display: flex; gap: 50px; flex-wrap: wrap; }
.stat-block .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--c-primary); display: block; }
.stat-block .label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--c-muted); text-transform: uppercase; }
.value-card { display: flex; gap: 16px; }
.value-card .num-mark { font-family: var(--font-mono); color: var(--c-accent); font-weight: 700; }

/* =========================================================
   EXPLORER CONSOLE — interactive "field GPS unit" destination
   picker with a live Google Map + game-style D-pad controls
   ========================================================= */
.explorer-console {
  background: linear-gradient(160deg, var(--c-primary-dark), #0A2A20);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(255,255,255,0.08);
}
.explorer-top-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; margin-bottom: 20px; }

.explorer-screen {
  position: relative; border-radius: 16px; overflow: hidden; height: 380px;
  background: #000; border: 6px solid #0E241B; box-shadow: inset 0 0 0 2px rgba(255,209,102,0.15);
}
.explorer-screen img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
.explorer-screen .scanline { position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 3px); pointer-events: none; mix-blend-mode: multiply; opacity: .5; }
.explorer-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent); color: #fff; }
.explorer-overlay .gps-stamp { position: static; display: inline-block; margin-bottom: 8px; background: rgba(255,255,255,0.12); }
.explorer-overlay h3 { color: #fff; font-size: 1.35rem; margin: 0 0 8px; }
.explorer-overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0 0 12px; max-width: 90%; }

.explorer-map-wrap { border-radius: 16px; overflow: hidden; border: 6px solid #0E241B; position: relative; height: 380px; background: #0a1712; }
.explorer-map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }
.explorer-map-label { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; background: rgba(0,0,0,0.6); color: var(--c-secondary); padding: 5px 10px; border-radius: 100px; z-index: 2; text-transform: uppercase; }

.explorer-controls { display: flex; align-items: center; gap: 18px; }
.dpad-btn {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  color: #EAF3EE; background: #0F2A20; border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 20px; border-radius: 100px; cursor: pointer; white-space: nowrap;
  transition: all .2s ease; flex-shrink: 0;
  box-shadow: 0 3px 0 rgba(0,0,0,0.35);
}
.dpad-btn:hover { background: var(--c-primary); color: #fff; transform: translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,0.35); }
.dpad-btn:active { transform: translateY(3px); box-shadow: none; }

.cartridge-row { display: flex; gap: 10px; overflow-x: auto; padding: 6px 2px; flex: 1; scrollbar-width: thin; }
.cartridge-row::-webkit-scrollbar { height: 6px; }
.cartridge-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
.cartridge-btn {
  position: relative; flex-shrink: 0; width: 78px; height: 62px; border-radius: 10px; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15); cursor: pointer; padding: 0; background: #0a1712;
  transition: all .2s ease; opacity: 0.6;
}
.cartridge-btn img { width: 100%; height: 100%; object-fit: cover; }
.cartridge-btn.active { border-color: var(--c-secondary); opacity: 1; transform: translateY(-4px); box-shadow: 0 6px 14px rgba(0,0,0,0.4); }
.cartridge-btn:hover { opacity: 1; }
.cartridge-btn .label {
  position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.75); color: #fff;
  font-family: var(--font-mono); font-size: 0.55rem; padding: 2px 4px; text-align: center; letter-spacing: 0.02em;
}
.explorer-console-label { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; display: block; }

@media (max-width: 900px) {
  .explorer-top-row { grid-template-columns: 1fr; }
  .explorer-screen, .explorer-map-wrap { height: 280px; }
  .explorer-controls { flex-wrap: wrap; }
}

/* =========================================================
   LIVE WEATHER SPIN — a wheel-of-fortune style park picker
   styled after the logo's circular sunset-arc badge. Selecting
   a segment (or hitting Spin) fetches that park's real live
   weather from Open-Meteo (no API key required).
   ========================================================= */
.weather-spin-wrap {
  display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center;
}
.spin-dial-outer {
  position: relative; width: 340px; height: 340px; flex-shrink: 0; margin: 0 auto;
}
.spin-pointer {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%); z-index: 5;
  width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-top: 22px solid var(--c-accent); filter: drop-shadow(0 3px 4px rgba(0,0,0,0.35));
}
.spin-dial-outer::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 3px solid var(--c-primary-dark); opacity: 0.5;
}
.spin-wheel {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 8px var(--c-white), var(--shadow-lift);
  transition: transform 3.2s cubic-bezier(.15,.7,.15,1);
  background: conic-gradient(
    #FFD166 0deg 45deg, #0B6E4F 45deg 90deg,
    #F1E7D0 90deg 135deg, #073D2C 135deg 180deg,
    #FFD166 180deg 225deg, #0B6E4F 225deg 270deg,
    #F1E7D0 270deg 315deg, #073D2C 315deg 360deg
  );
}
.spin-seg-label {
  position: absolute; top: 50%; left: 50%; width: 0; height: 0;
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; text-align: center; white-space: nowrap; cursor: pointer;
  transform-origin: 0 0;
}
.spin-seg-label span {
  display: block; transform: translateX(-50%); padding: 4px 2px;
}
.spin-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border-radius: 50%; z-index: 4;
  background: var(--c-primary-dark); color: var(--c-secondary); border: 4px solid var(--c-white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  cursor: pointer; font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem;
  box-shadow: var(--shadow-soft); transition: transform .2s ease;
}
.spin-hub:hover { transform: translate(-50%, -50%) scale(1.06); }
.spin-hub i { font-size: 1.1rem; }

.weather-readout {
  border: 1px solid var(--c-line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
  background: linear-gradient(180deg, #7EC8E3 0%, #9CD8ED 32%, #C7E8F2 44%, #EAF6EC 47%, #CDE8B8 52%, #9CCB7E 72%, #5E9E52 100%);
  min-height: 360px;
}
.weather-cloud {
  position: absolute; background: #fff; border-radius: 50px; opacity: 0.85;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}
.weather-cloud::before, .weather-cloud::after {
  content: ""; position: absolute; background: #fff; border-radius: 50%;
}
.wc-1 { top: 26px; left: 8%; width: 92px; height: 30px; }
.wc-1::before { width: 46px; height: 46px; top: -22px; left: 10px; }
.wc-1::after { width: 34px; height: 34px; top: -16px; left: 50px; }
.wc-2 { top: 62px; right: 12%; width: 70px; height: 24px; opacity: 0.7; }
.wc-2::before { width: 34px; height: 34px; top: -16px; left: 8px; }
.wc-2::after { width: 26px; height: 26px; top: -12px; left: 38px; }
.wc-3 { top: 14px; right: 30%; width: 54px; height: 18px; opacity: 0.55; }
.wc-3::before { width: 26px; height: 26px; top: -12px; left: 6px; }
.wc-3::after { width: 20px; height: 20px; top: -9px; left: 28px; }
.weather-sun-glow {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,120,0.85), rgba(255,220,120,0));
}
.weather-hill { position: absolute; left: -5%; right: -5%; bottom: -10px; height: 70px; background: #4E8A45; border-radius: 50% 50% 0 0 / 100% 100% 0 0; opacity: 0.55; }
.weather-hill.h2 { bottom: -26px; height: 60px; background: #3E7238; opacity: 0.65; }

.weather-content {
  position: relative; z-index: 2; margin: 28px; padding: 26px;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(6px);
  border-radius: 14px; box-shadow: 0 8px 24px rgba(7,61,44,0.12);
}
.weather-live-dot { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--c-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.weather-live-dot .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent); animation: pulseLive 1.6s ease-in-out infinite; }
@keyframes pulseLive { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.weather-park-name { font-size: 1.5rem; margin: 0 0 4px; }
.weather-region-tag { font-family: var(--font-mono); font-size: 0.75rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.weather-main-row { display: flex; align-items: center; gap: 22px; margin: 22px 0; }
.weather-icon { font-size: 3rem; color: var(--c-secondary); width: 70px; text-align: center; }
.weather-temp { font-family: var(--font-display); font-size: 3.2rem; color: var(--c-text); line-height: 1; }
.weather-desc { color: var(--c-muted); font-size: 0.95rem; margin-top: 4px; }
.weather-meta-row { display: flex; gap: 30px; padding-top: 18px; border-top: 1px dashed var(--c-line); }
.weather-meta-item { font-size: 0.88rem; color: var(--c-muted); display: flex; align-items: center; gap: 8px; }
.weather-meta-item strong { color: var(--c-text); font-family: var(--font-mono); }
.weather-updated { display: block; margin-top: 16px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--c-muted); }

@media (max-width: 900px) {
  .weather-spin-wrap { grid-template-columns: 1fr; justify-items: center; }
  .spin-dial-outer { width: 280px; height: 280px; }
}

/* =========================================================
   MIHAYO AI — floating tourism chat assistant
   ========================================================= */
.ai-fab {
  position: fixed; right: 24px; bottom: 222px; z-index: 950;
  width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--c-secondary);
  padding: 0; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-lift);
  background: var(--c-primary-dark); transition: transform .25s ease;
}
.ai-fab img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ai-fab:hover { transform: scale(1.07); }
.ai-fab .ai-fab-dot { position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; border-radius: 50%; background: #2ecc71; border: 2px solid #fff; }
.ai-fab-hide { display: none !important; }

.ai-panel {
  position: fixed; right: 24px; bottom: 24px; z-index: 1300;
  width: 380px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 48px);
  background: var(--c-white); border-radius: 20px; box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--c-line);
  transform: translateY(20px) scale(0.97); opacity: 0; pointer-events: none; transition: all .25s ease;
}
.ai-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

.ai-header { background: linear-gradient(115deg, var(--c-primary-dark), var(--c-primary)); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ai-header img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid var(--c-secondary); }
.ai-header .ai-h-text { flex: 1; }
.ai-header .ai-h-name { font-family: var(--font-display); font-weight: 800; font-size: 1rem; }
.ai-header .ai-h-role { font-size: 0.76rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; }
.ai-header .ai-h-role .dot { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; display: inline-block; }
.ai-header button { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; }

.ai-messages { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 14px; background: var(--c-bg); }
.ai-msg { display: flex; gap: 10px; max-width: 90%; }
.ai-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.ai-msg-avatar { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.ai-msg-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ai-msg-bubble { padding: 11px 15px; border-radius: 16px; font-size: 0.88rem; line-height: 1.5; }
.ai-msg.bot .ai-msg-bubble { background: var(--c-white); border: 1px solid var(--c-line); border-bottom-left-radius: 4px; }
.ai-msg.user .ai-msg-bubble { background: var(--c-primary); color: #fff; border-bottom-right-radius: 4px; }
.ai-typing .ai-msg-bubble { display: flex; gap: 4px; align-items: center; padding: 14px 16px; }
.ai-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--c-muted); animation: aiTypingBounce 1.2s infinite ease-in-out; }
.ai-typing span:nth-child(2) { animation-delay: .2s; } .ai-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes aiTypingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

.ai-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 12px; background: var(--c-bg); flex-shrink: 0; }
.ai-chip { font-size: 0.76rem; font-weight: 600; padding: 7px 13px; border-radius: 100px; border: 1px solid var(--c-primary); color: var(--c-primary); background: rgba(11,110,79,0.06); cursor: pointer; white-space: nowrap; }
.ai-chip:hover { background: var(--c-primary); color: #fff; }

.ai-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--c-line); background: var(--c-white); flex-shrink: 0; }
.ai-input-row input { flex: 1; border: 1px solid var(--c-line); border-radius: 100px; padding: 11px 16px; font-family: var(--font-body); font-size: 0.88rem; background: var(--c-bg); color: var(--c-text); }
.ai-input-row button { width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--c-accent); color: #fff; cursor: pointer; flex-shrink: 0; }
.ai-disclaimer { font-size: 0.68rem; color: var(--c-muted); text-align: center; padding: 6px 14px 10px; background: var(--c-white); }

@media (max-width: 480px) {
  .ai-panel { right: 12px; left: 12px; width: auto; bottom: 12px; height: calc(100vh - 24px); }
  .ai-fab { right: 16px; bottom: 214px; }
}

/* =========================================================
   MARQUEE STRIP — continuous infinite-scroll brand/destination
   ticker, pure CSS (two duplicated tracks translated -50%)
   ========================================================= */
.marquee-strip {
  background: var(--c-primary-dark); overflow: hidden; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 32s linear infinite; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; align-items: center; flex-shrink: 0; }
.marquee-item { display: flex; align-items: center; gap: 14px; padding: 0 34px; flex-shrink: 0; }
.marquee-item img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.marquee-item span {
  font-family: var(--font-mono); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-secondary); white-space: nowrap;
}
.marquee-item.brand span { color: #fff; font-family: var(--font-display); font-weight: 800; letter-spacing: 0.01em; text-transform: none; font-size: 1.05rem; }
.marquee-sep { color: rgba(255,255,255,0.3); font-size: 1rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =========================================================
   ARTICLE (individual blog post) typography
   ========================================================= */
.article-meta-row { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-top: 14px; }
.article-meta-row .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-wrap .lede { font-size: 1.18rem; color: var(--c-text); font-weight: 500; line-height: 1.6; margin-bottom: 30px; }
.article-wrap h2 { font-size: 1.55rem; margin: 46px 0 16px; }
.article-wrap h3 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--c-primary); }
.article-wrap p { color: var(--c-text); font-size: 1.02rem; line-height: 1.8; margin: 0 0 20px; }
.article-wrap ul, .article-wrap ol { margin: 0 0 22px; padding-left: 22px; }
.article-wrap li { font-size: 1.02rem; line-height: 1.8; margin-bottom: 8px; color: var(--c-text); }
.article-wrap strong { color: var(--c-primary); }
.article-wrap .pull-quote {
  border-left: 3px solid var(--c-secondary); padding: 6px 0 6px 22px; margin: 30px 0;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--c-primary-dark); font-style: italic;
}
.article-wrap .callout {
  background: var(--c-sand); border-radius: var(--radius-sm); padding: 20px 24px; margin: 26px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.article-wrap .callout i { color: var(--c-primary); font-size: 1.2rem; margin-top: 2px; }
.article-wrap .callout p { margin: 0; font-size: 0.94rem; }
.article-table { width: 100%; border-collapse: collapse; margin: 10px 0 26px; font-size: 0.92rem; }
.article-table th, .article-table td { border: 1px solid var(--c-line); padding: 10px 14px; text-align: left; }
.article-table th { background: var(--c-sand); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--c-line); }
.article-share a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--c-line); display: flex; align-items: center; justify-content: center; color: var(--c-muted); }
.article-share a:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.related-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 720px) {
  .related-articles-grid { grid-template-columns: 1fr; }
  .article-wrap h2 { font-size: 1.3rem; }
}

/* =========================================================
   CITY CLOCKS — live ticking time cards for Tanzania's main hubs
   ========================================================= */
.city-clocks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.city-clock-card {
  background: linear-gradient(160deg, var(--c-primary-dark), #0A2A20);
  border-radius: var(--radius); padding: 26px; color: #fff; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow-soft);
}
.city-clock-card::before {
  content: ""; position: absolute; top: -30px; right: -30px; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,209,102,0.18), transparent 70%);
}
.city-clock-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--c-secondary); font-size: 1.05rem; margin-bottom: 14px; }
.city-clock-name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 0 0 3px; }
.city-clock-tag { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.city-clock-time { font-family: var(--font-mono); font-size: 2.1rem; font-weight: 600; color: var(--c-secondary); margin: 16px 0 4px; letter-spacing: 0.02em; }
.city-clock-date { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.city-clock-blurb { font-size: 0.86rem; color: rgba(255,255,255,0.75); line-height: 1.6; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,0.15); }
.city-clock-note {
  display: flex; gap: 12px; align-items: flex-start; background: var(--c-sand); border-radius: var(--radius-sm);
  padding: 18px 22px; margin-top: 26px; font-size: 0.88rem; color: var(--c-muted);
}
.city-clock-note i { color: var(--c-primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

@media (max-width: 900px) {
  .city-clocks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .city-clocks-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TRIP COST CALCULATOR — interactive live budget estimator
   ========================================================= */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
.calc-controls { background: var(--c-white); padding: 40px; }
.calc-group { margin-bottom: 26px; }
.calc-group label { display: flex; justify-content: space-between; font-weight: 700; font-size: 0.92rem; margin-bottom: 12px; }
.calc-group label .val { font-family: var(--font-mono); color: var(--c-accent); }
.calc-group input[type="range"] { width: 100%; accent-color: var(--c-primary); height: 6px; }
.calc-tier-row { display: flex; gap: 10px; }
.calc-tier-btn { flex: 1; padding: 12px 8px; border-radius: var(--radius-sm); border: 2px solid var(--c-line); background: var(--c-bg); text-align: center; cursor: pointer; font-size: 0.85rem; font-weight: 700; transition: all .2s ease; }
.calc-tier-btn.active { border-color: var(--c-primary); background: rgba(11,110,79,0.08); color: var(--c-primary); }
.calc-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--c-line); }
.calc-toggle-row:last-child { border-bottom: none; }
.calc-toggle-row span { font-weight: 600; font-size: 0.92rem; }
.calc-switch { position: relative; width: 46px; height: 26px; border-radius: 100px; background: var(--c-line); cursor: pointer; flex-shrink: 0; transition: background .2s ease; }
.calc-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .2s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.calc-switch.on { background: var(--c-primary); }
.calc-switch.on::after { transform: translateX(20px); }
.calc-sub-input { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.calc-sub-input input { width: 70px; padding: 8px 10px; border-radius: 8px; border: 1px solid var(--c-line); background: var(--c-bg); font-family: var(--font-mono); text-align: center; }

.calc-result { background: linear-gradient(160deg, var(--c-primary-dark), #0A2A20); color: #fff; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.calc-result-label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.calc-result-total { font-family: var(--font-display); font-size: 3rem; color: var(--c-secondary); margin: 10px 0 4px; line-height: 1; }
.calc-result-perperson { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-bottom: 26px; }
.calc-breakdown { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.calc-breakdown-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding-bottom: 10px; border-bottom: 1px dashed rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.calc-breakdown-row strong { color: #fff; font-family: var(--font-mono); }
.calc-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: auto; }

@media (max-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-controls, .calc-result { padding: 28px 22px; }
}

/* =========================================================
   WISHLIST — heart-toggle favorites with a floating drawer
   ========================================================= */
.wishlist-heart {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(3px); border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all .2s ease;
}
.wishlist-heart:hover { transform: scale(1.1); }
.wishlist-heart.active { color: var(--c-accent); background: rgba(255,255,255,0.9); }
.wishlist-heart.active i { font-weight: 900; }
.pkg-card .wishlist-heart { left: 14px; right: auto; }

.wishlist-fab {
  position: fixed; left: 24px; bottom: 24px; z-index: 950;
  background: var(--c-accent); color: #fff; border: none; border-radius: 100px;
  padding: 14px 20px; display: flex; align-items: center; gap: 10px; cursor: pointer;
  box-shadow: var(--shadow-lift); font-weight: 700; font-size: 0.88rem; transition: transform .2s ease;
}
.wishlist-fab:hover { transform: translateY(-2px); }
.wishlist-fab .count { background: rgba(255,255,255,0.25); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.75rem; }
.wishlist-fab.empty { display: none; }

.wishlist-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: calc(100vw - 32px); z-index: 1300;
  background: var(--c-white); box-shadow: -20px 0 50px rgba(0,0,0,0.25); transform: translateX(100%);
  transition: transform .3s ease; display: flex; flex-direction: column;
}
.wishlist-drawer.open { transform: translateX(0); }
.wishlist-drawer-header { padding: 22px; background: var(--c-primary-dark); color: #fff; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.wishlist-drawer-header h3 { color: #fff; margin: 0; font-size: 1.1rem; }
.wishlist-drawer-header button { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; }
.wishlist-items { flex: 1; overflow-y: auto; padding: 18px; }
.wishlist-item { display: flex; gap: 12px; padding: 12px; border-radius: var(--radius-sm); background: var(--c-bg); margin-bottom: 12px; align-items: center; }
.wishlist-item img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.wishlist-item-info { flex: 1; min-width: 0; }
.wishlist-item-info h4 { font-size: 0.9rem; margin: 0 0 4px; }
.wishlist-item-info span { font-size: 0.78rem; color: var(--c-muted); }
.wishlist-item button { background: none; border: none; color: var(--c-muted); cursor: pointer; font-size: 0.95rem; flex-shrink: 0; }
.wishlist-item button:hover { color: var(--c-accent); }
.wishlist-empty-state { text-align: center; padding: 60px 20px; color: var(--c-muted); }
.wishlist-empty-state i { font-size: 2.4rem; color: var(--c-line); margin-bottom: 14px; }
.wishlist-drawer-footer { padding: 18px 22px; border-top: 1px solid var(--c-line); flex-shrink: 0; }
.wishlist-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1250; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.wishlist-overlay.open { opacity: 1; pointer-events: auto; }

@media (max-width: 480px) {
  .wishlist-drawer { width: 100%; max-width: 100%; }
  .wishlist-fab { left: 12px; bottom: 12px; }
}

/* =========================================================
   BRAND PROMISE — the core "our host, our message" statement
   ========================================================= */
.brand-promise {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  position: relative; overflow: hidden; padding: 80px 0;
}
.brand-promise::before {
  content: "\201C"; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 14rem; color: rgba(255,255,255,0.06); line-height: 1;
  pointer-events: none;
}
.brand-promise .container { position: relative; z-index: 1; }
.brand-promise-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.brand-promise .eyebrow { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: var(--c-secondary); }
.brand-promise-text {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.55; color: #fff; margin: 22px 0 26px;
}
.brand-promise-signoff { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.brand-promise-signoff::before { content: "— "; }

/* =========================================================
   FOUNDERS / LEADERSHIP
   ========================================================= */
.founders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.founder-card { background: var(--c-white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease; }
.founder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.founder-card .photo { height: 380px; overflow: hidden; background: var(--c-sand); }
.founder-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-card .body { padding: 26px; }
.founder-card h3 { font-size: 1.3rem; margin: 0 0 4px; }
.founder-card .role { font-family: var(--font-mono); color: var(--c-primary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; display: block; }
.founder-card p { color: var(--c-muted); font-size: 0.92rem; margin: 0; line-height: 1.7; }
.founder-card .social-row { margin-top: 18px; }
.founder-card .social-row a { width: 34px; height: 34px; border: 1px solid var(--c-line); color: var(--c-muted); }
.founder-card .social-row a:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

@media (max-width: 720px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   NEWSLETTER POPUP
   ========================================================= */
.newsletter-popup-overlay {
  position: fixed; inset: 0; background: rgba(7,20,15,0.55); z-index: 1400;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.newsletter-popup-overlay.open { opacity: 1; pointer-events: auto; }
.newsletter-popup {
  background: var(--c-white); border-radius: 20px; max-width: 780px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; box-shadow: var(--shadow-lift);
  transform: scale(0.94) translateY(14px); transition: transform .3s ease;
}
.newsletter-popup-overlay.open .newsletter-popup { transform: scale(1) translateY(0); }
.newsletter-popup-media { position: relative; min-height: 260px; }
.newsletter-popup-media img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-popup-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,61,44,0.55), transparent 50%); }
.newsletter-popup-body { padding: 40px 36px; position: relative; }
.newsletter-popup-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--c-bg); border: 1px solid var(--c-line); color: var(--c-muted); cursor: pointer;
}
.newsletter-popup-close:hover { background: var(--c-sand); }
.newsletter-popup-body h3 { font-size: 1.4rem; margin: 10px 0 10px; }
.newsletter-popup-body p { color: var(--c-muted); font-size: 0.92rem; margin: 0 0 22px; }
.newsletter-popup-form input {
  width: 100%; padding: 13px 16px; border-radius: 100px; border: 1px solid var(--c-line);
  background: var(--c-bg); font-family: var(--font-body); font-size: 0.92rem; margin-bottom: 12px;
}
.newsletter-popup-success { display: none; text-align: center; padding: 20px 0; }
.newsletter-popup-success i { font-size: 2.2rem; color: var(--c-primary); margin-bottom: 12px; }
.newsletter-popup-decline { display: block; text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--c-muted); }
.newsletter-popup-decline:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .newsletter-popup { grid-template-columns: 1fr; }
  .newsletter-popup-media { min-height: 140px; }
  .newsletter-popup-body { padding: 30px 24px; }
}

/* =========================================================
   TESTIMONIAL CAROUSEL
   ========================================================= */
.testi-carousel { position: relative; max-width: 720px; margin: 0 auto; }
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; transition: transform .45s ease; }
.testi-slide { flex: 0 0 100%; max-width: 100%; padding: 0 6px; }
.testi-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; background: var(--c-white); border: 1px solid var(--c-line);
  color: var(--c-primary); cursor: pointer; box-shadow: var(--shadow-soft); font-size: 1rem;
}
.testi-nav:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.testi-nav.prev { left: -22px; }
.testi-nav.next { right: -22px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-line); border: none; cursor: pointer; padding: 0; transition: all .2s ease; }
.testi-dot.active { background: var(--c-primary); width: 24px; border-radius: 6px; }

@media (max-width: 720px) {
  .testi-nav.prev { left: 4px; }
  .testi-nav.next { right: 4px; }
  .testi-nav { width: 36px; height: 36px; }
}

/* =========================================================
   INTERACTIVE TANZANIA MAP — stylized illustrative silhouette
   with clickable pins that jump to the matching destination card
   ========================================================= */
.tz-map-section { background: var(--c-sand); }
.tz-map-wrap { position: relative; max-width: 560px; margin: 0 auto; }
.tz-map-shape-svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 12px 28px rgba(7,61,44,0.18)); }
.tz-map-note { text-align: center; font-family: var(--font-mono); font-size: 0.72rem; color: var(--c-muted); margin-top: 14px; }

.tz-pin {
  position: absolute; transform: translate(-50%, -100%); text-decoration: none;
  display: flex; flex-direction: column; align-items: center; cursor: pointer; z-index: 2;
}
.tz-pin-dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--c-accent); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35); position: relative; transition: transform .2s ease;
}
.tz-pin-dot::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--c-accent);
  opacity: 0; animation: tzPinPulse 2.2s ease-out infinite;
}
.tz-pin:nth-child(3n)  .tz-pin-dot::after { animation-delay: .3s; }
.tz-pin:nth-child(3n+1) .tz-pin-dot::after { animation-delay: .6s; }
@keyframes tzPinPulse { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }
.tz-pin:hover .tz-pin-dot { transform: scale(1.25); background: var(--c-primary); }
.tz-pin-label {
  margin-top: 6px; font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--c-primary-dark); background: rgba(255,255,255,0.9); padding: 3px 8px; border-radius: 100px;
  white-space: nowrap; box-shadow: 0 2px 6px rgba(0,0,0,0.12); opacity: 0; transform: translateY(-4px);
  transition: all .2s ease; pointer-events: none;
}
.tz-pin:hover .tz-pin-label, .tz-pin:focus .tz-pin-label { opacity: 1; transform: translateY(0); }
.tz-pin-static { pointer-events: none; }
.tz-pin-static .tz-pin-dot { background: var(--c-primary-dark); width: 10px; height: 10px; }
.tz-pin-static .tz-pin-label { opacity: 1; transform: none; position: static; margin-top: 4px; background: none; box-shadow: none; padding: 0; color: var(--c-muted); }

@media (max-width: 600px) {
  .tz-map-wrap { max-width: 92%; }
  .tz-pin-label { font-size: 0.58rem; padding: 2px 6px; }
  .tz-pin-dot { width: 12px; height: 12px; }
}

/* AOS-lite fade utility fallback (works even without AOS lib) */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-aos].aos-in { opacity: 1; transform: none; }
