/* =========================================================
   VOT — Volunteers of Tanzania
   Single consolidated stylesheet
   ========================================================= */

:root {
  /* ── Colour palette ── */
  --lake-deep:       #0F3D46;
  --lake-deep-light: #17545F;
  --primary-dark:    #082830;   /* replaces hard-coded #0A2A31 */
  --granite:         #4A4238;
  --granite-light:   #6B6153;
  --sun-ochre:       #E0942C;
  --sun-ochre-dark:  #A15C00;
  --sun-ochre-glow:  rgba(224,148,44,0.18);
  --acacia:          #5C7A5C;
  --savanna:         #F2EBDD;
  --savanna-dim:     #E9E0CC;
  --ink:             #1C1A16;
  --ink-soft:        #4A463E;
  --white:           #FFFFFF;

  --whatsapp:        #25D366;
  --whatsapp-dark:   #128C7E;
  --error:           #B42318;
  --success:         #2D7A2D;

  /* ── Typography ── */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-utility: "Space Grotesk", var(--font-body);

  /* ── Fluid type scale ── */
  --step-1: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
  --step0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step1:  clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem);
  --step2:  clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  --step3:  clamp(2.5rem, 2rem + 2vw, 4rem);
  --step4:  clamp(2.5rem, 2.4rem + 3.5vw, 5.5rem);

  /* ── Navbar ── */
  --nav-height: 84px;
  --nav-height-mobile: 64px;

  /* ── Layout ── */
  --content-width: 1180px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --radius-soft:   28px;
  --radius-card:   20px;
  --transition:    220ms cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Shadows ── */
  --shadow-sm:  0 2px 8px  rgba(28,26,22,0.08);
  --shadow-md:  0 8px 24px rgba(28,26,22,0.12);
  --shadow-lg:  0 18px 45px rgba(28,26,22,0.16);
  --shadow-xl:  0 28px 60px rgba(28,26,22,0.2);
}

/* ===== WhatsApp float: sit ABOVE the sticky Apply Now bar on phones ===== */
@media (max-width: 680px) {
  .whatsapp-float {
    right: 0.75rem;
    bottom: 6rem;              /* clears the ~87px sticky bar + gap */
    padding: 0.7rem 0.9rem;    /* slightly compact on phones */
  }
}

/* ===== WhatsApp float: sit ABOVE the sticky Apply Now bar on phones ===== */
@media (max-width: 680px) {
  .whatsapp-float {
    right: 0.75rem;
    bottom: 6rem;              /* clears the ~87px sticky bar + gap */
    padding: 0.7rem 0.9rem;    /* slightly compact on phones */
  }
}

/* ===== Hero CTA buttons — look good on every screen ===== */
.hero__cta .btn {
  padding: 1rem 2.2rem;
  font-size: var(--step0);
  max-width: 100%;
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .hero__cta {
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Reset ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step0);
  color: var(--ink);
  background: var(--savanna);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

p {
  margin: 0;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

figure {
  margin: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--sun-ochre);
  outline-offset: 3px;
}

/* ---------- Utilities ---------- */

.wrap {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
}

.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;
}

.eyebrow {
  font-family: var(--font-utility);
  font-size: var(--step-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun-ochre-dark);
  font-weight: 600;
}

.section {
  /* Reduced vertical spacing for tighter layout across devices */
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--deep {
  background: var(--lake-deep);
  color: var(--savanna);
}

.section--deep .eyebrow {
  color: var(--sun-ochre);
}

.section--deep h2,
.section--deep h3 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: var(--step3);
  margin-top: 0.45rem;
}

#placements .section-heading {
  max-width: none;
  background: var(--white);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--sun-ochre), var(--sun-ochre-dark)) 1;
  border-radius: var(--radius-soft);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 18px 40px rgba(28, 26, 22, 0.08);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: var(--step-1);
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--sun-ochre);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(224,148,44,0.35);
}
.btn--primary:hover {
  background: var(--sun-ochre-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(161,92,0,0.38);
}

.btn--ghost {
  border-color: currentColor;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--dark:hover {
  background: var(--ink);
  color: var(--savanna);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn.is-loading { opacity: 0.7; cursor: wait; transform: none; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(242, 235, 221, 0.94);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid rgba(28, 26, 22, 0.07);
  transition: box-shadow var(--transition), background var(--transition);
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--sun-ochre), var(--sun-ochre-dark));
  z-index: 1001;
  will-change: width;
}

.site-header.is-scrolled {
  background: rgba(242, 235, 221, 0.98);
  box-shadow: 0 2px 20px rgba(28,26,22,0.07);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 56px;
  width: auto;
  border-radius: 40%;
  animation: logo-spin 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes logo-spin {
  0%, 100% { transform: rotate(-12deg); }
  50%      { transform: rotate(12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo img {
    animation: none;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }

  .site-header.is-grown .logo img {
    height: 48px;
  }
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
  min-width: 0;
  gap: clamp(1rem, 2vw, 2rem);
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
}

/* Padding is constant across every state (rest/hover/active) — it never
   changes, so it can never shift surrounding layout. The underline lives
   entirely in an absolutely-positioned ::after, outside document flow.
   Links stay on one line rather than wrapping; below 900px the tiered
   rules further down shrink font-size/gap/padding step by step so the
   full menu keeps fitting without a hamburger, down to 480px. */
.nav a {
  position: relative;
  display: inline-block;
  padding: 0.45rem 0.2rem;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--sun-ochre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  will-change: transform;
  pointer-events: none;
}

.nav a:hover,
.nav a.is-active {
  color: var(--lake-deep);
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn).is-active::after {
  transform: scaleX(1);
}

.nav a.nav-link--apply {
  padding: 0.5rem 1.1rem;
  font-size: var(--step-1);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  position: relative;
  border-radius: 8px;
  background: var(--lake-deep);
  border: none;
  box-shadow: 0 4px 10px rgba(15, 61, 70, 0.2);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span::before {
  top: -8px;
}

.nav-toggle span::after {
  top: 8px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Below 480px the full nav row can't stay readable even at its smallest
   fluid size, so true phones fall back to the hamburger menu. Every
   wider device (tablets, laptops, desktops) keeps the always-visible row. */
@media (max-width: 480px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    background: var(--savanna);
    padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
    border-bottom: 1px solid rgba(28, 26, 22, 0.08);
    gap: 1rem;
    box-shadow: 0 20px 30px rgba(28, 26, 22, 0.08);
    z-index: 1;
  }

  .nav.is-open a {
    font-size: var(--step-1);
    white-space: normal;
  }

  .nav.is-open a.nav-link--apply {
    padding: 0.5rem 1.1rem;
    font-size: var(--step-1);
  }
}

/* 480-900px: tablets/small laptops keep the full row (no hamburger), but
   font size, gaps and padding step down tier by tier so all 9 items plus
   the logo keep fitting on one line. Values were tuned against rendered
   screenshots, not estimated, since text metrics don't reduce linearly. */
@media (min-width: 481px) and (max-width: 899px) {
  .nav {
    gap: 0.5rem;
    font-size: 0.72rem;
  }

  .nav a {
    padding: 0.4rem 0.05rem;
  }

  .nav a.nav-link--apply {
    padding: 0.35rem 0.55rem;
    font-size: 0.7rem;
  }
}

@media (min-width: 481px) and (max-width: 620px) {
  .nav {
    gap: 0.22rem;
    font-size: 0.58rem;
  }

  .nav a {
    padding: 0.35rem 0.02rem;
  }

  .nav a.nav-link--apply {
    padding: 0.3rem 0.4rem;
    font-size: 0.56rem;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(224, 148, 44, 0.16), transparent 32%),
    linear-gradient(180deg, var(--savanna) 0%, var(--savanna-dim) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 {
  font-size: var(--step4);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 13ch;
}

.hero p.lede {
  margin-top: 1.25rem;
  font-size: var(--step1);
  color: var(--ink-soft);
  max-width: 78ch;
}

.hero__cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 20px 45px rgba(28, 26, 22, 0.18);
}

.hero__caption {
  margin-top: 0.8rem;
  font-family: var(--font-utility);
  font-size: var(--step-1);
  color: var(--ink-soft);
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  /* tighter gap for compact layout */
  gap: 1rem;
  text-align: center;
}

.stat dt {
  font-family: var(--font-utility);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--sun-ochre);
}

.stat dd {
  margin: 0.35rem 0 0;
  font-size: var(--step-1);
  color: var(--ink-soft);
}

/* ---------- About ---------- */

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.about__media {
  margin: 0;
  display: flex;
}

.about__media img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(28, 26, 22, 0.14);
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__content h2 {
  font-size: var(--step3);
  margin-top: 0.45rem;
  margin-bottom: 1rem;
}

.about__content p {
  color: var(--ink-soft);
  max-width: 60ch;
}

.about__content p+p {
  margin-top: 1rem;
}

.about__content .btn {
  margin-top: 2rem;
}

/* ---------- Our Story (text + stats sidebar) ---------- */

.story-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: stretch;
}

#story .story-lede {
  font-family: var(--font-display);
  font-size: var(--step1);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin-top: 1.75rem;
}

#story .story-body {
  margin-top: 1rem;
}

#story .story-body p {
  color: var(--ink-soft);
  margin-top: 1rem;
}

#story .story-body p:first-child {
  margin-top: 0;
}

.story-main {
  background: var(--white);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--sun-ochre), var(--sun-ochre-dark)) 1;
  border-radius: var(--radius-soft);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 18px 40px rgba(28, 26, 22, 0.08);
}

.story-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--sun-ochre), var(--sun-ochre-dark)) 1;
  border-radius: var(--radius-soft);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: 0 18px 40px rgba(28, 26, 22, 0.08);
  position: sticky;
  top: 6rem;
}

.story-stat-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(28, 26, 22, 0.08);
}

.story-stat-card:first-child {
  padding-top: 0;
}

.story-stat-card:last-of-type {
  border-bottom: none;
  padding-bottom: 1.6rem;
}

.story-stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--savanna-dim);
  font-size: 1.5rem;
}

.story-stat-card__kicker {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-utility);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--granite-light);
}

.story-stat-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step2);
  font-weight: 700;
  color: var(--sun-ochre-dark);
  line-height: 1;
}

.story-stat-card__label {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-utility);
  font-size: var(--step-1);
  color: var(--ink-soft);
}

.story-side__cta {
  justify-content: center;
  background: var(--sun-ochre);
  border-color: var(--sun-ochre);
  color: var(--white);
  margin-top: auto;
}

