/* ==========================================================================
   Jackal Safari — Design System
   ========================================================================== */

:root {
  --gold: #e0a526;
  --gold-light: #f4d48c;
  --gold-dark: #a9760f;
  --black: #141311;
  --charcoal: #24211d;
  --cream: #fbf6ec;
  --cream-dim: #f2ead8;
  --white: #ffffff;
  --green: #2f6b4f;
  --green-dark: #1f4a36;
  --green-light: #e7f0ea;
  --terracotta: #c1602e;
  --whatsapp: #25d366;
  --gray: #6b6459;
  --gray-light: #e9e2d3;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 19, 17, 0.08);
  --shadow-md: 0 10px 30px rgba(20, 19, 17, 0.12);
  --shadow-lg: 0 20px 60px rgba(20, 19, 17, 0.18);
  --shadow-gold: 0 10px 30px rgba(224, 165, 38, 0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 3000;
  background: var(--black); color: var(--white); padding: 12px 20px;
  border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold-dark); outline-offset: 2px;
}
.route-node:focus-visible .dot { outline: 3px solid var(--gold-light); outline-offset: 3px; }

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--black); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(224, 165, 38, 0.12);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow svg { width: 14px; height: 14px; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--gray); font-size: 1.05rem; }
.section-head.left { text-align: left; margin: 0 0 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(224, 165, 38, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--green-dark); transform: translateY(-3px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: 46px; border-radius: 50%; object-fit: cover; background: var(--white); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--black);
}
.site-header:not(.scrolled) .brand-text strong { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.brand-text span { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--black);
  position: relative;
  padding: 4px 0;
}
.site-header:not(.scrolled) .main-nav a { color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--black);
  background: rgba(20,19,17,0.06);
  padding: 9px 14px; border-radius: var(--radius-pill);
}
.site-header:not(.scrolled) .lang-btn { color: var(--white); background: rgba(255,255,255,0.16); }
.lang-btn svg { width: 15px; height: 15px; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 160px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s var(--ease);
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--charcoal);
}
.lang-menu button:hover { background: var(--cream-dim); }
.lang-menu button.active { color: var(--gold-dark); font-weight: 700; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.site-header:not(.scrolled) .nav-toggle span { background: var(--white); }

@media (max-width: 980px) {
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 26px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a, .site-header:not(.scrolled) .main-nav a { color: var(--black); text-shadow: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .header-actions .btn-gold.nav-book { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 120px;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(224,165,38,0.28), transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(47,107,79,0.32), transparent 50%),
    linear-gradient(160deg, #14120f 0%, #0a0908 60%, #100f0d 100%);
  background-size: 200% 200%;
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0% { background-position: 0% 0%, 100% 100%, 0% 0%; }
  100% { background-position: 20% 30%, 70% 60%, 10% 10%; }
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
}
.hero-silhouette {
  position: absolute; bottom: 0; left: 0; right: 0; height: 260px; z-index: 1; pointer-events: none;
}
.hero-silhouette::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 68%);
}
.hero-silhouette svg { position: relative; display: block; width: 100%; height: 100%; z-index: 1; }
.silhouette-shape { fill: #1c1a16; }
#acaciaShape { fill: #100f0d; }
.torn-fill { fill: var(--cream); filter: drop-shadow(0 -6px 12px rgba(0,0,0,0.35)); }
@media (max-width: 640px) { .hero-silhouette { height: 160px; } }

.route-dots { position: absolute; inset: 0; pointer-events: none; }
.route-dots span {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0; box-shadow: 0 0 12px var(--gold);
  animation: driftDot 9s linear infinite;
}
@keyframes driftDot {
  0% { opacity: 0; transform: translate(0,0); }
  10% { opacity: 0.9; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translate(120px, -60px); }
}

.hero .container {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.hero-content { max-width: 600px; flex: 1 1 420px; }

.hero-logo-badge {
  position: relative;
  flex: 0 0 auto; width: min(42vw, 620px); pointer-events: none;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6));
}
.hero-logo-badge::before {
  content: "";
  position: absolute; inset: -10%;
  background: radial-gradient(ellipse at center, rgba(90,168,133,0.85) 0%, rgba(47,107,79,0.5) 32%, rgba(47,107,79,0.12) 58%, transparent 74%);
  z-index: -1;
  filter: blur(4px);
}
.hero-logo-badge img { width: 100%; height: auto; display: block; }

@media (max-width: 980px) {
  .hero .container { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-logo-badge { align-self: center; width: min(78vw, 380px); order: -1; }
}
@media (max-width: 560px) { .hero-logo-badge { width: min(88vw, 320px); } }
.hero-content .eyebrow { background: rgba(224,165,38,0.16); color: var(--gold-light); }
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 36px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--gold-light); font-weight: 700; }
.hero-stats span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Quick Search ---------- */
.quick-search-wrap { position: relative; z-index: 5; margin-top: -72px; }
.quick-search {
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 165, 38, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.qs-field { display: flex; flex-direction: column; gap: 7px; flex: 1 1 170px; min-width: 140px; }
.qs-field.qs-narrow { flex: 0 1 100px; min-width: 90px; }
.qs-field label { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; color: var(--charcoal); }
.qs-field input, .qs-field select {
  padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-light);
  background: var(--white); font-size: 0.9rem; color: var(--charcoal); transition: border-color 0.25s;
}
.qs-field select:invalid { color: var(--gray); }
.qs-field input:focus, .qs-field select:focus { outline: none; border-color: var(--gold); }
.qs-submit { flex: 0 0 auto; height: 47px; }
@media (max-width: 900px) {
  .quick-search-wrap { margin-top: -36px; }
  .quick-search { flex-direction: column; align-items: stretch; padding: 22px; }
  .qs-field, .qs-field.qs-narrow { flex: 1 1 auto; }
  .qs-submit { width: 100%; }
}

