/* ================================================================
   PREMIUM AUTO GARAGE — Modern 3D Design System v2.0
   ================================================================ */

/* --- Design Tokens ------------------------------------------ */
:root {
  --bg: #030303;
  --bg-2: #070707;
  --bg-3: #0c0c0c;
  --bg-card: rgba(255,255,255,0.042);
  --bg-glass: rgba(8,8,8,0.82);
  --border: rgba(255,255,255,0.09);
  --border-gold: rgba(212,175,55,0.48);
  --border-hover: rgba(212,175,55,0.55);
  --gold: #D4AF37;
  --gold-light: #FFD447;
  --gold-dim: rgba(212,175,55,0.20);
  --red: #D72638;
  --red-dim: rgba(215,38,56,0.20);
  --white: #FFFFFF;
  --muted: #9CA3AF;
  --muted-light: #c8cdd3;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-hover: 0 24px 72px rgba(0,0,0,0.55), 0 0 60px rgba(212,175,55,0.16);
  --glow-gold: 0 0 70px rgba(212,175,55,0.22), 0 0 140px rgba(212,175,55,0.09);
  --glow-red: 0 0 70px rgba(215,38,56,0.22);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --t1: 0.18s;
  --t2: 0.38s;
  --t3: 0.68s;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  /* legacy aliases */
  --color-bg: #030303;
  --color-bg-soft: #0c0c0c;
  --color-gold: #D4AF37;
  --color-yellow: #FFD447;
  --color-red: #D72638;
  --color-white: #FFFFFF;
  --color-muted: #9CA3AF;
  --line: rgba(255,255,255,0.09);
}

/* --- Base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- Page Transition ---------------------------------------- */
.page-veil {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.page-veil.is-out { opacity: 1; pointer-events: all; }

/* --- Sticky Header ------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(3,3,3,0.75);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background var(--t2) var(--ease), border-color var(--t2) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(3,3,3,0.96);
  border-bottom-color: rgba(255,255,255,0.13);
}
.brand-mark {
  display: flex; align-items: center; gap: 0.7rem; font-weight: 800;
}
.brand-mark img { border-radius: 6px; object-fit: contain; background: #000; }
.nav-link {
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.92rem; font-weight: 500;
  position: relative; padding: 0.5rem 0.1rem !important;
  transition: color var(--t1) var(--ease) !important;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  transition: width var(--t2) var(--ease);
}
.nav-link:hover,
.nav-link.active { color: #fff !important; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.navbar-nav .nav-item { margin: 0 0.15rem; }

/* --- Buttons ----------------------------------------------- */
.btn { border-radius: var(--r); font-weight: 700; transition: all var(--t1) var(--ease); position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); opacity: 0;
  transition: opacity var(--t1);
}
.btn:active::after { opacity: 1; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #060606; border: 0;
  box-shadow: 0 4px 24px rgba(212,175,55,0.32);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212,175,55,0.50);
  color: #040404;
}
.btn-red {
  background: var(--red); border: 0; color: #fff;
  box-shadow: 0 4px 20px rgba(215,38,56,0.28);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(215,38,56,0.45);
  color: #fff;
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.88);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.42);
  color: #fff; transform: translateY(-2px);
}

