/* Saubhagya Self Drive Cars — Premium redesign */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #122240;
  --navy-light: #1e3a5f;
  --accent: #ff6b1a;
  --accent-hover: #e85a0a;
  --accent-soft: rgba(255, 107, 26, 0.12);
  --whatsapp: #25d366;
  --white: #ffffff;
  --bg: #f4f6f9;
  --bg-card: #ffffff;
  --text: #1a2332;
  --text-muted: #5c6b7a;
  --border: rgba(10, 22, 40, 0.08);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.12);
  --shadow-hover: 0 24px 56px rgba(10, 22, 40, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --mobile-bar-h: 66px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, sans-serif;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(10, 22, 40, 0.12);
}

.logo-text { display: flex; flex-direction: column; }

.logo-brand {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.logo-brand span { color: var(--accent); }

.logo-tag {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--navy); }

.header-cta { display: flex; gap: 0.5rem; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.25s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s var(--ease);
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.4rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.4);
}

.btn-whatsapp,
.btn-book-wa,
.btn-hero-wa {
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover,
.btn-book-wa:hover,
.btn-hero-wa:hover {
  background: #20ba5a;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* WhatsApp booking CTAs — brand green */
.btn-book-wa,
.btn-hero-wa {
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
}

.btn-book-call,
.btn-hero-call {
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

.btn-book-call:hover,
.btn-hero-call:hover {
  background: rgba(255, 107, 26, 0.15);
  border-color: #ff8c4d;
  color: var(--white);
}

/* Call button on light backgrounds (contact card, fleet cards) */
.btn-book-call--light {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--accent);
  backdrop-filter: none;
  box-shadow: none;
}

.btn-book-call--light:hover {
  background: rgba(255, 107, 26, 0.08);
  border-color: var(--accent-hover);
  color: var(--navy);
}

/* Section */
.section {
  padding: 4.5rem 0;
  scroll-margin-top: var(--header-h);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.center { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 2.5rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header.center .section-desc { margin-inline: auto; }

/* Header WhatsApp — green outline */
.btn-header-wa {
  background: transparent;
  color: var(--whatsapp);
  border: 1.5px solid var(--whatsapp);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-header-wa:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #20ba5a;
  border-color: #20ba5a;
}

.btn-header-wa .btn-icon {
  color: var(--whatsapp);
}

.btn-icon { flex-shrink: 0; }

/* Cinematic hero — demo layout */
.hero-cinematic {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 1.5rem) 0 2rem;
  color: var(--white);
  overflow: hidden;
  background: #0a0f18;
}

.hero-cinematic-scenery {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-scenery-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 14, 0.94) 0%,
      rgba(5, 8, 14, 0.72) 32%,
      rgba(5, 8, 14, 0.25) 52%,
      transparent 68%
    ),
    linear-gradient(180deg, rgba(5, 8, 14, 0.35) 0%, transparent 28%, transparent 72%, rgba(5, 8, 14, 0.45) 100%);
}

.hero-cinematic-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: calc(100svh - var(--header-h) - 2rem);
}

@media (min-width: 993px) {
  .hero-cinematic-inner {
    grid-template-columns: minmax(0, 520px) 1fr;
    align-items: center;
  }

  .hero-scene-img {
    object-position: 55% 42%;
  }
}

.hero-cinematic-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 36rem;
}

.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-trust-star {
  color: #fbbf24;
  margin-right: 0.2rem;
}

.hero-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-cinematic-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-headline-accent {
  color: var(--accent);
}

.hero-cinematic-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1rem;
  list-style: none;
}

@media (min-width: 520px) {
  .hero-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.hero-feature-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cinematic-actions .btn-hero-wa {
  flex: 1 1 200px;
}

.hero-cinematic-actions .btn-hero-call {
  flex: 0 1 auto;
}

.hero-fleet-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-width: 320px;
}

.hero-fleet-card-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.hero-fleet-card-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-fleet-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.hero-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

/* Tap right side (Thar in scene) → vehicle details */
.hero-scene-tap {
  position: absolute;
  z-index: 2;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  width: 58%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hero-scene-tap:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -4px;
}

/* Floating stats — bottom right */
.hero-stats-float {
  position: absolute;
  z-index: 3;
  right: max(1.25rem, calc((100vw - var(--max)) / 2 + 1rem));
  bottom: 2rem;
  display: flex;
  gap: 0;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  background: rgba(8, 12, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-icon {
  color: var(--accent);
  display: flex;
  flex-shrink: 0;
}

.hero-stat-body {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.hero-stat-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.hero-stat-fleet-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.25;
  white-space: nowrap;
}

/* Fleet grid */
#cars { background: var(--white); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.vehicle-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.vehicle-card-image {
  position: relative;
  height: 240px;
  background: var(--bg);
  overflow: hidden;
}

.vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.vehicle-card:hover .vehicle-card-image img { transform: scale(1.03); }

.vehicle-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vehicle-card-body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.vehicle-card-tagline {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.vehicle-spec {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.vehicle-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.vehicle-card-actions .btn-view-photos {
  grid-column: 1 / -1;
}

.btn-view-photos {
  background: linear-gradient(180deg, #fff8f3 0%, #ffefe3 100%);
  color: var(--navy);
  border: 1.5px solid rgba(255, 107, 26, 0.45);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 107, 26, 0.12);
}

.btn-view-photos:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.35);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Reviews */
#reviews { background: var(--bg); }

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s var(--ease);
}

.review-card {
  flex: 0 0 min(100%, 380px);
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.review-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.2s;
}

.reviews-nav button:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.location-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: 0.3s;
}

