/* ═══════════════════════════════════════════════════
   THEKKADY TRIPS — "Midnight Jungle" Dark Theme (v6)
   Design System: Deep Dark, Amber Accent, Glassmorphism
   Font: Plus Jakarta Sans + Cormorant Garamond
   Fully Responsive for Desktop, Tablet & Mobile
   ═══════════════════════════════════════════════════ */

:root {
  /* ── Light Sandy Backgrounds ── */
  --bg-primary:    #090e0b;
  --bg-secondary:  #0d1410;
  --bg-tertiary:   #101810;
  --surface-card:  #111a15;
  --surface-raised:#152019;
  --surface-glass: rgba(255,255,255,0.04);

  /* ── Text ── */
  --text-primary:  #f0f5f2;
  --text-secondary:#9db8ac;
  --text-muted:    #607870;
  --text-light:    #f0f5f2;

  /* ── Orange Accent (CTAs) ── */
  --amber-500:     #f59e0b;
  --amber-400:     #fbbf24;
  --amber-600:     #d97706;
  --amber-100:     #fef3c7;

  /* ── Olive / Jungle Greens ── */
  --jungle-950:    #071410;
  --jungle-900:    #0c2018;
  --jungle-800:    #133322;
  --jungle-700:    #1a472e;
  --jungle-600:    #226040;
  --jungle-500:    #2d8055;
  --jungle-400:    #3da66e;
  --jungle-300:    #5ec48a;

  /* ── Gold (stars / ratings) ── */
  --gold-500:      #eab308;
  --gold-400:      #facc15;

  /* ── WhatsApp ── */
  --wa-green:      #25D366;
  --wa-dark:       #128C7E;

  /* ── Borders ── */
  --border-subtle: #1a2e22;
  --border-card:   #1e3028;
  --border-glass:  rgba(255,255,255,0.08);

  /* ── Shadows ── */
  --shadow-card:   0 4px 24px rgba(0,0,0,0.45);
  --shadow-hover:  0 12px 40px rgba(0,0,0,0.65);
  --shadow-amber:  0 0 24px rgba(245,158,11,0.25);

  /* ── Typography ── */
  --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;
  --font-heading:  'Plus Jakarta Sans', system-ui, sans-serif;

  /* ── Radius ── */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* ── Transitions ── */
  --trans-base:    all 0.25s ease;
  --trans-slow:    all 0.4s cubic-bezier(.25,.8,.25,1);

  /* ── Forest Green (eco sections) ── */
  --forest-400:    #34d399;
  --forest-500:    #10b981;
  --forest-600:    #059669;
  --forest-bg:     rgba(16,185,129,0.07);
  --forest-border: rgba(16,185,129,0.2);
  --shadow-forest: 0 0 24px rgba(16,185,129,0.18);

  /* ── Terracotta / Trail Orange ── */
  --terra-400:     #fb923c;
  --terra-500:     #f97316;
  --terra-600:     #ea580c;
  --terra-bg:      rgba(249,115,22,0.07);
  --terra-border:  rgba(232,93,4,0.25);
  --shadow-terra:  0 0 24px rgba(232,93,4,0.18);

  /* ── Botanical (used in subpages) ── */
  --botanical-800: #133322;
  --botanical-600: #226040;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


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

/* Universal box-sizing — prevents padding/border causing overflow */
*, *::before, *::after { box-sizing: border-box; }

/* ─── CONTAINER ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY HELPERS ──────────────────────── */
.section-tag {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  color: var(--amber-400);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-title .accent,
.section-title span { color: var(--amber-400); }

.section-sub {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

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

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: var(--trans-base);
  white-space: normal;     /* wrap text on very small screens */
  cursor: pointer;
  letter-spacing: 0.01em;
  text-align: center;
}

.btn-primary {
  background: var(--amber-500);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--amber-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.btn-accent {
  background: var(--amber-500);
  color: #0a0a0a;
}
.btn-accent:hover {
  background: var(--amber-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-glass);
}
.btn-outline:hover {
  border-color: var(--amber-500);
  color: var(--amber-400);
  background: rgba(245,158,11,0.07);
}

.btn-honey {
  background: #e91e8c;
  color: #fff;
}
.btn-honey:hover { background: #c2166f; transform: translateY(-2px); }

.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-xs { padding: 7px 14px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* Pulse glow animation for CTA */
.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════════════
   NAVBAR — STICKY GLASSMORPHISM
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--trans-slow);
  background: rgba(9,14,11,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.navbar.scrolled {
  background: rgba(9,14,11,0.88);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo-accent { color: var(--amber-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: 8px;
  transition: var(--trans-base);
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

/* Phone number in nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-400);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(245,158,11,0.25);
  white-space: nowrap;
  transition: var(--trans-base);
  text-decoration: none;
}
.nav-phone:hover {
  background: rgba(245,158,11,0.1);
  border-color: var(--amber-400);
}

.nav-cta {
  flex-shrink: 0;
  font-size: 13px;
  padding: 9px 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--trans-base);
}

.mobile-only-cta { display: none; }

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: var(--bg-primary);
  width: 100%;
  box-sizing: border-box;
}

/* ─── HERO PHOTO BACKGROUND ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;  /* jeeps are right-of-center — show them + mountains */
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: -8%;          /* oversized so zoom never clips */
  background-image: url('./assets/hero_main.jpg');
  background-size: cover;
  background-position: 60% center;
  will-change: transform;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1.00) translate(0%, 0%); }
  33%  { transform: scale(1.06) translate(-1.5%, 0.5%); }
  66%  { transform: scale(1.04) translate(1%, -0.5%); }
  100% { transform: scale(1.08) translate(-0.5%, 1%); }
}

/* ─── SUN GLOW PULSE ─────────────────────────────── */
/* Sun sits at roughly 62% left, 38% top of photo */
.hero-sun-glow {
  position: absolute;
  left: 58%;
  top: 32%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,220,60,0.55)  0%,
    rgba(255,140,0,0.30)  30%,
    rgba(255,80,0,0.12)   55%,
    transparent           75%
  );
  animation: sunPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

@keyframes sunPulse {
  0%   { transform: translate(-50%, -50%) scale(1.00); opacity: 0.75; }
  50%  { transform: translate(-50%, -50%) scale(1.18); opacity: 1.00; }
  100% { transform: translate(-50%, -50%) scale(1.00); opacity: 0.75; }
}

/* ─── CREPUSCULAR LIGHT RAYS ─────────────────────── */
/* Rays radiate from sun position */
.hero-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.ray {
  position: absolute;
  /* All rays originate at the sun position */
  left: 58%;
  top: 32%;
  width: 3px;
  height: 70vh;
  transform-origin: top center;
  background: linear-gradient(to bottom,
    rgba(255,200,60,0.22) 0%,
    rgba(255,160,30,0.08) 50%,
    transparent 100%
  );
  border-radius: 2px;
  animation: rayFlicker 6s ease-in-out infinite;
}

.ray-1 { transform: rotate(-55deg); animation-delay: 0s;    animation-duration: 5.5s; width: 4px; }
.ray-2 { transform: rotate(-30deg); animation-delay: 0.8s;  animation-duration: 6.2s; }
.ray-3 { transform: rotate(-10deg); animation-delay: 1.5s;  animation-duration: 4.8s; width: 2px; }
.ray-4 { transform: rotate(15deg);  animation-delay: 0.3s;  animation-duration: 7.0s; }
.ray-5 { transform: rotate(38deg);  animation-delay: 1.2s;  animation-duration: 5.2s; width: 2px; }
.ray-6 { transform: rotate(60deg);  animation-delay: 2.0s;  animation-duration: 6.5s; }

@keyframes rayFlicker {
  0%   { opacity: 0.0; }
  20%  { opacity: 0.9; }
  40%  { opacity: 0.5; }
  60%  { opacity: 1.0; }
  80%  { opacity: 0.4; }
  100% { opacity: 0.0; }
}

/* ─── ATMOSPHERIC SHIMMER ────────────────────────── */
/* A slow warm haze that drifts across the scene */
.hero-shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 60% 38%,
    rgba(255,160,30,0.09) 0%,
    rgba(255,100,0,0.04)  40%,
    transparent           70%
  );
  animation: shimmerDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmerDrift {
  0%   { opacity: 0.6; transform: scale(1.00); }
  50%  { opacity: 1.0; transform: scale(1.05) translate(1%, -0.5%); }
  100% { opacity: 0.7; transform: scale(0.98) translate(-1%, 0.5%); }
}

/* Heavy dark gradient — text always pops */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Bottom fade — darkens ground so text & stats pop */
    linear-gradient(to bottom,
      rgba(5,10,7,0.50)  0%,
      rgba(5,10,7,0.20) 35%,
      rgba(5,10,7,0.65) 75%,
      rgba(5,10,7,0.95) 100%
    ),
    /* Left-to-right: heavy on left for text readability */
    linear-gradient(to right,
      rgba(5,10,7,0.80) 0%,
      rgba(5,10,7,0.40) 45%,
      rgba(5,10,7,0.10) 70%,
      rgba(5,10,7,0.00) 100%
    );
  z-index: 3;
}

/* Raise particles above overlay */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  animation: floatUp linear infinite;
  pointer-events: none;
}

@keyframes floatUp {
  to { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.hero-wrapper {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: 100%;        /* never escape the container */
  box-sizing: border-box;
}

.hero-content {
  max-width: 620px;
  width: 100%;
  min-width: 0;           /* critical: prevents grid cell from overflowing */
  box-sizing: border-box;
}

.hero-brand-emblem {
  margin-bottom: 20px;
}
.hero-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Live ticker */
.live-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--wa-green);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.ticker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wa-green);
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-accent { color: var(--amber-400); }

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Service pills */
.hero-services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--trans-base);
}
.pill:hover, .pill-primary {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.35);
  color: var(--amber-400);
}

