/* ═══════════════════════════════════════════════════════════════════════════
   KILIMANJARO LEGEND — Refined Design System
   Premium Tanzania Travel Company
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --forest: #173F35;
  --forest-light: #1e5244;
  --terracotta: #A65332;
  --terracotta-hover: #8f4529;
  --sage: #708C78;
  --sand: #F4EFE6;
  --cream: #FAF9F6;
  --white: #FFFFFF;
  --dark: #1D2925;
  --muted: #66716C;
  --light: #9CA8A3;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1280px;
  --px: 24px;
  --section: 90px;
  --section-lg: 110px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 7px;
  --radius-lg: 14px;
  --shadow: 0 8px 30px rgba(23, 63, 53, 0.08);
  --shadow-lg: 0 20px 60px rgba(23, 63, 53, 0.12);

  /* Legacy aliases for other pages */
  --obsidian: #1D2925;
  --ivory: #F4EFE6;
  --gold: #A65332;
  --charcoal: #1D2925;
  --gray: #66716C;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-accent: 'Manrope', -apple-system, sans-serif;
  --container-max: 1280px;
  --container-px: 24px;
  --section-py: 90px;
  --radius-sm: 7px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 8px rgba(23, 63, 53, 0.06);
  --shadow-md: 0 8px 30px rgba(23, 63, 53, 0.08);
  --radius: 0px;
}


/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--terracotta); color: var(--white); }


/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}


/* ─── Section Utilities ─── */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--forest);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}

.section-header--center .section-subtitle { margin: 0 auto; }


/* ─── Button System ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn span {
  transition: transform 0.25s ease;
  display: inline-block;
}

.btn:hover span { transform: translateX(3px); }

.btn--primary,
.btn--gold {
  background: var(--terracotta);
  color: var(--white);
}

.btn--primary:hover,
.btn--gold:hover {
  background: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(166, 83, 50, 0.3);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--dark {
  background: var(--forest);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(23, 63, 53, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: 13px 24px;
}

.btn--ghost:hover {
  background: var(--forest);
  color: var(--white);
}

.btn--outline-white { /* already defined above */ }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}


/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(23, 63, 53, 0.07);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color 0.35s ease;
}

.nav.scrolled .nav__logo { color: var(--forest); }

.nav__logo-icon { width: 26px; height: 20px; }

.nav__logo-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav.scrolled .nav__link { color: var(--muted); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__link:hover { color: var(--white); }
.nav.scrolled .nav__link:hover { color: var(--forest); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--white);
  background: var(--terracotta);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.nav__cta:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 6px;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

.nav.scrolled .nav__hamburger span { background: var(--forest); }

.nav__hamburger.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav__hamburger.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu__inner { text-align: center; }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 48px;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 400;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.25s ease;
  display: block;
  padding: 4px 0;
}

.mobile-menu__link:hover { opacity: 1; }

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mobile-menu__cta {
  display: inline-flex;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--terracotta);
  border-radius: var(--radius);
}

.mobile-menu__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.mobile-menu__contact {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 680px;
  height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(23, 63, 53, 0.15) 0%,
    rgba(23, 63, 53, 0.08) 40%,
    rgba(23, 63, 53, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 650px;
  padding: 0 var(--px);
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero__title-line {
  display: block;
  font-size: clamp(42px, 6.5vw, 64px);
}

.hero__title-line--italic {
  font-style: italic;
  color: var(--sand);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.65s forwards;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s ease 0.8s forwards;
}

.hero__trust-item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__trust-item svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

.hero__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: var(--terracotta);
  animation: scrollPulse 2s ease infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TRIP FINDER
   ═══════════════════════════════════════════════════════════════════════════ */
.trip-finder {
  position: relative;
  margin-top: -50px;
  z-index: 10;
  padding: 0 var(--px);
}

.trip-finder__inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
}

.trip-finder__header {
  text-align: center;
  margin-bottom: 20px;
}

.trip-finder__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
}

.trip-finder__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.trip-finder__tab {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--sand);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.trip-finder__tab:hover { color: var(--forest); }

.trip-finder__tab.active {
  background: var(--forest);
  color: var(--white);
}

.trip-finder__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.trip-finder__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trip-finder__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.trip-finder__select,
.trip-finder__input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--sand);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  height: 48px;
}

.trip-finder__select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2366716C' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.trip-finder__select:focus,
.trip-finder__input:focus { border-color: var(--terracotta); }

.trip-finder__submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  height: 48px;
}

.trip-finder__submit:hover {
  background: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(166, 83, 50, 0.3);
}