.story-side__cta:hover {
  background: var(--sun-ochre-dark);
  border-color: var(--sun-ochre-dark);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-side {
    position: static;
  }

  .story-side__cta {
    margin-top: 1.6rem;
  }
}

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

  .about__media img {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

/* ---------- Why cards ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  /* reduce gap and allow dense packing */
  gap: 0.5rem;
  grid-auto-flow: dense;
  margin-top: 2.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-soft) var(--radius-soft) 8px var(--radius-soft);
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(28, 26, 22, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(28, 26, 22, 0.1);
}

.why-card h3 {
  font-size: var(--step0);
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--ink-soft);
  font-size: var(--step-1);
}

.why-card .card-link {
  margin-top: 1.25rem;
}

/* ---------- Placements (named, bookable programs) ---------- */

.placement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (max-width: 1200px) {
  .placement-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .placement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Items reveal in batches via a "show more" button (placements grid, FAQ list). */
.placement-card.is-hidden,
.faq-item.is-hidden {
  display: none;
}

.placement-load-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.placement-load-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-ochre), var(--sun-ochre-dark));
  color: var(--white);
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(161, 92, 0, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.placement-load-more__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(161, 92, 0, 0.34);
}

.placement-load-more__btn:active {
  transform: translateY(-1px) scale(0.98);
}

.placement-load-more__btn-icon {
  display: inline-flex;
  transition: transform var(--transition);
}

.placement-load-more__btn:hover .placement-load-more__btn-icon {
  transform: translateY(2px);
}

.placement-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.placement-card:hover {
  transform: translateY(-4px);
  border-color: var(--sun-ochre);
  box-shadow: 0 14px 30px rgba(28, 26, 22, 0.1);
}

.placement-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.placement-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.placement-card__body h3 {
  font-size: var(--step1);
  margin: 0.4rem 0 0;
}

.placement-card__body p {
  color: var(--ink-soft);
  font-size: var(--step-1);
  margin: 0;
}

.placement-card__meta {
  font-family: var(--font-utility);
  font-weight: 600;
  color: var(--granite);
}

.placement-card__typical {
  color: var(--ink);
}

.placement-card__pill {
  display: inline-block;
  width: max-content;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.placement-card__pill--healthcare    { background: var(--lake-deep); }
.placement-card__pill--education     { background: var(--sun-ochre); }
.placement-card__pill--childcare     { background: var(--sun-ochre-dark); }
.placement-card__pill--community     { background: var(--acacia); }
.placement-card__pill--environment   { background: var(--granite); }
.placement-card__pill--geology       { background: var(--lake-deep-light); }
.placement-card__pill--communication { background: var(--granite-light); }
.placement-card__pill--engineering   { background: var(--primary-dark); }
.placement-card__pill--tourism       { background: var(--lake-deep); }
.placement-card__pill--wildlife      { background: var(--sun-ochre); }
.placement-card__pill--excursion     { background: var(--acacia); }

.placement-card .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.placement-card__fallback {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}

.placement-card__fallback--communication { background: var(--granite-light); }
.placement-card__fallback--engineering   { background: var(--primary-dark); }
.placement-card__fallback--education     { background: var(--sun-ochre); }

/* ---------- Programs ---------- */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* tighter gap and dense packing to fill empty slots */
  gap: 0.5rem;
  grid-auto-flow: dense;
  margin-top: 2.5rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.08);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: var(--sun-ochre);
  box-shadow: 0 14px 30px rgba(28, 26, 22, 0.1);
}

.program-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.program-card h3 {
  margin: 1.5rem 1.75rem 0;
  font-size: var(--step1);
}

.program-card p {
  margin: 0.6rem 1.75rem 0;
  color: var(--ink-soft);
  font-size: var(--step-1);
  flex: 1;
}

#opportunities .program-card p {
  flex: 0 1 auto;
}

#opportunities .program-card img {
  width: 100%;
  height: 200px;
  aspect-ratio: auto;
  object-fit: cover;
  background: none;
}

#opportunities .program-card__top {
  min-height: 0;
  padding: 0.5rem 1rem;
}

#opportunities .program-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-family: var(--font-utility);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.program-card .card-link {
  display: inline-block;
  margin: 1rem 1.75rem 1.75rem;
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--lake-deep);
  border-bottom: 2px solid var(--sun-ochre);
}

.program-card .card-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.program-card__top {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: var(--step1);
}

.program-card__top--community {
  background: #1EB960;
}

/* Tanzania Green */
.program-card__top--education {
  background: #FCD116;
}

/* Tanzania Yellow */
.program-card__top--healthcare {
  background: #000000;
}

/* Tanzania Black */
.program-card__top--tourism {
  background: #00A3DD;
}

.program-card__top--environment {
  background: var(--granite);
}

.program-card__top--geology {
  background: var(--lake-deep-light);
}

/* Tanzania Blue */

.program-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ---------- Mwanza feature ---------- */

.mwanza {
  position: relative;
  border-radius: var(--radius-soft);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(224, 148, 44, 0.2), transparent 45%),
    linear-gradient(160deg, var(--lake-deep), var(--primary-dark));
  box-shadow: 0 18px 45px rgba(4, 22, 27, 0.25);
  transition: background var(--transition);
}

.mwanza h2 {
  color: var(--white);
  font-size: var(--step2);
  max-width: 45ch;
  margin-top: 0.15rem;
}

.mwanza p {
  color: var(--savanna-dim);
  max-width: 170ch;
  margin-top: 1.25rem;
}

.mwanza-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.mwanza-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), filter var(--transition);
}
.mwanza-gallery img:hover,
.mwanza-gallery img:focus {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.mwanza-gallery img:hover {
  transform: translateY(-4px);
}

/* ---------- Feature split ---------- */

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature-split--reverse .feature-split__media {
  order: 2;
}

.feature-split__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 38% 62% 55% 45% / 55% 45% 55% 45%;
  box-shadow: 0 18px 40px rgba(28, 26, 22, 0.15);
}

.feature-split__content h2 {
  font-size: var(--step2);
  margin-top: 0.45rem;
}

.feature-split__content p {
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 55ch;
}

.feature-list {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-list li {
  font-family: var(--font-utility);
  font-size: var(--step-1);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--savanna-dim);
  color: var(--ink-soft);
}

/* ---------- Testimonials ---------- */

.testimonials {
  text-align: center;
}

.testimonials .section-heading {
  margin-inline: auto;
  max-width: none;
}

.testimonials .section-heading h2 {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .testimonials .section-heading h2 {
    white-space: normal;
  }
}

.testimonial-track {
  position: relative;
  max-width: 760px;
  margin: 2.5rem auto 0;
  min-height: 250px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.testimonial.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: var(--step1);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.testimonial cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-utility);
  font-style: normal;
  font-size: var(--step-1);
  color: var(--sun-ochre-dark);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--savanna-dim);
  transition: background var(--transition), transform var(--transition);
}

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

/* ---------- CTA banner ---------- */

.cta-banner {
  border-radius: var(--radius-soft);
  background: var(--sun-ochre);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-banner h2 {
  font-size: var(--step2);
  max-width: 22ch;
}

.cta-banner .btn--dark {
  background: var(--ink);
  color: var(--savanna);
  border-color: var(--ink);
}

.cta-banner .btn--dark:hover {
  background: transparent;
  color: var(--ink);
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h2 {
  font-size: var(--step2);
  color: var(--white);
  margin-top: 0.45rem;
}

.contact-info p {
  color: var(--savanna-dim);
  margin-top: 1rem;
  max-width: 50ch;
}

.contact-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-list dt {
  font-family: var(--font-utility);
  font-size: var(--step-1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sun-ochre);
}

.contact-list dd {
  margin: 0.25rem 0 0;
  color: var(--white);
}

.contact-list a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color var(--transition), border-color var(--transition);
}

.contact-list a:hover {
  color: var(--sun-ochre);
  border-color: var(--sun-ochre);
}

.form-card {
  background: var(--savanna);
  border-radius: var(--radius-soft);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(4, 22, 27, 0.2);
}

/* =========================================================
   APPLY MODAL — pops the contact form up over the page
   ========================================================= */
.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem) 1rem;
  overflow-y: auto;
}

.apply-modal.is-open {
  display: flex;
}

.apply-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 18, 0.6);
  backdrop-filter: blur(2px);
}

.apply-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: auto;
  background: var(--savanna);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-xl);
  padding: clamp(2.5rem, 5vw, 3.25rem) clamp(1.75rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.75rem);
  animation: apply-modal-in 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes apply-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.apply-modal__dialog .form-card {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.apply-modal.is-submitted .field,
.apply-modal.is-submitted .field-row,
.apply-modal.is-submitted button[type="submit"] {
  display: none;
}

.apply-modal.is-submitted .form-note {
  margin-top: 0;
  font-size: var(--step-2, 1.15rem);
}

.apply-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition);
  z-index: 1;
}

.apply-modal__close:hover {
  background: var(--savanna-dim);
  transform: rotate(90deg);
}

.apply-modal__cancel {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
  background: transparent;
  border: 1.5px solid rgba(28, 26, 22, 0.15);
  color: var(--ink-soft);
}

.apply-modal__cancel:hover {
  background: rgba(28, 26, 22, 0.05);
  border-color: rgba(28, 26, 22, 0.25);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .apply-modal {
    padding: 0;
    align-items: flex-end;
  }

  .apply-modal__dialog {
    max-width: 100%;
    border-radius: var(--radius-soft) var(--radius-soft) 0 0;
    max-height: 92vh;
    overflow-y: auto;
  }
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(28, 26, 22, 0.15);
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sun-ochre);
}

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

.form-note {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin-top: 0.75rem;
  min-height: 1.4em;
}

.form-note.is-success {
  color: var(--acacia);
  font-weight: 600;
}

.form-note.is-error {
  color: var(--error);
  font-weight: 600;
}

.form-note a {
  color: var(--acacia);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.35rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--primary-dark);
  color: var(--savanna-dim);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 3px solid var(--sun-ochre);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem 2rem;
  font-size: var(--step-1);
}

.footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-family: inherit;
  white-space: normal;
  margin: 0;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 30ch;
  line-height: 1.65;
  opacity: 0.8;
}

.footer-col h4 {
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--sun-ochre);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--savanna-dim);
  opacity: 0.8;
  transition: color var(--transition), opacity var(--transition);
}
.footer-col a:hover {
  color: var(--sun-ochre);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--savanna-dim);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-social a:hover {
  background: var(--sun-ochre);
  border-color: var(--sun-ochre);
  color: var(--ink);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--step-1);
  color: rgba(233,224,204,0.6);
}
.footer-bottom a {
  color: inherit;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--sun-ochre); }

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a:hover { color: var(--sun-ochre); }