/* ---------- Trust / Stats strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 30px 0;
}
.trust-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-dim); display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); flex-shrink: 0;
}
.trust-item .icon svg { width: 22px; height: 22px; }
.trust-item strong { font-family: var(--font-head); font-size: 0.95rem; display: block; color: var(--black); }
.trust-item span { font-size: 0.8rem; color: var(--gray); }
@media (max-width: 860px) { .trust-strip .container { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--green-dark), var(--green));
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-card .pattern {
  position: absolute; inset: 0; opacity: 0.16;
  background-image: radial-gradient(circle, rgba(255,255,255,0.7) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.about-card .badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md); padding: 20px; color: var(--white);
}
.about-card .badge strong { display: block; font-family: var(--font-head); font-size: 1.6rem; }
.about-card .badge span { font-size: 0.82rem; opacity: 0.85; }
.about-float {
  position: absolute; top: -26px; right: -26px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}
.about-float .icon { color: var(--gold-dark); }
.about-float .icon svg { width: 26px; height: 26px; }
.about-float strong { font-family: var(--font-head); display: block; font-size: 1.1rem; }
.about-float span { font-size: 0.75rem; color: var(--gray); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.about-body h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: 20px; }
.about-body p { color: var(--gray); margin-bottom: 18px; font-size: 1.03rem; }
.about-points { display: grid; gap: 14px; margin-top: 26px; }
.about-points li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--charcoal); }
.about-points li .tick {
  width: 24px; height: 24px; border-radius: 50%; background: var(--green-light);
  color: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.about-points li .tick svg { width: 13px; height: 13px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-float { top: -18px; right: 12px; }
}

/* ---------- Services ---------- */
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: var(--white); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 58px; height: 58px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  color: var(--black);
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.service-card ul { display: grid; gap: 9px; }
.service-card ul li {
  font-size: 0.92rem; color: var(--gray); display: flex; align-items: center; gap: 9px;
}
.service-card ul li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
@media (max-width: 980px) { .service-grid { grid-template-columns: 1fr; } }

/* ---------- Route Map ---------- */
.routes { background: var(--black); color: var(--white); overflow: hidden; }
.routes .section-head h2, .routes .section-head p { color: var(--white); }
.routes .section-head p { color: rgba(255,255,255,0.62); }
.routes .eyebrow { background: rgba(224,165,38,0.18); }

.map-wrap {
  position: relative;
  background: #14120f;
  border: 1px solid rgba(224,165,38,0.18);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
}
.map-bg { position: absolute; inset: 0; z-index: 0; }
.map-bg iframe {
  width: 100%; height: 100%; border: 0; pointer-events: none;
  filter: grayscale(0.1) sepia(0.15) saturate(1.15) brightness(0.85) contrast(1.05);
}
.map-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(15,14,12,0.5), rgba(20,18,15,0.18) 45%, rgba(15,14,12,0.55));
}
.map-fg { position: relative; z-index: 1; }
.map-fg svg { width: 100%; height: auto; display: block; }
.route-line {
  fill: none; stroke: rgba(224,165,38,0.85); stroke-width: 2.5; stroke-dasharray: 6 8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}
.route-line.animate { stroke-dashoffset: 1000; stroke-dasharray: 1000; animation: dashDraw 2.6s var(--ease) forwards; }
@keyframes dashDraw { to { stroke-dashoffset: 0; } }
.route-node circle.pulse {
  animation: nodePulse 2.4s ease-out infinite;
  transform-origin: center;
}
@keyframes nodePulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.6); }
}
.route-node { cursor: pointer; }
.route-node .dot { fill: var(--gold); transition: r 0.25s var(--ease); }
.route-node:hover .dot, .route-node.active .dot { fill: var(--gold-light); }
.route-node text { fill: rgba(255,255,255,0.95); font-family: var(--font-head); font-size: 11px; font-weight: 600; paint-order: stroke; stroke: rgba(10,9,8,0.75); stroke-width: 3px; stroke-linejoin: round; }
.route-node.hub .dot { fill: var(--white); }
.route-node.hub text { fill: var(--white); font-size: 13px; font-weight: 700; }