/* Hero actions */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  width: fit-content;       /* desktop: shrink to content */
  max-width: 100%;          /* never wider than viewport */
  box-sizing: border-box;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--amber-400);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-glass);
  flex-shrink: 0;
}

/* Hero visual / right column */
.hero-visual-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: calc(100vh - 160px);
  overflow: hidden;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.hero-frame-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.frame-overlay-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(9,14,11,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--amber-400);
}

/* Quick inquiry form card — Red & Green Theme */
.hero-form-card {
  background: linear-gradient(145deg, rgba(10,28,14,0.96) 0%, rgba(28,10,10,0.92) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(16,185,129,0.35);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(239,68,68,0.1), inset 0 1px 0 rgba(16,185,129,0.15);
  overflow-y: auto;
  flex-shrink: 1;
  min-height: 0;
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(16,185,129,0.2);
}
.form-card-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(16,185,129,0.3);
}
.form-card-header h3 {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}
.form-card-header p {
  font-size: 12px;
  color: #34d399;
}

/* Inquiry form */
.inquiry-form { display: flex; flex-direction: column; gap: 12px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 11px;
  font-weight: 800;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #f0f5f2;
  font-size: 14px;
  transition: var(--trans-base);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #10b981;
  background: rgba(16,185,129,0.06);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.form-group input::placeholder {
  color: rgba(160,200,180,0.4);
}
.form-group select option {
  background: #0d1f14;
  color: #f0f5f2;
}

/* Submit button inside form card — red accent */
#heroSubmitBtn {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(220,38,38,0.35);
  transition: all 0.25s ease;
  animation: none;
}
#heroSubmitBtn:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 6px 28px rgba(220,38,38,0.5);
  transform: translateY(-1px);
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounceDown 1.8s infinite;
}
@keyframes bounceDown { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ── HERO TRUST BADGES (floating glassmorphism row) ── */
.hero-trust-badges {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px;
  width: 100%;
  max-width: 900px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(9,14,11,0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: normal;   /* allow wrapping on small screens */
  transition: var(--trans-base);
}
.trust-badge:hover {
  border-color: var(--amber-400);
  background: rgba(9,14,11,0.85);
  transform: translateY(-2px);
}
.trust-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245,158,11,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-400);
}
.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.trust-badge-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.trust-badge-sub {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   SERVICES BAR
   ═══════════════════════════════════════════════════ */
.services-bar {
  background: var(--surface-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 0;
}
.services-row {
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}
.services-row::-webkit-scrollbar { display: none; }

.service-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  flex-shrink: 0;
  text-decoration: none;
  border-right: 1px solid var(--border-card);
  transition: var(--trans-base);
  color: var(--text-secondary);
}
.service-pill:hover {
  background: rgba(245,158,11,0.06);
  color: var(--text-primary);
}
.service-pill:last-child { border-right: none; }

.sp-icon-svg {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(245,158,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-400);
  transition: var(--trans-base);
}
.service-pill:hover .sp-icon-svg {
  background: rgba(245,158,11,0.18);
}

.service-pill div strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.service-pill div small {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   BENTO SAFARI CARDS SECTION
   ═══════════════════════════════════════════════════ */
.bento-safari-section {
  background: var(--bg-primary);
  overflow: hidden;
}

/* Ambient blobs */
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,128,85,0.35) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
  top: 40%; right: -80px;
}
.blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(45,128,85,0.2) 0%, transparent 70%);
  bottom: -60px; left: 40%;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: rgba(255,255,255,0.04);         /* glass tint instead of solid */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);   /* frosted border */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: var(--trans-slow);
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  border-color: rgba(245,158,11,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08), var(--shadow-amber);
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
}

/* Featured card spans full width of first two columns */
.bento-card--featured {
  grid-column: 1 / 3;
  flex-direction: row;
}
.bento-card--featured .bento-card__media {
  width: 42%;
  flex-shrink: 0;
  height: auto;
}
.bento-card--featured .bento-card__body {
  flex: 1;
}

/* Custom wide card */
.bento-card--custom {
  grid-column: 1 / -1;
  flex-direction: row;
}
.bento-card--custom .bento-card__media {
  width: 35%;
  flex-shrink: 0;
}
.bento-card--custom .bento-card__body {
  flex: 1;
}

/* Card media with zoom hover */
.bento-card__media {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.bento-card__media--sm { height: 180px; }

.bento-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1);
  display: block;
}
.bento-card:hover .bento-card__img {
  transform: scale(1.06);
}

/* Dark gradient rising from bottom of image */
.bento-card__media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(9,14,11,0.85) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease;
  opacity: 0.7;
}
.bento-card:hover .bento-card__media::after { opacity: 1; }

/* Floating tags */
.bento-floating-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bento-floating-tag--gold { background: var(--amber-500); color: #0a0a0a; }
.bento-floating-tag--teal { background: #0d9488; color: #fff; }
.bento-floating-tag--amber { background: #ea580c; color: #fff; }
.bento-floating-tag--red { background: #dc2626; color: #fff; }

/* Badge group */
.bento-badge-group {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.bento-meta-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(9,14,11,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* Card body */
.bento-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bento-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.bento-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.bento-card__title a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-base);
}
.bento-card__title a:hover { color: var(--amber-400); }

.bento-card__desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

/* Bullet list */
.bento-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.bento-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.bento-bullet-icon {
  color: var(--amber-400);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card footer */
.bento-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border-card);
  margin-top: auto;
}
.bento-price { display: flex; flex-direction: column; gap: 2px; }
.bento-price__label {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bento-price__val {
  font-size: 17px;
  font-weight: 900;
  color: var(--amber-400);
  letter-spacing: -0.02em;
}
.bento-price__val small {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.bento-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }

.bento-cta-detail {
  background: rgba(245,158,11,0.1);
  color: var(--amber-400);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 8px 14px;
  font-size: 12.5px;
}
.bento-cta-detail:hover {
  background: var(--amber-500);
  color: #0a0a0a;
  border-color: var(--amber-500);
}
.bento-cta-wa {
  background: var(--wa-green);
  color: #fff;
  padding: 8px 14px;
  font-size: 12.5px;
}
.bento-cta-wa:hover { background: #1db954; }

/* glass-card style (keeps original class working) */
.glass-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--radius-lg); }

/* ═══════════════════════════════════════════════════
   SAFARI COST CALCULATOR
   ═══════════════════════════════════════════════════ */
.calculator-section {
  background: var(--surface-card);
}

.calc-card {
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  box-shadow: var(--shadow-card);
}

.calc-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.calc-header p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.calc-field-group {
  margin-bottom: 20px;
}
.calc-field-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.calc-field-group select,
.calc-field-group input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: var(--trans-base);
}
.calc-field-group select:focus,
.calc-field-group input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.calc-field-group select option { background: var(--surface-card); }

/* Counter */
.counter-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.counter-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-base);
  cursor: pointer;
}
.counter-btn:hover {
  background: var(--amber-500);
  color: #0a0a0a;
  border-color: var(--amber-500);
}
.counter-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--amber-400);
  min-width: 28px;
  text-align: center;
}
.counter-hint {
  font-size: 12px;
  color: var(--text-muted);
}

/* Calculator result box */
.calc-result-box {
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}
.calc-price-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.calc-price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--amber-400);
  letter-spacing: -0.04em;
  line-height: 1;
}
.calc-price-breakdown {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
}