/* --- Alerts / Messages -------------------------------------- */
.message-stack { position: fixed; top: 82px; right: 16px; z-index: 80; max-width: 420px; }
.alert { border-radius: var(--r); border: 1px solid var(--border); background: var(--bg-3); color: #fff; }
.alert-success { border-color: rgba(34,197,94,0.35); background: rgba(34,197,94,0.08); }
.alert-danger, .alert-error { border-color: rgba(215,38,56,0.35); background: rgba(215,38,56,0.08); }

/* --- Approach / Scroll Hero --------------------------------- */
.approach-hero {
  position: relative; height: 220vh;
  background:
    radial-gradient(circle at 16% 34%, rgba(255,212,71,0.13), transparent 28%),
    radial-gradient(circle at 78% 42%, rgba(215,38,56,0.17), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(212,175,55,0.07), transparent 42%),
    linear-gradient(180deg, #030303 0%, #060606 60%, #080808 100%);
  overflow: clip;
}
.approach-sticky {
  position: sticky; top: 72px;
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; padding: 34px 0;
}
.approach-showroom {
  position: relative;
  min-height: min(720px, calc(100vh - 120px));
  padding: 34px 48px 26px;
  background:
    radial-gradient(circle at 50% 52%, rgba(131,151,160,0.12), transparent 36%),
    linear-gradient(145deg, rgba(22,25,28,0.99), rgba(16,18,21,0.99));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 120px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.065);
  overflow: hidden;
}
.approach-showroom::before {
  content: '';
  position: absolute; inset: -20% 8%;
  background-image: radial-gradient(rgba(255,255,255,0.11) 1px, transparent 1px);
  background-size: 5px 5px;
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 0 34%, transparent 58%);
  mask-image: radial-gradient(circle at 50% 48%, #000 0 34%, transparent 58%);
  opacity: 0.26; pointer-events: none;
}
.approach-showroom::after {
  content: ''; position: absolute;
  bottom: -40%; left: 20%; right: 20%; height: 80%;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.showroom-nav, .showroom-footer {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.showroom-nav strong { text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.08em; }
.showroom-nav nav, .showroom-socials { display: flex; align-items: center; gap: 28px; }
.showroom-nav a, .showroom-footer {
  color: rgba(216,221,224,0.78); font-size: 0.64rem;
  text-transform: uppercase; font-weight: 800; letter-spacing: 0.08em;
  transition: color var(--t1) var(--ease);
}
.showroom-nav a:hover { color: var(--gold-light); }
.approach-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 210px minmax(0,1fr) 190px;
  gap: 24px; align-items: center; min-height: 520px;
}
.approach-copy { position: relative; z-index: 3; align-self: center; }
.approach-copy h1 {
  font-size: clamp(2rem, 3vw, 3.25rem); line-height: 0.95;
  font-weight: 900; text-transform: uppercase; margin: 0 0 18px; max-width: 260px;
}
.approach-copy p { font-size: 0.74rem; line-height: 1.55; color: #b9c0c4; max-width: 210px; margin: 0 0 22px; }
.showroom-rating strong { display: block; font-size: 2.7rem; line-height: 1; font-weight: 500; margin-bottom: 8px; }
.showroom-rating span { display: flex; gap: 3px; color: #eef3f4; font-size: 0.72rem; }
.approach-visual {
  position: relative; min-height: 430px;
  display: grid; place-items: center; overflow: visible;
}
.approach-road {
  position: absolute; left: 11%; right: 11%; bottom: 17%; height: 14%;
  background: rgba(255,255,255,0.07); filter: blur(32px); border-radius: 50%;
}
.approach-car {
  position: absolute; z-index: 2; width: min(780px, 126%); max-height: 100%;
  object-fit: contain; opacity: 0; mix-blend-mode: screen;
  transform: translateY(24px) scale(0.94);
  filter: drop-shadow(0 28px 34px rgba(0,0,0,0.68));
  transition: opacity 0.1s linear, transform 0.16s var(--ease);
}
.approach-car.is-active { opacity: 1; transform: translateY(0) scale(1); }
.showroom-explore {
  position: absolute; z-index: 4; left: 50%; bottom: 34px;
  width: 58px; height: 58px;
  border: 3px solid rgba(255,255,255,0.75); border-right-color: rgba(255,255,255,0.20);
  border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: 0.52rem; text-transform: uppercase; font-weight: 900;
  background: rgba(255,255,255,0.04);
  transition: all var(--t2) var(--ease);
}
.showroom-explore:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--gold-light); color: var(--gold-light);
}
.showroom-explore::after {
  content: ''; position: absolute; left: 42px;
  width: 34px; height: 20px;
  border: 2px solid rgba(255,255,255,0.20); border-left: 0; border-radius: 0 999px 999px 0;
}
.showroom-specs { position: relative; z-index: 3; }
.showroom-specs h2 { text-transform: uppercase; font-size: 1rem; font-weight: 900; margin: 0 0 22px; color: #dfe3e5; }
.showroom-specs ul { position: relative; list-style: none; margin: 0; padding: 0; }
.showroom-specs ul::before {
  content: ''; position: absolute; left: 6px; top: 12px; bottom: 12px;
  width: 1px; background: rgba(255,255,255,0.28);
}
.showroom-specs li { position: relative; display: grid; grid-template-columns: 18px 1fr; gap: 8px; margin: 0 0 18px; color: #dce1e4; }
.showroom-specs li span {
  position: relative; z-index: 2; width: 13px; height: 13px;
  border-radius: 50%; background: #fff; box-shadow: 0 0 16px rgba(255,255,255,0.55);
}
.showroom-specs strong, .showroom-specs em { display: block; font-style: normal; }
.showroom-specs strong { font-size: 0.62rem; text-transform: uppercase; color: #98a1a7; }
.showroom-specs em { font-size: 0.68rem; color: #edf2f3; }
.showroom-footer { margin-top: 4px; }
.showroom-strip { display: flex; align-items: center; gap: 24px; }
.showroom-strip img {
  width: 82px; height: 38px; object-fit: contain; opacity: 0.48;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.48));
  transition: opacity var(--t1) var(--ease);
}
.showroom-strip img.is-active { opacity: 1; }
.showroom-strip i, .showroom-socials i { font-size: 1rem; color: #f0f3f4; }
.approach-lines { position: relative; min-height: 210px; margin-bottom: 28px; }
.approach-line {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(38px) scale(0.98); filter: blur(7px);
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease), filter 0.34s var(--ease);
}
.approach-line.is-active { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.approach-line h2 { font-size: clamp(1.45rem, 2.6vw, 2.6rem); line-height: 1.02; font-weight: 900; margin: 0 0 13px; }
.approach-line p { font-size: 1.08rem; color: #d6d6d6; max-width: 570px; margin: 0; }
.approach-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Marquee Ticker ---------------------------------------- */
.ticker-band {
  padding: 20px 0; background: rgba(8,8,8,0.92);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.ticker-band::before,
.ticker-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-band::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.ticker-band::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 40px; white-space: nowrap;
  font-size: 0.82rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.10em;
}
.ticker-item strong { color: var(--gold-light); font-size: 1.05rem; font-weight: 900; }
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Typography -------------------------------------------- */
.eyebrow {
  display: inline-flex; color: var(--gold-light);
  text-transform: uppercase; font-size: 0.75rem;
  font-weight: 800; letter-spacing: 0.14em; margin-bottom: 14px;
}
.grad-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #fff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-copy h1, .page-hero h1, .detail-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.8rem); line-height: 0.95; font-weight: 900; margin: 0 0 22px;
}
.hero-copy p, .page-hero p, .detail-hero p {
  font-size: 1.12rem; color: #d5d5d5; max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 30px; max-width: 560px; }
.hero-metrics div {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 14px; background: var(--bg-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all var(--t2) var(--ease);
}
.hero-metrics div:hover { border-color: var(--border-gold); box-shadow: var(--glow-gold); }
.hero-metrics strong { display: block; color: var(--gold-light); font-size: 1.45rem; line-height: 1; }
.hero-metrics span { display: block; color: #c5c5c5; font-size: 0.82rem; margin-top: 6px; }
.hero-vehicle { position: relative; z-index: 1; }
.hero-service-strip {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; z-index: 3;
}
.hero-service-strip span {
  display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  background: rgba(3,3,3,0.78); backdrop-filter: blur(14px);
  color: #f2f2f2; font-weight: 800; font-size: 0.87rem;
  transition: all var(--t1) var(--ease);
}
.hero-service-strip span:hover { border-color: var(--border-gold); background: rgba(212,175,55,0.10); }
.hero-service-strip i { color: var(--gold-light); }

/* --- Section Blocks ---------------------------------------- */
.section-block { padding: 96px 0; }
.soft-band { background: linear-gradient(180deg, var(--bg-2), var(--bg-3)); }
.dark-band { background: var(--bg); }
.section-heading {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 16px 24px; margin-bottom: 36px;
}
.section-heading .eyebrow { grid-column: 1/-1; margin-bottom: 0; }
.section-heading h2, .video-copy h2, .three-section h2, .cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 900; line-height: 1.02; margin: 0;
}
.section-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); font-weight: 800; white-space: nowrap;
  transition: gap var(--t1) var(--ease), color var(--t1);
}
.section-link:hover { gap: 14px; color: var(--gold-light); }
.lead-muted { color: #cecece; margin-top: 18px; line-height: 1.68; }

/* --- Glass Cards ------------------------------------------- */
.premium-card, .service-card, .package-card, .quote-card, .side-panel {
  height: 100%;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--t2) var(--ease);
  will-change: transform;
}
.premium-card:hover, .service-card:hover, .package-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) translateZ(0);
}
.premium-card h3, .service-card h3, .package-card h3 {
  font-size: 1.22rem; font-weight: 850; line-height: 1.25; margin-top: 0;
}
.premium-card p, .service-card p, .package-card p,
.quote-card p, .footer-band p, .side-panel p { color: var(--muted); }
.media-thumb {
  height: 160px; margin: -24px -24px 22px;
  overflow: hidden; border-radius: var(--r) var(--r) 0 0; background: #060606;
}
.media-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.premium-card:hover .media-thumb img { transform: scale(1.06); }
.price-row { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.price-row span { color: var(--gold-light); font-weight: 900; font-size: 1.22rem; }
.price-row del { color: #555; text-decoration: line-through; }
.voucher {
  display: inline-flex; border: 1px dashed rgba(255,212,71,0.50);
  padding: 6px 10px; border-radius: 6px; color: var(--gold-light); margin-bottom: 18px;
  font-size: 0.87rem; font-weight: 700; letter-spacing: 0.06em;
}
.package-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 360px);
  gap: 22px; overflow-x: auto; padding-bottom: 14px;
  scrollbar-width: thin; scrollbar-color: rgba(255,212,71,0.28) transparent;
}
.package-rail::-webkit-scrollbar { height: 4px; }
.package-rail::-webkit-scrollbar-track { background: transparent; }
.package-rail::-webkit-scrollbar-thumb { background: rgba(255,212,71,0.28); border-radius: 2px; }
.package-card { min-height: 360px; }
.package-card strong { font-size: 1.72rem; color: var(--gold-light); display: block; margin: 12px 0 4px; }
.package-card ul { padding: 0; list-style: none; margin: 18px 0; }
.package-card li, .tick-line, .side-panel li {
  display: flex; gap: 10px; margin: 9px 0; color: #ddd; align-items: flex-start;
}
.package-card i, .tick-line i { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }
.side-panel i { color: var(--gold-light); }
.service-card i { font-size: 2rem; color: var(--gold-light); display: block; margin-bottom: 4px; }
.service-card span { display: block; color: var(--gold-light); font-weight: 800; margin: 14px 0; }
.service-card a, .premium-card a, .package-card a {
  color: var(--gold-light); font-weight: 800;
  transition: color var(--t1);
}
.service-card a:hover, .premium-card a:hover, .package-card a:hover { color: #fff; }

/* --- Video Band -------------------------------------------- */
.video-band {
  position: relative; min-height: 58vh;
  display: flex; align-items: flex-end; overflow: hidden; background: #060606;
}
.video-band video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.38;
}
.video-band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.86));
}
.video-copy { position: relative; z-index: 1; padding-bottom: 80px; }