.route-tooltip {
  position: absolute; pointer-events: none;
  background: var(--white); color: var(--black);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 0.82rem; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translate(-50%, -12px) scale(0.9);
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap; z-index: 5;
}
.route-tooltip.show { opacity: 1; transform: translate(-50%, -18px) scale(1); }
.route-tooltip strong { color: var(--gold-dark); font-family: var(--font-head); }

.route-price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.price-card:hover { border-color: rgba(224,165,38,0.5); transform: translateY(-4px); background: rgba(224,165,38,0.06); }
.price-card .route-name { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.92rem; }
.price-card .route-name svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.price-card .price { font-family: var(--font-head); font-weight: 700; color: var(--gold-light); font-size: 1.05rem; white-space: nowrap; }
.price-note { text-align: center; margin-top: 22px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
@media (max-width: 900px) { .route-price-grid { grid-template-columns: 1fr; } }

/* ---------- Carousel Bands (Activities / Gallery) ---------- */
.carousel-band { padding: 90px 0; overflow: hidden; }
.carousel-band:not(.alt) { background: var(--cream); }
.carousel-band.alt { background: var(--cream-dim); }
.cb-inner { max-width: 1500px; margin: 0 auto; padding: 0 24px; display: flex; gap: 48px; align-items: flex-start; }
.cb-label { flex: 0 0 270px; padding-top: 6px; }
.cb-script { font-family: "Caveat", cursive; font-size: 2.1rem; line-height: 1; color: var(--green); display: block; margin-bottom: 6px; }
.cb-label h2 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 16px; line-height: 1.25; }
.cb-label p { color: var(--gray); font-size: 0.92rem; margin-bottom: 24px; line-height: 1.6; }
.cb-explore { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--black); }
.cb-arrow {
  width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.cb-arrow svg { width: 16px; height: 16px; }
.cb-explore:hover .cb-arrow, .cb-explore:focus-visible .cb-arrow { transform: translateX(5px); background: var(--gold-dark); }

.cb-carousel-wrap { position: relative; flex: 1 1 auto; min-width: 0; }
.cb-carousel {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none; padding: 4px 4px 10px; scroll-behavior: smooth;
}
.cb-carousel::-webkit-scrollbar { display: none; }
.cb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; background: var(--white);
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); transition: background 0.3s, color 0.3s, opacity 0.3s, visibility 0.3s;
}
.cb-nav svg { width: 17px; height: 17px; }
.cb-nav:hover { background: var(--gold); color: var(--black); }
.cb-next { right: -8px; }
.cb-prev { left: -8px; }
.cb-nav[disabled] { opacity: 0; visibility: hidden; pointer-events: none; }
@media (max-width: 1200px) { .cb-next { right: 0; } .cb-prev { left: 0; } }
@media (max-width: 980px) {
  .cb-inner { flex-direction: column; gap: 26px; }
  .cb-label { flex: 1 1 auto; }
  .cb-nav { width: 40px; height: 40px; }
}

.activity-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  flex: 0 0 260px; aspect-ratio: 3/4; scroll-snap-align: start; background: var(--charcoal);
}
.activity-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.activity-card:hover img, .activity-card:focus-visible img { transform: scale(1.08); }
.activity-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 18px;
}
.activity-card h3 { color: var(--white); font-size: 0.98rem; font-weight: 600; line-height: 1.3; }
.activity-card .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(6px);
  color: var(--white); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 10px; border-radius: var(--radius-pill); text-transform: uppercase;
}
@media (max-width: 640px) { .activity-card { flex-basis: 210px; } }

