/* ==========================================================================
   Kedar Holidays — Classic Devotional Design System
   Typography: Fraunces (display) + DM Sans (body)
   Palette: Pure white · Bhagwa saffron · Pure black
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..800;1,9..144,400..600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* Lock the site to light theme — prevents browsers from auto-inverting colors */
:root { color-scheme: light only; }

/* Force the site to honor brand colors even when mobile browsers (Chrome on Android, etc.) try to apply Auto Dark Theme */
html { background: #ffffff !important; }

@media (forced-colors: active) {
  /* When browser forces high-contrast mode, keep our brand visible */
  :root { color-scheme: light only; }
}

:root {
  --saffron: #ff7722;
  --saffron-deep: #e85c11;
  --maroon: #9a3412;
  --cream: #ffffff;
  --cream-warm: #fff7ed;
  --stone-900: #000000;
  --stone-800: #171717;
  --stone-700: #262626;
  --stone-600: #404040;
  --stone-500: #737373;
  --stone-400: #a3a3a3;
  --stone-300: #d4d4d4;
  --stone-200: #e5e5e5;
  --stone-100: #f5f5f5;
  --white: #ffffff;
  --green-wa: #25d366;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1240px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-warm: 0 20px 50px rgba(234, 88, 12, 0.18);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone-800);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--stone-900);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--saffron); }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--warm { background: var(--cream-warm); }
.section--dark { background: var(--stone-900); color: var(--stone-200); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary { background: var(--stone-900); color: var(--white); }
.btn--primary:hover { background: var(--saffron-deep); transform: translateY(-2px); box-shadow: var(--shadow-warm); }
.btn--saffron { background: var(--saffron); color: var(--white); }
.btn--saffron:hover { background: var(--saffron-deep); transform: translateY(-2px); box-shadow: var(--shadow-warm); }
.btn--outline { background: transparent; color: var(--stone-900); border-color: var(--stone-300); }
.btn--outline:hover { border-color: var(--stone-900); background: var(--stone-900); color: var(--white); }
.btn--whatsapp { background: var(--green-wa); color: var(--white); }
.btn--whatsapp:hover { background: #1ea855; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
.btn--light { background: var(--white); color: var(--stone-900); }
.btn--light:hover { background: var(--stone-900); color: var(--white); }
.btn svg { width: 1rem; height: 1rem; }

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fdf8f3;  /* solid fallback first */
  background: rgba(253, 248, 243, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(168, 162, 158, 0.15);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--stone-900); }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--stone-900);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-mark svg { width: 30px; height: 30px; display: block; }
.logo-text { line-height: 1.1; }
.logo-text small {
  display: block; font-family: var(--font-body);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--saffron); font-weight: 500; margin-top: 2px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--stone-700); position: relative; padding: 0.3rem 0; }
.nav-links a:hover, .nav-links a.active { color: var(--stone-900); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--saffron); border-radius: 2px;
}
.nav-cta { display: flex; gap: 0.6rem; align-items: center; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--stone-900);
}
.nav-phone svg { width: 18px; height: 18px; color: var(--saffron); }

.menu-toggle {
  display: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--stone-900);
  transition: all 0.3s var(--ease); border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--stone-900);
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.95) 0%, rgba(28,25,23,0.35) 55%, rgba(28,25,23,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 6rem 0 5rem; }
.hero-eyebrow { color: var(--saffron); }
.hero-eyebrow::before { background: var(--saffron); }
.hero h1 { color: var(--white); margin: 1.2rem 0 1.3rem; }
.hero h1 em { font-style: italic; color: var(--saffron); font-weight: 400; }
.hero-subtitle {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 3rem;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-number em { font-style: italic; color: var(--saffron); }
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.4rem;
}

/* Inner page header */
.page-header {
  position: relative;
  padding: 6rem 0 4rem;
  background: var(--stone-900);
  color: var(--white);
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0; opacity: 0.3;
  background-size: cover; background-position: center;
}
.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--stone-900) 0%, rgba(28,25,23,0.5) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin: 0.8rem 0 1rem; }
.page-header h1 em { font-style: italic; color: var(--saffron); font-weight: 400; }
.page-header p { max-width: 600px; font-size: 1.08rem; color: rgba(255,255,255,0.8); }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--saffron); }

