/* ============================================================
   BHARAT AUTO HUB — Hero Premia Thane
   Mobile-first, premium dark theme
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Brand colours */
  --color-bg:         #0a0a0a;
  --color-surface:    #111111;
  --color-surface-2:  #1a1a1a;
  --color-border:     #2a2a2a;

  --color-gold:       #c9a84c;
  --color-gold-light: #e8c97a;
  --color-red:        #e31e24;
  --color-red-dark:   #b91519;

  --color-text:       #e8e8e8;
  --color-text-muted: #888888;
  --color-text-faint: #555555;
  --color-white:      #ffffff;

  /* Typography */
  --font-body:        'Inter', system-ui, sans-serif;
  --font-display:     'Rajdhani', 'Inter', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(201,168,76,0.2);

  /* Transitions */
  --transition: 0.25s ease;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
svg { flex-shrink: 0; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}
@media (min-width: 640px)  { .container { padding-inline: var(--space-8); } }
@media (min-width: 1024px) { .container { padding-inline: var(--space-12); } }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn--primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  box-shadow: 0 6px 20px rgba(227,30,36,0.35);
}

.btn--secondary {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}
.btn--secondary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-text-muted);
  color: var(--color-white);
}

.btn--sm { padding: 0.5rem 1.1rem; font-size: var(--text-xs); }

/* ── SECTION UTILITIES ─────────────────────────────────────── */
.section { padding-block: var(--space-20); }
.section--dark { background: var(--color-surface); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}
.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.section__desc {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 540px;
  margin-inline: auto;
}

/* ── HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-4);
}

.nav__logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav__links li a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.nav__links li a:hover { color: var(--color-white); }
.nav__cta { margin-left: var(--space-2); }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--color-surface);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-6);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--color-border);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links li { width: 100%; border-bottom: 1px solid var(--color-border); }
  .nav__links li a { display: block; padding: var(--space-4) 0; font-size: var(--text-base); color: var(--color-text); }
  .nav__cta { margin: var(--space-4) 0 0; }
}

/* ── HERO SECTION ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.6) 55%, rgba(10,10,10,0.4) 100%),
    url('../assets/showroom.jpg') center 35%/cover no-repeat;
  padding-top: 68px;
  box-sizing: border-box;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.2) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: var(--space-8);
}
.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-6xl));
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}
.hero__heading--accent { color: var(--color-gold); }
.hero__sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: rgba(232,232,232,0.8);
  margin-bottom: var(--space-10);
  max-width: 560px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── ABOUT SECTION ─────────────────────────────────────────── */
.about__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.about__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.about__card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.about__card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.about__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}
.about__card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ── BIKES TABS ────────────────────────────────────────────── */
.bikes__tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.bikes__tab {
  padding: 0.6rem 1.6rem;
  border: 2px solid var(--color-border);
  border-radius: 2rem;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.bikes__tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.bikes__tab.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000;
}
.bike-card[hidden] { display: none; }

/* ── BIKES GRID ────────────────────────────────────────────── */
.bikes__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
@media (min-width: 1100px) {
  .bikes__grid { grid-template-columns: repeat(3, 1fr); }
}

.bike-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.bike-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}
.bike-card--electric { border-color: #1a3a2a; }
.bike-card--electric:hover { border-color: #2ecc71; box-shadow: 0 0 20px rgba(46,204,113,0.2); }

.bike-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--color-gold);
  color: var(--color-bg);
}
.bike-card__badge--new  { background: var(--color-red); color: var(--color-white); }
.bike-card__badge--ev   { background: #2ecc71; color: #0a2010; }

.bike-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  overflow: hidden;
}
.bike-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-4);
  transition: transform 0.4s ease;
}
.bike-card:hover .bike-card__img-wrap img { transform: scale(1.08); }

.bike-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.bike-card__brand {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.bike-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.bike-card__specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-3);
  margin-block: var(--space-1);
}
.bike-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}
.bike-card__specs span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.bike-card__specs strong {
  font-size: var(--text-xs);
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}

.bike-card__body .btn { align-self: flex-start; margin-top: auto; }
.bike-card__actions {
  display: flex;
  gap: var(--space-2);
  margin-top: auto;
}
.bike-card__actions .btn { margin-top: 0; }

/* ── COLOR PICKER ──────────────────────────────────────────── */
.color-picker {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-1);
}
.color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s, border-color 0.15s;
  outline: none;
}
.color-swatch:hover { transform: scale(1.2); }
.color-swatch.active {
  border-color: var(--color-gold);
  transform: scale(1.15);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.3);
}
.color-name {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  min-height: 1.2em;
  margin-bottom: var(--space-2);
}

.bikes__note {
  text-align: center;
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  margin-top: var(--space-10);
}