/* ═══════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════ */
.gallery-section { background: var(--bg-primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  cursor: pointer;
  group: true;
}
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(to top, rgba(9,14,11,0.9) 0%, transparent 100%);
  transform: translateY(8px);
  transition: var(--trans-base);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--amber-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.gallery-caption h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════
   SPECIAL TOUR PACKAGES
   ═══════════════════════════════════════════════════ */
.special-section { background: var(--surface-card); }

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

.special-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: var(--trans-slow);
}
.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.09), var(--shadow-amber);
  border-color: rgba(245,158,11,0.3);
  background: rgba(255,255,255,0.06);
}

.special-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.special-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.special-card:hover .special-card-img img { transform: scale(1.06); }

.special-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,14,11,0.8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.special-card-badge {
  background: var(--amber-500);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.special-card-body { padding: 20px; }
.special-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.special-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.honey-tag { background: rgba(233,30,140,0.15); color: #e91e8c; }
.family-tag { background: rgba(45,128,85,0.15); color: var(--jungle-400); }
.adventure-tag { background: rgba(245,158,11,0.15); color: var(--amber-400); }

.special-duration {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.special-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.special-card-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.special-highlights { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.sh-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.sh-icon { color: var(--amber-400); flex-shrink: 0; }

.special-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-card);
  flex-wrap: wrap;
}
.special-price { display: flex; flex-direction: column; gap: 2px; }
.sp-from {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sp-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--amber-400);
  letter-spacing: -0.02em;
}
.sp-price small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   PLANTATION & ELEPHANT EXPERIENCES SECTION
   ═══════════════════════════════════════════════════ */
.activities-section {
  background: var(--bg-secondary);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.activity-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: var(--trans-slow);
  display: flex;
  flex-direction: column;
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.09), var(--shadow-amber);
  border-color: rgba(245,158,11,0.3);
  background: rgba(255,255,255,0.06);
}
.activity-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.activity-card:hover .activity-card-img img { transform: scale(1.06); }
.activity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,14,11,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
}
.activity-card-badge {
  background: var(--amber-500);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.activity-tag-time {
  background: rgba(9,14,11,0.85);
  color: var(--amber-400);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(245,158,11,0.3);
  backdrop-filter: blur(4px);
}
.activity-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.activity-card-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.activity-card-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.activity-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.ah-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.ah-icon {
  color: var(--amber-400);
  flex-shrink: 0;
}
.activity-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-card);
  margin-top: auto;
  flex-wrap: wrap;
}
.activity-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.act-from {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.act-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--amber-400);
}
.act-price small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.activity-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   THEKKADY EVENING SHOWS & CULTURAL SECTION
   ═══════════════════════════════════════════════════ */
.evening-shows-section {
  background: var(--surface-card);
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.evening-shows-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.show-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: var(--trans-slow);
  display: flex;
  flex-direction: column;
}
.show-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.09), var(--shadow-amber);
  border-color: rgba(245,158,11,0.3);
  background: rgba(255,255,255,0.06);
}
.show-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #000;
}
.show-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.show-card:hover .show-card-img img { transform: scale(1.06); }
.show-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,14,11,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px;
}
.show-card-badge {
  background: var(--amber-500);
  color: #0a0a0a;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.show-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.show-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-400);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 10px;
  width: fit-content;
}
.show-card-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.35;
}
.show-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.show-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.sf-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}
.sf-icon {
  color: var(--amber-400);
  flex-shrink: 0;
}
.show-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-card);
  margin-top: auto;
}
.show-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--amber-400);
}
.show-price small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}

/* ═══════════════════════════════════════════════════
   STAY SECTION
   ═══════════════════════════════════════════════════ */
.stay-section {
  background: var(--bg-primary);
  position: relative;
}
.stay-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(45,128,85,0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.stay-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans-slow);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.stay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.09), var(--shadow-forest);
  border-color: var(--forest-border);
  background: rgba(255,255,255,0.06);
}

.stay-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.stay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.stay-card:hover .stay-img { transform: scale(1.06); }

.stay-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(9,14,11,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.stay-badge-popular { background: var(--amber-500); color: #0a0a0a; border-color: transparent; }
.stay-badge-luxury { background: linear-gradient(135deg, #8b5cf6, #6d28d9); color: #fff; border-color: transparent; }

.stay-body { padding: 20px; }
.stay-type {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.stay-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stay-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.stay-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.stay-amenities span {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.stay-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-card);
}
.stay-price {
  font-size: 17px;
  font-weight: 900;
  color: var(--amber-400);
}
.stay-price small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   BIKE RENTAL
   ═══════════════════════════════════════════════════ */
.bike-section { background: var(--surface-card); }

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

.bike-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans-slow);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}
.bike-card:hover {
  transform: translateY(-5px);
  border-color: var(--terra-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.09), var(--shadow-terra);
  background: rgba(255,255,255,0.06);
}

.bike-img-box {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.activa-bg { background: linear-gradient(135deg, #0f2418 0%, #1a3d28 100%); }
.bullet-bg { background: linear-gradient(135deg, #1a1208 0%, #3d2810 100%); }
.himalayan-bg { background: linear-gradient(135deg, #0f1c2a 0%, #1a3050 100%); }

.bike-img-box svg { color: var(--amber-400); opacity: 0.7; }

.bike-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.bike-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.bike-name-row h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.bike-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(245,158,11,0.1);
  color: var(--amber-400);
  white-space: nowrap;
}
.badge-popular-bike { background: rgba(37,211,102,0.12); color: var(--wa-green); }
.badge-adventure-bike { background: rgba(99,102,241,0.12); color: #818cf8; }

.bike-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.bike-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.spec-item strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
}
.spec-item small {
  font-size: 11.5px;
  color: var(--text-muted);
}

.bike-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-card);
}
.bike-price {
  font-size: 17px;
  font-weight: 900;
  color: var(--amber-400);
}
.bike-price small {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   KERALA DESTINATIONS
   ═══════════════════════════════════════════════════ */
.destinations-section {
  background: var(--bg-primary);
  position: relative;
}
.dest-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(45,128,85,0.09) 0%, transparent 55%);
  pointer-events: none;
}

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

.dest-card {
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--trans-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jungle-500), var(--amber-500));
  opacity: 0;
  transition: var(--trans-base);
}
.dest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.25);
  box-shadow: var(--shadow-hover);
}
.dest-card:hover::before { opacity: 1; }

.dest-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.dest-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.dest-content strong { color: var(--amber-400); font-weight: 700; }

.dest-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--border-card);
}
.dest-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--amber-400);
}

/* ═══════════════════════════════════════════════════
   HIGHLIGHTS / WHY US
   ═══════════════════════════════════════════════════ */
.highlights-section {
  background: var(--surface-card);
  position: relative;
}
.highlights-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(45,128,85,0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.highlight-card {
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--trans-slow);
  box-shadow: var(--shadow-card);
}
.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.25);
  box-shadow: var(--shadow-hover);
}

.hl-icon-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.hl-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-400);
  transition: var(--trans-base);
}
.highlight-card:hover .hl-icon {
  background: var(--amber-500);
  color: #0a0a0a;
}

.highlight-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.highlight-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   REVIEWS — MASONRY GRID
   ═══════════════════════════════════════════════════ */
.reviews-section { background: var(--bg-primary); }

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.stars {
  color: var(--gold-400);
  font-size: 20px;
  letter-spacing: 3px;
}
.rating-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
}
.rating-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Masonry grid for reviews */
.reviews-masonry {
  columns: 2;
  column-gap: 20px;
  margin-bottom: 36px;
}

.review-card {
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  break-inside: avoid;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  transition: var(--trans-slow);
}
.review-card:hover {
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Gold star icons */
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-stars svg {
  color: var(--gold-400);
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-card);
}

/* Circular avatar */
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jungle-700), var(--amber-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid var(--border-card);
}

.reviewer strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.reviewer span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Legacy carousel class kept but hidden on desktop, shown as masonry */
.reviews-carousel-wrap { display: none; }

/* CTA row below reviews */
.reviews-cta-row {
  text-align: center;
  padding-top: 12px;
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact-section { background: var(--surface-card); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-card);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(245,158,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-400);
}

.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--amber-400);
  text-decoration: none;
  transition: var(--trans-base);
}
.contact-link:hover { color: var(--amber-500); text-decoration: underline; }

.contact-item span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-cta-group {
  margin-top: 20px;
}

/* Map */
.map-wrap {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
}
.map-label {
  background: var(--surface-card);
  border-top: 1px solid var(--border-card);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Contact form */
.contact-form-wrap {
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.contact-form-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.contact-form-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--jungle-800);
  border-top: 1px solid var(--border-card);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-card);
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--trans-base);
  font-weight: 500;
}
.footer-links-col a:hover { color: var(--amber-400); }