/* ==========================================================================
   Section heads
   ========================================================================== */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.section-head-text { max-width: 600px; }
.section-head h2 { margin-top: 1rem; }
.section-head p { color: var(--stone-600); margin-top: 1rem; font-size: 1.05rem; }
.section--dark .section-head p { color: var(--stone-400); }

/* ==========================================================================
   Tour Cards
   ========================================================================== */

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.tour-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--stone-200);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tour-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.tour-card:hover .tour-card-image img { transform: scale(1.07); }
.tour-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--saffron); color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.tour-duration {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--stone-900);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
}
.tour-duration svg { width: 14px; height: 14px; color: var(--saffron); }
.tour-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tour-route {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.tour-card h3 { margin-bottom: 0.7rem; font-size: 1.35rem; }
.tour-card p { color: var(--stone-600); font-size: 0.95rem; margin-bottom: 1.25rem; flex: 1; }
.tour-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--stone-200);
}
.tour-price { font-family: var(--font-display); font-weight: 600; }
.tour-price small {
  display: block; font-family: var(--font-body);
  font-size: 0.68rem; color: var(--stone-500);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 400; margin-bottom: 0.15rem;
}
.tour-price .amount { font-size: 1.3rem; color: var(--stone-900); }
.tour-price .amount em { font-style: italic; color: var(--saffron); font-weight: 400; }
.tour-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600; color: var(--stone-900);
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--stone-300);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.tour-link:hover { background: var(--stone-900); color: var(--white); border-color: var(--stone-900); gap: 0.6rem; }
.tour-link svg { width: 14px; height: 14px; }

/* Featured card (Chardham spotlight) */
.tour-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  background: linear-gradient(to right, #fef3e2, var(--cream-warm));
  border-color: rgba(217, 119, 6, 0.25);
}
.tour-card--featured .tour-card-image { aspect-ratio: unset; flex: 1.2; min-height: 100%; }
.tour-card--featured .tour-card-content { flex: 1; padding: 2.5rem; justify-content: center; }
.tour-card--featured h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.tour-card--featured p { font-size: 1.05rem; line-height: 1.6; }

@media (max-width: 800px) {
  .tour-card--featured { flex-direction: column; }
  .tour-card--featured .tour-card-image { aspect-ratio: 4/3; }
}

/* ==========================================================================
   Vehicle Cards
   ========================================================================== */

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.vehicle-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--stone-200);
  transition: all 0.4s var(--ease-out);
  display: flex; flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--saffron); }
.vehicle-image { aspect-ratio: 16/10; background: var(--stone-100); overflow: hidden; position: relative; }
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.vehicle-card:hover .vehicle-image img { transform: scale(1.05); }
.vehicle-capacity-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(28,25,23,0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.35rem;
}
.vehicle-capacity-badge svg { width: 14px; height: 14px; }
.vehicle-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.vehicle-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.vehicle-content h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.vehicle-content p { color: var(--stone-600); font-size: 0.9rem; margin-bottom: 1rem; flex: 1; }
.vehicle-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.vehicle-feature {
  font-size: 0.72rem;
  color: var(--stone-700);
  background: var(--stone-100);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.vehicle-actions {
  display: flex; gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stone-200);
}
.vehicle-actions .btn { flex: 1; padding: 0.65rem 0.9rem; font-size: 0.82rem; }

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.why-card {
  padding: 2rem 1.5rem 1.5rem;
  border-top: 2px solid var(--stone-700);
  transition: border-color 0.4s var(--ease);
}
.why-card:hover { border-top-color: var(--saffron); }
.why-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--saffron);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.why-icon { width: 44px; height: 44px; color: var(--saffron); margin-bottom: 1.25rem; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.why-card p { color: var(--stone-400); font-size: 0.95rem; line-height: 1.6; }

/* Light variant */
.section:not(.section--dark) .why-card { border-top-color: var(--stone-300); }
.section:not(.section--dark) .why-card p { color: var(--stone-600); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--stone-200);
  display: flex; flex-direction: column;
}
.testimonial-rating { color: var(--saffron); margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--stone-800);
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.8rem;
  padding-top: 1.25rem; border-top: 1px solid var(--stone-200);
}
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--saffron); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
}
.author-info strong { display: block; font-weight: 600; color: var(--stone-900); font-size: 0.95rem; }
.author-info small { color: var(--stone-500); font-size: 0.8rem; }