/* ═══════════════════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(23, 63, 53, 0.06);
}

.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-bar__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest);
  flex-shrink: 0;
}

.trust-bar__icon svg { width: 18px; height: 18px; }

.trust-bar__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}


/* ═══════════════════════════════════════════════════════════════════════════
   WHY TANZANIA
   ═══════════════════════════════════════════════════════════════════════════ */
.why-tanzania {
  padding: var(--section-lg) 0;
  background: var(--sand);
}

.why-tanzania__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.why-tanzania__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.why-tanzania__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-tanzania__content { padding: 12px 0; }

.why-tanzania__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 18px;
}

.why-tanzania__title em { font-style: italic; color: var(--forest); }

.why-tanzania__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   EXPERIENCE CARDS (4 cards)
   ═══════════════════════════════════════════════════════════════════════════ */
.experiences {
  padding: var(--section) 0;
  background: var(--white);
}

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.exp-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.exp-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-card__image { transform: scale(1.04); }

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(23, 63, 53, 0.25) 60%,
    rgba(23, 63, 53, 0.78) 100%
  );
  transition: background 0.4s ease;
}

.exp-card:hover .exp-card__overlay {
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(23, 63, 53, 0.35) 50%,
    rgba(23, 63, 53, 0.85) 100%
  );
}

.exp-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px;
  z-index: 2;
}

.exp-card__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.exp-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.exp-card__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  line-height: 1.5;
}

.exp-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.25s ease;
}

.exp-card__cta span { transition: transform 0.25s ease; }
.exp-card:hover .exp-card__cta { color: var(--sand); }
.exp-card:hover .exp-card__cta span { transform: translateX(4px); }


/* ═══════════════════════════════════════════════════════════════════════════
   KILIMANJARO ROUTE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.kili-routes {
  padding: var(--section) 0;
  background: var(--sand);
}

.kili-routes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.route-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.route-card__image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.route-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.route-card:hover .route-card__image { transform: scale(1.04); }

.route-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 100px;
  z-index: 2;
}

.route-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.route-card__route {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.route-card__duration {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 12px;
}

.route-card__meta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.route-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.route-card__meta-item svg { color: var(--sage); flex-shrink: 0; }

.route-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 63, 53, 0.06);
  margin-top: auto;
}

.route-card__price-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.route-card__price-amount {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
}

.route-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.route-card:hover .route-card__btn {
  background: var(--forest);
  color: var(--white);
}


/* ═══════════════════════════════════════════════════════════════════════════
   GROUP DEPARTURES
   ═══════════════════════════════════════════════════════════════════════════ */
.group-departures {
  padding: var(--section) 0;
  background: var(--white);
}

.group-departures__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.group-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(23, 63, 53, 0.08);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.group-item:hover {
  border-color: rgba(23, 63, 53, 0.15);
  box-shadow: 0 4px 20px rgba(23, 63, 53, 0.06);
}

.group-item__date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
}

.group-item__day {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
}

.group-item__month {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.group-item__info { flex: 1; min-width: 0; }

.group-item__route {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.group-item__details {
  display: flex;
  gap: 16px;
}

.group-item__details span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.group-item__details svg { color: var(--sage); flex-shrink: 0; }

.group-item__availability { flex-shrink: 0; text-align: center; min-width: 100px; }

.group-item__spots {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
}

.group-item__spots--available {
  background: rgba(112, 140, 120, 0.1);
  color: var(--sage);
}

.group-item__spots--limited {
  background: rgba(166, 83, 50, 0.08);
  color: var(--terracotta);
}

.group-item__spots--full {
  background: rgba(102, 113, 108, 0.08);
  color: var(--muted);
}

.group-item__price { flex-shrink: 0; text-align: right; min-width: 90px; }

.group-item__price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
}

.group-item__price-per {
  font-size: 12px;
  color: var(--muted);
}

.group-item__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--terracotta);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.group-item__btn:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(166, 83, 50, 0.3);
}


/* ═══════════════════════════════════════════════════════════════════════════
   SAFARI CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.safari-packages {
  padding: var(--section) 0;
  background: var(--sand);
}

.safari-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.safari-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safari-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.safari-card__image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.safari-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.safari-card:hover .safari-card__image { transform: scale(1.04); }

.safari-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(23, 63, 53, 0.1) 100%);
  pointer-events: none;
}

.safari-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 100px;
  z-index: 2;
}

.safari-card__badge--gold { background: var(--terracotta); color: var(--white); }
.safari-card__badge--dark { background: var(--forest); color: var(--white); }

.safari-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.safari-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.safari-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.safari-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}

.safari-card__destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.safari-card__destinations span {
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--sand);
  border-radius: 100px;
}

.safari-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 63, 53, 0.06);
  margin-top: auto;
}

.safari-card__price-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.safari-card__price-amount {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
}

.safari-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.safari-card:hover .safari-card__btn {
  background: var(--forest);
  color: var(--white);
}


/* ═══════════════════════════════════════════════════════════════════════════
   GREAT MIGRATION
   ═══════════════════════════════════════════════════════════════════════════ */
