/* ============================================================
   DASH IMPORTS — Global Stylesheet
   Luxury Automotive Import & Bespoke Sourcing
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colours — Brand: Charcoal · Platinum Silver · White */
  --clr-bg:         #11141A;  /* dark charcoal — matches logo top section */
  --clr-surface:    #191D25;
  --clr-surface-2:  #21262F;
  --clr-border:     #2B3040;
  --clr-border-lt:  #374252;
  --clr-gold:       #A8B2C0;  /* platinum silver — logo wave / car silhouette */
  --clr-gold-lt:    #BEC8D4;
  --clr-gold-dim:   rgba(168,178,192,.10);
  --clr-brand:      #3A4050;  /* logo primary charcoal */
  --clr-text:       #ECEDF2;
  --clr-text-2:     #828A98;  /* logo "imports" italic grey */
  --clr-text-3:     #4A5260;
  --clr-white:      #FFFFFF;
  --clr-wa:         #25D366;

  /* Fonts */
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;

  /* Nav */
  --nav-h: 72px;

  /* Spacing */
  --sp-xs:   8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  48px;
  --sp-xl:  80px;
  --sp-2xl:120px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-med:  260ms ease;
  --t-slow: 400ms cubic-bezier(.25,.46,.45,.94);

  /* Radius */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
}

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

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ──────────────────────────────────────────── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
}
.section-title em { font-style: italic; color: var(--clr-gold); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
@media (min-width: 768px)  { .container { padding: 0 var(--sp-lg); } }
@media (min-width: 1280px) { .container { padding: 0 var(--sp-xl); } }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--t-med);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: #FFBFA0;
  color: #13161C;
  font-weight: 700;
}
.btn--gold:hover { background: #FFD5B8; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--clr-border-lt);
  color: var(--clr-text);
}
.btn--outline:hover { border-color: #FFBFA0; color: #FFBFA0; }
.btn--ghost {
  background: transparent;
  color: #FFBFA0;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: .1em;
}
.btn--ghost:hover { gap: 14px; }
.btn--sm { padding: 10px 22px; font-size: .75rem; }

/* ── Scroll-reveal ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,9,10,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--clr-border);
}
.nav.nav--solid {
  background: var(--clr-bg);
  border-bottom-color: var(--clr-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
@media (min-width: 768px) { .nav__inner { padding: 0 var(--sp-lg); } }

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-img {
  height: 52px;
  width: auto;
  border-radius: var(--r-md);
  display: block;
  /* The logo has a built-in background — shown as a contained badge */
}
/* Fallback text logo (shown if image fails) */
.nav__logo-mark {
  width: 36px; height: 36px;
  background: var(--clr-gold);
  display: none; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #13161C;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  letter-spacing: 0;
}
.nav__logo--fallback .nav__logo-mark { display: flex; }
.nav__logo--fallback .nav__logo-img  { display: none; }
.nav__logo-text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
  margin-left: 10px;
}
.nav__logo--fallback .nav__logo-text { display: flex; }
.nav__logo-text strong {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-text);
}
.nav__logo-text em {
  font-family: var(--ff-body);
  font-style: normal;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* Links */
.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__links a {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-text-2);
  transition: color var(--t-fast);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--clr-gold);
  transition: width var(--t-med);
}
.nav__links a:hover,
.nav__links a.active { color: var(--clr-text); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__cta { display: none; }
@media (min-width: 900px) { .nav__cta { display: inline-flex; } }

/* Hamburger */
.nav__hamburger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--clr-text);
  transition: transform var(--t-med), opacity var(--t-med);
  border-radius: 1px;
}
@media (min-width: 900px) { .nav__hamburger { display: none; } }

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--clr-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform var(--t-slow);
}
.mobile-menu.open { transform: none; }
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.8rem;
  color: var(--clr-text-2);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--t-fast);
  line-height: 1;
}
.mobile-menu__close:hover { color: var(--clr-text); }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.mobile-menu a:not(.btn) {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--clr-text-2);
  transition: color var(--t-fast);
}
.mobile-menu a:not(.btn):hover { color: var(--clr-gold); }