/* ---------- Fleet ---------- */
.fleet { background: var(--white); }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fleet-card {
  border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.fleet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.fleet-visual {
  aspect-ratio: 16/10; background: linear-gradient(150deg, var(--cream-dim), var(--gray-light));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.fleet-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.fleet-card:hover .fleet-visual img { transform: scale(1.06); }
.fleet-card-body { padding: 20px 22px 24px; }
.fleet-card-body h4 { font-size: 1.05rem; margin-bottom: 4px; }
.fleet-card-body span { font-size: 0.82rem; color: var(--gray); }
@media (max-width: 980px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Why choose us ---------- */
.why { background: var(--green-dark); color: var(--white); position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: 0; opacity: 0.25;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 24px 24px;
}
.why .container { position: relative; }
.why .section-head h2, .why .section-head p { color: var(--white); }
.why .section-head p { color: rgba(255,255,255,0.72); }
.why .eyebrow { background: rgba(255,255,255,0.14); color: var(--gold-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 26px 22px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.why-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-6px); }
.why-card .icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gold);
  color: var(--black); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.why-card .icon svg { width: 22px; height: 22px; }
.why-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.68); }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Gallery cards (uses .carousel-band above) ---------- */
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  flex: 0 0 300px; aspect-ratio: 4/3; scroll-snap-align: start; background: var(--charcoal);
}
.gallery-item .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.6s var(--ease); }
.gallery-item:hover .ph, .gallery-item:focus-visible .ph { transform: scale(1.1); }
.gallery-item .ph svg { width: 34px; height: 34px; color: rgba(255,255,255,0.5); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
}
.gallery-item span {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
}
.gallery-item .zoom {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.7); transition: all 0.3s var(--ease);
}
.gallery-item:hover .zoom, .gallery-item:focus-visible .zoom { opacity: 1; transform: scale(1); }
.gallery-item .zoom svg { width: 14px; height: 14px; color: var(--white); }
@media (max-width: 640px) { .gallery-item { flex-basis: 240px; } }

.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(10,9,8,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-box {
  background: linear-gradient(150deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg); width: min(600px, 90vw); aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center; gap: 14px; padding: 30px;
}
.lightbox-box svg { width: 50px; height: 50px; opacity: 0.8; }
.lightbox-close {
  position: absolute; top: 28px; right: 34px; color: var(--white);
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close svg { width: 18px; height: 18px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--white); }
.review-track-wrap { overflow: hidden; }
.review-track { display: flex; gap: 24px; transition: transform 0.6s var(--ease); }
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--cream); border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.review-stars { display: flex; gap: 3px; color: var(--gold); }
.review-stars svg { width: 16px; height: 16px; }
.review-card p { color: var(--charcoal); font-size: 0.98rem; font-style: italic; flex: 1; }
.review-person { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green)); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
}
.review-person strong { display: block; font-size: 0.9rem; }
.review-person span { font-size: 0.78rem; color: var(--gray); }
.review-controls { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.review-controls button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.review-controls button:hover { background: var(--gold); border-color: var(--gold); }
.review-controls button svg { width: 16px; height: 16px; }
@media (max-width: 980px) { .review-card { flex: 0 0 100%; } }

/* ---------- Booking ---------- */
.booking { background: var(--cream-dim); position: relative; overflow: hidden; }
.booking-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.booking-info h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 18px; }
.booking-info p { color: var(--gray); margin-bottom: 30px; }
.booking-steps { display: grid; gap: 20px; }
.booking-steps li { display: flex; gap: 16px; align-items: flex-start; }
.booking-steps .num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--black); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700;
  font-size: 0.9rem; flex-shrink: 0;
}
.booking-steps strong { display: block; font-size: 0.96rem; margin-bottom: 2px; }
.booking-steps span { font-size: 0.84rem; color: var(--gray); }

.booking-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; color: var(--charcoal);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.78rem; color: var(--gray); margin-top: 14px; text-align: center; }
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px; }
}

/* ---------- Contact ---------- */
.contact { background: var(--black); color: var(--white); }
.contact .section-head h2, .contact .section-head p { color: var(--white); }
.contact .section-head p { color: rgba(255,255,255,0.62); }
.contact .eyebrow { background: rgba(224,165,38,0.18); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-cards { display: grid; gap: 18px; align-content: start; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 22px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.contact-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.contact-card .icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--gold);
  color: var(--black); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .icon svg { width: 20px; height: 20px; }
.contact-card strong { display: block; margin-bottom: 4px; font-size: 0.98rem; }
.contact-card span, .contact-card a { font-size: 0.86rem; color: rgba(255,255,255,0.65); }
.contact-card a:hover { color: var(--gold-light); }
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
  min-height: 340px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.3) contrast(1.05); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #0d0c0a; color: rgba(255,255,255,0.7); padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: background 0.3s, transform 0.3s;
}
.social-row a:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.social-row a svg { width: 16px; height: 16px; }
.footer-col h5 { color: var(--white); font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.86rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  animation: waPulse 2.6s ease-in-out infinite;
}
.float-whatsapp svg { width: 28px; height: 28px; color: var(--white); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.12); }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 100px; right: 26px; z-index: 1500;
  background: var(--black); color: var(--white); padding: 14px 20px; border-radius: var(--radius-md);
  font-size: 0.86rem; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(10px); transition: all 0.35s var(--ease); pointer-events: none;
  max-width: 280px;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .float-whatsapp { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .float-whatsapp svg { width: 24px; height: 24px; }
}