.migration {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.migration__bg { position: absolute; inset: 0; }

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

.migration__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 63, 53, 0.82) 0%, rgba(23, 63, 53, 0.68) 100%);
}

.migration__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.migration__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.migration__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 18px;
}

.migration__title em { font-style: italic; color: var(--sand); }

.migration__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.migration__timeline {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.migration__season {
  padding-left: 14px;
  border-left: 2px solid var(--terracotta);
}

.migration__season-months {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--sand);
  margin-bottom: 2px;
}

.migration__season-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}


/* ═══════════════════════════════════════════════════════════════════════════
   COMBO PROMO
   ═══════════════════════════════════════════════════════════════════════════ */
.combo-promo {
  padding: 80px 0;
  background: var(--forest);
  text-align: center;
}

.combo-promo__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.combo-promo__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.combo-promo__title em { font-style: italic; color: var(--sand); }

.combo-promo__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.combo-promo__step {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--sand);
}

.combo-promo__arrow {
  font-size: 16px;
  color: var(--terracotta);
}

.combo-promo__text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 32px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   WHY US (6 cards)
   ═══════════════════════════════════════════════════════════════════════════ */
.why-us {
  padding: var(--section) 0;
  background: var(--white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  margin-bottom: 18px;
}

.why-card__icon svg { width: 22px; height: 22px; }

.why-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}


/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════════════════ */
.reviews {
  padding: var(--section) 0;
  background: var(--sand);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-card__stars svg { width: 15px; height: 15px; }

.review-card__quote {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1px;
}

.review-card__detail {
  font-size: 12px;
  color: var(--muted);
}

.reviews__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}

.reviews__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.reviews__badge svg { color: var(--terracotta); }


/* ═══════════════════════════════════════════════════════════════════════════
   PHOTO GALLERY
   ═══════════════════════════════════════════════════════════════════════════ */
.gallery {
  padding: var(--section) 0;
  background: var(--white);
}

.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__img { transform: scale(1.05); }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 63, 53, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__cta {
  text-align: center;
  margin-top: 32px;
}

.gallery__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--terracotta);
  transition: gap 0.25s ease;
}

.gallery__cta-link:hover { gap: 10px; }


/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--section) 0;
  background: var(--sand);
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.how-it-works__grid--legacy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.how-step { text-align: center; }

.how-step__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.45;
}

.how-step__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.how-step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 240px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════════════ */
.blog {
  padding: var(--section) 0;
  background: var(--white);
}

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 190px;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image { transform: scale(1.04); }

.blog-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(23,63,53,0.15) 100%); pointer-events: none; }

.blog-card__content { padding: 20px; }

.blog-card__category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 8px;
}

.blog-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.blog-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.faq {
  padding: var(--section) 0;
  background: var(--sand);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(23, 63, 53, 0.1);
}

.faq__item:first-child {
  border-top: 1px solid rgba(23, 63, 53, 0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq__question:hover { color: var(--terracotta); }

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--terracotta);
}

.faq__item.active .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__item.active .faq__answer { max-height: 280px; }

.faq__answer p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}


/* ═══════════════════════════════════════════════════════════════════════════
   PLAN YOUR TRIP FORM
   ═══════════════════════════════════════════════════════════════════════════ */
.plan-trip {
  padding: var(--section-lg) 0;
  background: var(--white);
}

.plan-trip__split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.plan-trip__image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
}

.plan-trip__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-trip__content-col { padding: 8px 0; }

.plan-trip__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 14px;
}

.plan-trip__title em { font-style: italic; color: var(--terracotta); }

.plan-trip__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

.plan-trip__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  padding: 32px;
  border-radius: var(--radius-lg);
}

.plan-trip__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.plan-trip__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-trip__field--full { grid-column: 1 / -1; }

.plan-trip__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-trip__select,
.plan-trip__input,
.plan-trip__textarea {
  width: 100%;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  height: 48px;
}

.plan-trip__select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2366716C' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.plan-trip__textarea {
  resize: vertical;
  min-height: 80px;
  height: auto;
  padding: 14px;
}

.plan-trip__select:focus,
.plan-trip__input:focus,
.plan-trip__textarea:focus { border-color: var(--terracotta); }

.plan-trip__submit { align-self: flex-start; margin-top: 4px; }