.footer-contact-col { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 500;
}
.footer-contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--trans-base);
}
.footer-contact-item a:hover { color: var(--amber-400); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-content {
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.7);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 22px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--trans-base);
  z-index: 2;
  line-height: 1;
}
.modal-close:hover { color: var(--text-primary); }

.modal-body { padding: 32px; }

.modal-header-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-card);
}
.modal-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}
.modal-header-box h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.modal-header-box p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.modal-form { display: flex; flex-direction: column; gap: 14px; }

/* ═══════════════════════════════════════════════════
   FLOATING ACTION BAR
   ═══════════════════════════════════════════════════ */
.floating-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  background: rgba(9,14,11,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  padding: 10px 16px;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1);
}
.floating-bar.visible { transform: translateY(0); }

.float-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.float-call {
  background: rgba(245,158,11,0.15);
  color: var(--amber-400);
  border: 1.5px solid rgba(245,158,11,0.3);
}
.float-call:hover { background: var(--amber-500); color: #0a0a0a; border-color: transparent; }

.float-whatsapp {
  background: var(--wa-green);
  color: #fff;
}
.float-whatsapp:hover { background: #1db954; }

/* ═══════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-card); border: 1px solid var(--border-card);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9000;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-icon { color: var(--wa-green); }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-up animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.animate-slide-left {
  opacity: 0;
  transform: translateX(40px);
  animation: slideLeft 0.75s 0.3s forwards;
}
@keyframes slideLeft { to { opacity: 1; transform: translateX(0); } }

/* ═══════════════════════════════════════════════════
   VISUAL UPGRADES — GRADIENT MESHES, COLOR PSYCHOLOGY
   & WATERMARK UTILITY
   ═══════════════════════════════════════════════════ */

/* ── 1. GRADIENT MESH BACKGROUNDS ───────────────────
   Each major section gets a subtle radial gradient
   mesh to break up the flat solid black.
   All meshes are purely decorative; pointer-events:none
   so they never interfere with click targets.
   ─────────────────────────────────────────────────── */

/* Bento safari section — dual green + amber mesh */
.bento-safari-section {
  background:
    radial-gradient(ellipse 70% 55% at top right,  rgba(16,185,129,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at bottom left, rgba(245,158,11,0.04) 0%, transparent 60%),
    var(--bg-primary);
}

/* Calculator section — cool blue-ish depth mesh */
.calculator-section {
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(45,128,85,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(15,23,42,0.8) 0%, transparent 70%),
    var(--bg-secondary);
}

/* Gallery section — warm amber mesh from top right */
.gallery-section {
  background:
    radial-gradient(ellipse 55% 45% at top right, rgba(245,158,11,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at bottom left,rgba(16,185,129,0.04) 0%, transparent 55%),
    var(--bg-primary);
}

/* Special packages — pink/honey accent mesh */
.special-section {
  background:
    radial-gradient(ellipse 50% 50% at 15% 60%, rgba(45,128,85,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 45% at 85% 20%, rgba(233,30,140,0.04) 0%, transparent 55%),
    var(--bg-secondary);
}

/* Stay section — rich emerald mesh (nature/eco) */
.stay-section {
  background:
    radial-gradient(ellipse 65% 55% at 70% 50%,  rgba(16,185,129,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 20%,  rgba(7,20,16,0.9) 0%, transparent 60%),
    var(--bg-primary);
}

/* Bike rental — warm terracotta mesh (high-energy) */
.bike-section {
  background:
    radial-gradient(ellipse 55% 50% at top left,  rgba(249,115,22,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at bottom right, rgba(45,128,85,0.05) 0%, transparent 55%),
    var(--bg-secondary);
}

/* Destinations / highlights / reviews — alternating deep meshes */
.destinations-section {
  background:
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(16,185,129,0.06) 0%, transparent 60%),
    var(--bg-primary);
}
.highlights-section {
  background:
    radial-gradient(ellipse 55% 45% at 20% 40%, rgba(245,158,11,0.05) 0%, transparent 55%),
    var(--bg-secondary);
}
.reviews-section {
  background:
    radial-gradient(ellipse 50% 50% at 60% 30%, rgba(16,185,129,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245,158,11,0.04) 0%, transparent 50%),
    var(--bg-primary);
}
.contact-section {
  background:
    radial-gradient(ellipse 55% 50% at 85% 50%, rgba(16,185,129,0.06) 0%, transparent 60%),
    var(--bg-secondary);
}


/* ── 2. COLOR PSYCHOLOGY — SECTION-SPECIFIC ACCENTS ─
   Forest green (#34d399) = nature, eco-tourism, Gavi
   Terracotta orange (#fb923c) = 4x4, off-road, trails
   ─────────────────────────────────────────────────── */

/* ECO / NATURE cards: Gavi, Stay, Gallery eco items
   Apply .eco-card to any card for forest green accent */
.eco-card .bento-card__tag,
.eco-card .stay-type,
.eco-card .bento-bullet-icon { color: var(--forest-400); }

.eco-card:hover {
  border-color: var(--forest-border) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6),
              inset 0 1px 0 rgba(255,255,255,0.08),
              var(--shadow-forest) !important;
}

.eco-tag {
  background: var(--forest-bg);
  color: var(--forest-400);
  border: 1px solid var(--forest-border);
}

/* 4x4 / HIGH-ENERGY cards: Parumpara, Angamoozhy, Bike
   Apply .trail-card to any card for terracotta accent */
.trail-card .bento-card__tag,
.trail-card .stay-type,
.trail-card .bento-bullet-icon { color: var(--terra-400); }

.trail-card:hover {
  border-color: var(--terra-border) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6),
              inset 0 1px 0 rgba(255,255,255,0.08),
              var(--shadow-terra) !important;
}

.trail-tag {
  background: var(--terra-bg);
  color: var(--terra-400);
  border: 1px solid var(--terra-border);
}

/* Section-level accent override for bullet icons */
.bento-safari-section .bento-card.eco-card .bento-price__val  { color: var(--forest-400); }
.bento-safari-section .bento-card.trail-card .bento-price__val { color: var(--terra-400); }

/* Forest green highlight for nature-related tag text */
.forest-accent { color: var(--forest-400); }
.terra-accent  { color: var(--terra-400); }

/* Refined section header accent spans for multi-color headings */
.section-title .forest-span { color: var(--forest-400); }
.section-title .terra-span  { color: var(--terra-400); }

/* Stay section hover — green forest glow already set above on .stay-card */
/* Bike section — service pill icon turns terracotta on hover */
.bike-section .service-pill:hover .sp-icon-svg { color: var(--terra-400); background: var(--terra-bg); }


/* ── 3. WATERMARK UTILITY ────────────────────────────
   Drop any SVG, PNG, or text inside .watermark-layer
   and it will render as a low-opacity, non-interactive
   background watermark for the parent section.
   Usage: add position:relative to the section, then
   place <div class="watermark-layer"> as first child
   with your image or SVG inside it.
   ─────────────────────────────────────────────────── */
.watermark-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Large centered watermark (e.g. jeep silhouette) */
.watermark-layer img,
.watermark-layer svg {
  width: 55%;
  max-width: 640px;
  height: auto;
  opacity: 0.04;          /* barely-there ghost — adjust to taste */
  filter: grayscale(1) brightness(2);
  pointer-events: none;
  user-select: none;
}

/* Corner badge watermark (e.g. brand logo, bottom-right) */
.watermark-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 120px;
  height: auto;
  opacity: 0.05;
  filter: grayscale(1) brightness(2);
  pointer-events: none;
  user-select: none;
}

/* Top-left badge watermark */
.watermark-badge--tl {
  bottom: auto;
  top: 40px;
  left: 40px;
  right: auto;
}

/* How to use:
   <section class="bento-safari-section section" style="position:relative;">
     <div class="watermark-layer">
       <img src="assets/jeep_action.png" alt="" aria-hidden="true" />
     </div>
     ... rest of content ...
   </section>
*/

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual-col {
    display: flex;
    max-height: none;
    overflow: visible;
  }
  .hero-image-frame { display: none; }   /* hide image frame, keep form */
  .hero-form-card { width: 100%; }
  .hero-content { max-width: 100%; }
  .hero { max-height: none; overflow: visible; padding-bottom: 48px; }
  .hero-title { font-size: clamp(2.2rem, 6vw, 3.2rem); }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--featured { grid-column: 1 / -1; }
  .bento-card--custom { grid-column: 1 / -1; }

  .special-grid { grid-template-columns: 1fr 1fr; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .evening-shows-grid { grid-template-columns: 1fr 1fr; }
  .stay-grid { grid-template-columns: 1fr 1fr; }
  .bike-grid { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .calc-card { grid-template-columns: 1fr; gap: 28px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(9,14,11,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-card);
    padding: 20px 24px;
    gap: 4px;
    z-index: 999;
  }
  .nav-link { padding: 12px 14px; border-radius: 8px; }
  .hamburger { display: flex; }
  .mobile-only-cta { display: block; padding: 12px 0 4px; }
  .nav-phone { display: none; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 640px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }

  /* ── Bug 1 Fix: enforce padding & no-overflow on all containers ── */
  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* ── Bug 1 Fix: hero layout ── */
  .hero {
    padding: 90px 0 32px;    /* trust badges now in-flow, no bottom clearance needed */
    min-height: 100svh;       /* use svh so mobile browser chrome doesn't clip */
    flex-direction: column;   /* stack hero-wrapper + trust-badges vertically */
    align-items: stretch;
    justify-content: flex-start;
  }

  /* ── Hero image — mobile framing for the tea plantation + jeep shot ── */
  .hero-bg-img {
    object-position: 70% 65%;  /* pan right+down: jeeps (right side) + mountain backdrop */
  }

  /* ── Stronger overlay on mobile — brighter image needs more contrast for text ── */
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(5,10,7,0.60)  0%,
        rgba(5,10,7,0.30) 30%,
        rgba(5,10,7,0.75) 70%,
        rgba(5,10,7,0.97) 100%
      ),
      linear-gradient(to right,
        rgba(5,10,7,0.90) 0%,
        rgba(5,10,7,0.55) 50%,
        rgba(5,10,7,0.15) 80%,
        rgba(5,10,7,0.00) 100%
      );
  }

  /* ── Bug 1 Fix: hero text must respect container padding ── */
  .hero-title {
    font-size: 1.9rem;
    word-break: break-word;   /* prevent long words from escaping left */
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .hero-sub {
    font-size: 14.5px;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .live-ticker {
    font-size: 11px;
    max-width: 100%;
    white-space: normal;       /* allow ticker text to wrap on very small screens */
    flex-wrap: wrap;
  }

  /* ── Bug 2 Fix: stats box — switch to proper column stack, no overlap ── */
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    width: 100%;              /* full width, not fit-content — prevents overflow */
    max-width: 100%;
    box-sizing: border-box;
    position: relative;       /* ensure it's in normal document flow */
    margin-top: 8px;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }

  /* ── Bug 2 Fix: trust badges — pull out of absolute position on mobile ── */
  .hero-trust-badges {
    position: static;          /* no longer absolute on mobile */
    transform: none;
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0 16px 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 24px;
    z-index: 4;
  }
  .trust-badge {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ── hero-wrapper single column ── */
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;                /* let container handle padding */
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  /* ── hero actions ── */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── hero-scroll-hint: hide on mobile to avoid clutter ── */
  .hero-scroll-hint { display: none; }

  /* ── rest of mobile layout ── */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--featured { flex-direction: column; }
  .bento-card--featured .bento-card__media { width: 100%; }
  .bento-card--custom { flex-direction: column; }
  .bento-card--custom .bento-card__media { width: 100%; }

  .reviews-masonry { columns: 1; }

  .special-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .evening-shows-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
  .bike-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-services-pills { gap: 6px; }
  .section-title { font-size: 1.7rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .services-row { padding: 0; }
  .service-pill { padding: 14px 16px; gap: 10px; }
  .bento-card__footer { flex-direction: column; align-items: flex-start; }
  .bento-card__actions { width: 100%; }
  .bento-cta-detail, .bento-cta-wa { flex: 1; justify-content: center; }

  .calc-card { padding: 24px; }
  .nav-cta { display: none; }

  /* ── Activity / package card images — uniform height on mobile ── */
  .activity-card-img img,
  .activity-card-img { height: 200px; }

  /* ── Bento card media — taller on single column ── */
  .bento-card__media { height: 220px; }

  /* ── Special packages / evening shows cards ── */
  .special-card-img, .show-card-img { height: 200px; }
  .special-card-img img, .show-card-img img { width: 100%; height: 100%; object-fit: cover; }

  /* ── Section header reduced spacing ── */
  .section-header { margin-bottom: 32px; }
  .section-sub { font-size: 14px; }

  /* ── Prevent any fixed-width inner elements from overflowing ── */
  .hero-form-card, .booking-widget-card { box-sizing: border-box; width: 100%; }

  /* ── Prevent bento footer actions overflowing ── */
  .bento-cta-detail, .bento-cta-wa { min-width: 0; font-size: 12px; padding: 8px 10px; }

  /* ── Contact form row always single column on mobile ── */
  .form-row { display: flex; flex-direction: column; gap: 12px; }

  /* ── Inquiry form inside hero: full width selects ── */
  .inquiry-form select, .inquiry-form input, .contact-form select, .contact-form input { width: 100%; box-sizing: border-box; }

  /* ── Modal ── */
  .modal-content { margin: 12px; width: calc(100% - 24px); max-height: 88vh; overflow-y: auto; }
  .modal-body { padding: 20px; }

  /* ── Footer ── */
  .footer-links-col h4 { margin-top: 8px; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max 430px)
   Covers iPhone SE, Pixel 6a, Galaxy A series (360–430px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 430px) {

  /* ── Reduce container padding for narrow screens ── */
  .container { padding: 0 14px; }

  /* ── Hero heading — prevent clipping ── */
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.12;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .hero-sub { font-size: 13.5px; }
  .hero { padding: 84px 0 28px; min-height: 100svh; }

  /* ── Hero image — tighter crop for narrow phones (360–430px portrait) ── */
  .hero-bg-img {
    object-position: 75% 70%;  /* tightly frame the two black jeeps against the mountain */
  }

  /* ── Overlay — maximum contrast on small screens ── */
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(5,10,7,0.65)  0%,
        rgba(5,10,7,0.35) 30%,
        rgba(5,10,7,0.80) 65%,
        rgba(5,10,7,0.98) 100%
      ),
      linear-gradient(to right,
        rgba(5,10,7,0.95) 0%,
        rgba(5,10,7,0.60) 55%,
        rgba(5,10,7,0.20) 80%,
        rgba(5,10,7,0.00) 100%
      );
  }


  /* ── CTA buttons — touch-friendly full width ── */
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;   /* ≥44px touch target */
    font-size: 14px;
  }

  /* ── Pills — smaller on narrow phones ── */
  .pill { font-size: 11px; padding: 5px 10px; }
  .hero-services-pills { gap: 5px; }

  /* ── Live ticker ── */
  .live-ticker { font-size: 10.5px; padding: 5px 10px; }

  /* ── Stats bar ── */
  .hero-stats { padding: 12px 14px; gap: 10px; }
  .stat-num { font-size: 14px; }
  .stat-label { font-size: 11px; }

  /* ── Trust badges — compact on narrow phones ── */
  .trust-badge { padding: 8px 14px; gap: 8px; }
  .trust-badge-icon { width: 24px; height: 24px; }
  .trust-badge-title { font-size: 12px; }
  .trust-badge-sub { font-size: 10px; }

  /* ── Section typography ── */
  .section-title { font-size: 1.55rem; letter-spacing: -0.02em; }
  .section-tag { font-size: 10.5px; }
  .section { padding: 52px 0; }

  /* ── Navbar ── */
  .nav-container { padding: 0 14px; gap: 10px; }
  .logo-text { font-size: 16px; }
  .nav-logo-img { width: 30px; height: 30px; }

  /* ── Bento card body ── */
  .bento-card__body { padding: 14px; }
  .bento-card__title { font-size: 15px; }
  .bento-card__desc { font-size: 13px; }
  .bento-price__val { font-size: 15px; }

  /* ── Activity card body ── */
  .activity-card-body { padding: 14px; }
  .activity-card-body h3 { font-size: 15px; }
  .activity-card-body p { font-size: 13px; }

  /* ── Btn sizes — smaller xs buttons ── */
  .btn-xs { padding: 8px 12px; font-size: 11.5px; }
  .btn-sm { padding: 10px 16px; font-size: 13px; }

  /* ── Calculator card ── */
  .calc-card { padding: 18px; }
  .calc-header h3 { font-size: 1.4rem; }

  /* ── Service pills scroll bar ── */
  .service-pill { padding: 12px 14px; gap: 8px; }
  .sp-icon-svg { width: 34px; height: 34px; }
  .service-pill div strong { font-size: 12.5px; }
  .service-pill div small { font-size: 10.5px; }

  /* ── Contact section ── */
  .contact-grid { gap: 24px; }

  /* ── Gallery grid — keep 2-col but compact ── */
  .gallery-grid { gap: 8px; }

  /* ── Review cards ── */
  .review-text { font-size: 13px; }

  /* ── Footer ── */
  .footer { padding: 40px 0 24px; }
  .footer-grid { gap: 20px; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — ULTRA-NARROW PHONES (max 360px)
   Covers Galaxy A03, budget Android phones
   ═══════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }
  .logo-text { font-size: 14px; }
  .nav-logo-img { width: 26px; height: 26px; }
  .btn-lg { padding: 12px 18px; font-size: 13.5px; }
  .hero-actions .btn { padding: 13px 16px; }
  .trust-badge { padding: 7px 12px; }
  .pill { font-size: 10.5px; padding: 4px 9px; }
  .bento-card__body { padding: 12px; }
  .activity-card-body { padding: 12px; }

  /* ── Hero image — ultra-narrow: focus on the jeeps + immediate mountain backdrop ── */
  .hero-bg-img {
    object-position: 80% 72%;
  }
  /* ── Full-black bottom on smallest screens — text must always be readable ── */
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(5,10,7,0.70)  0%,
        rgba(5,10,7,0.40) 30%,
        rgba(5,10,7,0.85) 65%,
        rgba(5,10,7,1.00) 100%
      ),
      linear-gradient(to right,
        rgba(5,10,7,0.97) 0%,
        rgba(5,10,7,0.65) 55%,
        rgba(5,10,7,0.25) 80%,
        rgba(5,10,7,0.00) 100%
      );
  }
}


/* ═══════════════════════════════════════════════════
   SAFARI DETAIL SUBPAGES (Gavi, Sathram, etc.)
   ═══════════════════════════════════════════════════ */

.detail-header-bar {
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-card);
  padding: 14px 0;
}

.detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.detail-breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--trans-base);
}
.detail-breadcrumbs a:hover { color: var(--amber-400); }
.crumb-sep { color: var(--text-muted); opacity: 0.6; }
.detail-breadcrumbs .current {
  color: var(--amber-400);
  font-weight: 700;
}

/* Detail Hero */
.detail-hero {
  padding: 50px 0 60px;
  background: radial-gradient(ellipse 65% 50% at 85% 20%, rgba(16,185,129,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 10% 80%, rgba(245,158,11,0.05) 0%, transparent 55%),
              var(--bg-primary);
  border-bottom: 1px solid var(--border-card);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.detail-hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.detail-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(16,185,129,0.12);
  color: var(--forest-400);
  border: 1px solid rgba(16,185,129,0.25);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.detail-rating-pill {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--amber-400);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 5px 12px;
  border-radius: 50px;
}

.detail-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.detail-hero-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.detail-key-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.metric-box {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
}
.metric-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.metric-value {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-primary);
}

.detail-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Detail Media Card */
.detail-hero-media {
  position: relative;
}
.detail-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  background: var(--surface-card);
}
.detail-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.detail-media-card:hover .detail-hero-img {
  transform: scale(1.03);
}
.detail-media-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(9,14,11,0.95) 0%, rgba(9,14,11,0.7) 70%, transparent 100%);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.detail-media-badge strong { color: var(--amber-400); }

