/* ── Rustic Safari — warm nature-inspired design ── */

:root {
  --sand: #efe8dc;
  --sand-dark: #e0d5c4;
  --cream: #f8f4ec;
  --forest: #243d33;
  --forest-dark: #152820;
  --forest-light: #3a6a54;
  --earth: #9a7340;
  --earth-light: #d4b57a;
  --terracotta: #c4714a;
  --text: #1f1a14;
  --text-muted: #5f5548;
  --text-light: #8f8374;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --shadow-sm: 0 4px 16px rgba(21, 40, 32, 0.06);
  --shadow-md: 0 12px 40px rgba(21, 40, 32, 0.1);
  --shadow-lg: 0 28px 70px rgba(21, 40, 32, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1140px;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 92px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(58, 106, 84, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(196, 163, 90, 0.1), transparent 50%),
    var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

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

code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  background: var(--sand);
  padding: 2px 6px;
  border-radius: 4px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--forest);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { left: 16px; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(248, 244, 236, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s;
}
.site-header.scrolled {
  background: rgba(248, 244, 236, 0.9);
  border-bottom-color: rgba(36, 61, 51, 0.08);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--forest);
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}
.brand-logo--header {
  height: 64px;
  max-width: min(220px, 48vw);
}
.brand-logo--footer {
  height: 72px;
  max-width: 260px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline-start: auto;
  flex-shrink: 1;
  min-width: 0;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--forest);
  background: var(--sand);
}
.nav-link-cta {
  color: var(--forest);
  font-weight: 600;
}

.header-btn {
  margin-inline-start: 8px;
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.lang-switch {
  position: relative;
  flex-shrink: 0;
  margin-inline-start: 4px;
}
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(44, 36, 22, 0.12);
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lang-switch-btn:hover {
  background: var(--sand);
  border-color: rgba(44, 36, 22, 0.2);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 148px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(44, 36, 22, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 80;
}
.lang-menu[hidden] {
  display: none !important;
}
.lang-menu li {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}
.lang-menu li:hover {
  background: var(--sand);
}
.lang-menu li.is-active {
  background: rgba(45, 74, 62, 0.1);
  color: var(--forest);
  font-weight: 700;
}

html[dir="rtl"] body {
  text-align: right;
}
html[dir="rtl"] .hero-title em {
  display: inline;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-inline-start: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, border-color 0.25s;
  user-select: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(180deg, var(--forest-light), var(--forest));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(36, 61, 51, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #447a61, var(--forest-dark));
  box-shadow: 0 14px 32px rgba(36, 61, 51, 0.34);
}

.btn-secondary {
  background: var(--sand);
  color: var(--forest);
  border: 1px solid var(--sand-dark);
}
.btn-secondary:hover { background: var(--sand-dark); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--forest-dark);
  transform: scale(1.08);
  animation: hero-kenburns 28s var(--ease-out) infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(21, 40, 32, 0.72) 0%, rgba(21, 40, 32, 0.28) 48%, rgba(21, 40, 32, 0.45) 100%),
    linear-gradient(to top, rgba(21, 40, 32, 0.88) 0%, rgba(21, 40, 32, 0.35) 48%, rgba(21, 40, 32, 0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin: 0 0 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--earth-light);
}
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Sections ── */
.section { padding: 88px 0; position: relative; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(239, 232, 220, 0.55), rgba(239, 232, 220, 0.9)),
    var(--sand);
}
.section-book { background: var(--cream); }

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0;
}

/* ── Safari split (Kumana / Yala) ── */
.safari-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.safari-split-reverse { direction: rtl; }
.safari-split-reverse > * { direction: ltr; }

.safari-image {
  border-radius: var(--radius-lg);
  min-height: 560px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.safari-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(21, 40, 32, 0.28));
  pointer-events: none;
}
.safari-image:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 80px rgba(21, 40, 32, 0.22);
}
.safari-image-kumana {
  background-image: url("https://images.unsplash.com/photo-1635737588547-a8d97c2fb531?auto=format&fit=crop&w=900&q=80");
}
.safari-image-yala {
  background-image: url("https://images.unsplash.com/photo-1705936981595-dea87508ce84?auto=format&fit=crop&w=900&q=80");
}
.safari-image-jeep {
  background-image: url("../images/PHOTO-2026-05-27-14-46-22.jpg");
  background-position: center 30%;
  min-height: 600px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-light);
  font-weight: 700;
}

html[dir="rtl"] .feature-list li {
  padding-left: 0;
  padding-right: 28px;
}
html[dir="rtl"] .feature-list li::before {
  left: auto;
  right: 0;
}