/* ═══════════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.final-cta__bg { position: absolute; inset: 0; }

.final-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 63, 53, 0.85) 0%, rgba(23, 63, 53, 0.7) 100%);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta__title em { font-style: italic; color: var(--sand); }

.final-cta__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.final-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.final-cta__support {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--forest);
  color: var(--white);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding: 64px 0 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__logo-icon { width: 26px; height: 20px; }

.footer__logo-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer__motto {
  font-size: 15px;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  max-width: 260px;
}

.footer__location {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}

.footer__link:hover { color: var(--terracotta); }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--terracotta);
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.25s ease;
}

.footer__social-link:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.25s ease;
}

.footer__bottom-link:hover { color: var(--terracotta); }


/* ═══════════════════════════════════════════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--terracotta); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) { .whatsapp-float { display: none; } }

.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid rgba(23, 63, 53, 0.07);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.mobile-sticky.visible { transform: translateY(0); }

.mobile-sticky__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.mobile-sticky__btn--whatsapp { background: #25D366; color: var(--white); }
.mobile-sticky__btn--cta { background: var(--terracotta); color: var(--white); }

.section-cta { text-align: center; margin-top: 40px; }
.section-cta .btn span { transition: transform 0.25s ease; }
.section-cta .btn:hover span { transform: translateX(3px); }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.footer__col { min-width: 0; }
.footer__col--contact { min-width: 0; }
.plan-trip__image-col { position: relative; }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title-line { font-size: clamp(38px, 5.5vw, 52px); }

  .trip-finder__form { grid-template-columns: 1fr 1fr; }
  .trip-finder__submit { grid-column: 1 / -1; justify-self: center; }

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

  .kili-routes__grid { grid-template-columns: repeat(2, 1fr); }
  .safari-packages__grid { grid-template-columns: repeat(2, 1fr); }

  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid .review-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

  .how-it-works__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }

  .gallery__mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }

  .why-tanzania__split { grid-template-columns: 1fr; gap: 40px; }

  .footer__main { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }

  .group-item { flex-wrap: wrap; gap: 14px; padding: 18px; }
  .group-item__info { width: 100%; order: 3; }
  .group-item__details { flex-wrap: wrap; gap: 10px; }
  .group-item__availability { order: 2; }
  .group-item__price { order: 1; text-align: left; }
  .group-item__btn { order: 4; width: 100%; justify-content: center; }

  .migration__timeline { gap: 18px; }

  .plan-trip__split { grid-template-columns: 1fr; gap: 40px; }
  .plan-trip__image-frame { aspect-ratio: 16/9; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --px: 20px;
    --section: 65px;
    --section-lg: 80px;
  }

  .section-header { margin-bottom: 36px; }

  .hero {
    min-height: 620px;
    max-height: none;
    height: auto;
  }

  .hero__title-line { font-size: clamp(36px, 10vw, 42px); }
  .hero__subtitle { font-size: 15px; }

  .hero__buttons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero__buttons .btn {
    flex: 1;
    min-width: calc(50% - 5px);
    text-align: center;
    justify-content: center;
    padding: 13px 20px;
  }

  .hero__buttons .btn--whatsapp-hero {
    flex-basis: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero__content { max-width: 100%; }

  .hero__trust { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero__trust-dot { display: none; }

  .trip-finder { margin-top: -36px; }
  .trip-finder__inner { padding: 22px 18px; }
  .trip-finder__form { grid-template-columns: 1fr; }
  .trip-finder__tabs { gap: 6px; }
  .trip-finder__tab { padding: 8px 14px; font-size: 12px; }

  .trust-bar__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .experiences__grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 16/10; }

  .kili-routes__grid { grid-template-columns: 1fr; }
  .safari-packages__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 100%; }
  .reviews__grid .review-card:last-child { max-width: 100%; }
  .reviews__badges { flex-direction: column; gap: 14px; }

  .how-it-works__grid { grid-template-columns: 1fr; gap: 28px; }

  .blog__grid { grid-template-columns: 1fr; }
  .blog__header { flex-direction: column; align-items: flex-start; gap: 14px; }

  .gallery__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }

  .migration { padding: 70px 0; }
  .migration__timeline { flex-direction: column; gap: 14px; }

  .combo-promo { padding: 60px 0; }
  .combo-promo__flow { flex-direction: column; gap: 8px; }

  .plan-trip__split { padding: 0 var(--px); }
  .plan-trip__form-row { grid-template-columns: 1fr; }
  .plan-trip__form { padding: 24px; }

  .final-cta { padding: 70px 0; }
  .final-cta__buttons { flex-direction: column; align-items: center; }

  .footer__main { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  .mobile-sticky { display: flex; }
  body.has-mobile-sticky { padding-bottom: 68px; }

  .back-to-top { bottom: 76px; right: 18px; width: 38px; height: 38px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   LEGACY CLASSES — For other pages (kilimanjaro.php, safaris.php, etc.)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Footer Newsletter */