/* Detail Body Section & Layout */
.detail-body-section {
  padding: 60px 0 80px;
  background: var(--bg-primary);
}

.detail-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.detail-main-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.detail-block {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.detail-block-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.detail-prose p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.detail-prose p:last-child { margin-bottom: 0; }
.detail-prose strong { color: var(--text-primary); }

/* Mini highlights grid */
.highlights-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.highlight-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px;
}
.hl-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245,158,11,0.1);
  color: var(--amber-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hl-card-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.hl-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Inclusions & Tariff grid */
.incl-excl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.incl-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-card);
  border-top: 4px solid var(--amber-500);
  border-radius: var(--radius-md);
  padding: 24px;
}
.incl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.check-list-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list-ul li {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.check-bullet {
  color: var(--forest-400);
  font-weight: 800;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 17px;
  width: 2px;
  background: var(--border-card);
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
.timeline-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 2px solid var(--amber-500);
  color: var(--amber-400);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  flex: 1;
}
.timeline-time-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--amber-400);
  background: rgba(245,158,11,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Fleet Card */
.fleet-card {
  border-radius: var(--radius-lg);
  padding: 32px;
}
.fleet-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.fleet-spec-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
}
.fleet-spec-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.fleet-spec-item span {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Detail FAQ */
.faq-accordion-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-card {
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.faq-header-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 12px;
}
.faq-header-btn:hover { color: var(--amber-400); }
.faq-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-drawer.open { max-height: 250px; }
.faq-drawer-content {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Detail Booking Sidebar */
.detail-sidebar {
  position: sticky;
  top: 90px;
}
.booking-widget-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.widget-price-tag {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 22px;
}
.widget-price-tag .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.widget-price-tag .amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--amber-400);
  line-height: 1;
}
.widget-form-group {
  margin-bottom: 16px;
}
.widget-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.widget-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text-primary);
  font-size: 13.5px;
  outline: none;
}
.widget-input:focus {
  border-color: var(--amber-500);
}
.widget-summary-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-secondary);
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border-card);
  padding-top: 8px;
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-primary);
}
.widget-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-card);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.trust-item svg { color: var(--forest-400); flex-shrink: 0; }

/* Related Safaris */
.related-safaris-section {
  padding: 60px 0 80px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-card);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: var(--trans-base);
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}
.related-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.related-card:hover .related-img { transform: scale(1.05); }
.related-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(9,14,11,0.8);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-400);
  border: 1px solid rgba(245,158,11,0.3);
}
.related-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.related-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.related-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-card);
  padding-top: 12px;
}
.related-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--forest-400);
}

/* Gallery Photo Showcase Cards */
.gavi-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}
.gavi-photo-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.gavi-photo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 36px rgba(0,0,0,0.6);
}
.gavi-photo-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #000;
}
.gavi-photo-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gavi-photo-card:hover .gavi-photo-card-img-wrap img {
  transform: scale(1.06);
}
.gavi-photo-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(9,14,11,0.82);
  backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--amber-400);
  border: 1px solid rgba(245,158,11,0.25);
}
.gavi-photo-caption {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gavi-photo-caption strong {
  color: var(--text-primary);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 800;
}
.gavi-photo-caption p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════
   SUBPAGE RESPONSIVE — TABLET (max 991px)
   Applies to all safari detail pages, elephant, evening shows
   ═══════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .detail-hero-grid { grid-template-columns: 1fr; }
  .detail-hero-img { height: 320px; }
  .detail-layout-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .detail-key-metrics { grid-template-columns: 1fr 1fr; }
  .highlights-mini-grid { grid-template-columns: 1fr; }
  .incl-excl-grid { grid-template-columns: 1fr; }
  .fleet-specs-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .gavi-gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Detail hero actions — wrap buttons */
  .detail-hero-actions { flex-wrap: wrap; gap: 10px; }
  .detail-hero-actions .btn { flex: 1; min-width: 160px; justify-content: center; }

  /* Detail block padding */
  .detail-block { padding: 24px; }
}