/* ==========================================================================
   CTA Band
   ========================================================================== */

.cta-band {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--saffron-deep) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.75rem; }
.cta-band h2 em { font-style: italic; color: var(--cream-warm); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 500px; }
.cta-band-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-about p { margin: 1.25rem 0; color: var(--stone-400); font-size: 0.95rem; line-height: 1.6; }
.footer .logo { color: var(--white); }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--stone-700);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--stone-400);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--saffron); color: var(--saffron); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--stone-400); font-size: 0.9rem; }
.footer-col a:hover { color: var(--saffron); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.9rem; font-size: 0.9rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--saffron); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--stone-800);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: var(--stone-500);
}

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */

.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  color: var(--white);
  transition: all 0.3s var(--ease);
  position: relative;
}
.fab:hover { transform: scale(1.08); }
.fab--whatsapp { background: var(--green-wa); }
.fab--call { background: var(--saffron); }
.fab svg { width: 24px; height: 24px; }
.fab--whatsapp::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-wa);
  opacity: 0.6;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Mobile: tighter spacing, smaller fabs */
@media (max-width: 480px) {
  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 0.55rem;
  }
  .fab {
    width: 46px; height: 46px;
  }
  .fab svg {
    width: 21px; height: 21px;
  }
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--stone-200);
  transition: border-color 0.3s var(--ease);
}
.contact-info-item:hover { border-color: var(--saffron); }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--saffron); flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 0.3rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 1.05rem; color: var(--stone-900);
  font-weight: 500; line-height: 1.4;
}
.contact-info-item a:hover { color: var(--saffron); }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p { color: var(--stone-600); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--stone-700);
  margin-bottom: 0.45rem;
}
.form-group label .required { color: var(--saffron); }
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--stone-900);
  background: var(--cream);
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-sm);
  transition: all 0.2s var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2357534e' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-submit-note {
  font-size: 0.8rem;
  color: var(--stone-500);
  margin-top: 1rem;
  text-align: center;
}
.form-success {
  background: #ecfdf5;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid #a7f3d0;
  margin-bottom: 1.5rem;
  display: none;
}
.form-success.show { display: block; }

/* ==========================================================================
   Package Detail
   ========================================================================== */

.package-detail-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}
.package-content h2 { margin: 2.5rem 0 1.25rem; font-size: 1.7rem; }
.package-content h2:first-child { margin-top: 0; }
.package-content p { color: var(--stone-700); margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.7; }

.package-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 0.6rem;
  margin-bottom: 3rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.package-gallery a {
  overflow: hidden;
  display: block;
  position: relative;
}
.package-gallery a:first-child { grid-column: 1; grid-row: 1 / 3; }
.package-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.package-gallery a:hover img { transform: scale(1.05); }

.highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  list-style: none;
  margin: 1.5rem 0;
}
.highlights-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.8rem 1rem;
  background: var(--cream-warm);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
}
.highlights-list li::before {
  content: '✓'; color: var(--saffron);
  font-weight: 700; flex-shrink: 0;
}