.footer__newsletter { padding: 40px 0; }
.footer__newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer__newsletter-title { font-family: var(--font-heading); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.footer__newsletter-desc { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer__newsletter-form { flex-shrink: 0; }
.footer__newsletter-input-wrap { display: flex; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s ease; }
.footer__newsletter-input-wrap:focus-within { border-color: var(--terracotta); }
.footer__newsletter-input { flex: 1; padding: 12px 16px; font-family: var(--font-body); font-size: 14px; color: var(--white); background: transparent; border: none; outline: none; min-width: 240px; }
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.footer__newsletter-submit { padding: 12px 24px; background: var(--terracotta); color: var(--white); font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s ease; white-space: nowrap; }
.footer__newsletter-submit:hover { background: var(--terracotta-hover); }

/* Footer Trust */
.footer__trust { border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 36px 0; }
.footer__trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer__trust-title { font-family: var(--font-heading); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.footer__trust-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.4); max-width: 380px; }
.footer__trust-items { display: flex; gap: 28px; flex-shrink: 0; }
.footer__trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55); white-space: nowrap; }
.footer__trust-item svg { color: var(--terracotta); flex-shrink: 0; }
.footer__availability { font-size: 12px; font-style: italic; color: rgba(255,255,255,0.3); margin-bottom: 20px; }

/* Kili Card System */
.kili-packages { padding: var(--section) 0; background: var(--white); }
.kili-packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kili-card { display: flex; flex-direction: column; background: var(--sand); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.kili-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.kili-card__image-wrap { position: relative; height: 200px; overflow: hidden; }
.kili-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.kili-card:hover .kili-card__image { transform: scale(1.04); }
.kili-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(23,63,53,0.1) 100%); pointer-events: none; }
.kili-card__badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--white); color: var(--dark); border-radius: 100px; z-index: 2; }
.kili-card__badge--gold { background: var(--terracotta); color: var(--white); }
.kili-card__badge--dark { background: var(--forest); color: var(--white); }
.kili-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.kili-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.kili-card__category { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terracotta); }
.kili-card__rating { display: flex; align-items: center; gap: 3px; font-size: 13px; font-weight: 600; color: var(--dark); }
.kili-card__title { font-family: var(--font-heading); font-size: 20px; font-weight: 400; color: var(--dark); margin-bottom: 6px; line-height: 1.25; }
.kili-card__desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 14px; }
.kili-card__meta { display: flex; gap: 14px; margin-bottom: 14px; }
.kili-card__meta-item { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--muted); }
.kili-card__meta-item svg { color: var(--sage); flex-shrink: 0; }
.kili-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(23,63,53,0.06); margin-top: auto; }
.kili-card__price-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); }
.kili-card__price-amount { font-family: var(--font-heading); font-size: 22px; font-weight: 400; color: var(--dark); }
.kili-card__btn { display: inline-flex; align-items: center; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--forest); border: 1.5px solid var(--forest); border-radius: var(--radius); transition: all 0.25s ease; }
.kili-card:hover .kili-card__btn { background: var(--forest); color: var(--white); }

/* Search Widget */
.search-section { position: relative; padding: 0; margin-top: -50px; z-index: 10; }
.search-widget { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.search-widget__header { padding: 20px 32px 0; text-align: center; }
.search-widget__label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; display: block; }
.search-widget__title { font-family: var(--font-heading); font-size: 24px; font-weight: 400; color: var(--dark); }
.search-widget__form { padding: 18px 32px 22px; }
.search-widget__fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.search-widget__field { display: flex; flex-direction: column; gap: 6px; }
.search-widget__field-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.search-widget__select, .search-widget__input { width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: 14px; color: var(--dark); background: var(--sand); border: 1.5px solid transparent; border-radius: var(--radius); outline: none; transition: border-color 0.25s ease; -webkit-appearance: none; appearance: none; cursor: pointer; height: 48px; }
.search-widget__select { background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2366716C' stroke-width='1.2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.search-widget__submit { display: inline-flex; align-items: center; gap: 6px; padding: 0 24px; background: var(--terracotta); color: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 700; border: none; border-radius: var(--radius); cursor: pointer; white-space: nowrap; transition: all 0.25s ease; height: 48px; }
.search-widget__submit:hover { background: var(--terracotta-hover); transform: translateY(-2px); }

/* Welcome */
.welcome { padding: var(--section) 0; background: var(--sand); }
.welcome__split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.welcome__image-frame { position: relative; overflow: hidden; height: 100%; border-radius: var(--radius-lg); }
.welcome__image { width: 100%; height: 100%; object-fit: cover; }
.welcome__title { font-family: var(--font-heading); font-size: 38px; font-weight: 400; line-height: 1.2; color: var(--dark); margin-bottom: 16px; }
.welcome__title em { font-style: italic; color: var(--terracotta); }
.welcome__desc { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 32px; }
.welcome__stats { display: flex; gap: 28px; margin-bottom: 32px; }
.welcome__stat { display: flex; flex-direction: column; gap: 4px; padding-left: 14px; border-left: 2px solid var(--terracotta); }
.welcome__stat-num { font-family: var(--font-heading); font-size: 30px; font-weight: 400; color: var(--terracotta); line-height: 1; }
.welcome__stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); }