/* ---------- WhatsApp float ---------- */

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  font-family: var(--font-utility);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(18, 140, 126, 0.28);
  transition: background var(--transition), transform var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms cubic-bezier(0.4, 0, 0.2, 1), transform 640ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

/* ---------- Hero with photo background ---------- */

.hero--photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 92vh, 900px);
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--lake-deep);
}

.hero--photo .hero__background,
.hero--photo .hero__background img {
  position: absolute;
  inset: 0;
}

.hero--photo .hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero--photo .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 42, 49, 0.88) 0%,
      rgba(10, 42, 49, 0.65) 62%,
      rgba(10, 42, 49, 0.35) 100%);
}

.hero--photo .hero__inner {
  position: relative;
  z-index: 1;
  display: block;
}

.hero--photo .hero__content {
  max-width: 840px;
}

.hero--photo .eyebrow {
  color: var(--sun-ochre);
}

.hero--photo h1 {
  color: var(--white);
  font-size: var(--step4);
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero--photo p.lede {
  color: rgba(255, 255, 255, 0.92);
  margin-top: 1.5rem;
  font-size: var(--step1);
  max-width: 58ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero--photo .hero__cta {
  margin-top: 2.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero--photo .hero__cta .btn {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hero--photo .btn--ghost {
  color: var(--white);
}

.hero--photo .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 720px) {
  .hero--photo {
    min-height: 540px;
  }

  .hero--photo .hero__overlay {
    background: linear-gradient(180deg,
        rgba(10, 42, 49, 0.8),
        rgba(10, 42, 49, 0.65));
  }
}

/* ---------- Phone row / Tom Select ---------- */

.phone-row {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) 1.2fr;
  gap: 10px;
}

.phone-row select,
.phone-row input {
  width: 100%;
  height: 52px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: #222;
  outline: none;
  font-size: 14px;
}

.phone-row select {
  cursor: pointer;
}

.phone-row select:focus,
.phone-row input:focus {
  border-color: var(--sun-ochre);
  box-shadow: 0 0 0 3px rgba(224, 148, 44, 0.12);
}

@media (max-width: 600px) {
  .phone-row {
    grid-template-columns: 1fr;
  }
}

.ts-wrapper {
  width: 100%;
}

.ts-control {
  min-height: 52px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 7px 14px !important;
  box-shadow: none !important;
  font-size: 14px;
}

.ts-control.focus {
  border-color: var(--sun-ochre) !important;
  box-shadow: 0 0 0 3px rgba(224, 148, 44, 0.12) !important;
}

.ts-dropdown {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 5px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ts-dropdown .option {
  padding: 11px 14px;
  font-size: 14px;
}

.ts-dropdown .option.active {
  background: #f8ecdc;
  color: #b96816;
}

.ts-dropdown .option:hover {
  background: #f8ecdc;
}

.ts-control input {
  font-size: 14px !important;
}

/* ---------- About programs strip ---------- */

.about__programs {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.about__programs .why-card h3 {
  margin-bottom: 0.25rem;
}

.about__programs .feature-list {
  margin-top: 1rem;
}

/* ---------- Tour tiles ---------- */

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

.tour-tile {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tour-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(28, 26, 22, 0.14);
}

.tour-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tour-tile__body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.tour-tile h3 {
  font-size: var(--step0);
  margin-bottom: 0.35rem;
}

.tour-tile p {
  color: var(--ink-soft);
  font-size: var(--step-1);
}

/* =========================================================
   ACCOMMODATION — "Feel at Home"
   ========================================================= */

.accommodation {
  background: var(--white);
}

.acc-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(28, 26, 22, 0.12);
  margin-top: 2.5rem;
}

.acc-intro__panel {
  background: var(--sun-ochre);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.acc-intro__panel p+p {
  margin-top: 1rem;
}

.acc-intro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.acc-intro__chips li {
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
  background: rgba(28, 26, 22, 0.85);
  color: var(--savanna);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.acc-intro__media {
  margin: 0;
  position: relative;
}

.acc-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--savanna-dim);
}

.acc-intro__media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1.25rem 0.9rem;
  background: linear-gradient(transparent, rgba(10, 42, 49, 0.85));
  color: var(--white);
  font-family: var(--font-utility);
  font-size: var(--step-1);
}

.acc-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-block: 3.5rem;
  align-items: start;
}

.acc-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(28, 26, 22, 0.15);
}

.acc-gallery img:nth-child(2) {
  transform: translateY(1.25rem);
}

.acc-gallery img:nth-child(3) {
  transform: translateY(-0.75rem);
}

.acc-gallery img:nth-child(4) {
  transform: translateY(0.5rem);
}

.acc-bedrooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(28, 26, 22, 0.12);
}

.acc-bedrooms__col {
  padding: clamp(2rem, 5vw, 3.5rem);
}

.acc-bedrooms__col p+p {
  margin-top: 1rem;
}

.acc-bedrooms__col h3 {
  font-size: var(--step2);
  margin-bottom: 1.25rem;
}

.acc-bedrooms__col--dark {
  background: var(--lake-deep);
  color: var(--savanna-dim);
}

.acc-bedrooms__col--dark h3 {
  color: var(--sun-ochre);
}

.acc-bedrooms__col--blue {
  background: var(--acacia);
  color: var(--white);
}

.acc-bedrooms__col--blue h3::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--sun-ochre);
  margin-bottom: 1rem;
}

.acc-shared {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  background:
    radial-gradient(ellipse 520px 420px at 105% -10%, rgba(255, 255, 255, 0.22), transparent 65%),
    linear-gradient(135deg, #F2A13E 0%, #E0842A 55%, #C56A18 100%);
  border-radius: var(--radius-soft);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--ink);
  display: grid;
  grid-template-columns: fit-content(760px) minmax(260px, 1fr) minmax(240px, 300px);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.acc-shared > * {
  min-width: 0;
  width: 100%;
}

/* Subtle decorative ring, purely for depth */
.acc-shared::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.acc-shared h3 {
  font-size: var(--step2);
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}

.acc-shared h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.85;
}

.acc-shared__main > p {
  max-width: 60ch;
  margin-top: 1.1rem;
  color: rgba(28, 26, 22, 0.85);
  line-height: 1.7;
}

.acc-shared__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 760px;
}

.acc-shared__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 32px rgba(28, 26, 22, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.acc-shared__gallery img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(28, 26, 22, 0.3);
}

/* Amenities — fills the gap between the gallery and the rating badge */
.acc-shared__amenities {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 0;
}

.acc-shared__amenities li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.acc-shared__amenities li:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(4px);
}

.acc-shared__amenities-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(28, 26, 22, 0.15);
}

@media (max-width: 380px) {
  .acc-shared__amenities li {
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
  }

  .acc-shared__amenities-icon {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}

/* Rating badge fills the empty space to the right */
.acc-shared__badge {
  text-align: center;
  padding: 2.25rem 1.75rem;
  background: linear-gradient(160deg, #124751 0%, #0F3D46 55%, #082830 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 20px 44px rgba(8, 40, 48, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.acc-shared__badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(8, 40, 48, 0.4);
}

@media (max-width: 1100px) {
  .acc-shared {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  }

  .acc-shared__amenities {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }

}

@media (max-width: 900px) {
  .acc-shared {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .acc-shared h3 {
    padding-bottom: 0.6rem;
  }

  .acc-shared h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .acc-shared__main > p {
    margin-inline: auto;
  }

  .acc-shared__gallery {
    margin-inline: auto;
  }

  .acc-shared__amenities {
    align-items: center;
    justify-content: center;
  }

  .acc-shared__badge {
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .acc-intro {
    grid-template-columns: 1fr;
  }

  .acc-intro__media img {
    aspect-ratio: 4 / 3;
  }

  .acc-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .acc-gallery img:nth-child(n) {
    transform: none;
  }

  .acc-bedrooms {
    grid-template-columns: 1fr;
  }

  .acc-shared__gallery {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   INNER PAGES (community, education, healthcare, tourism)
   ========================================================= */

.page-hero {
  background: linear-gradient(160deg, var(--lake-deep), #0A2A31);
  color: var(--savanna);
  padding-block: clamp(4rem, 10vw, 7rem);
}

.page-hero .eyebrow {
  color: var(--sun-ochre);
}

.page-hero h1 {
  color: var(--white);
  font-size: var(--step3);
  max-width: 20ch;
  margin-top: 0.45rem;
}

.page-hero p.lede {
  margin-top: 1.25rem;
  color: var(--savanna-dim);
  font-size: var(--step1);
  max-width: 60ch;
}

.page-hero .hero__cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero .btn--ghost {
  color: var(--white);
}

.page-intro {
  max-width: 70ch;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.75rem;
  max-width: 70ch;
}

.check-list li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--acacia);
  font-weight: 700;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.detail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(28, 26, 22, 0.08);
}

.detail-card h3 {
  font-size: var(--step0);
  margin-bottom: 0.4rem;
}

.detail-card p {
  color: var(--ink-soft);
  font-size: var(--step-1);
}

/* =========================================================
   MWANZA ACTIVITIES — Day Trip page
   (adapted to VOT design system)
   ========================================================= */

.mwanza-page .header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--sun-ochre) 0%, #f2c94c 100%);
  color: var(--white);
  margin-bottom: 40px;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}

.mwanza-page .header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('placeholder-mwanza-skyline.jpg') center/cover;
  opacity: 0.2;
}

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

.mwanza-page .header h1 {
  color: var(--white);
  font-size: var(--step3);
  margin-bottom: 10px;
}

.mwanza-page .header p {
  font-size: var(--step1);
  max-width: 600px;
  margin: 0 auto;
}

.mwanza-page .hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mwanza-page .back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--sun-ochre);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.mwanza-page .back-link:hover {
  color: var(--sun-ochre-dark);
}

.mwanza-page .activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.mwanza-page .activity-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mwanza-page .activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mwanza-page .activity-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sun-ochre) 0%, #f2c94c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--step1);
  font-weight: 600;
}

.mwanza-page .activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwanza-page .activity-content {
  padding: 30px;
}

