/* ═══════════════════════════════════════════════
   HARLEYVERSE — HOMEPAGE CSS
   Dark premium theme, 3D effects, responsive
   ═══════════════════════════════════════════════ */

:root {
  --orange:       #FF6600;
  --orange-light: #FF8833;
  --orange-dark:  #CC4400;
  --gold:         #FFD700;
  --black:        #050505;
  --dark:         #0D0D0D;
  --dark2:        #141414;
  --dark3:        #1C1C1C;
  --dark4:        #242424;
  --chrome:       #C8C8C8;
  --white:        #FFFFFF;
  --gray:         #888888;
  --gray2:        #555555;
  --nav-h:        72px;
  --transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--orange); color: var(--white); }

/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.spin-arc { animation: spin 1s linear infinite; transform-origin: 50px 50px; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes plPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.7; transform:scale(0.92); } }
.loader-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 8px;
  color: var(--white);
}
.loader-bar {
  width: 200px; height: 3px;
  background: var(--dark3);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  width: 0;
  transition: width 0.05s linear;
}

/* ══════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════ */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-trail {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(255,102,0,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}
.cursor.hovered { width: 18px; height: 18px; background: var(--orange-light); }
.cursor-trail.hovered { width: 50px; height: 50px; border-color: rgba(255,102,0,0.3); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,102,0,0.15);
}
.nav-wrap {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 32px;
  height: var(--nav-h);
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}
.logo-accent {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--orange);
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.has-drop { position: relative; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--orange); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 20px;
  font-size: 13px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.dropdown a:hover { color: var(--orange); padding-left: 26px; }
.nav-right {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  position: relative;
}
.nav-icon-btn:hover { color: var(--orange); background: rgba(255,102,0,0.1); }
.cart-dot {
  position: absolute; top: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--black);
}
.btn-quote {
  padding: 9px 20px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-quote:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,102,0,0.4); }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; padding: 6px 0;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Search Bar */
.search-bar {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(20px);
}
.search-bar.open { max-height: 70px; }
.search-bar input {
  width: 100%; padding: 16px 24px;
  background: none; border: none;
  color: var(--white); font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.search-bar input::placeholder { color: var(--gray2); }
.search-close {
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 18px;
  transition: color var(--transition);
}
.search-close:hover { color: var(--orange); }
/* Mobile Nav */
.mob-nav {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav ul { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mob-nav a {
  font-family: 'Bebas Neue', cursive;
  font-size: 42px; letter-spacing: 4px;
  color: var(--white); display: block; padding: 8px;
  transition: color var(--transition);
}
.mob-nav a:hover { color: var(--orange); }
.mob-nav-footer { margin-top: 32px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 80px 120px;
  gap: 40px;
  overflow: hidden;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,102,0,0.06) 0%, transparent 60%),
              linear-gradient(to right, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.4) 60%, rgba(5,5,5,0.1) 100%);
  z-index: 1;
}
.hero-left, .hero-right {
  position: relative; z-index: 2;
}
.hero-eyebrow { margin-bottom: 20px; }
.eyebrow-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,102,0,0.15);
  border: 1px solid rgba(255,102,0,0.4);
  border-radius: 30px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--orange);
}
.hero-title { line-height: 0.9; margin-bottom: 24px; }
.ht-line {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(68px, 8vw, 120px);
  letter-spacing: 4px;
}
.ht-outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.ht-fill { color: var(--white); }
.ht-orange {
  color: var(--orange);
  -webkit-text-stroke: 2px var(--orange);
  text-shadow: 0 0 40px rgba(255,102,0,0.4);
}
.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all var(--transition);
  border: 2px solid var(--orange);
}
.btn-hero-primary:hover {
  background: transparent;
  box-shadow: 0 0 0 1px var(--orange), 0 16px 40px rgba(255,102,0,0.3);
  transform: translateY(-2px);
}
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-hero-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* 3D Bike Scene */
.hero-right { display: flex; justify-content: center; align-items: center; }
.bike-3d-scene {
  position: relative;
  width: min(560px, 90%);
  aspect-ratio: 680/360;
}
.bike-glow-ring {
  position: absolute; inset: -10%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,102,0,0.12) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}
.bike-glow-core {
  position: absolute; inset: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,102,0,0.07) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite 1.5s;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-moto-svg {
  width: 100%; height: auto;
  filter: drop-shadow(0 0 30px rgba(255,102,0,0.2));
  animation: float-bike 4s ease-in-out infinite;
}
@keyframes float-bike {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.spin-ring { animation: spin-slow 8s linear infinite; transform-box: fill-box; transform-origin: center; }
.rear-w .spin-ring { animation-direction: normal; }
.front-w .spin-ring { animation-direction: normal; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.exhaust-pulse { animation: exhaust-flicker 0.8s ease-in-out infinite alternate; }
@keyframes exhaust-flicker {
  from { opacity: 0.3; }
  to { opacity: 0.8; }
}
.headlight-pulse { animation: headlight-beat 2s ease-in-out infinite; }
@keyframes headlight-beat {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}
.tail-pulse { animation: tail-beat 1s ease-in-out infinite alternate; }
@keyframes tail-beat {
  from { opacity: 0.5; }
  to { opacity: 0.9; }
}
.bike-platform {
  position: absolute; bottom: -5px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,102,0,0.4), transparent);
}