/* Quote */
.quote-section { padding: var(--section) 0; background: var(--sand); }
.quote-section__inner { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.quote-section__line { width: 50px; height: 1px; background: var(--terracotta); }
.quote-section__text { font-size: clamp(18px, 2.5vw, 26px); font-weight: 300; font-style: italic; line-height: 1.8; color: var(--dark); text-align: center; }

/* Why (legacy split) */
.why { padding: var(--section) 0; background: var(--sand); }
.why__split { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why__image-frame { position: relative; z-index: 2; overflow: hidden; border-radius: var(--radius-lg); }
.why__image { width: 100%; height: 500px; object-fit: cover; }
.why__image-accent { position: absolute; top: -14px; right: -14px; width: 100%; height: 100%; border: 2px solid var(--terracotta); border-radius: var(--radius-lg); z-index: 1; opacity: 0.25; }
.why__content-col { padding: 12px 0; }
.why__title { font-family: var(--font-heading); font-size: clamp(26px, 3vw, 38px); font-weight: 400; line-height: 1.2; color: var(--dark); margin-bottom: 16px; }
.why__intro { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 36px; }
.why__features { display: flex; flex-direction: column; gap: 24px; }
.why__feature { display: flex; gap: 14px; align-items: flex-start; }
.why__feature-icon { flex-shrink: 0; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--terracotta); border-radius: var(--radius); color: var(--terracotta); padding: 9px; }
.why__feature-icon svg { width: 100%; height: 100%; }
.why__feature-title { font-family: var(--font-heading); font-size: 18px; font-weight: 400; color: var(--dark); margin-bottom: 3px; }
.why__feature-desc { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* Stats */
.stats { position: relative; padding: var(--section-lg) 0; overflow: hidden; }
.stats__bg { position: absolute; inset: 0; }
.stats__bg-img { width: 100%; height: 100%; object-fit: cover; }
.stats__overlay { position: absolute; inset: 0; background: rgba(23,63,53,0.88); }
.stats__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat__number { font-family: var(--font-heading); font-size: 58px; font-weight: 400; line-height: 1; color: var(--terracotta); display: inline; }
.stat__suffix { font-family: var(--font-heading); font-size: 32px; font-weight: 400; color: var(--terracotta); }
.stat__label { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* Destinations */
.destinations { padding: var(--section) 0; background: var(--sand); position: relative; overflow: hidden; }
.destinations__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 14px; }
.dest-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; }
.dest-card--featured { grid-column: 1; grid-row: 1 / 3; }
.dest-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.dest-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.dest-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.dest-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.dest-card__image-wrap { position: absolute; inset: 0; }
.dest-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover .dest-card__image { transform: scale(1.04); }
.dest-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(23,63,53,0.12) 60%, rgba(23,63,53,0.6) 100%); transition: background 0.3s ease; }
.dest-card:hover .dest-card__overlay { background: linear-gradient(180deg, transparent 20%, rgba(23,63,53,0.2) 50%, rgba(23,63,53,0.75) 100%); }
.dest-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; z-index: 2; }
.dest-card__title { font-family: var(--font-heading); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 3px; }
.dest-card--featured .dest-card__title { font-size: 30px; }
.dest-card__sub { display: block; font-size: 11px; font-weight: 700; color: var(--terracotta); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.dest-card__desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; max-height: 0; overflow: hidden; opacity: 0; transition: all 0.3s ease; }
.dest-card:hover .dest-card__desc, .dest-card--featured .dest-card__desc { max-height: 50px; opacity: 1; }

/* Reviews split */
.reviews__split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.reviews__header { position: sticky; top: 100px; padding-top: 16px; }
.reviews__title { font-family: var(--font-heading); font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.18; color: var(--dark); margin-bottom: 16px; }
.reviews__title em { font-style: italic; color: var(--forest); }
.reviews__desc { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 28px; }
.reviews__rating-summary { display: flex; align-items: center; gap: 12px; }
.reviews__rating-stars { display: flex; gap: 2px; }
.reviews__rating-stars svg { width: 16px; height: 16px; }
.reviews__rating-text { font-size: 14px; font-weight: 600; color: var(--dark); }