.mwanza-page .activity-icon {
  width: 70px;
  height: 70px;
  background: var(--sun-ochre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2em;
}

.mwanza-page .activity-card h2 {
  color: var(--ink);
  margin-bottom: 15px;
  font-size: var(--step2);
}

.mwanza-page .activity-card h3 {
  color: var(--sun-ochre-dark);
  margin: 20px 0 10px 0;
  font-size: var(--step1);
}

.mwanza-page .activity-card p {
  margin-bottom: 15px;
  color: var(--ink-soft);
}

.mwanza-page .activity-card ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.mwanza-page .activity-card li {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.mwanza-page .highlight {
  background: #fff3cd;
  padding: 15px;
  border-left: 4px solid var(--sun-ochre);
  margin: 15px 0;
  border-radius: 5px;
}

.mwanza-page .photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.mwanza-page .photo-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.mwanza-page .cta-section {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mwanza-page .cta-section h2 {
  color: var(--ink);
  margin-bottom: 20px;
  font-size: var(--step2);
}

.mwanza-page .cta-button {
  display: inline-block;
  background: var(--sun-ochre);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: background 0.3s, transform 0.3s;
}

.mwanza-page .cta-button:hover {
  background: var(--sun-ochre-dark);
  transform: scale(1.05);
}

.mwanza-page .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.mwanza-page .tag {
  background: var(--sun-ochre);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: var(--step-1);
}

.mwanza-page .image-placeholder {
  background: linear-gradient(135deg, var(--sun-ochre) 0%, #f2c94c 100%);
  color: var(--white);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  margin: 20px 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .mwanza-page .header h1 {
    font-size: var(--step2);
  }

  .mwanza-page .activities-grid {
    grid-template-columns: 1fr;
  }

  .mwanza-page .photo-gallery {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SAFARI PAGE — Video hero + 3 video cards
   ========================================================= */

.video-hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 0 0 50px 50px;
}

.video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-content h1 {
  color: var(--white);
  font-size: var(--step3);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
  font-size: var(--step1);
  max-width: 700px;
  margin: 0 auto 30px;
}

.video-content .hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Quick jump nav under the tour video hero */
.tour-jumpnav {
  border-bottom: 1px solid rgba(28, 26, 22, 0.08);
}

.tour-jumpnav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.tour-jumpnav__inner a {
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: var(--step-1);
  color: var(--ink-soft);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 26, 22, 0.12);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.tour-jumpnav__inner a:hover {
  color: var(--white);
  background: var(--sun-ochre);
  border-color: var(--sun-ochre);
}

/* Day Trips hero image sits inside the merged tour page's white section */
.mwanza-page #day-trips .hero-image {
  margin-top: 1rem;
}

/* Video Grid for the 3 cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}

/* Individual Video Card — video plays BEHIND text */
.video-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

/* Video sits behind everything */
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content overlay on top of video */
.video-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

.play-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--sun-ochre);
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: transform 0.3s, background 0.3s;
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  background: #fff;
}

.video-card-content h3 {
  color: var(--white);
  font-size: var(--step0);
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-weight: 600;
  z-index: 2;
}

/* Fast loading optimizations */
video[preload="none"] {
  background: linear-gradient(135deg, var(--sun-ochre) 0%, #f2c94c 100%);
}

.loading-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ---------- Responsive ---------- */

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

  .hero__media {
    order: -1;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-split--reverse .feature-split__media {
    order: -1;
  }

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

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .tour-tiles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .video-hero {
    height: 500px;
    border-radius: 0 0 30px 30px;
  }

  .video-content h1 {
    font-size: var(--step2);
  }

  .video-content p {
    font-size: var(--step0);
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .video-card {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 720px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .mwanza-gallery {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-track {
    min-height: 300px;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.7rem 0.9rem;
  }
}

/* =========================================================
   SAFARI PAGE
   ========================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--sun-ochre);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-utility);
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--sun-ochre-dark);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.activity-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sun-ochre) 0%, #f2c94c 100%);
}

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

.activity-content {
  padding: 30px;
}

.activity-icon {
  width: 70px;
  height: 70px;
  background: var(--sun-ochre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2em;
}

.activity-card h2 {
  color: var(--ink);
  margin-bottom: 15px;
  font-size: var(--step2);
}

.activity-card h3 {
  color: var(--sun-ochre-dark);
  margin: 20px 0 10px 0;
  font-size: var(--step1);
}

.activity-card p {
  margin-bottom: 15px;
  color: var(--ink-soft);
}

.activity-card ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style: disc;
}

.activity-card li {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.highlight {
  background: #fff3cd;
  padding: 15px;
  border-left: 4px solid var(--sun-ochre);
  margin: 15px 0;
  border-radius: 5px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tag {
  background: var(--sun-ochre);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: var(--step-1);
  font-family: var(--font-utility);
}

.cta-section {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
  color: var(--ink);
  margin-bottom: 20px;
  font-size: var(--step2);
}

.cta-button {
  display: inline-block;
  background: var(--sun-ochre);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: background 0.3s, transform 0.3s;
  font-family: var(--font-utility);
}

.cta-button:hover {
  background: var(--sun-ochre-dark);
  transform: scale(1.05);
}

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

  .cta-section {
    padding: 30px 20px;
  }
}

/* Official Parks Button */
.official-parks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2c5e2e 0%, #4a8c4d 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: "Inter", sans-serif;
  box-shadow: 0 4px 15px rgba(44, 94, 46, 0.3);
  transition: all 0.3s ease;
  margin-top: 15px;
}

.official-parks-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 94, 46, 0.4);
  background: linear-gradient(135deg, #4a8c4d 0%, #2c5e2e 100%);
}

.official-parks-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* =========================================================
   ACCOMMODATION PAGE (Standalone)
   ========================================================= */

/* Hero Section */
.acc-page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--lake-deep) 0%, #0A2A31 100%);
  overflow: hidden;
}

.acc-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('videos/A peak at_HD.mp4" type="video/mp4') center/cover;
  /* Uses first image as subtle background */
  opacity: 0.15;
}

.acc-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.acc-page-hero-content h1 {
  color: var(--white);
  font-size: var(--step4);
  margin-bottom: 1rem;
}

.acc-page-hero-content p {
  color: var(--savanna-dim);
  font-size: var(--step1);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

/* Intro Section */
.acc-page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.acc-page-intro-text h2 {
  font-size: var(--step3);
  margin-bottom: 1.5rem;
}

.acc-page-intro-text p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: var(--step0);
}

.acc-page-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.acc-feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(28, 26, 22, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.acc-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(28, 26, 22, 0.1);
}

.acc-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.acc-feature-card h3 {
  font-size: var(--step0);
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.acc-feature-card p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin: 0;
}

/* Gallery Section */
.acc-page-gallery-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.acc-page-gallery-header h2 {
  font-size: var(--step3);
  margin-bottom: 0.75rem;
}

.acc-page-gallery-header p {
  color: var(--ink-soft);
  font-size: var(--step1);
}

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

.acc-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 20px rgba(28, 26, 22, 0.1);
  cursor: pointer;
}

.acc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.acc-gallery-item:hover img {
  transform: scale(1.08);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .acc-page-intro {
    grid-template-columns: 1fr;
  }

  .acc-page-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .acc-page-features {
    grid-template-columns: 1fr;
  }

  .acc-page-gallery {
    grid-template-columns: 1fr;
  }

  .acc-page-hero-content h1 {
    font-size: var(--step3);
  }
}

/* =========================================================
   PRICING PAGE
   ========================================================= */

.pricing-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--sun-ochre) 0%, var(--sun-ochre-dark) 100%);
  overflow: hidden;
}

.pricing-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('images/pricing-hero.jpg') center/cover;
  opacity: 0.15;
}

.pricing-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.pricing-hero-content .eyebrow {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 1rem;
  display: block;
}

.pricing-hero-content h1 {
  color: var(--white);
  font-size: var(--step4);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--step1);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

/* Main Pricing Card */
.pricing-main-card {
  background: var(--white);
  border-radius: var(--radius-soft);
  box-shadow: 0 20px 60px rgba(28, 26, 22, 0.15);
  overflow: hidden;
  margin-bottom: 3rem;
}

