/* ===========================================================
   BOISAR BIKE POINT — STYLESHEET
   Design system: dark glassmorphism, condensed technical display
   type paired with a clean humanist body face, a single restrained
   red accent, and a dashed "lane line" motif used as the page's
   signature device (dividers + scroll rail).
   =========================================================== */

/* -----------------------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg: #0a0a0b;
  --bg-soft: #0d0d0f;
  --surface: #17171a;
  --surface-2: #1e1e22;

  /* Glass */
  --glass-fill: rgba(255, 255, 255, 0.045);
  --glass-fill-strong: rgba(255, 255, 255, 0.075);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-strong: rgba(255, 255, 255, 0.18);
  --glass-blur: 18px;

  /* Type colors */
  --text-primary: #f3f1ec;
  --text-secondary: #9a999f;
  --text-tertiary: #87868c;

  /* Metallic / silver */
  --silver: #c3c4c9;
  --silver-dim: rgba(195, 196, 201, 0.35);
  --silver-line: rgba(195, 196, 201, 0.22);

  /* Accent */
  --red: #c8272f;
  --red-bright: #e6323b;
  --red-dim: rgba(200, 39, 47, 0.16);
  --red-glow: rgba(200, 39, 47, 0.35);

  /* Elevation */
  --shadow-soft: 0 20px 50px -22px rgba(0, 0, 0, 0.65);
  --shadow-strong: 0 30px 70px -20px rgba(0, 0, 0, 0.75);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.18s;
  --dur-med: 0.4s;
  --dur-slow: 0.8s;

  /* Type */
  --font-display: "Rajdhani", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --edge: clamp(20px, 5vw, 64px);
  --header-h: 76px;
}

/* -----------------------------------------------------------
   2. RESET
   ----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

svg {
  display: block;
}

/* Background texture: faint radial glow, kept very subtle so the
   glass surfaces stay the star of the palette. */
body {
  background-image:
    radial-gradient(ellipse 900px 500px at 12% -5%, rgba(200, 39, 47, 0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(195, 196, 201, 0.06), transparent 55%);
  background-repeat: no-repeat;
}

/* -----------------------------------------------------------
   3. ACCESSIBILITY HELPERS
   ----------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  z-index: 1000;
  transition: top var(--dur-fast) var(--ease);
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -----------------------------------------------------------
   4. LAYOUT UTILITIES
   ----------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

section {
  position: relative;
  padding: clamp(56px, 9vw, 108px) 0;
}

.section-head {
  max-width: 620px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-bright);
  border-radius: 2px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  color: var(--text-primary);
}

.section-head p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 52ch;
}

/* Signature device: dashed "lane line" divider between sections.
   Evokes the dashed centre-line of a road — a visual through-line
   for a two-wheeler showroom. */
.lane-divider {
  height: 1px;
  margin: 0;
  background-image: repeating-linear-gradient(
    90deg,
    var(--silver-line) 0 26px,
    transparent 26px 46px
  );
  opacity: 0.7;
}

.lane-divider.center::before {
  content: "";
}

/* Vertical lane rail shown down the page edge on desktop as a
   scroll-progress indicator. Purely decorative + motion cue. */
.lane-rail {
  position: fixed;
  top: 0;
  left: 14px;
  width: 2px;
  height: 100vh;
  z-index: 5;
  pointer-events: none;
  display: none;
}

.lane-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    var(--silver-line) 0 18px,
    transparent 18px 34px
  );
}

.lane-rail__progress {
  position: absolute;
  top: 0;
  left: -1px;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--red-glow);
  transition: height 0.05s linear;
}

@media (min-width: 1200px) {
  .lane-rail {
    display: block;
  }
}

/* -----------------------------------------------------------
   5. GLASS SURFACES
   ----------------------------------------------------------- */
.glass {
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
  box-shadow: var(--shadow-soft);
}