/* Gallery mosaic */
.gallery__mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 10px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover .gallery__img { transform: scale(1.05); }
.gallery__item-overlay { position: absolute; inset: 0; background: rgba(23,63,53,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.25s ease; }
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-cat { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); border: 1px solid rgba(255,255,255,0.4); padding: 7px 18px; }

/* Instagram */
.instagram { padding: var(--section) 0 0; background: var(--sand); }
.instagram__header { text-align: center; margin-bottom: 40px; }
.instagram__handle { font-family: var(--font-heading); font-size: clamp(26px, 3vw, 38px); font-weight: 400; font-style: italic; color: var(--dark); }
.instagram__grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.instagram__item { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.instagram__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.instagram__item:hover .instagram__img { transform: scale(1.06); }
.instagram__item-overlay { position: absolute; inset: 0; background: rgba(23,63,53,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.25s ease; }
.instagram__item:hover .instagram__item-overlay { opacity: 1; }

/* Footer CTA (legacy) */
.footer-cta { position: relative; padding: 90px 0; overflow: hidden; }
.footer-cta__bg { position: absolute; inset: 0; }
.footer-cta__bg-img { width: 100%; height: 100%; object-fit: cover; }
.footer-cta__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(23,63,53,0.85) 0%, rgba(23,63,53,0.7) 100%); }
.footer-cta__content { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto; }
.footer-cta__title { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; line-height: 1.15; color: var(--white); margin-bottom: 16px; }
.footer-cta__title em { font-style: italic; color: var(--sand); }
.footer-cta__desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.footer-cta__buttons { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Testimonials */
.testimonials { padding: var(--section) 0; background: var(--sand); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--white); padding: 28px; border-radius: var(--radius-lg); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-card__quote { font-size: 15px; font-weight: 400; font-style: italic; line-height: 1.7; color: var(--dark); margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 10px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.testimonial-card__info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card__name { font-size: 14px; font-weight: 600; color: var(--dark); }
.testimonial-card__detail { font-size: 12px; color: var(--muted); }

/* Kili Groups (legacy) */
.kili-groups { padding: var(--section) 0; background: var(--sand); }
.kili-groups__list { display: flex; flex-direction: column; gap: 10px; }
.kili-group-item { display: flex; align-items: center; gap: 24px; padding: 22px 24px; background: var(--white); border: 1px solid rgba(23,63,53,0.08); border-radius: var(--radius-lg); transition: border-color 0.25s ease; }
.kili-group-item:hover { border-color: rgba(23,63,53,0.15); }
.kili-group-item__date { flex-shrink: 0; width: 64px; text-align: center; }
.kili-group-item__day { display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 400; color: var(--terracotta); line-height: 1; }
.kili-group-item__month { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.kili-group-item__info { flex: 1; }
.kili-group-item__route { font-family: var(--font-heading); font-size: 18px; font-weight: 400; color: var(--dark); margin-bottom: 4px; }
.kili-group-item__details { display: flex; gap: 16px; }
.kili-group-item__details span { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--muted); }
.kili-group-item__details svg { color: var(--sage); flex-shrink: 0; }
.kili-group-item__price { flex-shrink: 0; text-align: right; }
.kili-group-item__price-amount { display: block; font-family: var(--font-heading); font-size: 22px; font-weight: 400; color: var(--dark); }
.kili-group-item__price-per { font-size: 12px; color: var(--muted); }
.kili-group-item__btn { flex-shrink: 0; display: inline-flex; align-items: center; padding: 10px 20px; font-size: 13px; font-weight: 700; color: var(--white); background: var(--terracotta); border-radius: var(--radius); transition: all 0.25s ease; }
.kili-group-item__btn:hover { background: var(--terracotta-hover); transform: translateY(-1px); box-shadow: 0 3px 10px rgba(166,83,50,0.25); }

/* Adventure Cards */
.adventure { padding: var(--section) 0; background: var(--sand); }
.adventure__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.adventure-card { position: relative; display: block; height: 420px; overflow: hidden; border-radius: var(--radius-lg); }
.adventure-card__image-wrap { position: absolute; inset: 0; }
.adventure-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.adventure-card:hover .adventure-card__image { transform: scale(1.04); }
.adventure-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,63,53,0.08) 0%, rgba(23,63,53,0.25) 50%, rgba(23,63,53,0.72) 100%); transition: background 0.3s ease; }
.adventure-card:hover .adventure-card__overlay { background: linear-gradient(180deg, rgba(23,63,53,0.12) 0%, rgba(23,63,53,0.35) 50%, rgba(23,63,53,0.82) 100%); }
.adventure-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 24px; z-index: 2; }
.adventure-card__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.adventure-card__title { font-family: var(--font-heading); font-size: 24px; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.adventure-card__cta { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--white); transition: color 0.25s ease; }
.adventure-card__cta span { transition: transform 0.25s ease; }
.adventure-card:hover .adventure-card__cta { color: var(--sand); }
.adventure-card:hover .adventure-card__cta span { transform: translateX(3px); }