.pricing-header {
  background: linear-gradient(135deg, var(--sun-ochre) 0%, var(--sun-ochre-dark) 100%);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.pricing-header h2 {
  color: var(--white);
  font-size: var(--step2);
  margin-bottom: 2rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-amount .currency {
  font-size: var(--step2);
  font-weight: 700;
}

.pricing-amount .amount {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
}

.pricing-amount .period {
  font-size: var(--step1);
  opacity: 0.9;
}

.pricing-subtitle {
  font-size: var(--step0);
  opacity: 0.95;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
}

.pricing-includes {
  padding: clamp(2rem, 5vw, 3rem);
}

.pricing-includes h3 {
  font-size: var(--step2);
  margin-bottom: 2rem;
  color: var(--acacia);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--savanna-dim);
  transition: background var(--transition);
}

.pricing-list li:hover {
  background: var(--savanna);
  border-radius: 12px;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list .icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pricing-list strong {
  display: block;
  font-size: var(--step0);
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.pricing-list p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin: 0;
}

/* Sidebar */
.pricing-sidebar {
  background: var(--savanna);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-note,
.pricing-info-card,
.discount-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(28, 26, 22, 0.08);
}

.pricing-note h3,
.pricing-info-card h3,
.discount-card h3 {
  font-size: var(--step0);
  margin-bottom: 1rem;
  color: var(--ink);
}

.pricing-note p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.6;
}

.visa-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visa-item {
  padding: 1rem;
  background: var(--savanna);
  border-radius: 8px;
  border-left: 4px solid var(--sun-ochre);
}

.visa-item strong {
  display: block;
  font-size: var(--step-1);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.visa-item p {
  font-size: var(--step-1);
  color: var(--ink-soft);
  margin: 0;
}

.discount-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(135deg, var(--acacia) 0%, #4a6b4a 100%);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--white);
}

.discount-item:last-child {
  background: linear-gradient(135deg, var(--sun-ochre) 0%, var(--sun-ochre-dark) 100%);
}

.discount-badge {
  font-size: var(--step-1);
  font-weight: 600;
}

.discount-value {
  font-size: var(--step1);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-sidebar {
    order: -1;
  }
}

@media (max-width: 600px) {
  .pricing-list li {
    flex-direction: column;
    gap: 1rem;
  }

  .discount-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Enhanced Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
}

.stat {
  position: relative;
  padding: 2rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(224, 148, 44, 0.1) 0%, rgba(224, 148, 44, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(224, 148, 44, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(224, 148, 44, 0.15);
}

.stat:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.stat:hover .stat-icon {
  transform: scale(1.2) rotate(5deg);
  opacity: 1;
}

.stat-number {
  font-family: var(--font-utility);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--sun-ochre);
  margin-bottom: 0.5rem;
  display: block;
  position: relative;
  z-index: 1;
  line-height: 1;
  text-shadow: 0 0 30px rgba(224, 148, 44, 0.5);
}



@keyframes pulse-plus {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.stat dd {
  margin: 0;
  font-size: var(--step-1);
  color: var(--savanna-dim);
  font-weight: 500;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.stat:hover dd {
  opacity: 1;
  color: var(--white);
}

/* Animated counter glow effect */
.stat-number.counting {
  animation: glow-pulse 1.5s ease-in-out;
}

@keyframes glow-pulse {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(224, 148, 44, 0.5);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 40px rgba(224, 148, 44, 0.8),
      0 0 60px rgba(224, 148, 44, 0.4);
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .stat:nth-child(4),
  .stat:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat:nth-child(4),
  .stat:nth-child(5) {
    grid-column: span 1;
  }

  .stat {
    padding: 1.5rem 1rem;
  }

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

  .stat-icon {
    font-size: 2rem;
  }
}

/* Floating animation for icons */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.stat:nth-child(odd) .stat-icon {
  animation: float 3s ease-in-out infinite;
}

.stat:nth-child(even) .stat-icon {
  animation: float 3s ease-in-out infinite 1.5s;
}

.stat:hover .stat-icon {
  animation: none;
}

/* =========================================================
   ENHANCED STATS SECTION
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat {
  position: relative;
  padding: 2rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

/* Subtle gradient overlay on hover */
.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(224, 148, 44, 0.1) 0%, rgba(224, 148, 44, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  pointer-events: none;
}

.stat:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(224, 148, 44, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(224, 148, 44, 0.15);
}

.stat:hover::before {
  opacity: 1;
}

/* Floating Emoji Animation */
.stat-icon {
  font-size: 2.5rem;
  margin-top: 0.75rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  display: inline-block;
}

.stat:hover .stat-icon {
  transform: scale(1.2) rotate(5deg);
  opacity: 1;
}

/* Glowing Number Effect */
.stat-number {
  font-family: var(--font-utility);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--sun-ochre);
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
  text-shadow: 0 0 30px rgba(224, 148, 44, 0.5);
  transition: text-shadow 0.3s ease;
}

.stat:hover .stat-number {
  text-shadow: 0 0 40px rgba(224, 148, 44, 0.8),
    0 0 60px rgba(224, 148, 44, 0.4);
}

.stat dd {
  margin: 0;
  font-size: var(--step-1);
  color: var(--savanna-dim);
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.stat:hover dd {
  opacity: 1;
  color: var(--white);
}

/* Gentle floating animation for emojis */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.stat:nth-child(2) .stat-icon,
.stat:nth-child(3) .stat-icon,
.stat:nth-child(4) .stat-icon {
  animation: float 3s ease-in-out infinite;
}

.stat:nth-child(3) .stat-icon {
  animation-delay: 0.5s;
}

.stat:nth-child(4) .stat-icon {
  animation-delay: 1s;
}

/* Pause animation on hover for better interaction */
.stat:hover .stat-icon {
  animation: none;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-icon {
    font-size: 2rem;
  }
}

/* =========================================================
   OUR TEAM PAGE - Partner Logos
   ========================================================= */

.partner-logos {
  margin-top: 4rem;
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
}

.partner-logo {
  width: 100%;
  max-width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(28, 26, 22, 0.08);
  transition: all var(--transition);
  filter: grayscale(100%) opacity(0.7);
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(28, 26, 22, 0.12);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .partner-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
  }

  .partner-logo {
    height: 100px;
    padding: 1rem;
  }
}

/* =========================================================
   HOW IT WORKS SECTION
   ========================================================= */

.how-it-works {
  background: var(--savanna);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works-title {
  font-size: var(--step3);
  color: var(--lake-deep);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.how-it-works-subtitle {
  font-size: var(--step1);
  color: var(--acacia);
  font-style: italic;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.how-it-works-tagline {
  font-size: var(--step0);
  color: var(--ink-soft);
  font-weight: 500;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
}

/* Connector arrows between steps */
.how-it-works-steps::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--acacia) 0%,
      var(--acacia) 25%,
      var(--sun-ochre) 25%,
      var(--sun-ochre) 50%,
      var(--sun-ochre-dark) 50%,
      var(--sun-ochre-dark) 75%,
      #d4a5a5 75%,
      #d4a5a5 100%);
  opacity: 0.3;
  z-index: 0;
}

.hiw-step {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(28, 26, 22, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
}

.hiw-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(28, 26, 22, 0.12);
}

.hiw-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acacia) 0%, #4a6b4a 100%);
  color: var(--white);
  font-size: var(--step2);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(92, 122, 92, 0.3);
}

.hiw-step:nth-child(2) .hiw-step-number {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.hiw-step:nth-child(3) .hiw-step-number {
  background: linear-gradient(135deg, var(--sun-ochre) 0%, var(--sun-ochre-dark) 100%);
  box-shadow: 0 4px 15px rgba(224, 148, 44, 0.3);
}

.hiw-step:nth-child(4) .hiw-step-number {
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.hiw-step-title {
  font-size: var(--step0);
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hiw-step:nth-child(2) .hiw-step-title {
  color: #1976D2;
}

.hiw-step:nth-child(3) .hiw-step-title {
  color: var(--sun-ochre-dark);
}

.hiw-step:nth-child(4) .hiw-step-title {
  color: #C2185B;
}

.hiw-step-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hiw-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hiw-step:hover .hiw-step-image img {
  transform: scale(1.05);
}

.hiw-step-description {
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hiw-step-details {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--savanna);
}

.hiw-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--acacia);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hiw-icon-blue {
  background: #2196F3;
}

.hiw-icon-orange {
  background: var(--sun-ochre);
}

.hiw-icon-pink {
  background: #E91E63;
}

.hiw-list {
  text-align: left;
  flex: 1;
}

.hiw-list li {
  font-size: var(--step-1);
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.hiw-list li:last-child {
  margin-bottom: 0;
}

/* Bottom Features */
.hiw-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: linear-gradient(135deg, var(--lake-deep) 0%, #0A2A31 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  color: var(--white);
}

.hiw-feature {
  text-align: center;
  padding: 1.5rem;
}

.hiw-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2.2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hiw-feature-icon-green {
  background: rgba(92, 122, 92, 0.3);
}

.hiw-feature-icon-yellow {
  background: rgba(224, 148, 44, 0.3);
}

.hiw-feature-icon-pink {
  background: rgba(233, 30, 99, 0.3);
}

.hiw-feature-icon-blue {
  background: rgba(33, 150, 243, 0.3);
}

.hiw-feature h4 {
  font-size: var(--step-1);
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--white);
}

.hiw-feature p {
  font-size: var(--step-1);
  opacity: 0.9;
  color: var(--savanna-dim);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .how-it-works-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works-steps::before {
    display: none;
  }

  .hiw-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hiw-features {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .hiw-step {
    padding: 1.5rem;
  }

  .hiw-step-image {
    height: 220px;
  }

  .hiw-step-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hiw-list {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .how-it-works-title {
    font-size: var(--step2);
  }

  .hiw-step-number {
    width: 50px;
    height: 50px;
    font-size: var(--step1);
  }
}

.whatsapp-float::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.372-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

/* =========================================================
   OUR TEAM PAGE — Professional & Unified Styles
   ========================================================= */

/* 1. Page-Specific Hero */
.page-hero {
  background: linear-gradient(160deg, var(--lake-deep), #0A2A31);
  color: var(--savanna);
  padding-block: clamp(4rem, 10vw, 7rem);
  text-align: center;
}

.page-hero .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero .eyebrow {
  color: var(--sun-ochre);
  margin-bottom: 1rem;
}

.page-hero .eyebrow a {
  color: var(--sun-ochre);
  transition: color var(--transition);
}

.page-hero .eyebrow a:hover {
  color: var(--white);
  text-decoration: underline;
}

.page-hero h1 {
  color: var(--white);
  font-size: var(--step3);
  max-width: 20ch;
  margin-top: 0.45rem;
  margin-bottom: 1.5rem;
}

.page-hero .lede {
  color: var(--savanna-dim);
  font-size: var(--step1);
  max-width: 65ch;
  text-align: center;
  margin: 0 auto;
}

/* 2. Section Headings */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: var(--step3);
  margin-top: 0.45rem;
}

/* 3. Grids & Cards (Uniform across Team, Why, Details) */
.programs-grid,
.why-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Team / Program Cards */
.program-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.08);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: var(--sun-ochre);
  box-shadow: 0 14px 30px rgba(28, 26, 22, 0.1);
}

.program-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: var(--savanna-dim);
}

.program-card__top {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: var(--step-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Unified VOT Brand Colors for Card Headers */
.program-card__top--leadership,
.program-card__top--healthcare {
  background: var(--lake-deep);
}

.program-card__top--administration,
.program-card__top--education {
  background: var(--sun-ochre);
}

.program-card__top--finance,
.program-card__top--community {
  background: var(--acacia);
}

.program-card__top--facilities,
.program-card__top--tourism {
  background: var(--granite);
}

.program-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-card__body h3 {
  font-size: var(--step1);
  margin-bottom: 0.25rem;
}

/* Replaces inline styles in HTML for clean code */
.role-title {
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--sun-ochre-dark);
  margin-bottom: 0.75rem;
}

.program-card__body p {
  color: var(--ink-soft);
  font-size: var(--step-1);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.card-link {
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--lake-deep);
  border-bottom: 2px solid var(--sun-ochre);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  transition: gap var(--transition), color var(--transition), border-color var(--transition);
}

.card-link:hover {
  color: var(--sun-ochre-dark);
  border-color: var(--sun-ochre-dark);
  gap: 0.75rem;
}

/* Why Cards */
.why-card {
  background: var(--white);
  border-radius: var(--radius-soft) var(--radius-soft) 8px var(--radius-soft);
  padding: 2rem 1.75rem;
  box-shadow: 0 1px 2px rgba(28, 26, 22, 0.06);
  text-align: center;
  border: 1px solid rgba(28, 26, 22, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(28, 26, 22, 0.1);
}

.why-card h3 {
  font-size: var(--step0);
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--ink-soft);
  font-size: var(--step-1);
  line-height: 1.6;
}

/* Detail Cards (Partners) */
.detail-card {
  background: var(--savanna);
  border-radius: 16px;
  padding: 1.75rem;
  border-left: 4px solid var(--sun-ochre);
  transition: transform var(--transition);
}

.detail-card:hover {
  transform: translateY(-3px);
}

.detail-card h3 {
  font-size: var(--step0);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Help Cards (Community page — "your experience" + "ways to help") */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.help-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.08);
  border-radius: 24px;
  overflow: hidden;
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.help-card:hover {
  transform: translateY(-6px);
  border-color: var(--sun-ochre);
  box-shadow: 0 14px 30px rgba(28, 26, 22, 0.1);
}

.help-card__icon {
  margin: -1.75rem -1.75rem 1.25rem;
  height: 200px;
  overflow: hidden;
  background: var(--savanna-dim);
}

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

.help-card h3 {
  font-size: var(--step0);
  margin-bottom: 0.75rem;
}

.help-card p {
  color: var(--ink-soft);
  font-size: var(--step-1);
  line-height: 1.6;
}

/* "Ways volunteers can help" has 7 cards — let the trailing card
   span the full row instead of leaving empty slots beside it. */
.help-grid:has(> :nth-child(7):last-child) > :last-child {
  grid-column: 1 / -1;
}

.help-grid:has(> :nth-child(7):last-child) > :last-child .help-card__icon {
  height: 240px;
}

.help-grid:has(> :nth-child(7):last-child) > :last-child .help-card__icon img {
  object-fit: contain;
}

/* Partner Cards (Community page — organizations volunteers work with) */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--sun-ochre);
  box-shadow: 0 14px 30px rgba(28, 26, 22, 0.1);
}

.partner-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--savanna-dim);
}

.partner-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.partner-card__body h3 {
  font-size: var(--step1);
  margin-bottom: 0.75rem;
}

.partner-card__body p {
  color: var(--ink-soft);
  font-size: var(--step-1);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* 4 partner cards leave a lone card in the last row at 3-up —
   let it fill the row instead of leaving empty slots beside it. */
.partner-grid:has(> :nth-child(4):last-child) > :last-child {
  grid-column: 1 / -1;
}

.partner-grid:has(> :nth-child(4):last-child) > :last-child img {
  height: 240px;
}

/* =========================================
   ABOUT SECTION: MISSION & VISION
   ========================================= */
.mission-vision {
  margin-top: 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  color: #0F3D46;
  /* VOT Brand Dark Teal */
  margin-top: 0.5rem;
  font-weight: 700;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.mv-card {
  background: #f8faf9;
  border-radius: 16px;
  padding: 2.5rem;
  border-left: 5px solid #0F3D46;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(15, 61, 70, 0.08);
}

.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mv-card h3 {
  font-size: 1.5rem;
  color: #0F3D46;
  margin-bottom: 1rem;
}

.mv-card p {
  line-height: 1.8;
  color: #475569;
  font-size: 1.05rem;
}

/* =========================================
   ABOUT SECTION: LIFE IN MWANZA & CULTURE
   ========================================= */
.life-culture {
  margin-top: 5rem;
}

/* ===== Mwanza intro — as a card ===== */
.mwanza-intro {
  max-width: none;
  margin: 0 auto 2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 25px rgba(15, 61, 70, 0.08);
  position: relative;
  overflow: hidden;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* teal accent bar on top, same as culture cards */
.mwanza-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: #0F3D46;
}

.mwanza-intro:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 61, 70, 0.12);
}

.mwanza-intro p {
  text-align: center;   /* delete this line if you prefer justified text */
}

/* optional title inside the card */
.mwanza-intro h4 {
  color: #0F3D46;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.culture-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.culture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0F3D46;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.culture-card:hover {
  border-color: #0F3D46;
  box-shadow: 0 10px 25px rgba(15, 61, 70, 0.08);
  transform: translateY(-5px);
}

.culture-card:hover::before {
  transform: scaleX(1);
}

.culture-card h4 {
  font-size: 1.25rem;
  color: #0F3D46;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.culture-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

/* Highlighting Swahili words in the culture cards */
.culture-card em {
  color: #0F3D46;
  font-weight: 600;
  font-style: normal;
  background: rgba(15, 61, 70, 0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

/* ================= CAROUSEL STYLES ================= */

.carousel-section {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse 900px 400px at 50% 0%, rgba(224, 148, 44, 0.07), transparent 70%),
    #f8faf9;
}

/* Outer "frame" — a matted, gallery-style border around the photo. */
.carousel-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 14px;
  background: linear-gradient(160deg, #ffffff, #f4ede0);
  border: 1px solid rgba(224, 148, 44, 0.22);
  border-radius: 28px;
  box-shadow:
    0 1px 1px rgba(15, 61, 70, 0.04),
    0 40px 70px -28px rgba(15, 61, 70, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--lake-deep);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  z-index: 0;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.carousel-slide.is-active:hover {
  transform: scale(1.03);
}

/* Soft scrim so the dots stay legible over any photo. */
.carousel-track::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(8, 40, 48, 0.55), transparent 22%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(8, 40, 48, 0.25);
}

.carousel-btn:hover {
  background: var(--sun-ochre);
  border-color: var(--sun-ochre);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 24px rgba(161, 92, 0, 0.35);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.dot.is-active {
  background: var(--sun-ochre);
  width: 26px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .carousel-container {
    margin: 0 16px;
    padding: 8px;
    border-radius: 22px;
  }

  .carousel-track {
    border-radius: 14px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-btn.prev {
    left: 8px;
  }

  .carousel-btn.next {
    right: 8px;
  }

  .carousel-dots {
    bottom: 12px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }

  .dot.is-active {
    width: 20px;
  }
}

/* Mini Carousel Card */
.mini-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f8faf9;
}

.mini-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mini-slide.is-active {
  opacity: 1;
}

/* Optional: Add subtle dots indicator */
.mini-carousel::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    -12px 0 0 rgba(255, 255, 255, 0.5),
    12px 0 0 rgba(255, 255, 255, 0.5),
    24px 0 0 rgba(255, 255, 255, 0.5);
  z-index: 2;
}

/* ================= TESTIMONIALS SLIDER STYLES ================= */
.testimonials {
  background-color: #f4f4f5;
  /* Light grey background */
  padding: 2.5rem 0 3rem;
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: none;
  margin: 0 auto;
}

.testimonial-track {
  flex: 1;
  position: relative;
  min-height: 320px;
  /* Prevents layout jump when switching cards */
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: none;
  /* Hidden by default */
  animation: fadeIn 0.6s ease forwards;
}

/* Only show the card with the 'is-active' class */
.testimonial-card.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-stars {
  font-size: 1.25rem;
  color: #1a1a1a;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.testimonial-content {
  margin: 0 0 2rem 0;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0;
  text-align: justify;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f8faf9;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-location {
  font-size: 0.9rem;
  color: #666666;
}

/* Navigation Buttons */
.testimonial-nav {
  background: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 1.25rem;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
  background: #0F3D46;
  /* VOT Brand Color */
  color: #ffffff;
  transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial-nav {
    width: 100%;
    max-width: 300px;
    padding: 0.75rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-content p {
    font-size: 1rem;
  }
}

/* ================= ACCOMMODATION QUALITY & REVIEWS ================= */
/* Plain wrapper — .guest-reviews-slider inside is the actual visible
   card, so this no longer carries its own padding/background/shadow
   (that used to double up as a card-inside-a-card). */
.accommodation-quality {
  margin-top: 3rem;
}

/* Quality Badge Section */
.quality-badge {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #0F3D46 0%, #1a5260 100%);
  border-radius: 12px;
  color: white;
  margin-bottom: 2.5rem;
}

.rating-stars {
  font-size: 2.5rem;
  letter-spacing: 8px;
  margin-bottom: 0.5rem;
  color: #F0932B;
}

.rating-score {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rating-count {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.verified-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}


/* ===== Quick Stats — small/medium ===== */
.accommodation-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stat-item {
  padding: 0.7rem 0.5rem;
  border-radius: 8px;
  text-align: center;
}

.stat-icon  { font-size: 1.25rem; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.5px;
              text-transform: uppercase; margin-bottom: 0.15rem; }
.stat-value { font-size: 0.85rem; font-weight: 700; }

@media (max-width: 600px) {
  .accommodation-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #F0932B;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-stars {
  color: #F0932B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-date {
  font-size: 0.85rem;
  color: #999;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-info strong {
  color: #0F3D46;
  font-size: 0.95rem;
}

.reviewer-info span {
  color: #666;
  font-size: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .quality-badge { padding: 1.5rem; }
  .rating-stars { font-size: 2rem; letter-spacing: 6px; }
  .rating-score { font-size: 2.5rem; }
  .review-card { padding: 1.5rem; }
}

@media (max-width: 380px) {
  .acc-shared__badge {
    padding: 1.5rem 1rem;
  }

  .rating-stars {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }

  .rating-score {
    font-size: 2rem;
  }

  .rating-count {
    font-size: 0.85rem;
  }

  .verified-badge {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    white-space: normal;
  }
}

/* ================= ACCOMMODATION REVIEWS SLIDER ================= */
.guest-reviews-slider {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guest-reviews-slider h3 {
  font-size: 1.75rem;
  color: #0F3D46;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.reviews-slider-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: none;
  margin: 0 auto;
}

.reviews-track {
  flex: 1;
  position: relative;
  min-height: 220px;
}

.review-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #F0932B;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.review-card.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-stars {
  color: #F0932B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-date {
  font-size: 0.85rem;
  color: #999;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0F3D46;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.reviewer-info strong {
  color: #0F3D46;
  font-size: 0.95rem;
  font-weight: 700;
}

.reviewer-info span {
  color: #666;
  font-size: 0.85rem;
}

/* Navigation Buttons */
.review-nav {
  background: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #0F3D46;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-nav:hover {
  background: #0F3D46;
  color: #ffffff;
  transform: scale(1.05);
}

/* Dots Navigation */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.review-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dots .dot.is-active {
  background: #F0932B;
  transform: scale(1.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .guest-reviews-slider {
    padding: 1.5rem;
  }

  .reviews-slider-container {
    flex-direction: column;
    gap: 1rem;
  }

  .review-nav {
    width: 100%;
    max-width: 200px;
    padding: 0.75rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .review-text {
    font-size: 0.95rem;
  }
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */

.faq-section {
  background: var(--white);
}

.faq-section .section-heading h2 {
  color: var(--ink);
}

.faq-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
}

details.faq-item {
  border: 1.5px solid rgba(28,26,22,0.1);
  border-radius: var(--radius-card);
  background: var(--savanna);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

details.faq-item[open] {
  border-color: var(--sun-ochre);
  box-shadow: 0 4px 18px rgba(224,148,44,0.12);
}

summary.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: var(--step0);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
summary.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sun-ochre-glow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--sun-ochre-dark);
  transition: transform var(--transition), background var(--transition);
}

details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--sun-ochre);
  color: var(--white);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-soft);
  line-height: 1.7;
  border-top: 1px solid rgba(28,26,22,0.06);
}

.faq-answer p { padding-top: 1rem; }

/* =========================================================
   GALLERY (filterable)
   ========================================================= */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery-filter {
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: var(--step-1);
  color: var(--white);
  background: var(--ink);
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.gallery-filter:hover {
  transform: translateY(-2px);
}

.gallery-filter.is-active {
  background: var(--acacia);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(28, 26, 22, 0.15);
}

.gallery-item.is-hidden,
.gallery-item.is-limited {
  display: none;
}

.gallery-show-more {
  display: block;
  margin: 2rem auto 0;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: var(--step-1);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.2);
  padding: 0.75rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.gallery-show-more:hover {
  background: var(--savanna-dim);
  border-color: var(--acacia);
}

.gallery-show-more[hidden] {
  display: none;
}

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

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

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

.trust-strip {
  background: var(--lake-deep);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.trust-strip .section-heading h2,
.trust-strip h2 {
  color: var(--white);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--savanna-dim);
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}

.trust-badge:hover {
  background: rgba(224,148,44,0.15);
  border-color: var(--sun-ochre);
  color: var(--white);
}

.trust-badge-icon {
  font-size: 1.4rem;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.85rem 1rem;
  background: var(--lake-deep);
  border-top: 2px solid var(--sun-ochre);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-cta .btn--primary {
  width: 100%;
  font-size: var(--step0);
  padding: 1rem;
}

@media (max-width: 680px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; } /* prevent overlap */
}

/* =========================================================
   REFINED WHY-CARDS — icon support
   ========================================================= */

.why-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.why-card {
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card:hover {
  border-top-color: var(--sun-ochre);
}

/* =========================================================
   PROGRAM CARD — image overlays
   ========================================================= */

.program-card__top {
  position: relative;
  overflow: hidden;
}

.program-card__top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45) 100%);
}

.program-card__top span {
  position: relative;
  z-index: 1;
}

.program-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(28,26,22,0.13);
}

/* =========================================================
   HERO ENHANCEMENTS
   ========================================================= */

/* Subtle floating badge on hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(224,148,44,0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(224,148,44,0.4);
  color: var(--sun-ochre);
  font-family: var(--font-utility);
  font-size: var(--step-1);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-badges .hero-badge {
  margin-bottom: 0;
}

.hero-badge--fee {
  background: rgba(45,106,79,0.28);
  border-color: rgba(76,175,80,0.5);
  color: #8fe3ac;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero-badge--fee:hover {
  background: rgba(45,106,79,0.45);
  transform: translateY(-1px);
}

.hero-badge--fee::after {
  content: "→";
  margin-left: 0.15rem;
  transition: transform var(--transition);
}

.hero-badge--fee:hover::after {
  transform: translateX(3px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: var(--step-1);
  font-family: var(--font-utility);
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-indicator::before {
  content: '';
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   SECTION DIVIDERS
   ========================================================= */

.section-divider {
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sun-ochre), var(--sun-ochre-dark));
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* =========================================================
   MOBILE NAV IMPROVEMENTS
   ========================================================= */

@media (max-width: 900px) {
  .nav.is-open {
    z-index: 99;
    animation: slide-down 200ms ease both;
  }
  @keyframes slide-down {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* =========================================================
   CARD HOVER — general polish
   ========================================================= */

.why-card,
.program-card,
.tour-tile,
.acc-feature-card,
.detail-card {
  will-change: transform;
}

/* =========================================================
   FORM IMPROVEMENTS
   ========================================================= */

.form-card {
  border: 1px solid rgba(28,26,22,0.07);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sun-ochre);
  box-shadow: 0 0 0 3px rgba(224,148,44,0.15);
}

/* =========================================================
   MWANZA SECTION — duplicate hover fix
   ========================================================= */

/* Remove the old conflicting rule – override cleanly */
.mwanza-gallery img:hover {
  transform: scale(1.03) translateY(-3px);
  filter: brightness(1.06);
}

/* =========================================================
   UTILITY: visually hidden but screen-reader accessible
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =========================================================
FINAL OVERRIDES — paste at the VERY END of style.css
========================================================= */

/* Stat cards: small/medium on all screens */
.accommodation-stats {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.stat-item  { padding: 0.7rem 0.5rem; border-radius: 8px; }
.stat-icon  { font-size: 1.25rem; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.5px; margin-bottom: 0.15rem; }
.stat-value { font-size: 0.85rem; }
@media (max-width: 768px) {
  .stat-item { padding: 0.7rem 0.5rem; }
  .stat-icon { font-size: 1.25rem; }
}
@media (max-width: 600px) {
  .accommodation-stats { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* Tight vertical rhythm — every section band */
.section          { padding-block: clamp(1.5rem, 3.5vw, 2.5rem); } /* fixes TOURS top gap */
.section--tight   { padding-block: clamp(1.5rem, 3.5vw, 2.5rem); }
.carousel-section { padding: 2rem 0; }   /* fixes grey band above it */
.testimonials     { background-color: #f4f4f5; padding: 2rem 0 2.5rem; }
.how-it-works     { padding-block: clamp(2rem, 5vw, 3.5rem); }
.trust-strip      { padding-block: clamp(1.5rem, 4vw, 2.5rem); }
.page-hero        { padding-block: clamp(2.5rem, 7vw, 4.5rem); }
.hero--photo      { padding-block: clamp(3rem, 7vw, 5rem); }
.site-footer      { padding-block: clamp(2rem, 5vw, 3.5rem); }

/* Internal gaps, tightened */
.section-heading      { margin-bottom: 2rem; }
.mission-vision,
.life-culture         { margin-top: 2.5rem; }
.partner-logos        { margin-top: 2.5rem; }
.how-it-works-header  { margin-bottom: 2.5rem; }
.how-it-works-steps   { margin-bottom: 3rem; }
.testimonial-track    { margin-top: 1.5rem; min-height: 220px; }

/* ===== Tighten Accommodation reviews area ===== */
.accommodation-quality   { margin-top: 1.5rem; }
.quality-badge           { padding: 1.25rem; margin-bottom: 1.5rem; }
.guest-reviews-slider    { margin-top: 1.5rem; padding: 1.5rem; }
.guest-reviews-slider h3 { margin-bottom: 1.25rem; }
.review-card             { padding: 1.5rem; }
.review-text             { margin-bottom: 1rem; }
.review-dots             { margin-top: 1rem; }
.section                 { padding-block: clamp(1.5rem, 3.5vw, 2.5rem); } /* band below */

/* ===== Mobile CTA button fix ===== */
@media (max-width: 640px) {
  .btn,
  .cta-button,
  .sticky-cta .btn--primary {
    width: 100%;
    max-width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
}


/* ===== "Life in Mwanza" intro card ===== */
.city-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto 3rem;
  background: var(--white);
  border-radius: var(--radius-card);
  border-top: 4px solid var(--sun-ochre);
  box-shadow: var(--shadow-md);
  padding: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.city-card::before {           /* little Rock City badge */
  content: "🪨";
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
}
.city-card .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}
.city-card h2 {
  color: var(--lake-deep);
  font-size: var(--step2);
  margin-bottom: 1rem;
}
.city-card p {
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 75ch;
  margin-inline: auto;
}
.city-card .mwanza-intro {     /* in case the p keeps its old class */
  margin: 0;
}

/* ===== Life in Mwanza: fill the empty grid slot ===== */
.culture-grid > .culture-card:last-child {
  grid-column: auto / -1;      /* always stretch to the end of the row — no hole */
  padding: 1rem;               /* slim frame around the photos */
  position: relative;
}

/* turn the lone 📸 into a floating chip on the photo */
.culture-card:last-child h4 {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 3;
  margin: 0;
  background: rgba(15, 61, 70, 0.85);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 1rem;
}

/* wide banner instead of a tall 4/3 box */
.culture-card:last-child .mini-carousel {
  aspect-ratio: 21 / 9;
  max-height: 280px;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .culture-card:last-child .mini-carousel {
    aspect-ratio: 16 / 10;     /* taller on small screens */
  }
}

/* ===== MWANZA CULTURE GRID — gallery card fills the empty slot ===== */
.culture-grid > .culture-card:last-child {
  grid-column: span 2 / -1;      /* take the last TWO slots of the row */
  display: flex;
  flex-direction: column;
  padding: 1rem;
  position: relative;
}

.culture-card:last-child h4 {    /* 📸 becomes a floating badge */
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 3;
  margin: 0;
  background: rgba(15, 61, 70, 0.85);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 1rem;
}

.culture-card:last-child .mini-carousel {
  flex: 1;                       /* photo fills the whole card */
  aspect-ratio: auto;
  min-height: 240px;
  max-height: 320px;
}

@media (max-width: 640px) {
  .culture-grid > .culture-card:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   RESPONSIVE SAFETY OVERRIDES — final cascade
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent intrinsic content from forcing grid/flex containers wider. */
main,
section,
article,
header,
footer,
[class*="grid"],
[class*="card"],
[class*="content"],
[class*="media"] {
  min-width: 0;
  max-width: 100%;
}

img,
svg,
video,
iframe,
canvas {
  max-width: 100%;
}

button,
.btn,
.cta-button,
input,
select,
textarea {
  min-height: 44px;
  max-width: 100%;
}

.btn,
.cta-button,
.sticky-cta .btn,
summary {
  white-space: normal;
  overflow-wrap: anywhere;
}

.stats,
.mwanza-gallery,
.culture-grid,
.accommodation-stats {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

.culture-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.why-grid,
.programs-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.hero__inner,
.about,
.feature-split {
  min-width: 0;
}

.hero__inner > *,
.about > *,
.feature-split > *,
.reviews-slider-container > *,
.site-header__inner > * {
  min-width: 0;
}

@media (max-width: 1020px) {
  .hero__inner,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-split--reverse .feature-split__media {
    order: 0;
  }

  .hero__media {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    gap: 0.35rem;
  }

  .mwanza-gallery {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  }
}

@media (max-width: 768px) {
  .wrap {
    padding-inline: clamp(1rem, 5vw, 1.5rem);
  }

  .nav a {
    padding-block: 0.65rem;
  }

  .reviews-slider-container {
    gap: 0.75rem;
  }

  .review-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: none;
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .stats,
  .mwanza-gallery,
  .culture-grid,
  .why-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .culture-grid > .culture-card:last-child {
    grid-column: auto;
  }

  .culture-card:last-child .mini-carousel {
    min-height: 0;
    max-height: none;
  }

  .reviews-slider-container {
    flex-direction: column;
  }

  .review-nav {
    width: 100%;
    max-width: none;
  }

  .sticky-cta {
    padding: 0.65rem clamp(0.75rem, 4vw, 1rem);
  }

  body {
    padding-bottom: 88px;
  }
}

@media (max-width: 680px) {
  .whatsapp-float {
    bottom: 6.25rem;
    right: 0.75rem;
    max-width: calc(100vw - 1.5rem);
  }
}

@media (max-width: 375px) {
  .section-heading h2,
  .mwanza h2,
  .feature-split__content h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .review-card,
  .guest-reviews-slider {
    padding: 1rem;
  }
}

/* overflow-x: hidden breaks position:sticky — clip doesn't */
html, body {
  overflow-x: clip;
}

/* ===== Hero text polish ===== */
.hero h1,
.hero--photo h1 {
  font-size: clamp(2.3rem, 1.7rem + 3vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 24ch;          /* was 13ch — no more cramped wrapping */
}

/* highlight the last line in ochre */
.hero h1 em,
.hero--photo h1 em {
  font-style: normal;
  color: var(--sun-ochre);
}

/* lead paragraph: stop justify + hyphen splits */
.hero p.lede,
.hero--photo p.lede {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  line-height: 1.7;
  max-width: 52ch;
}

/* ===== Culture gallery card — final fix (PC + phones) ===== */
.culture-grid > .culture-card:last-child {
  grid-column: 1 / -1;   /* fill the entire row, no matter how many columns */
  display: block;
  padding: 1rem;
  position: relative;
}

.culture-card:last-child h4 {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 3;
  margin: 0;
  background: rgba(15, 61, 70, 0.85);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 1rem;
}

.culture-card:last-child .mini-carousel {
  width: 100%;
  height: clamp(220px, 32vw, 380px);
  aspect-ratio: auto;
  border-radius: 12px;
}

.culture-card:last-child .mini-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .culture-grid > .culture-card:last-child { grid-column: auto; }
  .culture-card:last-child .mini-carousel { height: 220px; }
}

/* =========================================================
PARTNER LOGOS — auto-scrolling, scrollable strip
========================================================= */
.partners-section {
  background: var(--white);
  padding-block: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}

.partners-section .section-heading {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* The scrolling window */
.partner-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

/* The moving track */
.partner-marquee-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 45s linear infinite;
}

/* Pause when hovering or tabbing through logos */
.partner-marquee:hover .partner-marquee-track,
.partner-marquee:focus-within .partner-marquee-track {
  animation-play-state: paused;
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* One row of logos */
.logo-set {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem; /* keeps the loop seamless */
}

/* Reuse your existing .partner-logo card, sized for the strip */
.partner-marquee .partner-logo {
  flex: 0 0 auto;
  width: 190px;
  height: 110px;
  margin: 0;
}



/* Accessibility: no animation for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track { animation: none; }
  .partner-marquee { overflow-x: auto; }
  .logo-set[aria-hidden="true"] { display: none; }
}

/* =========================================================
PARTNER LOGOS — FULL COLOUR (overrides grayscale)
========================================================= */
.partner-logo,
.partner-logo img {
  filter: none !important;
  opacity: 1 !important;
}

.partner-logo:hover {
  filter: none !important;
  opacity: 1 !important;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(28, 26, 22, 0.16);
}

/* Colourful accent bar under each logo (cycles brand colours) */
.partner-logo {
  border-bottom: 4px solid transparent;
}
.partner-logo:nth-child(5n+1) { border-bottom-color: var(--sun-ochre); }   /* ochre */
.partner-logo:nth-child(5n+2) { border-bottom-color: var(--acacia); }      /* green */
.partner-logo:nth-child(5n+3) { border-bottom-color: var(--lake-deep); }   /* teal */
.partner-logo:nth-child(5n+4) { border-bottom-color: #E4572E; }            /* coral */
.partner-logo:nth-child(5n+5) { border-bottom-color: #7EB2D9; }            /* blue */

/* Soft coloured glow on hover matching the accent bar */
.partner-logo:nth-child(5n+1):hover { box-shadow: 0 12px 30px rgba(224, 148, 44, 0.25); }
.partner-logo:nth-child(5n+2):hover { box-shadow: 0 12px 30px rgba(92, 122, 92, 0.25); }
.partner-logo:nth-child(5n+3):hover { box-shadow: 0 12px 30px rgba(15, 61, 70, 0.25); }
.partner-logo:nth-child(5n+4):hover { box-shadow: 0 12px 30px rgba(228, 87, 46, 0.25); }
.partner-logo:nth-child(5n+5):hover { box-shadow: 0 12px 30px rgba(126, 178, 217, 0.3); }

/* =========================================================
   PRICING SECTION UI
   ========================================================= */
.section--pricing {
  position: relative;
  background:
    radial-gradient(circle at 12% -10%, rgba(224,148,44,0.10), transparent 45%),
    radial-gradient(circle at 100% 110%, rgba(92,122,92,0.10), transparent 45%),
    var(--savanna);
  color: var(--ink);
  padding: 80px 0;
  overflow: hidden;
}

/* faint top hairline, gives the section an edge against the page above it */
.section--pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,148,44,0.5), transparent);
}

.pricing-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sun-ochre-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--sun-ochre-dark);
}

.pricing-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.15;
}

.pricing-subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: none;
  line-height: 1.6;
  margin: 0 0 40px;
}

.pricing-card {
  position: relative;
  display: flex;
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 32px -18px rgba(28, 26, 22, 0.2);
}

/* thin accent bar across the top of the card, same device as .story-main/#placements */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sun-ochre), var(--sun-ochre-dark));
  z-index: 2;
}

.pricing-left {
  flex: 1.3;
  padding: 40px 44px;
  border-right: 1px solid rgba(28, 26, 22, 0.08);
}

.pricing-right {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 40px 44px;
  background:
    radial-gradient(circle at 100% 0%, rgba(224,148,44,0.06), transparent 55%),
    var(--savanna);
}

.pricing-card .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sun-ochre-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pricing-card .section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--sun-ochre-dark);
}

.rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
  margin-bottom: 28px;
}

.rate-table .rate-row {
  border-bottom: 1px solid rgba(28, 26, 22, 0.08);
  transition: background-color 0.2s ease;
}

.rate-table tbody .rate-row:last-child {
  border-bottom: none;
}

.rate-table tbody .rate-row:hover {
  background-color: rgba(28, 26, 22, 0.03);
}

.rate-table .duration,
.rate-table .price {
  padding: 18px 20px;
}

.rate-table .duration {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
}

.rate-table .price {
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  color: var(--sun-ochre-dark);
  font-family: 'Courier New', monospace;
}

.rate-table .rate-row--best {
  background: linear-gradient(90deg, rgba(224,148,44,0.16), rgba(224,148,44,0.02));
  border-bottom: 1px solid rgba(224,148,44,0.3);
  box-shadow: inset 3px 0 0 var(--sun-ochre);
}

.rate-table .rate-row--best .duration {
  border-radius: 10px 0 0 10px;
}

.rate-table .rate-row--best .price {
  border-radius: 0 10px 10px 0;
  color: var(--sun-ochre-dark);
}

.best-value-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-ochre), var(--sun-ochre-dark));
  color: var(--white);
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(224,148,44,0.4);
}

.rate-table thead .duration,
.rate-table thead .price {
  font-family: var(--font-utility);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding-bottom: 10px;
}