.location-card:hover { box-shadow: var(--shadow-lg); }

.location-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.location-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.location-card.featured h3 { color: var(--accent); }

.location-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.location-card.featured p { color: rgba(255, 255, 255, 0.75); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

.map-directions {
  margin-top: 0.85rem;
  text-align: center;
}

.map-directions a,
.contact-directions {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.map-directions a:hover,
.contact-directions:hover {
  color: var(--accent-hover);
}

.contact-address {
  font-style: normal;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* FAQ */
.faq-list { max-width: 720px; margin-inline: auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.final-cta-actions .btn-book-wa {
  flex: 0 1 auto;
}

.final-cta-actions .btn-book-call {
  flex: 0 1 auto;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo-brand { color: var(--white); }
.footer-brand .logo-brand span { color: var(--accent); }

.footer-brand p {
  font-size: 0.9rem;
  margin: 1rem 0;
  line-height: 1.65;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.82rem;
  text-align: center;
}

/* Modal (gallery) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: 20px 20px 0 0;
  max-width: 900px;
  width: 100%;
  max-height: 92dvh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.25rem 0;
}

.modal-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.modal-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  cursor: pointer;
  font-size: 1.2rem;
}

.modal-gallery { padding: 0.75rem 1.25rem; }

.gallery-carousel { position: relative; }

.gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg);
  margin: 0 2.5rem;
}

.gallery-track {
  display: flex;
  transition: transform 0.35s var(--ease);
}

.gallery-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  max-height: 50vh;
  padding: 0.5rem;
}

.gallery-slide img {
  max-height: 48vh;
  width: 100%;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 2;
}

.gallery-arrow--prev { left: 0; }
.gallery-arrow--next { right: 0; }

.gallery-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.gallery-dots { display: flex; gap: 0.4rem; }

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
}

.gallery-dot.active { background: var(--accent); }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.gallery-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  height: 64px;
  padding: 0;
  cursor: pointer;
  background: var(--bg);
}

.gallery-thumb.active { border-color: var(--accent); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }

.modal-body { padding: 0 1.25rem 1.5rem; }

.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 1rem 0;
}

.modal-spec-item {
  background: var(--bg);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.modal-spec-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-actions .btn { flex: 1; min-width: 140px; }

.gallery-swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Floating / mobile bar */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.fab:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-hover);
}

.fab .icon-svg {
  width: 26px;
  height: 26px;
  display: block;
}

.fab-whatsapp { background: var(--whatsapp); color: var(--white); }
.fab-call { background: var(--accent); color: var(--white); }

.mobile-bar-btn .icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Sticky mobile booking bar — hidden on desktop */
.mobile-booking-bar {
  display: none;
}

@media (max-width: 992px) {
  body.is-mobile {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  }

  body.is-mobile .site-footer {
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-booking-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 960;
    min-height: var(--mobile-bar-h);
    height: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 32px rgba(10, 22, 40, 0.18);
    transform: translateY(110%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .mobile-booking-bar--visible {
    transform: translateY(0);
  }

  body.vehicle-modal-open .mobile-booking-bar {
    transform: translateY(110%);
    pointer-events: none;
    visibility: hidden;
  }

  body.vehicle-modal-open.is-mobile {
    padding-bottom: 0;
  }

  .mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: var(--mobile-bar-h);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 0.01em;
    -webkit-tap-highlight-color: transparent;
    transition: filter 0.15s ease, transform 0.15s ease;
  }

  .mobile-bar-btn:active {
    transform: scale(0.98);
    filter: brightness(0.92);
  }

  .mobile-bar-icon {
    flex-shrink: 0;
  }

  .mobile-bar-whatsapp {
    background: #25d366;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .mobile-bar-call {
    background: var(--accent);
  }
}

@media (min-width: 993px) {
  .mobile-booking-bar {
    display: none !important;
  }

  body.is-mobile {
    padding-bottom: 0;
  }
}

body.nav-open { overflow: hidden; }

/* Page hero inner */
.page-hero {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 2.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.page-hero p { color: var(--text-muted); margin-top: 0.5rem; }

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-card-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.contact-line {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.contact-line strong { color: var(--navy); }

.contact-phone {
  font-weight: 600;
  color: var(--navy);
}

.contact-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-map {
  min-height: 320px;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-desktop, .header-cta .btn-header-wa { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile { display: block; }

  .hero-cinematic {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .hero-cinematic-inner {
    min-height: 0;
  }

  .hero-scene-img {
    object-position: 65% 40%;
  }

  .hero-scene-tap {
    width: 100%;
    height: 42%;
    top: auto;
    bottom: 5.5rem;
  }

  .hero-cinematic-actions {
    flex-direction: column;
  }

  .btn-hero-wa,
  .btn-hero-call {
    width: 100%;
    flex: 1 1 auto;
  }

  .hero-fleet-card {
    max-width: none;
  }

  .hero-stats-float {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.4rem 0.6rem;
  }

  .hero-stat-label {
    white-space: normal;
    font-size: 0.58rem;
  }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-actions { display: none; }
  .logo-text { display: none; }
  .gallery-thumbs { display: none; }
  .gallery-dots { display: flex; }
  .gallery-swipe-hint { display: block; }
}

@media (max-width: 576px) {
  .section { padding: 3rem 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .vehicle-card-image { height: 220px; }
  .vehicle-card-actions { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0  0 100%; }
}

@media (min-width: 993px) {
  .modal-overlay { align-items: center; padding: 1rem; }
  .modal { border-radius: var(--radius); max-height: 90vh; }
}