/* --- Process Steps ----------------------------------------- */
.process-band { background: linear-gradient(180deg, #060606, #0b0b0b); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.process-step {
  position: relative; min-height: 230px;
  border: 1px solid var(--border); border-radius: var(--r); padding: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.058), rgba(255,255,255,0.018));
  overflow: hidden; transition: all var(--t2) var(--ease);
}
.process-step::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.09), transparent 65%);
  opacity: 0; transition: opacity var(--t2) var(--ease);
}
.process-step:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.process-step:hover::before { opacity: 1; }
.process-step span { display: inline-flex; margin-bottom: 34px; color: var(--gold-light); font-weight: 900; letter-spacing: 0.08em; }
.process-step h3 { font-size: 1.18rem; font-weight: 850; margin-bottom: 12px; }
.process-step p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* --- 3D Car Section ---------------------------------------- */
.three-section {
  padding: 110px 0;
  background: radial-gradient(circle at 72% 34%, rgba(215,38,56,0.14), transparent 33%), var(--bg-2);
}
.car3d {
  position: relative; min-height: 420px;
  border: 1px solid var(--border); border-radius: var(--r);
  display: grid; place-items: center;
  background: linear-gradient(145deg, #050505, #111);
  overflow: hidden; transition: border-color var(--t2) var(--ease);
}
.car3d:hover { border-color: rgba(255,255,255,0.14); }
.car3d::before {
  content: ''; position: absolute; left: 8%; right: 8%; bottom: 11%;
  height: 18%; border-radius: 50%;
  background: rgba(212,175,55,0.13); filter: blur(32px); pointer-events: none;
}
.car3d canvas { position: relative; z-index: 1; width: 100%; height: 100%; display: block; }
.car3d img {
  position: relative; z-index: 1; max-height: 340px;
  filter: drop-shadow(0 35px 48px rgba(212,175,55,0.11));
}
.car3d-hero { min-height: 620px; border-color: rgba(255,255,255,0.07); }
.car3d-hero::before { bottom: 18%; background: rgba(215,38,56,0.16); }
.car3d-inspection { min-height: 500px; }
.hotspot-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hotspot-list span, .keyword-chip {
  border: 1px solid rgba(255,212,71,0.33); border-radius: 999px;
  padding: 9px 16px; color: #f5e8a2;
  background: rgba(212,175,55,0.07);
  font-size: 0.84rem; font-weight: 600;
}
.hotspot-list span {
  cursor: default; transition: all var(--t1) var(--ease);
}
.hotspot-list span:hover {
  background: rgba(212,175,55,0.18); border-color: rgba(255,212,71,0.65);
}

/* --- Counter / Why Grid ------------------------------------ */
.counter-grid, .why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
}
.counter-grid div, .why-grid div {
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px; background: rgba(7,7,7,0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all var(--t2) var(--ease);
}
.counter-grid div:hover, .why-grid div:hover {
  border-color: var(--border-gold); transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}
.counter-grid strong { display: block; color: var(--gold-light); font-size: 2.1rem; font-weight: 900; margin-bottom: 4px; }
.counter-grid span, .why-grid div { color: #d8d8d8; }
.why-grid div { font-weight: 600; font-size: 0.94rem; display: flex; align-items: center; gap: 10px; }
.why-grid div i { color: var(--gold-light); font-size: 1.3rem; flex-shrink: 0; }

/* --- Stars / Quote ----------------------------------------- */
.stars { display: flex; gap: 4px; color: var(--gold-light); margin-bottom: 14px; }
.quote-card { padding: 28px; }
.quote-card strong, .quote-card span { display: block; }
.quote-card p { margin: 0 0 18px; font-size: 0.96rem; line-height: 1.65; }
.quote-card strong { font-size: 0.97rem; font-weight: 800; margin-top: 4px; }
.quote-card span { color: var(--muted); font-size: 0.86rem; margin-top: 3px; }

/* --- Keyword Chips ----------------------------------------- */
.keyword-band {
  padding: 54px 0; background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.keyword-band .container { display: flex; flex-wrap: wrap; gap: 12px; }
.keyword-chip {
  display: inline-flex; cursor: pointer;
  animation: floatChip 4s ease-in-out infinite;
  transition: all var(--t2) var(--ease);
}
.keyword-chip:nth-child(2n) { animation-delay: 0.7s; }
.keyword-chip:nth-child(3n) { animation-delay: 1.4s; }
.keyword-chip:nth-child(4n) { animation-delay: 2.1s; }
.keyword-chip:hover {
  background: var(--gold-light); color: #060606;
  border-color: var(--gold-light);
  transform: rotateX(8deg) rotateY(-8deg) translateY(-4px);
  box-shadow: 0 8px 28px rgba(255,212,71,0.32);
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- CTA Band ---------------------------------------------- */
.cta-band {
  padding: 90px 0;
  background: linear-gradient(135deg, #170306 0%, #050505 55%, #161102 100%);
  border-top: 1px solid var(--border);
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* --- Footer ------------------------------------------------ */
.footer-band {
  padding: 72px 0 30px; background: #040404;
  border-top: 1px solid var(--border);
}
.footer-band h3 { font-size: 0.97rem; color: var(--gold-light); margin-bottom: 18px; font-weight: 800; letter-spacing: 0.04em; }
.footer-band a {
  display: block; color: #c5c9c9; margin: 8px 0;
  font-size: 0.91rem; transition: color var(--t1) var(--ease);
}
.footer-band a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); font-size: 0.97rem;
  transition: all var(--t1) var(--ease);
}
.socials a:hover {
  border-color: var(--border-gold);
  background: rgba(212,175,55,0.12);
  color: var(--gold-light); transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--border); color: #666; font-size: 0.88rem;
}

/* --- Floating WhatsApp ------------------------------------- */
.float-whatsapp {
  position: fixed; right: 18px; bottom: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #030303; font-size: 1.52rem;
  box-shadow: 0 8px 36px rgba(37,211,102,0.42);
  transition: all var(--t1) var(--ease);
}
.float-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 44px rgba(37,211,102,0.58);
  color: #030303;
}

/* --- Page / Detail Hero ------------------------------------ */
.page-hero, .detail-hero {
  padding: 120px 0 70px;
  background:
    radial-gradient(circle at 82% 18%, rgba(212,175,55,0.14), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(215,38,56,0.10), transparent 28%),
    linear-gradient(135deg, #030303, #0d0d0d);
}
.detail-img {
  border-radius: var(--r); border: 1px solid var(--border);
  width: 100%; max-height: 420px; object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.52);
}
.hero-price span { font-size: 2rem; }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.info-grid div {
  padding: 18px; border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg-card); backdrop-filter: blur(10px);
  transition: all var(--t1) var(--ease);
}
.info-grid div:hover { border-color: var(--border-gold); }
.info-grid strong, .info-grid span { display: block; }
.info-grid strong { color: var(--muted); font-size: 0.82rem; margin-bottom: 5px; }
.info-grid span { color: var(--gold-light); font-weight: 800; }
.step-line {
  display: flex; gap: 14px; border-bottom: 1px solid var(--border);
  padding: 14px 0; align-items: flex-start;
}
.step-line span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: #080808;
  display: grid; place-items: center; font-weight: 900; flex-shrink: 0;
}