.itinerary-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--stone-200);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
}
.itinerary-item:last-child { border-bottom: none; }
.itinerary-day {
  font-family: var(--font-display);
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.itinerary-day strong {
  display: block;
  font-size: 2rem;
  color: var(--stone-900);
  font-style: italic;
  font-weight: 600;
  margin-top: 0.2rem;
  line-height: 1;
}
.itinerary-content h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem; }
.itinerary-content p { font-size: 0.95rem; color: var(--stone-600); margin: 0 0 0.5rem; }
.itinerary-meta {
  display: inline-flex; gap: 1rem;
  font-size: 0.8rem;
  color: var(--stone-500);
  margin-top: 0.3rem;
}
.itinerary-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }

.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem; }
.inclusions-col h3 {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.inclusions-col--good h3 { color: #16a34a; }
.inclusions-col--bad h3 { color: var(--stone-500); }
.inclusions-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.inclusions-col li { display: flex; gap: 0.6rem; font-size: 0.95rem; color: var(--stone-700); }
.inclusions-col--good li::before { content: '✓'; color: #16a34a; font-weight: 700; }
.inclusions-col--bad li::before { content: '✕'; color: var(--stone-400); font-weight: 700; }

/* Booking sidebar */
.package-sidebar { position: sticky; top: 100px; }
.booking-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.booking-card .price-label {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--stone-500);
  font-weight: 500;
}
.booking-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600;
  color: var(--stone-900);
  margin: 0.3rem 0 0.2rem;
  line-height: 1;
}
.booking-card .price em { font-style: italic; color: var(--saffron); font-weight: 400; }
.booking-card .price-note {
  font-size: 0.8rem; color: var(--stone-500);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stone-200);
  margin-bottom: 1.5rem;
}
.booking-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.booking-meta-item { font-size: 0.85rem; }
.booking-meta-item small {
  display: block; color: var(--stone-500);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.68rem; margin-bottom: 0.25rem;
}
.booking-meta-item strong {
  font-family: var(--font-display);
  font-size: 1rem; color: var(--stone-900); font-weight: 600;
}
.booking-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.booking-actions .btn { width: 100%; }
.booking-trust {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--stone-200);
  text-align: center;
  font-size: 0.8rem; color: var(--stone-500);
}

/* ==========================================================================
   Chat Widget
   ========================================================================== */

.chat-widget {
  position: fixed;
  bottom: 100px; right: 1.5rem;
  width: 340px;
  max-width: calc(100vw - 3rem);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  z-index: 49;
  overflow: hidden;
  display: none;
  animation: slideUp 0.3s var(--ease-out);
}
.chat-widget.open { display: block; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.chat-header {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  color: var(--white);
  padding: 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info h4 { color: var(--white); font-family: var(--font-display); font-size: 1.05rem; }
.chat-header-info p { font-size: 0.78rem; opacity: 0.9; }
.chat-header-info p::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; margin-right: 0.4rem;
}
.chat-close {
  color: var(--white); font-size: 1.5rem;
  line-height: 1; padding: 0.25rem;
  opacity: 0.8; transition: opacity 0.2s;
}
.chat-close:hover { opacity: 1; }
.chat-body { padding: 1.25rem; max-height: 320px; overflow-y: auto; background: var(--cream); }
.chat-message {
  background: var(--white);
  padding: 0.9rem 1rem;
  border-radius: 12px 12px 12px 4px;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: var(--stone-700);
  line-height: 1.5;
}
.chat-quick-replies { display: flex; flex-direction: column; gap: 0.5rem; }
.chat-quick-reply {
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--stone-200);
  padding: 0.7rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: var(--stone-700);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.chat-quick-reply:hover {
  border-color: var(--saffron);
  background: var(--cream-warm);
  color: var(--stone-900);
}
.chat-footer {
  padding: 1rem;
  border-top: 1px solid var(--stone-200);
  display: flex; gap: 0.5rem;
  background: var(--white);
}
.chat-footer .btn { flex: 1; font-size: 0.82rem; padding: 0.6rem 0.8rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .nav-links, .nav-cta .nav-phone-text { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 1.5rem var(--gutter);
    gap: 1.2rem;
    border-bottom: 1px solid var(--stone-200);
    box-shadow: var(--shadow-md);
  }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .package-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .package-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-content { padding: 4rem 0 3rem; }
  .hero { min-height: 80vh; }
  .hero-cta .btn { flex: 1; }
  .hero-stats { gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; }
  .stat-number { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.75rem; }
  .package-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
  }
  .package-gallery a:first-child { grid-column: 1 / 3; grid-row: 1; }
  .highlights-list { grid-template-columns: 1fr; }
  .itinerary-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .itinerary-day strong { font-size: 1.5rem; display: inline; margin-left: 0.5rem; }
  .cta-band-inner, .section-head { flex-direction: column; align-items: flex-start; }
}