/* Stats Row */
.hero-stats {
  grid-column: 1 / -1;
  display: flex; align-items: center;
  gap: 0;
  position: relative; z-index: 2;
  padding: 28px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.stat-item {
  flex: 1; text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
}
.stat-plus { font-family: 'Bebas Neue', cursive; font-size: 32px; color: var(--orange); }
.stat-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-sep {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.1);
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-drop 1.6s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.scroll-hint span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   MARQUEE BAR
══════════════════════════════════════ */
.marquee-bar {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 24px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.marquee-track .mx { color: rgba(255,255,255,0.5); font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   SECTIONS — SHARED
══════════════════════════════════════ */
.section { padding: 100px 0; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 32px; }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 14px;
}
.accent { color: var(--orange); }
.sec-sub {
  color: rgba(255,255,255,0.5);
  font-size: 15px; max-width: 500px;
  margin: 0 auto;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   BIKES SECTION
══════════════════════════════════════ */
.bikes-section { background: var(--dark); }
.filter-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,102,0,0.35);
}
.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* 3D Bike Card */
.bike-card { perspective: 1200px; }
.card-3d {
  position: relative;
  background: var(--dark3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow var(--transition), transform var(--transition);
  transform-style: preserve-3d;
}
.card-3d:hover { box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,102,0,0.2); }
.featured-card .card-3d {
  border-color: rgba(255,102,0,0.25);
  box-shadow: 0 0 30px rgba(255,102,0,0.1);
}
.card-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  z-index: 1; pointer-events: none;
  border-radius: 16px;
}
.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.touring-bg   { background: linear-gradient(135deg, #0d1a2a 0%, #1a2d42 100%); }
.sportster-bg { background: linear-gradient(135deg, #1a0a00 0%, #2d1500 100%); }
.fatboy-bg    { background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%); }
.cvo-bg       { background: linear-gradient(135deg, #0e0618 0%, #1e0d30 100%); }
.card-img-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}
.c-svg {
  width: 96%; height: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}
.card-badge {
  position: absolute; top: 14px; left: 14px;
  z-index: 3;
  background: var(--orange);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
}
.card-badge.hot { background: #CC0000; }
.card-badge.premium {
  background: linear-gradient(90deg, #7B6000, #FFD700, #7B6000);
  color: #1a1000;
}
.quick-view {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  z-index: 3;
  background: rgba(255,255,255,0.9);
  color: var(--dark);
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  padding: 7px 18px;
  border-radius: 3px;
  transition: all var(--transition);
  white-space: nowrap;
}
.card-img-wrap:hover .quick-view { opacity: 1; transform: translateX(-50%) translateY(0); }
.card-body { padding: 22px; }
.card-top-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cat-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(255,102,0,0.12);
  border-radius: 20px;
}
.cat-tag.sportster { color: #FF4400; background: rgba(255,68,0,0.12); }
.cat-tag.softail { color: var(--chrome); background: rgba(200,200,200,0.1); }
.cat-tag.cvo { color: var(--gold); background: rgba(255,215,0,0.1); }
.card-stars { font-size: 11px; color: var(--orange); }
.rcount { color: var(--gray); font-size: 10px; margin-left: 2px; }
.card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}
.specs-row {
  display: flex; gap: 10px;
  margin-bottom: 18px;
}
.spec {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  text-align: center;
}
.sl { font-size: 10px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.sv { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.price-from { display: block; font-size: 10px; color: var(--gray); letter-spacing: 1px; }
.price {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px; letter-spacing: 1px;
  color: var(--orange);
}
.price-gold { color: var(--gold); }
.card-actions { display: flex; gap: 8px; }
.btn-fav {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 16px; color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.btn-fav:hover { border-color: #FF4444; color: #FF4444; }
.btn-view-card {
  padding: 8px 16px;
  background: rgba(255,102,0,0.15);
  border: 1px solid rgba(255,102,0,0.3);
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange);
  transition: all var(--transition);
}
.btn-view-card:hover { background: var(--orange); color: var(--white); }
.btn-view-card.cvo-btn { color: var(--gold); border-color: rgba(255,215,0,0.3); background: rgba(255,215,0,0.08); }
.btn-view-card.cvo-btn:hover { background: var(--gold); color: #1a1000; }
.sec-cta { text-align: center; margin-top: 48px; }
.btn-view-all {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255,102,0,0.4);
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  transition: all var(--transition);
}
.btn-view-all:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(255,102,0,0.3);
}

/* ══════════════════════════════════════
   PARTS SECTION
══════════════════════════════════════ */
.parts-section {
  background: var(--black);
  position: relative;
}
.parts-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,102,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.part-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.part-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,102,0,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.part-card:hover {
  border-color: rgba(255,102,0,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,102,0,0.15);
}
.part-card:hover::before { opacity: 1; }
.part-icon-ring {
  width: 80px; height: 80px; margin: 0 auto 20px;
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,102,0,0.06);
  transition: all var(--transition);
}
.part-card:hover .part-icon-ring {
  background: rgba(255,102,0,0.12);
  border-color: rgba(255,102,0,0.5);
  box-shadow: 0 0 20px rgba(255,102,0,0.2);
}
.part-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.part-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 14px;
}
.part-tags {
  display: flex; gap: 6px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.part-tags span {
  font-size: 10px;
  color: var(--gray);
  padding: 3px 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.part-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange);
  transition: letter-spacing var(--transition);
}
.part-card:hover .part-link { letter-spacing: 2.5px; }

/* ══════════════════════════════════════
   WHY SECTION
══════════════════════════════════════ */
.why-section { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-desc {
  color: rgba(255,255,255,0.55);
  font-size: 15px; line-height: 1.8;
  margin-bottom: 36px;
}
.feat-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feat-row {
  display: flex; gap: 16px; align-items: flex-start;
}
.feat-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(255,102,0,0.15);
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 13px; font-weight: 700;
  margin-top: 2px;
}
.feat-row strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.feat-row span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.btn-learn-more {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  transition: all var(--transition);
}
.btn-learn-more:hover { background: var(--orange); color: var(--white); }

/* 3D Stat Cards Stack */
.stat-cards-3d {
  position: relative;
  height: 380px;
}
.sc {
  position: absolute;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.sc-1 {
  width: 180px;
  top: 0; left: 0;
  background: linear-gradient(135deg, rgba(255,102,0,0.15), var(--dark3));
  border-color: rgba(255,102,0,0.3);
  transform: rotate(-4deg);
  z-index: 1;
}
.sc-2 {
  width: 200px;
  top: 80px; left: 80px;
  z-index: 2;
  transform: rotate(2deg);
}
.sc-3 {
  width: 170px;
  bottom: 0; right: 0;
  background: linear-gradient(135deg, rgba(255,102,0,0.1), var(--dark3));
  border-color: rgba(255,102,0,0.2);
  transform: rotate(-2deg);
  z-index: 1;
}
.sc-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 54px; line-height: 1;
  color: var(--orange);
}
.sc-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.hd-badge {
  position: absolute; bottom: 60px; right: -10px;
  width: 80px; height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(255,102,0,0.4);
  z-index: 3;
}
.hd-b-1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px; line-height: 1;
  color: var(--white);
}
.hd-b-2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { background: var(--black); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover {
  border-color: rgba(255,102,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.tq {
  font-family: 'Bebas Neue', cursive;
  font-size: 80px; line-height: 0.6;
  color: rgba(255,102,0,0.2);
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.testi-foot {
  display: flex; align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}
.ta-avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--white);
}
.testi-foot > div strong { display: block; font-size: 14px; font-weight: 600; }
.testi-foot > div span { font-size: 12px; color: var(--gray); }
.t-stars { margin-left: auto; font-size: 13px; color: var(--orange); }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
#ctaCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,102,0,0.18) 0%, rgba(5,5,5,0.9) 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 4px;
  margin: 12px 0 16px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 460px; margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all var(--transition);
}
.btn-cta-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,102,0,0.4); }
.btn-cta-secondary {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}
.btn-cta-secondary:hover { border-color: var(--white); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px; letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.socials { display: flex; gap: 10px; }
.soc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.soc:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 16px; }
.nl-form {
  display: flex; gap: 0; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.nl-form input {
  flex: 1; padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: none; outline: none;
  color: var(--white); font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.nl-form input::placeholder { color: var(--gray2); }
.nl-form button {
  padding: 12px 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  transition: background var(--transition);
}
.nl-form button:hover { background: var(--orange-light); }
.footer-contact p { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  gap: 20px; flex-wrap: wrap;
}
.footer-bar div { display: flex; gap: 20px; }
.footer-bar a { color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-bar a:hover { color: var(--orange); }

/* Back to Top */
.btt {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(255,102,0,0.4);
}
.btt.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btt:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,102,0,0.5); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: calc(var(--nav-h) + 30px) 40px 80px;
    text-align: center;
  }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .hero-stats { order: 3; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .bike-3d-scene { width: min(480px, 100%); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .stat-cards-3d { height: 300px; }
  .sc-1 { top: 0; left: 10%; }
  .sc-2 { top: 60px; left: 50%; transform: translate(-50%, 0) rotate(2deg); }
  .sc-3 { bottom: 0; right: 10%; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .nav-links { display: none; }
  .btn-quote { display: none; }
  .hamburger { display: flex; }
  .hero { padding: calc(var(--nav-h) + 24px) 24px 60px; }
  .ht-line { font-size: clamp(52px, 14vw, 80px); }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 20px; }
  .stat-sep { display: none; }
  .stat-item { flex: 1; min-width: 100px; }
  .bikes-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .parts-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .parts-grid { grid-template-columns: 1fr; }
  .nav-wrap { padding: 0 16px; gap: 16px; }
}

/* ── Utility: hide filtered ── */
.bike-card.hidden {
  display: none;
}