/* --- Accordion --------------------------------------------- */
.accordion-item {
  background: #0d0d0d; border-color: var(--border) !important;
  color: #fff; margin-bottom: 4px;
  border-radius: var(--r) !important; overflow: hidden;
}
.accordion-button {
  background: #111; color: #fff; font-weight: 600;
  transition: background var(--t1) var(--ease);
}
.accordion-button:not(.collapsed) {
  background: #161616; color: var(--gold-light); box-shadow: none;
}
.accordion-button::after { filter: invert(1) brightness(0.75); }

/* --- Gallery ----------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-grid figure {
  margin: 0; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); background: #0e0e0e;
  transition: all var(--t2) var(--ease);
}
.gallery-grid figure:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--glow-gold); }
.gallery-grid img {
  height: 230px; width: 100%; object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption { padding: 12px; color: #d8d8d8; font-size: 0.87rem; }

/* --- Utilities --------------------------------------------- */
.narrow { max-width: 860px; }
.content-body { color: #d8d8d8; line-height: 1.72; }
.content-body h2, .content-body h3 { color: #fff; margin-top: 2em; }
.content-body a { color: var(--gold-light); }

/* --- Contact Form ------------------------------------------ */
.contact-form p { margin-bottom: 16px; }
.contact-form label { display: block; color: #d8d8d8; margin-bottom: 6px; font-weight: 500; font-size: 0.92rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; background: rgba(12,12,12,0.92);
  border: 1px solid var(--border); border-radius: var(--r);
  color: #fff; padding: 12px 14px; font-size: 0.95rem;
  transition: border-color var(--t1) var(--ease), box-shadow var(--t1) var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: rgba(212,175,55,0.52);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.10);
  background: rgba(14,14,14,0.96);
}

/* --- Scroll Reveals ---------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity var(--t3) var(--ease), transform var(--t3) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --- New Home Sections ------------------------------------- */

/* Services horizontal scroll */
.services-scroll {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: 20px; overflow-x: auto; padding-bottom: 14px;
  scrollbar-width: thin; scrollbar-color: rgba(255,212,71,0.22) transparent;
}
.services-scroll::-webkit-scrollbar { height: 4px; }
.services-scroll::-webkit-scrollbar-track { background: transparent; }
.services-scroll::-webkit-scrollbar-thumb { background: rgba(255,212,71,0.22); border-radius: 2px; }

/* Blog card image */
.blog-card-img {
  height: 200px; margin: -24px -24px 20px;
  overflow: hidden; border-radius: var(--r) var(--r) 0 0; background: #0a0a0a;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.premium-card:hover .blog-card-img img { transform: scale(1.06); }

/* Why grid with icons */
.why-grid-6 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
}
.why-item {
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 22px; background: rgba(8,8,8,0.85);
  backdrop-filter: blur(10px); transition: all var(--t2) var(--ease);
  display: flex; flex-direction: column; gap: 10px;
}
.why-item:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.why-item i { font-size: 1.6rem; color: var(--gold-light); }
.why-item strong { font-size: 1rem; font-weight: 800; color: #fff; }
.why-item p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* Aurora section bg */
.aurora-band {
  position: relative; overflow: hidden;
}
.aurora-band::before {
  content: ''; position: absolute; inset: -50%;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(215,38,56,0.06) 0%, transparent 38%);
  animation: aurora 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes aurora {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(2%,1%) scale(1.03); }
  66% { transform: translate(-1%,2%) scale(0.98); }
}

/* Hero car stage */
.car-stage {
  position: relative; min-height: 420px;
  display: grid; place-items: center; perspective: 900px;
}
.car-stage::before {
  content: ''; position: absolute;
  width: 74%; height: 18%; bottom: 13%;
  background: rgba(255,212,71,0.15); filter: blur(28px); border-radius: 50%;
}
.car-frame {
  position: absolute; width: min(680px,100%);
  transition: transform 0.2s var(--ease);
  filter: drop-shadow(0 0 42px rgba(180,245,255,0.19));
}
.car-dark { opacity: 0.98; animation: carIn 1.2s var(--ease) both; }
.car-light { opacity: 0; mix-blend-mode: screen; animation: headlights 2.4s 0.7s var(--ease) both; }
@keyframes carIn { from { opacity:0; transform: scale(0.88) translateY(28px); } to { opacity:1; transform: scale(1) translateY(0); } }
@keyframes headlights { 0%,35%{ opacity:0; } 55%{ opacity:0.44; } 100%{ opacity:1; } }

/* Section divider line */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(212,175,55,0.22), var(--border), transparent);
  margin: 0;
}