/* -----------------------------------------------------------
   6. BUTTONS
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

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

.btn-primary {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  color: #fff;
  box-shadow: 0 14px 34px -12px var(--red-glow);
}
.btn-primary:hover {
  box-shadow: 0 18px 40px -10px var(--red-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--glass-fill);
  border: 1px solid var(--glass-border-strong);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--glass-fill-strong);
  border-color: var(--silver-dim);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border-strong);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--silver);
  background: var(--glass-fill);
}

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* -----------------------------------------------------------
   7. HEADER
   ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 11, 0.35);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.78);
  border-bottom-color: var(--glass-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  border: 1px solid var(--glass-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand__mark svg { width: 20px; height: 20px; color: var(--red-bright); }

.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.brand__text span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--silver);
}

.main-nav {
  display: none;
}

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

.main-nav a {
  display: inline-block;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text-primary);
  background: var(--glass-fill);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta .btn-primary {
  display: none;
}

.hamburger {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border-strong);
  background: var(--glass-fill);
}

.hamburger svg { width: 20px; height: 20px; }

.icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-menu { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-cta .btn-primary { display: inline-flex; }
  .hamburger { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 99;
  background: rgba(9, 9, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
  padding: 28px var(--edge) 40px;
  overflow-y: auto;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 16px 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.mobile-nav__cta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .mobile-nav { display: none; }
}

/* -----------------------------------------------------------
   8. HERO
   ----------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(48px, 8vw, 84px);
  padding-bottom: clamp(56px, 8vw, 90px);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 22px;
}

.hero__badge svg { width: 15px; height: 15px; color: var(--red-bright); }

.hero h1 {
  font-size: clamp(38px, 6.4vw, 66px);
  line-height: 1.04;
  color: var(--text-primary);
  max-width: 15ch;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(120deg, var(--silver) 0%, #fff 45%, var(--silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lede {
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 18.5px);
  color: var(--text-secondary);
  max-width: 46ch;
  line-height: 1.65;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 39, 47, 0.16), transparent 60%),
    linear-gradient(155deg, var(--surface-2), var(--bg-soft) 70%);
  box-shadow: var(--shadow-strong);
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual .placeholder-glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-dim);
}

.hero__visual .placeholder-glyph svg {
  width: 62%;
  max-width: 340px;
  height: auto;
}

.hero__visual-note {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid var(--glass-border);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  z-index: 2;
}

.hero__scroll {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
  color: var(--text-tertiary);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-track {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--silver-dim), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-track::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 100%;
  height: 34px;
  background: linear-gradient(180deg, transparent, var(--red-bright));
  animation: scrollDrop 2.2s var(--ease) infinite;
}

@keyframes scrollDrop {
  0% { top: -34px; }
  60%, 100% { top: 34px; }
}

@media (min-width: 720px) {
  .hero__scroll { display: flex; }
}

@media (min-width: 980px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* -----------------------------------------------------------
   9. QUICK INFO STRIP
   ----------------------------------------------------------- */
.info-strip {
  padding: 0;
  margin-top: -8px;
}

.info-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border-radius: var(--r-md);
  min-width: 0;
  transition: background var(--dur-fast) var(--ease);
}

.info-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.info-item:hover { background: var(--glass-fill); }

.info-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-dim);
  color: var(--red-bright);
  flex-shrink: 0;
}

.info-item__icon svg { width: 20px; height: 20px; }

.info-item__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.25;
}

.info-item__sub {
  font-size: 12.5px;
  color: var(--text-tertiary);
}

@media (min-width: 720px) {
  .info-strip__inner { grid-template-columns: repeat(4, 1fr); }
}

/* -----------------------------------------------------------
   10. VEHICLES
   ----------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-pill {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--glass-border-strong);
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: all var(--dur-fast) var(--ease);
}

.filter-pill:hover {
  color: var(--text-primary);
  border-color: var(--silver-dim);
}

.filter-pill.is-active {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  border-color: transparent;
  color: #fff;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.vehicle-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.55s var(--ease),
              transform var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease);
}

.vehicle-card.is-in-view { opacity: 1; }

.vehicle-card.is-leaving {
  opacity: 0;
  transform: scale(0.96);
}

.vehicle-card.is-hidden { display: none; }

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

.vehicle-image {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(150deg, var(--surface-2), var(--bg-soft) 75%);
  overflow: hidden;
}

.vehicle-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-image .placeholder-glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-dim);
}

.vehicle-image .placeholder-glyph svg { width: 46%; height: auto; }

.vehicle-category {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(8px);
  color: var(--silver);
}

.vehicle-body {
  padding: 20px;
}

.vehicle-body h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-primary);
}

.vehicle-desc {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.vehicle-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--silver);
}

.vehicle-price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vehicle-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border-strong);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.vehicle-cta svg { width: 16px; height: 16px; color: var(--red-bright); }

.vehicle-cta:hover {
  background: var(--red-dim);
  border-color: var(--red-glow);
}

.vehicle-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-tertiary);
  font-size: 15px;
}

@media (min-width: 640px) {
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1040px) {
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
}

/* -----------------------------------------------------------
   11. WHY CHOOSE US
   ----------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.why-card {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-strong);
}

.gauge-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  position: relative;
}

.gauge-icon svg { width: 100%; height: 100%; }

.gauge-icon .gauge-track {
  stroke: var(--glass-border-strong);
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
}

.gauge-icon .gauge-sweep {
  stroke: var(--red-bright);
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
}

.gauge-icon .gauge-glyph {
  stroke: var(--silver);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-size: 19px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1040px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* -----------------------------------------------------------
   12. ABOUT
   ----------------------------------------------------------- */