.explore-block {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(44, 36, 22, 0.08);
}
.explore-block .section-head {
  margin-bottom: 28px;
  max-width: 40rem;
}
.explore-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--forest);
  margin: 8px 0 10px;
  font-weight: 600;
  line-height: 1.2;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
  width: 100%;
  align-items: start;
}
.explore-item {
  min-width: 0;
  border-radius: var(--radius);
  padding: 8px;
  transition: transform 0.35s var(--ease-out), background 0.35s, box-shadow 0.35s;
}
.explore-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-sm);
}
.explore-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.25;
}
.explore-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── Compare grid ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.compare-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(36, 61, 51, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.compare-icon { font-size: 2rem; margin-bottom: 12px; }
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 8px;
}
.compare-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Packages ── */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.package-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(36, 61, 51, 0.08);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(36, 61, 51, 0.18);
}
.package-card-featured {
  border-color: rgba(36, 61, 51, 0.35);
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(165deg, rgba(58, 106, 84, 0.06), transparent 40%),
    rgba(255, 255, 255, 0.9);
}
.package-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--forest);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.package-card-featured .package-badge {
  background: var(--forest);
  color: var(--white);
}
.package-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 4px;
}
.package-time {
  font-size: 0.9rem;
  color: var(--terracotta);
  font-weight: 600;
  margin: 0 0 16px;
}
.package-desc {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}
.package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.package-includes li {
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text);
}
.package-includes li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--forest-light);
  font-weight: 700;
}
.package-prices {
  margin: 0 0 12px;
  border-top: 1px solid rgba(44, 36, 22, 0.08);
  padding-top: 16px;
}
.package-prices-title {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
}
.package-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.package-price-table tr + tr td {
  border-top: 1px solid rgba(44, 36, 22, 0.06);
}
.package-price-table td {
  padding: 8px 0;
  vertical-align: middle;
}
.package-price-table td:first-child {
  color: var(--text-muted);
}
.package-price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}
.package-quote-box {
  padding: 16px;
  background: var(--sand, #f0ebe3);
  border-radius: 12px;
  text-align: center;
}
.package-quote-box strong {
  display: block;
  color: var(--forest);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.package-quote-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.package-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 12px 0 0;
  font-style: normal;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sand);
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  pointer-events: none;
}
.gallery-item:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 2px;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.lightbox[hidden] { display: none !important; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 12, 0.92);
  cursor: pointer;
}
.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1100px, calc(100vw - 120px));
  max-height: calc(100vh - 80px);
  display: grid;
  gap: 12px;
  justify-items: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #111;
}
.lightbox-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.lightbox-counter {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-nav:hover { transform: translateY(-50%); }

body.lightbox-open {
  overflow: hidden;
}

/* ── Steps ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 8px;
}
.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 36, 22, 0.05);
  margin: 0;
}
.stars {
  color: var(--earth-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}
.review-card footer {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  font-style: normal;
}

/* ── Booking management system ── */
.booking-system {
  display: grid;
  gap: 24px;
}
.booking-steps {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(44, 36, 22, 0.08);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
}
.booking-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  color: var(--text-muted);
  font-size: 0.78rem;
}
.booking-step.is-active,
.booking-step.is-done {
  color: var(--forest);
  border-color: rgba(45, 74, 62, 0.2);
}
.booking-step.is-active span,
.booking-step.is-done span {
  background: var(--forest);
  color: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.booking-main {
  display: grid;
  gap: 20px;
}
.booking-panel {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(44, 36, 22, 0.06);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.booking-panel-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 16px;
  padding: 0;
}

.package-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.package-select-card {
  text-align: left;
  border: 1.5px solid rgba(44, 36, 22, 0.1);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  font-family: var(--font-body);
  color: var(--text);
}
.package-select-card:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 74, 62, 0.3);
}
.package-select-card.is-selected {
  border-color: var(--forest);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.12);
}
.package-select-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.package-select-park,
.package-select-duration {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.package-select-duration {
  color: var(--forest-light);
}
.package-select-label {
  display: block;
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 6px;
}
.package-select-desc {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.package-select-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}
.package-select-from {
  color: var(--forest);
}

.person-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.person-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--sand-dark);
  background: var(--sand);
  color: var(--forest);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.person-btn:hover {
  background: var(--sand-dark);
}
.person-input {
  width: 72px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.person-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.date-note {
  margin: 6px 0 0;
  color: #b42318;
  font-size: 0.85rem;
  font-weight: 600;
}
.date-note[hidden] {
  display: none !important;
}

.textarea {
  resize: vertical;
  min-height: 90px;
}

.summary-card {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 36, 22, 0.06);
}
.summary-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  margin: 0 0 16px;
}
.summary-list {
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sand);
}
.summary-row dt {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
}
.summary-row dd {
  margin: 0;
  text-align: right;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}
