/* ═══════════════════════════════════════════════════
   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
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

img.img-error {
  background: linear-gradient(135deg, var(--surface-card) 0%, var(--surface-raised) 100%);
  min-height: 120px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

:root {
  /* ── Dark 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;

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

  /* ── Emerald / 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 (for stars) ── */
  --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 / nature 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 (4x4 / high-energy sections) ── */
  --terra-400:     #fb923c;
  --terra-500:     #f97316;
  --terra-600:     #ea580c;
  --terra-bg:      rgba(249,115,22,0.07);
  --terra-border:  rgba(249,115,22,0.2);
  --shadow-terra:  0 0 24px rgba(249,115,22,0.18);
}

html { scroll-behavior: smooth; }

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

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

/* ─── TYPOGRAPHY HELPERS ──────────────────────── */
.section-tag {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: var(--amber-400);
  border: 1px solid rgba(245,158,11,0.28);
  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: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.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;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow-x: hidden;       /* prevent any child from bleeding off left/right */
  overflow-y: visible;
  background: var(--bg-primary);
  width: 100%;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/hero_bg.png'), url('./assets/gavi_waterfall.png');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Heavy dark gradient — text always pops */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(9,14,11,0.7) 0%, rgba(9,14,11,0.45) 40%, rgba(9,14,11,0.82) 80%, rgba(9,14,11,0.97) 100%),
    linear-gradient(to right, rgba(9,14,11,0.75) 0%, rgba(9,14,11,0.1) 60%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  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: 3;
  display: grid;
  grid-template-columns: 1fr 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.05);
  border: 1px solid var(--border-glass);
  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-glass);
  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;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  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-glass);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--amber-400);
}

/* Quick inquiry form card */
.hero-form-card {
  background: rgba(17,26,21,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}
.form-card-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.form-card-header h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.form-card-header p {
  font-size: 12px;
  color: var(--text-muted);
}

/* 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: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--trans-base);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber-500);
  background: rgba(245,158,11,0.04);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.form-group select option {
  background: var(--surface-card);
  color: var(--text-primary);
}

/* 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: nowrap;
  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(--bg-secondary);
  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-glass);
  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.28);
  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: var(--surface-card);
}

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

.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(--bg-secondary);
  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(--bg-secondary); }

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

/* ═══════════════════════════════════════════════════
   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: 190px;
  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-glass);
  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(--bg-secondary); }

.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.12);
  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(--bg-secondary);
  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(--bg-secondary); }

.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: #060b08;
  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: 36px; }
  .hero-visual-col { display: none; }
  .hero-content { max-width: 100%; }
  .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; }
  .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: auto;
    flex-direction: column;   /* stack hero-wrapper + trust-badges vertically */
    align-items: stretch;
    justify-content: flex-start;
  }

  /* ── 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; }
  .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; }
}