/* ============================================================
   HERO — Homepage
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-xl);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1580274455191-1c62238fa333?w=1800&q=85') center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8,9,10,.95) 0%,
    rgba(8,9,10,.65) 55%,
    rgba(8,9,10,.8)  100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--sp-xl)) var(--sp-md) 0;
}
@media (min-width: 768px) {
  .hero__content { padding: calc(var(--nav-h) + var(--sp-xl)) var(--sp-lg) 0; }
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--clr-gold);
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.03em;
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--clr-gold); }
.hero__sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--clr-text-2);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px; right: var(--sp-md);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-3);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50%       { opacity: 1; }
}

/* ── Stats Strip ──────────────────────────────────────────── */
.stats {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-lg) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--clr-border);
}
@media (min-width: 640px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  background: var(--clr-surface);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
}
.stat-item__num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-gold);
  display: inline;
}
.stat-item__suffix {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--clr-gold);
}
.stat-item__label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-text-2);
  margin-top: 8px;
}

/* ── Section Common ──────────────────────────────────────── */
.section { padding: var(--sp-xl) 0; }
@media (min-width: 768px) { .section { padding: var(--sp-2xl) 0; } }

.section-header { margin-bottom: var(--sp-lg); }
@media (min-width: 768px) { .section-header { margin-bottom: var(--sp-xl); } }
.section-header .eyebrow  { margin-bottom: 16px; display: block; }
.section-header .section-title { margin-bottom: 16px; }
.section-header p { color: var(--clr-text-2); max-width: 56ch; line-height: 1.75; font-size: .95rem; }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* ── Services Grid ────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--clr-surface);
  padding: var(--sp-lg) var(--sp-md);
  transition: background var(--t-med);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .service-card { padding: 52px 44px; } }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--clr-gold);
  transition: height var(--t-slow);
}
.service-card:hover { background: var(--clr-surface-2); }
.service-card:hover::before { height: 100%; }

.service-card__icon {
  width: 48px; height: 48px;
  background: var(--clr-gold-dim);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background var(--t-med);
}
.service-card:hover .service-card__icon { background: #FFBFA0; }
.service-card__icon svg { width: 22px; height: 22px; stroke: var(--clr-gold); fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card__text { font-size: .88rem; color: var(--clr-text-2); line-height: 1.75; }
.service-card__num {
  position: absolute;
  bottom: var(--sp-md); right: var(--sp-md);
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--clr-border);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── Process Steps ────────────────────────────────────────── */
.process { background: var(--clr-surface); }
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 640px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .process__grid { grid-template-columns: repeat(4, 1fr); } }

.process__step {
  position: relative;
  padding-top: 24px;
}
.process__step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--clr-gold);
}
.process__num {
  font-family: var(--ff-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--clr-border-lt);
  line-height: 1;
  margin-bottom: 16px;
}
.process__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--clr-text);
}
.process__text { font-size: .85rem; color: var(--clr-text-2); line-height: 1.75; }

/* ── Why Cards ────────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
@media (min-width: 640px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

.why__item {
  display: flex;
  gap: 20px;
  padding: var(--sp-md);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  transition: border-color var(--t-med), background var(--t-med);
}
.why__item:hover { border-color: var(--clr-gold); background: var(--clr-gold-dim); }
.why__item:hover .why__icon { background: #FFBFA0; }
.why__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--clr-gold-dim);
  border-radius: var(--r-sm);
}
.why__icon svg { width: 20px; height: 20px; stroke: var(--clr-gold); fill: none; stroke-linecap: round; stroke-linejoin: round; }
.why__title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.why__text  { font-size: .82rem; color: var(--clr-text-2); line-height: 1.65; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-gold), transparent);
}
.cta-banner__inner { max-width: 640px; margin: 0 auto; }
.cta-banner .eyebrow { margin-bottom: 16px; display: block; }
.cta-banner .section-title { margin-bottom: 16px; }
.cta-banner p { color: var(--clr-text-2); margin-bottom: 32px; font-size: .95rem; line-height: 1.7; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Vehicle Cards ───────────────────────────────────────── */
.vehicles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
@media (min-width: 640px) { .vehicles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .vehicles__grid { grid-template-columns: repeat(3, 1fr); } }