/* ═══════════════════════════════════════════════════
   SUBPAGE RESPONSIVE — MOBILE (max 640px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .detail-key-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gavi-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Hero section on subpages */
  .detail-hero { padding: 36px 0 40px; }
  .detail-hero-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .detail-hero-lead { font-size: 14px; }
  .detail-hero-img { height: 260px; }

  /* Detail block */
  .detail-block { padding: 20px; border-radius: var(--radius-md); }
  .detail-block-title { font-size: 1.25rem; }

  /* Booking widget sidebar */
  .booking-widget-card { padding: 20px; }
  .widget-price-tag .amount { font-size: 2.2rem; }

  /* Timeline */
  .itinerary-timeline::before { left: 14px; }
  .timeline-node { width: 30px; height: 30px; font-size: 12px; }
  .timeline-card { padding: 14px 16px; }
  .timeline-title { font-size: 14px; }
  .timeline-desc { font-size: 13px; }

  /* Fleet specs */
  .fleet-card { padding: 20px; }

  /* Metric boxes */
  .metric-box { padding: 10px; }
  .metric-value { font-size: 12.5px; }

  /* Incl/Excl cards */
  .incl-card { padding: 18px; }

  /* Related cards */
  .related-grid { gap: 16px; }
  .related-img-wrap { height: 160px; }

  /* Detail hero actions stack on mobile */
  .detail-hero-actions { flex-direction: column; }
  .detail-hero-actions .btn { width: 100%; justify-content: center; }

  /* Highlight mini cards */
  .highlight-mini-card { padding: 14px; gap: 10px; }
  .hl-icon-wrap { width: 36px; height: 36px; }

  /* Evening shows / elephant specific */
  .show-card { border-radius: var(--radius-md); }
  .show-schedule-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   SUBPAGE RESPONSIVE — SMALL PHONES (max 430px)
   Covers iPhone SE, Pixel, Galaxy A (360–430px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 430px) {
  /* Container safe padding */
  .container { padding: 0 14px; }

  /* Subpage hero */
  .detail-hero { padding: 28px 0 32px; }
  .detail-hero-title { font-size: 1.65rem; line-height: 1.15; }
  .detail-hero-lead { font-size: 13.5px; }
  .detail-hero-img { height: 220px; }

  /* Key metrics — 2 col on narrow phone */
  .detail-key-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .metric-box { padding: 9px 10px; }
  .metric-label { font-size: 10px; }
  .metric-value { font-size: 12px; }

  /* Detail block */
  .detail-block { padding: 16px; }
  .detail-block-title { font-size: 1.15rem; gap: 8px; }
  .detail-prose p { font-size: 13.5px; }

  /* Booking widget */
  .booking-widget-card { padding: 16px; }
  .widget-price-tag .amount { font-size: 2rem; }
  .widget-price-tag .label { font-size: 10px; }
  .widget-input { padding: 9px 10px; font-size: 13px; }

  /* FAQ */
  .faq-header-btn { font-size: 13.5px; padding: 14px 16px; }
  .faq-drawer-content { font-size: 13px; padding: 0 16px 14px; }

  /* Timeline */
  .timeline-step { gap: 12px; }
  .timeline-node { width: 28px; height: 28px; font-size: 11px; flex-shrink: 0; }
  .timeline-card { padding: 12px 14px; }
  .timeline-title { font-size: 13.5px; }

  /* Highlights mini */
  .highlight-mini-card { padding: 12px; gap: 8px; }
  .hl-icon-wrap { width: 32px; height: 32px; min-width: 32px; }
  .hl-card-body h4 { font-size: 13.5px; }
  .hl-card-body p { font-size: 12px; }

  /* Incl/Excl */
  .incl-card { padding: 14px; }
  .incl-header { font-size: 13.5px; }
  .check-list-ul li { font-size: 13px; }

  /* Gallery */
  .gavi-gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gavi-photo-card-img-wrap { height: 160px; }
  .gavi-photo-caption strong { font-size: 0.82rem; }
  .gavi-photo-caption p { font-size: 0.72rem; }

  /* Related safaris */
  .related-img-wrap { height: 150px; }
  .related-body h4 { font-size: 14.5px; }
  .related-body p { font-size: 12.5px; }

  /* Breadcrumbs */
  .detail-breadcrumbs { font-size: 11.5px; gap: 5px; }
  .detail-header-bar { padding: 10px 0; }

  /* Detail badge row */
  .detail-hero-badge-row { gap: 8px; }
  .detail-tag, .detail-rating-pill { font-size: 11px; padding: 4px 10px; }

  /* Fleet card */
  .fleet-card { padding: 16px; }
  .fleet-specs-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Buttons inside subpages */
  .detail-hero-actions .btn { padding: 13px 18px; font-size: 13.5px; }

  /* Section titles on subpages */
  .section-title { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   SUBPAGE RESPONSIVE — ULTRA-NARROW (max 360px)
   Covers smallest Android budget phones
   ═══════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .detail-hero-title { font-size: 1.5rem; }
  .detail-key-metrics { grid-template-columns: 1fr; gap: 8px; }
  .metric-value { font-size: 12px; }
  .detail-block { padding: 14px; }
  .detail-block-title { font-size: 1.05rem; }
  .booking-widget-card { padding: 14px; }
  .gavi-gallery-grid { grid-template-columns: 1fr; }
  .fleet-specs-grid { grid-template-columns: 1fr; }
  .highlight-mini-card { flex-direction: column; }
  .timeline-step { gap: 10px; }
  .faq-header-btn { font-size: 13px; padding: 13px 14px; }
  .detail-hero-actions .btn { padding: 12px 14px; font-size: 13px; }
  .related-body h4 { font-size: 14px; }
  .incl-card { padding: 12px; }
}

/* ═══════════════════════════════════════════════════
   NEXT-LEVEL SIGNATURE ENHANCEMENTS (INDEX V4)
   Gold Standard, Comparison Matrix, Wildlife Dossier, Direct Trust
   ═══════════════════════════════════════════════════ */

/* ─── LIVE DISPATCH TICKER & HERO TRUST BAR ─── */
.hero-dispatch-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 78, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(16, 185, 129, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: #a7f3d0;
  margin-bottom: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-dispatch-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: dispatchPulse 2s infinite;
}
@keyframes dispatchPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ─── GOLD STANDARD 4 PILLARS ─── */
.gold-standard-section {
  position: relative;
  padding: 5rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(197, 155, 66, 0.08) 0%, rgba(9, 14, 11, 0.95) 75%);
  border-top: 1px solid rgba(197, 155, 66, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gold-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.gold-pillar-card {
  background: rgba(18, 25, 20, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 155, 66, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}
.gold-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c59b42, transparent);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.gold-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 66, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 155, 66, 0.15);
}
.gold-pillar-card:hover::before {
  opacity: 1;
}
.pillar-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(197, 155, 66, 0.3);
  position: absolute;
  top: 15px;
  right: 18px;
  line-height: 1;
}
.pillar-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 155, 66, 0.12);
  border: 1px solid rgba(197, 155, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-400);
  margin-bottom: 1.1rem;
}
.gold-pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.gold-pillar-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.pillar-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  background: rgba(197, 155, 66, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(197, 155, 66, 0.25);
}