/* Print: clean up for itinerary printing */
@media print {
  .header, .footer, .floating-actions, .chat-widget, .package-sidebar { display: none !important; }
  .package-detail-layout { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Trust badges and star ratings
   ========================================================================== */

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.6rem 1rem 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.trust-stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbf24;
  align-items: center;
}
.trust-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.trust-stars--small svg { width: 14px; height: 14px; }
.trust-stars--mini svg { width: 12px; height: 12px; }
.trust-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.trust-text strong { color: #fff; font-weight: 600; }
.trust-text span { color: rgba(255, 255, 255, 0.8); }

/* Tour card mini rating */
.tour-rating-mini {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.tour-rating-mini .trust-stars {
  color: var(--saffron);
}
.tour-rating-mini small {
  font-size: 0.78rem;
  color: var(--stone-600);
  font-weight: 400;
}
.tour-rating-mini small strong {
  color: var(--stone-900);
  font-weight: 600;
}

/* Booking sidebar rating */
.booking-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--stone-200);
}
.booking-rating .trust-stars {
  color: var(--saffron);
}
.booking-rating-text {
  font-size: 0.85rem;
  color: var(--stone-600);
}
.booking-rating-text strong {
  color: var(--stone-900);
  font-weight: 600;
  font-size: 0.95rem;
}
.booking-rating-text span {
  color: var(--stone-500);
}

/* ==========================================================================
   Audio toggle
   ========================================================================== */

.audio-toggle {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--saffron);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255, 119, 34, 0.25);
  color: var(--saffron);
  transition: all 0.25s var(--ease);
  /* Mobile tap feedback */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.audio-toggle:hover {
  background: var(--saffron);
  color: white;
  transform: scale(1.06);
}
.audio-toggle:active {
  transform: scale(0.95);
}
.audio-toggle svg { width: 22px; height: 22px; }
.audio-toggle .icon-muted { display: block; }
.audio-toggle .icon-playing { display: none; }
.audio-toggle.is-playing {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
  box-shadow: 0 6px 18px rgba(255, 119, 34, 0.4);
}
.audio-toggle.is-playing .icon-muted { display: none; }
.audio-toggle.is-playing .icon-playing { display: block; }

/* Pulsing music button — draws attention so first-time visitors notice */
.audio-toggle--pulse {
  animation: audioPulseScale 2s ease-in-out infinite;
}
.audio-toggle--pulse::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  opacity: 0.5;
  animation: audioPulseRing 2s ease-out infinite;
  pointer-events: none;
}
@keyframes audioPulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes audioPulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.audio-toggle.is-playing {
  animation: none;
}
.audio-toggle.is-playing::before {
  display: none;
}




/* Vehicle per-km pricing */
.vehicle-price {
  font-size: 0.85rem;
  color: var(--stone-600);
  margin: 0 0 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--cream-warm);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--saffron);
}
.vehicle-price strong {
  color: var(--saffron-deep);
  font-size: 0.95rem;
  font-weight: 600;
}
.vehicle-price span {
  color: var(--stone-500);
  font-size: 0.78rem;
}

/* ==========================================================================
   Location cards (homepage "Start From Your City")
   ========================================================================== */

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.location-card {
  background: var(--white);
  padding: 1.8rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--stone-200);
  text-align: center;
  transition: all 0.3s var(--ease-out);
  display: block;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.location-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.location-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.location-card p {
  font-size: 0.88rem;
  color: var(--stone-600);
  margin-bottom: 1rem;
}
.location-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--saffron);
}