/* ── BRAND SECTIONS (Harley + Vida) ────────────────────────── */
.brand-section__header {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  margin-bottom: var(--space-14, 3.5rem);
}
@media (max-width: 640px) {
  .brand-section__header { grid-template-columns: 1fr; }
}
.brand-section__desc {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
  max-width: 560px;
  margin-top: var(--space-4);
}
.brand-section__model-name {
  color: var(--color-gold);
  display: block;
}
.brand-section__model-name--green { color: #2ecc71; }

/* H-D logo placeholder */
.brand-section__logo-wrap {
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
}
.brand-section__logo--hd { width: 120px; height: 60px; }

/* Vida EV badge */
.brand-section__ev-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: #2ecc71;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Brand sections — Harley dark orange accent */
.brand-section--harley { background: #0d0d0d; border-top: 1px solid #1f1500; border-bottom: 1px solid #1f1500; }
.brand-section--vida   { /* uses section--dark */ }

/* Brand bike grid */
.brand-section__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
@media (min-width: 900px) {
  .brand-section__grid { grid-template-columns: repeat(2, 1fr); }
}
.brand-section--harley .brand-section__grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (min-width: 1000px) {
  .brand-section--harley .brand-section__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Brand bike card */
.brand-bike-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.brand-bike-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.brand-section--harley .brand-bike-card:hover { border-color: #e05a00; box-shadow: 0 8px 32px rgba(224,90,0,0.2); }
.brand-bike-card--ev:hover { border-color: #2ecc71; box-shadow: 0 8px 32px rgba(46,204,113,0.15); }

.brand-bike-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--color-gold);
  color: var(--color-bg);
}
.brand-bike-card__badge--new { background: var(--color-red); color: #fff; }
.brand-bike-card__badge--ev  { background: #2ecc71; color: #0a2010; }

.brand-bike-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-surface);
  overflow: hidden;
}
.brand-bike-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.brand-bike-card:hover .brand-bike-card__img-wrap img { transform: scale(1.04); }

.brand-bike-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.brand-bike-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.brand-bike-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e05a00;
}
.brand-bike-card__label--green { color: #2ecc71; }

.brand-bike-card__name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.brand-bike-card__tagline {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  font-style: italic;
}
.brand-bike-card__specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-4);
  margin-block: var(--space-1);
}
.brand-bike-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}
.brand-bike-card__specs span { font-size: var(--text-xs); color: var(--color-text-muted); }
.brand-bike-card__specs strong { font-size: var(--text-xs); color: var(--color-text); font-weight: 600; text-align: right; }

.brand-bike-card__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: auto;
}

/* Vida CTA button */
.btn--vida {
  background: #2ecc71;
  color: #0a2010;
  border-color: #2ecc71;
  font-weight: 700;
}
.btn--vida:hover {
  background: #27ae60;
  border-color: #27ae60;
  box-shadow: 0 6px 20px rgba(46,204,113,0.3);
}

/* WhatsApp CTA button */
.btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  font-weight: 700;
}
.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* WhatsApp icon-only button (bike cards) */
.btn--whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn--whatsapp-icon:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}
.btn--whatsapp-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

/* Brand section note (H-D exclusivity) */
.brand-section__note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-10);
  padding: var(--space-4) var(--space-5);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.brand-section__note svg { color: var(--color-gold); margin-top: 2px; flex-shrink: 0; }

/* Vida highlights strip */
.vida__highlights {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
}
.vida__highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}
.vida__highlight strong {
  font-size: var(--text-base);
  color: var(--color-white);
  font-weight: 700;
}
.vida__highlight span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── WHY SECTION ───────────────────────────────────────────── */
.why__grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.why__item { position: relative; padding-left: var(--space-8); }
.why__num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  user-select: none;
}
.why__item h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  margin-top: var(--space-1);
}
.why__item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.75;
}

/* ── CONTACT SECTION ───────────────────────────────────────── */
.contact__layout {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact__layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact__info { display: flex; flex-direction: column; gap: var(--space-8); }

.contact__address { display: flex; flex-direction: column; gap: var(--space-6); }
.contact__info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact__info-item svg {
  margin-top: 4px;
  color: var(--color-gold);
}
.contact__info-item strong {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}
.contact__info-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.75;
}
.contact__info-item a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.contact__info-item a:hover { color: var(--color-gold); }

.contact__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(40%) invert(90%) hue-rotate(180deg);
}