.no-fees-box {
  border: 1px solid rgba(92,122,92,0.4);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(92,122,92,0.14), rgba(92,122,92,0.03));
}

.no-fees-box .check-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.no-fees-box .check-title .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c9c7c, var(--acacia));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(92,122,92,0.15), 0 4px 10px rgba(92,122,92,0.3);
}

.no-fees-box p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-left: 36px;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}

.feature-item .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(92,122,92,0.16);
  color: var(--acacia);
  font-size: 12px;
  font-weight: 900;
}

.disclaimer {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Right side */
.duration-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.duration-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Courier New', monospace;
  margin-bottom: 14px;
}

.duration-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--sun-ochre-dark);
  font-family: 'Courier New', monospace;
  margin-bottom: 14px;
}

.slider-container {
  margin-bottom: 30px;
}

.pricing-right input[type="range"] {
  --range-pct: 44%;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-height: 44px;
  background: transparent;
  outline: none;
  cursor: pointer;
}

/* Thin track — kept visually 6px tall even though the input box itself
   stays a full touch-target height for accessibility. */
.pricing-right input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--sun-ochre) var(--range-pct), rgba(28, 26, 22, 0.12) var(--range-pct));
}

.pricing-right input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(28, 26, 22, 0.12);
}

.pricing-right input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 3px;
  background: var(--sun-ochre);
}