/* Location landing page content */
.location-benefits,
.pickup-list {
  list-style: none;
  margin: 1rem 0 2rem;
  padding: 0;
}
.location-benefits li {
  display: flex;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stone-200);
  font-size: 1rem;
  color: var(--stone-700);
  align-items: flex-start;
}
.location-benefits li svg {
  width: 20px;
  height: 20px;
  color: var(--saffron);
  flex-shrink: 0;
  margin-top: 2px;
}
.pickup-list li {
  padding: 0.6rem 1rem;
  background: var(--cream-warm);
  border-radius: var(--r-sm);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--stone-700);
}

/* FAQ accordion */
.faq-list details {
  border-bottom: 1px solid var(--stone-200);
  padding: 1.25rem 0;
}
.faq-list summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stone-900);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.5rem;
  color: var(--saffron);
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}
.faq-list details[open] summary::after {
  content: '−';
}
.faq-list details[open] summary {
  margin-bottom: 0.75rem;
}
.faq-list details p {
  color: var(--stone-600);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Reviews summary block */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
  margin-bottom: 3rem;
  background: var(--cream-warm);
  border-radius: var(--r-lg);
  border: 1px solid var(--stone-200);
}
.reviews-rating-big {
  text-align: center;
}
.reviews-rating-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.reviews-rating-big .trust-stars {
  justify-content: center;
  margin-bottom: 0.5rem;
}
.reviews-rating-big .trust-stars svg {
  width: 22px;
  height: 22px;
}
.reviews-rating-count {
  font-size: 0.88rem;
  color: var(--stone-600);
}
.reviews-sources {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 2.5rem;
  border-left: 1px solid var(--stone-200);
}
.review-source {
  font-size: 0.95rem;
  color: var(--stone-700);
  font-weight: 500;
}
@media (max-width: 640px) {
  .reviews-sources {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--stone-200);
    padding-top: 1rem;
  }
}

/* ==========================================================================
   Logo image (replaces old SVG logo-mark)
   ========================================================================== */
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  max-width: 220px;
}
.logo-img--footer {
  height: 42px;
  max-width: 220px;
}
@media (max-width: 640px) {
  .logo-img { height: 34px; }
}

/* ==========================================================================
   Vehicle detail page (vehicle.html)
   ========================================================================== */

.vehicle-detail-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}

.vehicle-detail-main h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1.25rem;
}
.vehicle-detail-main h2:first-child {
  margin-top: 0;
}

.vehicle-detail-sidebar {
  position: sticky;
  top: 100px;
}

.variants-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.variant-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
}
.variant-card:hover {
  border-color: var(--saffron);
  border-left-color: var(--saffron-deep);
  box-shadow: var(--shadow-md);
}
.variant-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}
.variant-seats {
  font-size: 0.82rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.variant-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.variant-notes {
  color: var(--stone-600);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .vehicle-detail-layout {
    grid-template-columns: 1fr;
  }
  .vehicle-detail-sidebar {
    position: static;
  }
}

/* ==========================================================================
   Variant gallery (on vehicle detail pages)
   ========================================================================== */

.variant-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: all 0.3s var(--ease);
}
.variant-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow-md);
}

.variant-gallery {
  display: flex;
  flex-direction: column;
  background: var(--stone-100);
}

.variant-main-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--stone-100);
}
.variant-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.variant-main-image:hover img {
  transform: scale(1.03);
}

.variant-photo-count {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.variant-thumbs {
  display: flex;
  gap: 0.35rem;
  padding: 0.5rem;
  overflow-x: auto;
  background: var(--white);
  scrollbar-width: thin;
}
.variant-thumbs::-webkit-scrollbar { height: 4px; }
.variant-thumbs::-webkit-scrollbar-thumb { background: var(--stone-400); border-radius: 2px; }

.variant-thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s var(--ease);
}
.variant-thumb:hover {
  opacity: 0.9;
}
.variant-thumb.is-active {
  border-color: var(--saffron);
  opacity: 1;
}