/* ─── SAFARI CIRCUIT COMPARISON MATRIX ─── */
.matrix-section {
  position: relative;
  padding: 5rem 0;
  background: var(--bg-dark);
}
.matrix-table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 22, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  margin-top: 2rem;
  -webkit-overflow-scrolling: touch;
}
.safari-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 780px;
}
.safari-matrix-table th {
  background: rgba(6, 78, 59, 0.35);
  padding: 16px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
.safari-matrix-table td {
  padding: 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  vertical-align: middle;
  color: var(--text-secondary);
}
.safari-matrix-table tr:last-child td {
  border-bottom: none;
}
.safari-matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.matrix-circuit-name {
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  font-size: 0.98rem;
  margin-bottom: 3px;
}
.matrix-circuit-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.matrix-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
}
.matrix-tag-green { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.matrix-tag-gold { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.matrix-tag-red { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.matrix-tag-teal { background: rgba(20, 184, 166, 0.15); color: #2dd4bf; border: 1px solid rgba(20, 184, 166, 0.3); }

.matrix-price-col {
  font-weight: 800;
  color: #fbbf24;
  white-space: nowrap;
}
.matrix-price-col small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ─── WILDLIFE DOSSIER & ETHICAL TRACKING ─── */
.wildlife-section {
  position: relative;
  padding: 5rem 0;
  background: radial-gradient(circle at 50% 100%, rgba(6, 78, 59, 0.15) 0%, rgba(9, 14, 11, 0.98) 80%);
}
.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.wildlife-card {
  background: rgba(18, 25, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}
.wildlife-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.15);
}
.wildlife-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.wildlife-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.wildlife-card:hover .wildlife-media img {
  transform: scale(1.08);
}
.wildlife-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(6, 20, 14, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.35);
}
.wildlife-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wildlife-malayalam-name {
  font-size: 0.78rem;
  color: var(--amber-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.wildlife-body h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.wildlife-body p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}
.wildlife-tracking-tip {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--amber-500);
  padding: 6px 10px;
  border-radius: 0 6px 6px 0;
  font-size: 0.77rem;
  color: var(--text-muted);
}
.wildlife-tracking-tip strong {
  color: var(--text-primary);
}

/* Ethical banner */
.ethical-safari-banner {
  margin-top: 3rem;
  background: rgba(16, 25, 20, 0.75);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.ethical-content h4 {
  color: #34d399;
  font-size: 1.15rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ethical-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  max-width: 800px;
}

/* ─── DIRECT FLEET VS HOTEL BROKER TRANSPARENCY ─── */
.transparency-section {
  position: relative;
  padding: 5rem 0;
  background: var(--bg-dark);
}
.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2.5rem;
}
.transparency-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
}
.transparency-card--direct {
  background: rgba(6, 78, 59, 0.18);
  border: 2px solid rgba(16, 185, 129, 0.4);
}
.transparency-card--direct::before {
  content: 'BEST VALUE & SAFEST';
  position: absolute;
  top: -12px;
  right: 24px;
  background: #10b981;
  color: #042f2e;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
}
.transparency-card--broker {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.transparency-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.transparency-card--direct h3 { color: #a7f3d0; }
.transparency-card--broker h3 { color: #fca5a5; }

.transparency-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.transparency-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.transparency-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.transparency-card--direct .transparency-list li strong { color: var(--text-primary); }
.t-icon-good { color: #34d399; flex-shrink: 0; margin-top: 3px; }
.t-icon-bad { color: #f87171; flex-shrink: 0; margin-top: 3px; }

/* ─── NATIVE NARRATIVE FAQ ACCORDION ─── */
.faq-section-upgraded {
  padding: 5rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(197, 155, 66, 0.05) 0%, rgba(9, 14, 11, 0.98) 70%);
}
.native-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2.5rem;
}
.native-faq-card {
  background: rgba(18, 25, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}
.native-faq-card:hover {
  border-color: rgba(197, 155, 66, 0.4);
}
.native-faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s;
}
.native-faq-header:hover {
  color: var(--amber-400);
}
.native-faq-icon {
  font-size: 1.2rem;
  color: var(--amber-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.native-faq-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, opacity 0.3s ease-out;
}
.native-faq-content {
  padding: 0 20px 20px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.native-faq-content strong {
  color: var(--amber-300);
}

/* ─── RESPONSIVE RULES FOR NEW SECTIONS ─── */
@media (max-width: 1024px) {
  .gold-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .wildlife-grid { grid-template-columns: repeat(2, 1fr); }
  .transparency-grid { grid-template-columns: 1fr; }
  .native-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gold-pillars-grid { grid-template-columns: 1fr; }
  .wildlife-grid { grid-template-columns: 1fr; }
  .ethical-safari-banner { flex-direction: column; text-align: left; align-items: flex-start; }
  .hero-dispatch-banner { font-size: 0.75rem; padding: 6px 12px; }
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEW SECTIONS â€” Phase 2 Comprehensive Refactor
   Ken Burns Â· Radar Ping Â· Scarcity Badge Â· Gavi Timeline
   Fleet Section Â· Transit Matrix Â· Mobile Sticky Bar
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Ken Burns Hero Zoom â”€â”€ */
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.hero-ken-burns {
  animation: kenBurns 20s ease-out infinite alternate;
  transform-origin: center center;
}
@media (prefers-reduced-motion: reduce) {
  .hero-ken-burns { animation: none; }
}

/* â”€â”€ Radar Ping on Dispatch Dot â”€â”€ */
.radar-ping {
  position: relative;
}
.radar-ping::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(52, 211, 153, 0.6);
  animation: radarPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes radarPing {
  0%   { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .radar-ping::after { animation: none; }
}

/* â”€â”€ Bento Scarcity Badge â”€â”€ */
.bento-scarcity-badge {
  position: absolute;
  top: 44px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  z-index: 6;
  white-space: nowrap;
}

/* â”€â”€ WhatsApp Button Glow Pulse â”€â”€ */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}
.btn-whatsapp {
  animation: waPulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp { animation: none; }
}

/* â”€â”€ Card Hover Elevation â”€â”€ */
.bento-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(52,211,153,0.15);
}
.gold-pillar-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.gold-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* â”€â”€ GAVI TIMELINE SECTION â”€â”€ */
.gavi-timeline-section {
  background: linear-gradient(180deg, #0d1a0f 0%, #081208 100%);
  padding: 80px 0;
}
.gavi-timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 0;
}
.gavi-timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #10b981 15%, #10b981 85%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 24px 1fr;
  gap: 0 20px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.timeline-time {
  font-size: 0.72rem;
  font-weight: 700;
  color: #c59b42;
  letter-spacing: 0.04em;
  text-align: right;
  padding-top: 3px;
  line-height: 1.3;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.timeline-dot--gold   { background: #c59b42; box-shadow: 0 0 0 4px rgba(197,155,66,0.2); }
.timeline-dot--green  { background: #10b981; box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
.timeline-dot--amber  { background: #f59e0b; box-shadow: 0 0 0 4px rgba(245,158,11,0.2); }
.timeline-dot--teal   { background: #06b6d4; box-shadow: 0 0 0 4px rgba(6,182,212,0.2); }
.timeline-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px 22px;
  transition: background 0.3s;
}
.timeline-content:hover { background: rgba(255,255,255,0.06); }
.timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 8px;
}
.timeline-content p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}
.timeline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.82rem;
  padding: 8px 16px;
}
@media (max-width: 640px) {
  .gavi-timeline::before { left: 16px; }
  .timeline-item { grid-template-columns: 16px 1fr; gap: 0 14px; }
  .timeline-time { display: none; }
  .timeline-content { padding: 14px 16px; }
}

/* â”€â”€ FLEET SECTION â”€â”€ */
.fleet-section {
  background: #0a0f0a;
  padding: 80px 0;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.fleet-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.28s, box-shadow 0.28s;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(16,185,129,0.2);
}
.fleet-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.fleet-vehicle-icon {
  width: 72px;
  height: 72px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #10b981;
}
.fleet-card__meta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 6px;
}
.fleet-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.fleet-badge--primary { background: rgba(197,155,66,0.15); color: #c59b42; border: 1px solid rgba(197,155,66,0.3); }
.fleet-badge--teal    { background: rgba(6,182,212,0.12);  color: #06b6d4; border: 1px solid rgba(6,182,212,0.25); }
.fleet-desc {
  font-size: 0.87rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 18px;
}
.fleet-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.fleet-tech {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  background: rgba(16,185,129,0.08);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 20px;
}
.fleet-ideal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5;
}
.fleet-ideal svg { color: #10b981; flex-shrink: 0; margin-top: 2px; }
.fleet-safety-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.12);
  border-radius: 16px;
  padding: 28px 32px;
}
.fleet-safety-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
}
.fleet-safety-item svg { color: #10b981; flex-shrink: 0; }
.fleet-safety-item strong { color: #e2e8f0; }
@media (max-width: 768px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-safety-strip { flex-direction: column; align-items: flex-start; }
}

/* â”€â”€ TRANSIT SECTION â”€â”€ */
.transit-section {
  background: linear-gradient(180deg, #081208 0%, #0a0f0a 100%);
  padding: 80px 0;
}
.transit-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.transit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.transit-table thead tr {
  background: rgba(16,185,129,0.08);
  border-bottom: 1px solid rgba(16,185,129,0.15);
}
.transit-table thead th {
  padding: 14px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #34d399;
  text-align: left;
  white-space: nowrap;
}
.transit-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.transit-table tbody tr:last-child { border-bottom: none; }
.transit-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.transit-table td {
  padding: 16px 18px;
  color: #94a3b8;
  vertical-align: top;
  line-height: 1.55;
}
.transit-table td strong { color: #e2e8f0; }
.transit-table td small { color: #6b7280; font-size: 0.78rem; }
.transit-dist {
  font-size: 1rem;
  font-weight: 700;
  color: #10b981;
}
.transit-mode {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.transit-mode--car  { background: rgba(197,155,66,0.12); color: #c59b42; border: 1px solid rgba(197,155,66,0.25); }
.transit-mode--bus  { background: rgba(6,182,212,0.1);   color: #06b6d4; border: 1px solid rgba(6,182,212,0.2); }
.transit-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px 22px;
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.65;
}
.transit-note svg { color: #10b981; flex-shrink: 0; margin-top: 2px; }
.transit-note p { margin: 0; }
.transit-note strong { color: #e2e8f0; }

/* â”€â”€ MOBILE STICKY BOTTOM ACTION BAR â”€â”€ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: rgba(8, 15, 8, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(16,185,129,0.2);
  padding: 10px 16px;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.mobile-sticky-bar .msb-call {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-sticky-bar .msb-call:hover { background: rgba(255,255,255,0.1); }
.mobile-sticky-bar .msb-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-sticky-bar .msb-whatsapp:hover { background: #1eb85a; }
@media (max-width: 768px) {
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ── Show Card Auto-Rotating Slideshow ── */
.show-slideshow {
  position: relative;
  overflow: hidden;
}
.show-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-in-out;
  display: block;
}
.show-slide-img.fading,
.bento-card__img.fading {
  opacity: 0;
}

.bento-card__img {
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), opacity 0.6s ease-in-out;
}

/* Dot indicators */
.slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  pointer-events: auto;
}
.bento-card__media .slide-dots {
  left: auto;
  right: 12px;
  bottom: 12px;
  transform: none;
}
.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slide-dot:hover {
  background: rgba(255,255,255,0.85);
  transform: scale(1.2);
}
.slide-dot.active {
  background: #fff;
  transform: scale(1.35);
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
}