.pricing-right input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -8px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sun-ochre);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(224,148,44,0.45), 0 0 0 5px rgba(224,148,44,0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pricing-right input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 10px rgba(224,148,44,0.55), 0 0 0 7px rgba(224,148,44,0.16);
}

.pricing-right input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sun-ochre);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(224,148,44,0.45);
}

.program-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.program-select {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--white);
  border: 1px solid rgba(28, 26, 22, 0.15);
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A463E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  margin-bottom: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.program-select:hover {
  border-color: rgba(224,148,44,0.5);
}

.program-select:focus {
  outline: none;
  border-color: var(--sun-ochre);
  box-shadow: 0 0 0 3px rgba(224,148,44,0.18);
}

.estimated-total-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(224,148,44,0.14), var(--white));
  border: 1px solid rgba(224,148,44,0.3);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: auto;
  margin-bottom: 24px;
  box-shadow: 0 16px 32px -16px rgba(224,148,44,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.estimated-total-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(224,148,44,0.4);
}

.estimated-total-box::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,148,44,0.18), transparent 70%);
  pointer-events: none;
}

.estimated-total-box .et-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.estimated-total-box .et-amount {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sun-ochre-dark), var(--sun-ochre) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Courier New', monospace;
  margin-bottom: 6px;
}

.estimated-total-box .et-breakdown {
  font-size: 13px;
  color: var(--ink-soft);
  font-family: 'Courier New', monospace;
}

.pricing-right__note {
  font-size: 12.5px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.pricing-right .apply-btn {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--sun-ochre), var(--sun-ochre-dark));
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 12px 24px -8px rgba(224,148,44,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pricing-right .apply-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.pricing-right .apply-btn:hover::before {
  left: 130%;
}

.pricing-right .apply-btn:hover {
  background: linear-gradient(135deg, #e8a63e, var(--sun-ochre-dark));
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -8px rgba(224,148,44,0.6);
}

@media (max-width: 900px) {
  .pricing-card {
    flex-direction: column;
  }
  .pricing-left {
    border-right: none;
    border-bottom: 1px solid rgba(28, 26, 22, 0.08);
  }
  .pricing-heading {
    font-size: 32px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}