.vehicle-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med);
}
.vehicle-card:hover { border-color: var(--clr-gold); transform: translateY(-4px); }
.vehicle-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.vehicle-card__img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.vehicle-card:hover .vehicle-card__img { transform: scale(1.04); }
.vehicle-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--clr-brand);
  color: var(--clr-gold);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}
.vehicle-card__body { padding: 20px; }
.vehicle-card__title { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.vehicle-card__sub   { font-size: .8rem; color: var(--clr-text-2); margin-bottom: 16px; }
.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}
.vehicle-card__price { font-size: .82rem; font-weight: 600; color: var(--clr-gold); letter-spacing: .04em; }
.vehicle-card__cta   { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--clr-text-2); transition: color var(--t-fast); }
.vehicle-card:hover .vehicle-card__cta { color: var(--clr-gold); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-xl);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,9,10,.94) 0%,
    rgba(8,9,10,.55) 100%
  );
}
.page-hero__content {
  position: relative; z-index: 1;
  padding-top: calc(var(--nav-h) + var(--sp-lg));
}
.page-hero .eyebrow { margin-bottom: 16px; display: block; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: .95rem; color: var(--clr-text-2); max-width: 52ch; line-height: 1.75; }

/* ── About Page ──────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
@media (min-width: 900px) { .about-story { grid-template-columns: 5fr 6fr; } }

.about-story__img-wrap {
  position: relative;
}
.about-story__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
}
.about-story__accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 2px solid var(--clr-gold);
  border-radius: var(--r-md);
  z-index: -1;
  opacity: .5;
}

.about-story__text .eyebrow { margin-bottom: 16px; display: block; }
.about-story__text .section-title { margin-bottom: 20px; }
.about-story__text p {
  color: var(--clr-text-2);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .95rem;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
@media (min-width: 640px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .values__grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  padding: 32px 24px;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  text-align: center;
  transition: border-color var(--t-med), background var(--t-med);
}
.value-card:hover { border-color: var(--clr-gold); background: var(--clr-gold-dim); }
.value-card__icon {
  width: 52px; height: 52px;
  background: var(--clr-gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-card__icon svg { width: 22px; height: 22px; stroke: var(--clr-gold); fill: none; stroke-linecap: round; stroke-linejoin: round; }
.value-card__title { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.value-card__text  { font-size: .82rem; color: var(--clr-text-2); line-height: 1.65; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 5fr 7fr; align-items: start; } }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info .eyebrow { margin-bottom: 4px; display: block; }
.contact-info > .section-title { margin-bottom: 12px; }
.contact-info > p { color: var(--clr-text-2); line-height: 1.75; margin-bottom: 16px; font-size: .95rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  transition: border-color var(--t-med);
}
.contact-detail:hover { border-color: var(--clr-gold); }
.contact-detail__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--clr-gold-dim);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail__icon svg { width: 18px; height: 18px; stroke: var(--clr-gold); fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-3);
  margin-bottom: 4px;
}
.contact-detail__val { font-size: .9rem; font-weight: 500; }
.contact-detail__val a { transition: color var(--t-fast); }
.contact-detail__val a:hover { color: var(--clr-gold); }

.wa-inline-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--r-md);
  font-size: .88rem;
  font-weight: 600;
  color: #25D366;
  transition: background var(--t-med), border-color var(--t-med);
  cursor: pointer;
}
.wa-inline-btn:hover { background: rgba(37,211,102,.18); border-color: rgba(37,211,102,.45); }
.wa-inline-btn svg { width: 22px; height: 22px; fill: #25D366; flex-shrink: 0; }

/* Contact Form */
.contact-form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--clr-gold), transparent);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 48px; } }