/* ── SHOWROOM BANNER ───────────────────────────────────────── */
.showroom-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.showroom-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.showroom-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.3) 50%,
    rgba(10,10,10,0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-8) var(--space-12);
}
.showroom-banner__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.showroom-banner__text span {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.showroom-banner__text strong {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 700;
  color: var(--color-white);
}
@media (max-width: 640px) {
  .showroom-banner__overlay { padding: var(--space-5) var(--space-5); }
}

/* ── BRAND PARTNERS STRIP ──────────────────────────────────── */
.brand-strip {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1510 50%, #0a0a0a 100%);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  /* Gold gradient borders top & bottom */
  background-clip: padding-box;
  padding: var(--space-8) 0;
  overflow: hidden;
}
/* Top gold line */
.brand-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, #fff8e0 50%, var(--color-gold) 70%, transparent 100%);
}
/* Bottom gold line */
.brand-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, #fff8e0 50%, var(--color-gold) 70%, transparent 100%);
}
.brand-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.brand-strip__label {
  position: relative;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
  padding-right: var(--space-10);
}
/* Vertical divider after label */
.brand-strip__label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}
.brand-strip__logos {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.brand-strip__logo {
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s, filter 0.3s;
}
.brand-strip__logo:hover {
  opacity: 1;
  transform: scale(1.08);
}
.brand-strip__logo--hero   { height: 52px; filter: brightness(0) invert(1); }
.brand-strip__logo--harley { height: 48px; filter: brightness(0) invert(1); }
.brand-strip__logo--vida   { height: 56px; border-radius: 6px; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-16);
}
.footer__inner {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-12);
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer__logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-3);
  display: block;
  mix-blend-mode: screen;
}
.footer__tag {
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer__address {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.75;
}
.footer__links nav ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__links nav ul a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition);
}
.footer__links nav ul a:hover { color: var(--color-gold); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__contact a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--color-gold); }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-6);
}
.footer__bottom .container { display: flex; flex-direction: column; gap: var(--space-1); }
.footer__bottom p {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
}
.footer__disclaimer { font-size: 0.7rem; }

/* ── SCROLL REVEAL ANIMATION ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delay for grid children */
.bikes__grid .bike-card:nth-child(2) { transition-delay: 0.08s; }
.bikes__grid .bike-card:nth-child(3) { transition-delay: 0.16s; }
.bikes__grid .bike-card:nth-child(4) { transition-delay: 0.24s; }
.bikes__grid .bike-card:nth-child(5) { transition-delay: 0.08s; }
.bikes__grid .bike-card:nth-child(6) { transition-delay: 0.16s; }
.bikes__grid .bike-card:nth-child(7) { transition-delay: 0.24s; }
.bikes__grid .bike-card:nth-child(8) { transition-delay: 0.08s; }
.bikes__grid .bike-card:nth-child(9) { transition-delay: 0.16s; }

/* ═══════════════════════════════════════════════════════════
   ① SECTION EYEBROW — flanking lines
═══════════════════════════════════════════════════════════ */
.section__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}
.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}
.section__eyebrow::after {
  background: linear-gradient(to left, transparent, var(--color-gold));
}

/* ═══════════════════════════════════════════════════════════
   ② BIKE CARD — sharp gold corner accent + deeper glow
═══════════════════════════════════════════════════════════ */
.bike-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-radius: var(--radius-md) 0 0 0;
  transition: border-color 0.3s ease, width 0.3s ease, height 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.bike-card:hover::before {
  border-top-color: var(--color-gold);
  border-left-color: var(--color-gold);
  width: 60px;
  height: 60px;
}
.bike-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15),
              0 12px 40px rgba(0,0,0,0.6),
              0 0 60px rgba(201,168,76,0.06);
  transform: translateY(-6px);
}

/* ═══════════════════════════════════════════════════════════
   ③ ENQUIRE NOW BUTTON — soft pulse ring
═══════════════════════════════════════════════════════════ */
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.5; }
  80%  { transform: scale(1.5);  opacity: 0; }
  100% { transform: scale(1.5);  opacity: 0; }
}
.btn--primary.btn--sm {
  position: relative;
  overflow: visible;
}
.btn--primary.btn--sm::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--color-red);
  animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   ④ HERO HEADING — entrance animation