/* --- Admin Panel Styles ------------------------------------ */
/* (admin-panel.css has the main admin styles) */

/* --- Responsive -------------------------------------------- */
@media (max-width: 991px) {
  .section-heading, .cta-band .container { display: block; }
  .counter-grid, .why-grid, .info-grid, .gallery-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .why-grid-6 { grid-template-columns: 1fr 1fr; }
  .car-stage { min-height: 330px; }
  .package-rail { grid-auto-flow: row; grid-auto-columns: auto; }
  .services-scroll { grid-auto-flow: row; grid-auto-columns: auto; }
  .min-vh-hero { min-height: auto; }
  .approach-sticky { top: 66px; align-items: flex-start; padding: 18px 0; }
  .approach-showroom { min-height: calc(100vh - 96px); padding: 24px; }
  .approach-grid { grid-template-columns: 1fr; gap: 12px; min-height: auto; }
  .approach-visual { min-height: 38vh; order: 1; }
  .approach-copy { order: 2; }
  .showroom-specs { order: 3; }
  .approach-copy h1 { font-size: clamp(2.1rem, 9vw, 3.7rem); margin-bottom: 12px; max-width: none; }
  .approach-copy p { max-width: 520px; }
  .showroom-specs ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
  .showroom-specs ul::before { display: none; }
  .showroom-specs li { margin: 0; }
  .showroom-footer { margin-top: 18px; }
  .approach-lines { min-height: 170px; }
  .approach-line p { font-size: 1rem; }
  .approach-actions .btn { padding: 0.7rem 0.9rem; }
  .car3d-hero { min-height: 470px; }
  .hero-service-strip { position: relative; left: auto; right: auto; bottom: auto; margin-top: 12px; }
  .section-link { margin-top: 14px; }
  .three-section { padding: 72px 0; }
  .car3d-inspection { min-height: 400px; }
}
@media (max-width: 575px) {
  .hero-copy h1, .page-hero h1, .detail-hero h1 { font-size: 2.35rem; }
  .hero-actions .btn, .approach-actions .btn { width: 100%; }
  .counter-grid, .why-grid, .info-grid, .gallery-grid, .process-grid,
  .hero-metrics, .hero-service-strip, .why-grid-6 { grid-template-columns: 1fr; }
  .approach-hero { height: 260vh; }
  .approach-sticky { min-height: calc(100vh - 66px); }
  .approach-showroom { padding: 18px 14px; }
  .showroom-nav nav { gap: 12px; }
  .showroom-nav a { font-size: 0.56rem; }
  .approach-visual { min-height: 34vh; }
  .approach-copy h1 { font-size: 2.25rem; }
  .showroom-rating strong { font-size: 2.2rem; }
  .showroom-specs ul { grid-template-columns: 1fr 1fr; }
  .showroom-strip { gap: 10px; }
  .showroom-strip img { width: 54px; }
  .showroom-footer span, .showroom-socials { display: none; }
  .approach-lines { min-height: 190px; }
  .section-block { padding: 64px 0; }
  .page-hero, .detail-hero { padding: 90px 0 52px; }
  .car3d-hero, .car3d-inspection { min-height: 360px; }
  .hero-service-strip span { justify-content: flex-start; padding: 0 14px; }
  .ticker-item { padding: 0 20px; font-size: 0.76rem; }
}