.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.about__copy p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.about__copy p + p { margin-top: 16px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about__stat {
  padding: 20px;
  border-radius: var(--r-md);
}

.about__stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.about__stat-value {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.3;
}

@media (min-width: 940px) {
  .about .container { grid-template-columns: 1.15fr 0.85fr; }
}

/* -----------------------------------------------------------
   13. LOCATION
   ----------------------------------------------------------- */
.location .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.location-card {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-card h3 {
  font-size: 24px;
  color: var(--text-primary);
}

.location-card__address {
  display: flex;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.location-card__address svg {
  width: 20px; height: 20px;
  color: var(--red-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.map-frame {
  position: relative;
  min-height: 300px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05) brightness(0.9);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(200, 39, 47, 0.12), transparent 60%),
    linear-gradient(160deg, var(--surface-2), var(--bg-soft));
}

.map-placeholder svg {
  width: 46px; height: 46px;
  color: var(--silver-dim);
}

.map-placeholder p {
  color: var(--text-tertiary);
  font-size: 13.5px;
  max-width: 30ch;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--glass-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
}

@media (min-width: 940px) {
  .location .container { grid-template-columns: 0.9fr 1.1fr; }
  .map-frame { min-height: unset; }
}

/* -----------------------------------------------------------
   14. CONTACT / ENQUIRY FORM
   ----------------------------------------------------------- */
.contact-card {
  padding: clamp(26px, 4vw, 44px);
  max-width: 760px;
  margin: 0 auto;
}

.contact-card__head {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 30px;
}

.contact-card__head h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.contact-card__head p {
  margin-top: 12px;
  color: var(--text-secondary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--silver);
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-tertiary);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red-glow);
  background: rgba(255, 255, 255, 0.06);
}

.field textarea { resize: vertical; min-height: 100px; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--red-bright);
}

.field__error {
  font-size: 12.5px;
  color: var(--red-bright);
  min-height: 15px;
}

.form-note {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-tertiary);
  text-align: center;
}

.form-actions { margin-top: 6px; }

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}

/* -----------------------------------------------------------
   15. FOOTER
   ----------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--glass-border);
  padding: 54px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-brand .brand { margin-bottom: 12px; }

.footer-brand p {
  color: var(--text-tertiary);
  font-size: 14px;
  max-width: 34ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: var(--text-secondary);
  font-size: 14.5px;
  transition: color var(--dur-fast) var(--ease);
}

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

.footer-col li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col li a svg { width: 16px; height: 16px; color: var(--red-bright); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-tertiary);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (min-width: 940px) {
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* -----------------------------------------------------------
   16. FLOATING WHATSAPP BUTTON
   ----------------------------------------------------------- */
.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--red-bright), var(--red));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px -10px var(--red-glow);
  transition: transform var(--dur-fast) var(--ease);
}

.float-whatsapp svg { width: 26px; height: 26px; color: #fff; }

.float-whatsapp:hover { transform: translateY(-3px) scale(1.04); }

@media (min-width: 900px) {
  .float-whatsapp { bottom: 28px; }
}

/* -----------------------------------------------------------
   17. MOBILE STICKY CTA BAR
   ----------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(12, 12, 14, 0.86);
  border-top: 1px solid var(--glass-border-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 11px 6px 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  border-right: 1px solid var(--glass-border);
}

.mobile-cta-bar a:last-child { border-right: none; }

.mobile-cta-bar a svg { width: 20px; height: 20px; }

.mobile-cta-bar a.is-primary { color: var(--red-bright); }

@media (min-width: 900px) {
  .mobile-cta-bar { display: none; }
}

/* Give the page breathing room above the mobile bar */
@media (max-width: 899px) {
  body { padding-bottom: 66px; }
}

/* -----------------------------------------------------------
   18. SCROLL REVEAL
   ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------------
   19. POLICY / PROSE CONTENT (privacy.html)
   ----------------------------------------------------------- */
.policy-hero {
  padding-top: clamp(40px, 7vw, 72px);
  padding-bottom: 8px;
}

.policy-hero .eyebrow { margin-bottom: 14px; }

.policy-hero h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.1;
}

.policy-hero .updated {
  margin-top: 14px;
  color: var(--text-tertiary);
  font-size: 13.5px;
}

.policy-content {
  max-width: 760px;
}

.policy-content h2 {
  font-size: 21px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-content ul {
  margin: 0 0 14px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-content ul li {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}

.policy-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--red-bright);
  border-radius: 2px;
}

.policy-content a {
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content a:hover { color: var(--text-primary); }

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.policy-back:hover { color: var(--text-primary); }

/* -----------------------------------------------------------
   20. REDUCED MOTION
   ----------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .vehicle-card { opacity: 1; transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll-track::before { animation: none; }
}