.summary-price {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}
.summary-price-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 4px;
}
.summary-price-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--earth-light);
}
.summary-price-note {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  opacity: 0.75;
}
.summary-includes {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sand-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(61, 107, 86, 0.12);
}
.input::placeholder { color: var(--text-light); }
.form-hint {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}
.book-form-brand {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 4px;
}
.brand-logo--form {
  height: 60px;
  max-width: 220px;
  margin: 0 auto;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(44, 36, 22, 0.06);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary {
  border-bottom: 1px solid var(--sand);
}
.faq-item p {
  padding: 0 24px 18px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1566650576880-6740b03eaad1?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 51, 41, 0.85);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
  font-size: 1.05rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--earth-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Floating WhatsApp ── */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  animation: fab-float 3.2s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}
.wp-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Video grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 36, 22, 0.06);
}
.video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--forest-dark);
  overflow: hidden;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: var(--forest-dark);
  cursor: pointer;
  z-index: 2;
}
.video-card.is-playing .video-thumb {
  display: none;
}
.video-card.is-loading .video-play::after {
  animation: video-pulse 0.9s ease-in-out infinite;
}
@keyframes video-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.92); opacity: 0.7; }
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.video-thumb:hover img {
  transform: scale(1.04);
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 51, 41, 0.28);
  transition: background 0.2s ease;
}
.video-play::after {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D4A3E'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 58% center;
  background-size: 28px;
}
.video-thumb:hover .video-play {
  background: rgba(30, 51, 41, 0.38);
}
.video-card .video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  object-fit: contain;
  background: #000;
}
.video-card.is-playing .video-player {
  display: block;
  z-index: 3;
}
.video-caption {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-link { font-size: 0.82rem; padding: 8px 8px; }
  .header-btn { padding: 10px 12px; font-size: 0.82rem; }
}

@media (max-width: 1024px) {
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .brand-logo--header { height: 52px; max-width: 190px; }
  .brand-logo--footer { height: 58px; }
  .header-btn { display: none; }
  .lang-switch-btn {
    padding: 8px 10px;
    font-size: 0.78rem;
  }
  .nav {
    margin-left: 0;
    margin-inline-start: 0;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(44, 36, 22, 0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 12px 16px; width: 100%; }

  .hero { min-height: 85vh; }
  .hero-stats { gap: 20px; }

  .safari-split,
  .safari-split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .safari-image { min-height: 380px; }
  .safari-image-jeep { min-height: 420px; }

  .packages-grid,
  .reviews-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .package-select-grid {
    grid-template-columns: 1fr;
  }
  .summary-card {
    position: static;
  }
  .form-grid { grid-template-columns: 1fr; }

  .compare-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .lightbox { padding: 12px; }
  .lightbox-figure { max-width: calc(100vw - 16px); }
  .lightbox-figure img { max-height: calc(100vh - 150px); }
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* ── Motion & modern polish ── */
@keyframes hero-kenburns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-1.5%, -1%, 0); }
}

@keyframes fab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  opacity: 0;
  animation: hero-rise 0.9s var(--ease-out) forwards;
}
.hero-animate:nth-child(1) { animation-delay: 0.12s; }
.hero-animate:nth-child(2) { animation-delay: 0.28s; }
.hero-animate:nth-child(3) { animation-delay: 0.42s; }
.hero-animate:nth-child(4) { animation-delay: 0.56s; }
.hero-animate:nth-child(5) { animation-delay: 0.7s; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.section-label {
  position: relative;
  display: inline-block;
}
.section-label::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--earth-light), transparent);
  transition: width 0.7s var(--ease-out);
}
.reveal.is-visible .section-label::after,
.hero .section-label::after {
  width: 56px;
}

.package-select-card {
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s !important;
}
.package-select-card:hover {
  transform: translateY(-4px);
}

.lightbox {
  animation: lightbox-in 0.28s var(--ease-out);
}
@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-figure img {
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

@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;
  }
  .hero-video { transform: none; animation: none; }
  .hero-animate,
  .reveal {
    opacity: 1;
    transform: none;
  }
  .fab-whatsapp { animation: none; }
}