.variant-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.variant-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}
.variant-seats {
  font-size: 0.78rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.variant-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.variant-notes {
  color: var(--stone-600);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex: 1;
}

.btn--sm {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  align-self: flex-start;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .variant-card {
    grid-template-columns: 1fr;
  }
  .variant-main-image {
    aspect-ratio: 16/10;
  }
}

/* Lightbox for full-size photo viewing */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.is-open {
  display: flex;
  animation: lightboxFade 0.2s ease;
}
@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

/* CTA inline box (used in detail pages) */
.cta-inline {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream-warm);
  border-radius: var(--r-lg);
  text-align: center;
}
.cta-inline h3 {
  margin-bottom: 0.5rem;
}
.cta-inline p {
  color: var(--stone-600);
  margin-bottom: 1.5rem;
}
.cta-inline .btn + .btn {
  margin-left: 0.5rem;
}

/* Why list in booking card */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--stone-700);
}

/* Price info box in vehicle sidebar */
.price-info-box {
  padding: 1rem;
  background: var(--cream-warm);
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--stone-700);
}

/* ==========================================================================
   Homepage vehicles grid — 3 columns, smaller cards than the vehicles.html grid
   ========================================================================== */
.vehicles-grid--home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vehicles-grid--home .vehicle-image {
  aspect-ratio: 16/10;
}
.vehicles-grid--home .vehicle-content {
  padding: 1.25rem;
}
.vehicles-grid--home .vehicle-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.vehicles-grid--home .vehicle-price {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.vehicles-grid--home .vehicle-category {
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
}
.vehicles-grid--home .vehicle-actions {
  margin-top: 0;
}

@media (max-width: 900px) {
  .vehicles-grid--home {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 540px) {
  .vehicles-grid--home {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Mobile readability fixes — ensure no text falls below 14px on small screens
   ========================================================================== */
@media (max-width: 640px) {
  /* Body text — slightly larger for easy reading */
  body { font-size: 16px; }

  /* Tour card text */
  .tour-card-content p { font-size: 0.95rem; line-height: 1.55; }
  .tour-route { font-size: 0.78rem; }
  .tour-card h3 { font-size: 1.2rem; }

  /* Vehicle card text */
  .vehicle-content h3 { font-size: 1.1rem; }
  .vehicle-content p { font-size: 0.95rem; }
  .vehicle-category { font-size: 0.72rem; }

  /* Hero subtitle slightly bigger */
  .hero-subtitle { font-size: 1.05rem; line-height: 1.6; }

  /* Footer */
  .footer-col h4 { font-size: 0.95rem; }
  .footer-col li, .footer-col a { font-size: 0.92rem; }

  /* Booking sidebar text */
  .booking-meta-item small { font-size: 0.72rem; }
  .booking-meta-item strong { font-size: 0.95rem; }

  /* Trust badge — keep readable */
  .trust-text { font-size: 0.85rem; }

  /* Why-us cards */
  .why-card h3 { font-size: 1.15rem; }
  .why-card p { font-size: 0.95rem; }

  /* Testimonials */
  .testimonial-text { font-size: 0.95rem; line-height: 1.6; }


}

/* Header — make sure logo and Plan My Trip button always readable on every device */
.header .nav-phone-text {
  white-space: nowrap;
}

/* Mobile header — hide phone number text but keep icon, keep button visible */
@media (max-width: 640px) {
  .nav-phone-text { display: none; }
  .nav-phone svg { width: 22px; height: 22px; }
  .nav-cta .btn { padding: 0.6rem 1rem; font-size: 0.85rem; }
}
@media (max-width: 380px) {
  .nav-cta .btn { padding: 0.55rem 0.85rem; font-size: 0.8rem; }
}

/* Audio button — mobile-friendly tap target (min 48px per Apple/Google guidelines) */
@media (max-width: 480px) {
  .audio-toggle {
    bottom: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
  }
  .audio-toggle svg {
    width: 20px;
    height: 20px;
  }
}