.form-title { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 600; margin-bottom: 6px; }
.form-sub   { font-size: .85rem; color: var(--clr-text-2); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; gap: 16px; } }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-text-2);
}
.form-group .req { color: var(--clr-gold); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-lt);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--clr-text);
  transition: border-color var(--t-fast);
  outline: none;
  width: 100%;
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clr-gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--clr-text-3); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--clr-surface); color: var(--clr-text); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-group .form-error { font-size: .74rem; color: #E05555; min-height: 1em; }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #E05555; }

.form-submit { margin-top: 8px; width: 100%; justify-content: center; gap: 10px; }
.btn-loader { display: none; width: 16px; height: 16px; border: 2px solid rgba(10,10,10,.3); border-top-color: #0A0A0A; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

#formSuccess { display: none; text-align: center; padding: var(--sp-lg); }
#formSuccess .success-icon {
  width: 60px; height: 60px;
  background: rgba(37,211,102,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
#formSuccess .success-icon svg { width: 28px; height: 28px; stroke: var(--clr-wa); fill: none; stroke-linecap: round; stroke-linejoin: round; }
#formSuccess h3 { font-family: var(--ff-display); font-size: 2rem; margin-bottom: 8px; }
#formSuccess p  { color: var(--clr-text-2); font-size: .9rem; }

/* ── Inventory Page ──────────────────────────────────────── */
.inventory-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
}
.inventory-intro .eyebrow { margin-bottom: 16px; display: block; }
.inventory-intro .section-title { margin-bottom: 16px; }
.inventory-intro p { color: var(--clr-text-2); line-height: 1.75; font-size: .95rem; }

.carlist-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--sp-xl);
  position: relative;
  overflow: hidden;
}
.carlist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--clr-gold), transparent);
}
.carlist-card__logo {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.carlist-card__sub { font-size: .8rem; color: var(--clr-text-2); margin-bottom: 28px; }
.carlist-card .btn { width: 100%; justify-content: center; max-width: 280px; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--clr-gold-dim);
  border: 1px solid rgba(200,147,58,.28);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
}
.live-badge__dot {
  width: 6px; height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ── WhatsApp FAB ─────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 58px; height: 58px;
  background: var(--clr-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform var(--t-med), box-shadow var(--t-med);
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.wa-fab svg { width: 28px; height: 28px; fill: white; flex-shrink: 0; }
.wa-fab__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: .35; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  white-space: nowrap;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-lt);
  color: var(--clr-text);
  font-size: .74rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--t-med), transform var(--t-med);
}
.wa-fab:hover .wa-fab__tooltip { opacity: 1; transform: none; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-xl) 0 var(--sp-lg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
}
@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__brand .nav__logo { margin-bottom: 16px; display: flex; }
.footer__brand p {
  font-size: .82rem;
  color: var(--clr-text-2);
  line-height: 1.75;
  max-width: 32ch;
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--clr-border-lt);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.footer__social a:hover { border-color: var(--clr-gold); background: var(--clr-gold-dim); }
.footer__social svg { width: 14px; height: 14px; stroke: var(--clr-text-2); fill: none; }
.footer__social a:hover svg { stroke: var(--clr-gold); }

.footer__col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-text-3);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .82rem; color: var(--clr-text-2); transition: color var(--t-fast); }
.footer__links a:hover { color: var(--clr-gold); }

.footer__bottom {
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: .74rem; color: var(--clr-text-3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .74rem; color: var(--clr-text-3); transition: color var(--t-fast); }
.footer__legal a:hover { color: var(--clr-text-2); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 479px) {
  .btn { padding: 12px 24px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .wa-fab { bottom: 20px; right: 20px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