═══════════════════════════════════════════════════════════ */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero__eyebrow {
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero__heading {
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.hero__sub {
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.hero__actions {
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

/* ═══════════════════════════════════════════════════════════
   ⑤ SCROLL REVEAL — stagger already above, plus slide direction
═══════════════════════════════════════════════════════════ */
.about__card.reveal       { transform: translateY(28px); }
.why__item.reveal         { transform: translateY(28px); }
.section__header.reveal   { transform: translateY(20px); }
.contact__info-item.reveal { transform: translateX(-20px); }

/* ═══════════════════════════════════════════════════════════
   ⑥ CONTACT INFO ITEMS — left border glow on hover
═══════════════════════════════════════════════════════════ */
.contact__info-item {
  padding-left: var(--space-4);
  border-left: 2px solid var(--color-border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact__info-item:hover {
  border-left-color: var(--color-gold);
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════════
   MOBILE — max 768px
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  .nav__logo-img { height: 40px; }

  /* ── HERO ── */
  .hero { min-height: 100svh; }
  .hero__heading { font-size: clamp(var(--text-2xl), 9vw, var(--text-4xl)); }
  .hero__actions { flex-direction: column; gap: var(--space-3); }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem var(--space-6);
    font-size: var(--text-base);
  }

  /* ── SECTIONS ── */
  .section { padding-block: var(--space-12); }
  .section__header { margin-bottom: var(--space-10); }

  /* ── ABOUT CARDS ── mobile: horizontal icon + text layout */
  .about__grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .about__card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    padding: var(--space-5) var(--space-6);
    /* Touch active state */
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .about__card:active {
    background: var(--color-surface-2);
    border-color: var(--color-gold);
  }
  .about__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── BIKES TABS — horizontal scroll, no wrap ── */
  .bikes__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-2);
    margin-bottom: var(--space-6);
    gap: var(--space-2);
  }
  .bikes__tabs::-webkit-scrollbar { display: none; }
  .bikes__tab {
    flex-shrink: 0;
    padding: 0.6rem 1.4rem;
    font-size: var(--text-sm);
    /* touch active */
    transition: background 0.15s, border-color 0.15s, color 0.15s;
  }
  .bikes__tab:active {
    background: rgba(201,168,76,0.15);
    border-color: var(--color-gold);
  }

  /* ── BIKES GRID — 2 column on tablet, 1 on phone ── */
  .bikes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  /* ── BIKE CARD — replace hover with :active ── */
  .bike-card:hover { transform: none; box-shadow: none; border-color: var(--color-border); }
  .bike-card:hover::before { width: 40px; height: 40px; border-color: transparent; }
  .bike-card--electric:hover { border-color: #1a3a2a; box-shadow: none; }
  .bike-card:active {
    transform: scale(0.98);
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.2);
  }
  /* Corner accent always visible on mobile (no hover) */
  .bike-card::before {
    border-top-color: rgba(201,168,76,0.25);
    border-left-color: rgba(201,168,76,0.25);
  }

  /* ── BIKE CARD BODY — tighter on mobile ── */
  .bike-card__body { padding: var(--space-4); }
  .bike-card__name { font-size: var(--text-lg); }
  .bike-card__specs { gap: var(--space-2); }
  .bike-card__specs li { font-size: var(--text-xs); }

  /* ── ENQUIRE NOW — always visible pulse ── */
  .btn--primary.btn--sm::after { animation-duration: 2s; }

  /* ── BRAND STRIP ── */
  .brand-strip { padding: var(--space-6) 0; }
  .brand-strip__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
  }
  .brand-strip__label { padding-right: 0; }
  .brand-strip__label::after { display: none; }
  .brand-strip__logos { gap: var(--space-6); justify-content: center; flex-wrap: wrap; }
  .brand-strip__logo--hero   { height: 38px; }
  .brand-strip__logo--harley { height: 34px; }
  .brand-strip__logo--vida   { height: 44px; }

  /* ── SHOWROOM BANNER ── */
  .showroom-banner__overlay { padding: var(--space-5); }
  .showroom-banner__text strong { font-size: var(--text-xl); }

  /* ── WHY US — 1 column, numbered items bigger ── */
  .why__grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .why__item {
    padding: var(--space-5) var(--space-5) var(--space-5) var(--space-10);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color 0.15s ease;
  }
  .why__item:active { border-color: rgba(201,168,76,0.4); }

  /* ── CONTACT ── */
  .contact__map iframe { height: 260px; }
  .contact__info-item {
    padding: var(--space-4) var(--space-4) var(--space-4) var(--space-5);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border-left-width: 2px;
  }
  .contact__info-item:hover { transform: none; }
  .contact__info-item:active { border-left-color: var(--color-gold); }

  /* ── FOOTER ── */
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__logo { height: 56px; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE — max 480px  (small phones, single column)
══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .section { padding-block: var(--space-10); }
  .section__header { margin-bottom: var(--space-8); }
  .section__eyebrow::before,
  .section__eyebrow::after { flex: 0 0 20px; }

  /* Single column bikes on small phones */
  .bikes__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .bike-card__img-wrap { aspect-ratio: 16 / 9; }

  /* Hero */
  .hero__heading { font-size: var(--text-3xl); }
  .hero__sub { font-size: var(--text-sm); }
}

/* ── WHATSAPP FLOATING ACTION BUTTON ─────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* Tooltip */
.whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-fab:hover .whatsapp-fab__tooltip {
  opacity: 1;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

@media (max-width: 768px) {
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 16px;
  }
  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
  .whatsapp-fab__tooltip { display: none; }
}