/* Migration Packages */
.migration-packages { padding: var(--section) 0; background: var(--sand); }
.migration-packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Responsive legacy overrides */
@media (max-width: 1024px) {
  .kili-packages__grid, .safari-packages__grid, .migration-packages__grid { grid-template-columns: repeat(2, 1fr); }
  .welcome__split { gap: 40px; }
  .welcome__title { font-size: 34px; }
  .why__split { gap: 40px; }
  .why__image { height: 420px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .destinations__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; gap: 12px; }
  .dest-card--featured { grid-column: 1 / 3; grid-row: 1; }
  .dest-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .dest-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .dest-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .dest-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .dest-card__title { font-size: 22px; }
  .dest-card--featured .dest-card__title { font-size: 26px; }
  .adventure__grid { grid-template-columns: repeat(2, 1fr); }
  .adventure-card { height: 360px; }
  .adventure-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .testimonial-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .gallery__mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
  .reviews__split { gap: 40px; }
  .footer__trust-inner { flex-direction: column; text-align: center; gap: 28px; }
  .footer__trust-desc { margin: 0 auto; }
  .footer__trust-items { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer__newsletter-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer__newsletter-input { min-width: 220px; }
  .kili-group-item { padding: 18px; gap: 18px; }
  .kili-group-item__date { width: 56px; }
  .kili-group-item__day { font-size: 24px; }
}

@media (max-width: 768px) {
  .kili-packages__grid, .safari-packages__grid, .migration-packages__grid { grid-template-columns: 1fr; }
  .welcome__split { grid-template-columns: 1fr; gap: 32px; padding: 0 var(--px); }
  .welcome__image-frame { aspect-ratio: 4/3; }
  .welcome__title { font-size: 30px; }
  .welcome__stats { gap: 20px; flex-wrap: wrap; }
  .welcome__stat-num { font-size: 26px; }
  .stats__grid { grid-template-columns: 1fr; gap: 36px; }
  .stat__number { font-size: 48px; }
  .destinations__grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }
  .dest-card--featured, .dest-card:nth-child(2), .dest-card:nth-child(3), .dest-card:nth-child(4), .dest-card:nth-child(5) { grid-column: 1; grid-row: auto; }
  .dest-card { aspect-ratio: 4/3; }
  .dest-card--featured { aspect-ratio: 16/10; }
  .dest-card__title { font-size: 22px; }
  .dest-card--featured .dest-card__title { font-size: 24px; }
  .dest-card__desc { max-height: 50px; opacity: 1; }
  .why__split { grid-template-columns: 1fr; gap: 32px; }
  .why__image { height: 320px; }
  .adventure__grid { grid-template-columns: 1fr; }
  .adventure-card { height: 300px; }
  .adventure-card:last-child { max-width: 100%; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial-card:last-child { max-width: 100%; }
  .gallery__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__split { grid-template-columns: 1fr; gap: 32px; }
  .reviews__header { position: static; padding-top: 0; text-align: center; }
  .reviews__rating-summary { justify-content: center; }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__grid .review-card:last-child { max-width: 100%; }
  .kili-group-item { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .kili-group-item__date { display: flex; gap: 6px; width: auto; align-items: baseline; }
  .kili-group-item__day { font-size: 22px; }
  .kili-group-item__month { margin-top: 0; }
  .kili-group-item__info { width: 100%; order: 3; }
  .kili-group-item__details { flex-wrap: wrap; gap: 8px; }
  .kili-group-item__price { order: 2; text-align: left; }
  .kili-group-item__btn { order: 4; width: 100%; justify-content: center; }
  .footer__trust-inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer__trust-items { justify-content: center; }
  .footer__newsletter-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer__newsletter-input { min-width: 100%; }
  .footer__newsletter-input-wrap { flex-direction: column; }
  .footer__newsletter-submit { width: 100%; }
  .footer-cta__buttons { flex-direction: column; align-items: center; }
  .footer-cta__buttons .btn { width: 100%; max-width: 260px; }
  .search-widget__fields { grid-template-columns: 1fr; }
  .search-widget__header { padding: 24px 20px 0; }
  .search-widget__form { padding: 20px; }
}
