/* =============================================
   SMART PAINT AUTO PAINT & DETAILING
   style.css - Premium Light Automotive Theme
   ============================================= */

/* === CSS VARIABLES === */
:root {
  /* Backgrounds */
  --bg-main:     #ffffff;
  --bg-soft:     #f6f8fb;
  --bg-muted:    #f1f4f8;
  --bg-card:     #ffffff;
  --bg-dark:     #111827;
  --bg-dark-mid: #1e2736;

  /* Text */
  --text-main:   #111827;
  --text-mid:    #374151;
  --text-muted:  #5b6472;
  --text-light:  #8c95a1;
  --text-white:  #ffffff;

  /* Brand accents */
  --red:         #e31b23;
  --red-dark:    #b51519;
  --red-mid:     rgba(227, 27, 35, 0.12);
  --red-glow:    rgba(227, 27, 35, 0.25);
  --blue:        #1266f1;
  --blue-mid:    rgba(18, 102, 241, 0.12);
  --blue-glow:   rgba(18, 102, 241, 0.25);
  --gold:        #b8860b;
  --silver:      #d8dde6;
  --silver-dark: #9aa3af;

  /* Borders */
  --border:      #e3e7ee;
  --border-mid:  #c8cfd9;
  --border-dark: #374151;

  /* Gradients */
  --gradient-red:    linear-gradient(135deg, #e31b23, #b51519);
  --gradient-blue:   linear-gradient(135deg, #1266f1, #0d4fcc);
  --gradient-silver: linear-gradient(135deg, #d8dde6, #9aa3af);
  --gradient-paint:  linear-gradient(90deg, #e31b23, #ff6b35, #f5a623, #1266f1, #00b89c);
  --gradient-hero:   linear-gradient(135deg, #111827 0%, #1e2736 60%, #111827 100%);
  --gradient-card:   linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  --gradient-light:  linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(17, 24, 39, 0.08);
  --shadow-md:   0 4px 16px rgba(17, 24, 39, 0.10);
  --shadow-lg:   0 8px 32px rgba(17, 24, 39, 0.12);
  --shadow-xl:   0 16px 48px rgba(17, 24, 39, 0.14);
  --shadow-red:  0 4px 20px rgba(227, 27, 35, 0.30);
  --shadow-blue: 0 4px 20px rgba(18, 102, 241, 0.30);

  /* Typography */
  --font-main:   'Segoe UI', system-ui, -apple-system, sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;
  --fs-6xl:  3.75rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

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

  --transition:      all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-main); background: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === CONTAINER === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-6); }
.section-pad    { padding: var(--sp-20) 0; }
.section-pad-sm { padding: var(--sp-12) 0; }

/* === SECTION HEADERS === */
.section-header { margin-bottom: var(--sp-12); }
.text-center    { text-align: center; }

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-red  { color: var(--red); }
.text-blue { color: var(--blue); }

.paint-line {
  height: 3px;
  background: var(--gradient-paint);
  border-radius: var(--r-full);
  width: 64px;
  margin: var(--sp-4) auto;
}
.paint-line-left { margin: var(--sp-4) 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: var(--fs-base);
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.12); }

.btn-red {
  background: var(--gradient-red);
  color: var(--text-white);
  box-shadow: var(--shadow-red);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(227,27,35,0.45); }

.btn-blue {
  background: var(--gradient-blue);
  color: var(--text-white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(18,102,241,0.45); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1aab52);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.30);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-mid);
  color: var(--text-mid);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}
.btn-dark:hover { background: var(--bg-dark-mid); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: var(--fs-sm); }
.btn-lg { padding: 16px 36px; font-size: var(--fs-lg); }

/* === CARD BASE === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* =============================================
   URGENCY BAR
   ============================================= */
#urgency-bar {
  background: var(--bg-dark);
  border-bottom: 3px solid var(--red);
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.urgency-pulse {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.urgency-text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.urgency-text strong { color: var(--text-white); }

.urgency-cta {
  background: var(--red);
  color: var(--text-white);
  padding: 5px 16px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.urgency-cta:hover { background: var(--red-dark); transform: scale(1.04); }

/* =============================================
   HEADER
   ============================================= */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--sp-6);
}

.header-logo img {
  height: 130px;
  width: auto;
  max-width: 420px;
}

nav.header-nav { display: flex; align-items: center; gap: 2px; }

.header-nav a {
  color: var(--text-mid);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 8px 11px;
  border-radius: var(--r-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--red); background: var(--red-mid); }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

#mobile-nav {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--sp-4) var(--sp-6);
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
#mobile-nav.open { display: flex; max-height: 600px; }

#mobile-nav a {
  color: var(--text-mid);
  font-size: var(--fs-base);
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
#mobile-nav a:hover { color: var(--red); background: var(--red-mid); }

.mobile-wa-cta {
  margin-top: var(--sp-4);
  background: linear-gradient(135deg, #25d366, #1aab52) !important;
  color: var(--text-white) !important;
  text-align: center;
  font-weight: 700 !important;
  border-radius: var(--r-full) !important;
  border-bottom: none !important;
}

/* =============================================
   HERO SECTION (Dark - for contrast)
   ============================================= */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow-red {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(227,27,35,0.15) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: glow-float 7s ease-in-out infinite;
}
.hero-glow-blue {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(18,102,241,0.12) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  animation: glow-float 9s ease-in-out infinite reverse;
}
@keyframes glow-float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(18px,-18px)} }

.paint-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; animation: float-particle linear infinite; opacity: 0; }
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  width: 100%;
  padding: var(--sp-16) 0;
}

.hero-badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); }

.hero-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.80);
}
.hero-badge.badge-red   { border-color: rgba(227,27,35,0.5);  color: #ff8a8a; background: rgba(227,27,35,0.12); }
.hero-badge.badge-green { border-color: rgba(37,211,102,0.5); color: #5ddb8a; background: rgba(37,211,102,0.10); }
.hero-badge.badge-blue  { border-color: rgba(18,102,241,0.5); color: #7bb3ff; background: rgba(18,102,241,0.10); }

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -1px;
  margin-bottom: var(--sp-4);
}
.hero-headline .accent { color: var(--red); }

.hero-price-tag {
  display: inline-block;
  background: var(--gradient-red);
  color: var(--text-white);
  padding: 6px 22px;
  border-radius: var(--r-full);
  font-size: var(--fs-xl);
  font-weight: 900;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-red);
}

.hero-sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-8); }

.hero-journey {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.50);
}
.hero-journey .step { color: rgba(255,255,255,0.70); font-weight: 600; }
.hero-journey .arrow { color: var(--red); font-weight: 700; }

/* Hero image side */
.hero-visual { position: relative; }

.hero-img-block {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
  position: relative;
  background: #1e2736;
}

.hero-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.float-price-badge {
  position: absolute;
  top: 20px; left: -20px;
  background: var(--gradient-red);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-red);
  animation: badge-float 4s ease-in-out infinite;
  z-index: 3;
  color: var(--text-white);
}
@keyframes badge-float { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(0deg)} }
.float-price-badge .price-amount { font-size: var(--fs-2xl); font-weight: 900; display: block; }
.float-price-badge .price-label  { font-size: var(--fs-xs); opacity: 0.85; }

.float-wa-card {
  position: absolute;
  bottom: 20px; right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  animation: badge-float 5s ease-in-out infinite reverse;
  z-index: 3;
  min-width: 170px;
}
.float-wa-card .wa-dot { width: 10px; height: 10px; background: #25d366; border-radius: 50%; display: inline-block; margin-right: 6px; }
.float-wa-card .wa-text { font-size: var(--fs-sm); font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
.float-wa-card .wa-sub  { font-size: var(--fs-xs); color: var(--text-muted); }

/* =============================================
   FLOATING STICKY CTAs
   ============================================= */
#floating-ctas {
  position: fixed;
  right: 20px; bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  z-index: 998;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  position: relative;
  color: var(--text-white);
}
.float-btn-wa   { background: linear-gradient(135deg,#25d366,#1aab52); animation: wa-ring 2.5s ease-in-out infinite; }
.float-btn-call { background: var(--gradient-red); }
.float-btn:hover { transform: scale(1.1); }

.float-btn-label {
  position: absolute;
  right: 68px;
  background: var(--text-main);
  color: var(--text-white);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}
.float-btn:hover .float-btn-label { opacity: 1; }

.float-btn-wa svg path, .float-btn-call svg path { fill: white; }

@keyframes wa-ring { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.4)} 50%{box-shadow:0 0 0 12px rgba(37,211,102,0)} }

/* Mobile bottom bar */
#mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 8px var(--sp-4);
  z-index: 997;
  gap: var(--sp-2);
  box-shadow: 0 -4px 16px rgba(17,24,39,0.10);
}

.mob-bar-btn {
  flex: 1;
  padding: 10px 6px;
  border-radius: var(--r-md);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-white);
  transition: var(--transition-fast);
}
.mob-bar-btn span { font-size: 0.65rem; }
.mob-bar-btn-call  { background: var(--gradient-red); }
.mob-bar-btn-wa    { background: linear-gradient(135deg,#25d366,#1aab52); }
.mob-bar-btn-quote { background: var(--gradient-blue); }

/* Icon inline SVG helpers */
.icon-wa, .icon-phone {
  width: 22px; height: 22px;
  fill: currentColor;
}

/* =============================================
   TRUST DASHBOARD
   ============================================= */
#trust {
  background: var(--bg-soft);
  padding: var(--sp-16) 0;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); }

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-paint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-mid); }
.trust-card:hover::before { transform: scaleX(1); }

.trust-icon { width: 48px; height: 48px; margin: 0 auto var(--sp-3); }
.trust-value { font-size: var(--fs-3xl); font-weight: 900; color: var(--text-main); line-height: 1; margin-bottom: var(--sp-2); }
.trust-label { font-size: var(--fs-base); font-weight: 700; color: var(--text-mid); margin-bottom: 4px; }
.trust-sub   { font-size: var(--fs-sm); color: var(--text-muted); }

/* =============================================
   QUOTE FORM
   ============================================= */
#quote { background: var(--bg-soft); padding: var(--sp-20) 0; }

.quote-wrapper { max-width: 800px; margin: 0 auto; }

.quote-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.form-progress { background: var(--bg-muted); height: 4px; }
.form-progress-fill { height: 100%; background: var(--gradient-paint); transition: width 0.4s ease; }

.form-steps-indicator {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8) var(--sp-4);
}

.step-dot { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; position: relative; }
.step-dot::before {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: var(--border);
}
.step-dot:last-child::before { display: none; }

.step-dot-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-card);
  position: relative; z-index: 1;
  transition: var(--transition);
}
.step-dot.active    .step-dot-circle { border-color: var(--red); color: var(--text-white); background: var(--red); }
.step-dot.completed .step-dot-circle { border-color: #1aab52; background: #1aab52; color: var(--text-white); }
.step-dot-label { font-size: 0.65rem; color: var(--text-muted); text-align: center; white-space: nowrap; }
.step-dot.active .step-dot-label { color: var(--red); font-weight: 700; }

.form-body { padding: var(--sp-8); }
.form-step { display: none; animation: stepIn 0.35s ease; }
.form-step.active { display: block; }
@keyframes stepIn { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }

.step-title { font-size: var(--fs-xl); font-weight: 800; margin-bottom: var(--sp-2); color: var(--text-main); }
.step-sub   { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-6); }

/* Upload */
.upload-area {
  border: 2px dashed var(--border-mid);
  border-radius: var(--r-lg);
  padding: var(--sp-12);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-soft);
}
.upload-area:hover, .upload-area.drag-over { border-color: var(--red); background: var(--red-mid); }

.upload-icon-svg { width: 48px; height: 48px; color: var(--text-muted); margin: 0 auto var(--sp-3); }
.upload-text { font-size: var(--fs-base); color: var(--text-muted); }
.upload-text strong { color: var(--text-main); }

#imagePreview { margin-top: var(--sp-4); border-radius: var(--r-md); overflow: hidden; display: none; border: 1px solid var(--border); }
#imagePreview img { width: 100%; max-height: 200px; object-fit: cover; }

/* Option grid */
.option-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: var(--sp-3); }

.option-card {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-mid);
}
.option-card:hover  { border-color: var(--red); color: var(--red); background: var(--red-mid); }
.option-card.selected { border-color: var(--red); background: var(--red-mid); color: var(--red); }
.opt-label { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; color: var(--text-light); }

/* Estimate */
.estimate-display {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  margin-bottom: var(--sp-6);
}
.estimate-price { font-size: var(--fs-5xl); font-weight: 900; color: var(--red); margin-bottom: var(--sp-2); line-height: 1; }
.estimate-time  { font-size: var(--fs-lg);  color: var(--text-mid);  margin-bottom: var(--sp-3); }
.estimate-note  { font-size: var(--fs-sm);  color: var(--text-muted); }

.estimate-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-4); margin-bottom: var(--sp-6); }

.est-detail-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
}
.det-label { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.det-value { font-size: var(--fs-sm); font-weight: 700; color: var(--text-main); }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

.btn-prev {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
  padding: 11px 22px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: var(--transition-fast);
  cursor: pointer;
}
.btn-prev:hover { border-color: var(--text-main); color: var(--text-main); }

/* =============================================
   CAR PART SELECTOR
   ============================================= */
#car-selector { background: var(--bg-main); padding: var(--sp-20) 0; }

.car-selector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center; }

.car-map {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.car-outline-svg { width: 100%; max-width: 420px; }

.car-part-item {
  fill: rgba(17,24,39,0.04);
  stroke: var(--border-mid);
  stroke-width: 1.5;
  cursor: pointer;
  transition: all 0.2s ease;
}
.car-part-item:hover,
.car-part-item.active {
  fill: rgba(227,27,35,0.12);
  stroke: var(--red);
  filter: drop-shadow(0 0 6px rgba(227,27,35,0.4));
}
.car-part-label { fill: var(--text-muted); font-size: 10px; text-anchor: middle; pointer-events: none; font-family: var(--font-main); }

.car-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  min-height: 220px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
}

.car-info-default { color: var(--text-muted); text-align: center; width: 100%; }
.car-info-default .hint-text { font-size: var(--fs-base); font-weight: 500; margin-top: var(--sp-3); }

.car-info-content { display: none; width: 100%; }
.car-info-content.visible { display: block; }

.car-part-tag   { font-size: var(--fs-xs); color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.car-part-name  { font-size: var(--fs-xl); font-weight: 800; color: var(--text-main); margin-bottom: var(--sp-2); }
.car-part-desc  { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-4); line-height: 1.7; }
.car-part-price { font-size: var(--fs-2xl); font-weight: 900; color: var(--red); margin-bottom: var(--sp-4); }

/* =============================================
   SERVICE CARDS
   ============================================= */
#services { background: var(--bg-soft); padding: var(--sp-20) 0; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: var(--sp-6); }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-paint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-mid); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--red-mid);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.service-icon-wrap svg { width: 28px; height: 28px; color: var(--red); }

.service-title { font-size: var(--fs-xl); font-weight: 800; color: var(--text-main); margin-bottom: var(--sp-3); }
.service-desc  { color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.7; margin-bottom: var(--sp-4); }
.service-price { font-size: var(--fs-sm); font-weight: 700; color: var(--red); margin-bottom: var(--sp-4); }

/* =============================================
   BEFORE / AFTER
   ============================================= */
#before-after { background: var(--bg-main); padding: var(--sp-20) 0; }

.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ba-card-title {
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.ba-slider-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}

.ba-before-img, .ba-after-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.ba-before-img img, .ba-after-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback colour when no image */
.ba-before-img { background: #f1e8e8; z-index: 1; }
.ba-after-img  { background: #e8f1e8; z-index: 2; clip-path: inset(0 50% 0 0); }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--text-white);
  left: 50%;
  z-index: 3;
  cursor: col-resize;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-divider-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 36px; height: 36px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.ba-divider-handle svg { width: 18px; height: 18px; color: var(--text-main); }

.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.ba-label-before { font-size: var(--fs-xs); font-weight: 700; color: var(--red); }
.ba-label-after  { font-size: var(--fs-xs); font-weight: 700; color: #1aab52; }

/* =============================================
   REPAIR STAGES
   ============================================= */
#repair-progress { background: var(--bg-soft); padding: var(--sp-20) 0; }

.repair-stages {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: var(--sp-12);
}
.repair-stages::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
}
.repair-stages-fill {
  position: absolute;
  top: 40px; left: 10%;
  height: 2px;
  background: var(--gradient-paint);
  transition: width 0.8s ease;
  width: 0%;
}

.stage-item { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); flex: 1; position: relative; z-index: 1; }

.stage-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.stage-circle svg { width: 28px; height: 28px; color: var(--text-muted); }

.stage-item.active .stage-circle    { border-color: var(--red); background: var(--red-mid); }
.stage-item.active .stage-circle svg { color: var(--red); }
.stage-item.completed .stage-circle  { border-color: #1aab52; background: rgba(26,171,82,0.08); }
.stage-item.completed .stage-circle svg { color: #1aab52; }

.stage-name { font-size: var(--fs-sm); font-weight: 700; text-align: center; color: var(--text-muted); }
.stage-item.active .stage-name    { color: var(--red); }
.stage-item.completed .stage-name { color: #1aab52; }

/* =============================================
   COMPARISON
   ============================================= */
#comparison { background: var(--bg-main); padding: var(--sp-20) 0; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); margin-top: var(--sp-12); }

.comparison-col { border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--border); box-shadow: var(--shadow-md); }
.comparison-col.smart { border-color: var(--red); }

.comparison-header { padding: var(--sp-6); display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.comparison-col.smart .comparison-header { background: var(--red-mid); }
.comparison-col.full  .comparison-header { background: var(--bg-soft); }

.comparison-header h3 { font-size: var(--fs-xl); font-weight: 800; color: var(--text-main); }

.comparison-badge {
  background: var(--gradient-red);
  color: var(--text-white);
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.comparison-list { padding: var(--sp-6); background: var(--bg-card); }

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
  color: var(--text-mid);
}
.comparison-item:last-child { border-bottom: none; }

.comp-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.comp-check { color: #1aab52; }
.comp-cross { color: var(--red); }
.comp-neutral { color: var(--text-muted); }

/* =============================================
   SAVINGS CALCULATOR
   ============================================= */
#savings-calc { background: var(--bg-soft); padding: var(--sp-20) 0; }

.calc-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
}

.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
.calc-input-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.calc-label { font-size: var(--fs-sm); font-weight: 600; color: var(--text-mid); }

.calc-select, .calc-range {
  background: var(--bg-soft);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  color: var(--text-main);
  padding: 12px 16px;
  font-size: var(--fs-sm);
  width: 100%;
  font-family: inherit;
  transition: var(--transition-fast);
}
.calc-select:focus, .calc-range:focus { outline: none; border-color: var(--red); }
.range-value { font-size: var(--fs-sm); color: var(--text-muted); text-align: right; margin-top: 4px; }

.calc-result {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  margin-bottom: var(--sp-6);
}
.savings-amount { font-size: var(--fs-5xl); font-weight: 900; color: #1aab52; margin-bottom: var(--sp-2); line-height: 1; }
.savings-label  { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-4); }

.calc-breakdown { display: flex; justify-content: space-around; margin-top: var(--sp-4); }
.breakdown-item { text-align: center; }
.b-label { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.b-value { font-size: var(--fs-xl); font-weight: 800; color: var(--text-main); }
.breakdown-item.smart-price  .b-value { color: var(--red); }
.breakdown-item.repaint-price .b-value { color: var(--text-muted); }

.vs-label { font-size: var(--fs-sm); font-weight: 700; color: var(--text-light); align-self: center; }

.calc-note { font-size: var(--fs-xs); color: var(--text-muted); text-align: center; margin-bottom: var(--sp-6); line-height: 1.6; }

/* =============================================
   TIMELINE
   ============================================= */
#process { background: var(--bg-main); padding: var(--sp-20) 0; }

.timeline { position: relative; max-width: 800px; margin: var(--sp-12) auto 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 40px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--blue));
}

.timeline-item { display: flex; gap: var(--sp-6); margin-bottom: var(--sp-8); position: relative; }

.timeline-icon {
  width: 80px; height: 80px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.timeline-icon svg { width: 28px; height: 28px; color: var(--text-muted); transition: var(--transition); }
.timeline-item:hover .timeline-icon { border-color: var(--red); background: var(--red-mid); }
.timeline-item:hover .timeline-icon svg { color: var(--red); }

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.timeline-item:hover .timeline-content { border-color: var(--border-mid); box-shadow: var(--shadow-md); }

.timeline-step  { font-size: var(--fs-xs); color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.timeline-title { font-size: var(--fs-lg); font-weight: 700; color: var(--text-main); margin-bottom: var(--sp-2); }
.timeline-desc  { color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.7; }

/* =============================================
   PICKUP
   ============================================= */
#pickup { background: var(--bg-soft); padding: var(--sp-20) 0; }

.pickup-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center; }

.pickup-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.pickup-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pickup-steps { display: flex; flex-direction: column; gap: var(--sp-4); margin: var(--sp-6) 0; }
.pickup-step { display: flex; align-items: flex-start; gap: var(--sp-3); }
.pickup-step-num {
  width: 30px; height: 30px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-sm); font-weight: 800;
  color: var(--text-white);
  flex-shrink: 0;
}
.pickup-step-text { font-size: var(--fs-sm); color: var(--text-muted); padding-top: 5px; line-height: 1.6; }
.pickup-step-text strong { color: var(--text-main); }

/* =============================================
   BOOKING
   ============================================= */
#booking { background: var(--bg-main); padding: var(--sp-20) 0; }

.booking-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-header {
  background: var(--bg-soft);
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: var(--sp-4);
}
.booking-header-icon svg { width: 36px; height: 36px; color: var(--red); }
.booking-header h3 { font-size: var(--fs-xl); font-weight: 700; color: var(--text-main); }
.booking-header p  { font-size: var(--fs-sm); color: var(--text-muted); }

.booking-body { padding: var(--sp-8); }

.day-tabs { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-6); }

.day-tab {
  flex: 1;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.day-tab.active { border-color: var(--red); background: var(--red-mid); }
.day-tab:hover:not(.active) { border-color: var(--border-mid); }
.day-tab-name { font-size: var(--fs-xs); color: var(--text-muted); font-weight: 700; letter-spacing: 1px; }
.day-tab-date { font-size: var(--fs-lg); font-weight: 800; color: var(--text-main); }
.day-tab.active .day-tab-name { color: var(--red); }

.slots-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-4); }

.slot-card {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex; align-items: center; gap: var(--sp-3);
}
.slot-card:hover   { border-color: var(--border-mid); }
.slot-card.selected { border-color: var(--red); background: var(--red-mid); }

.slot-icon svg { width: 28px; height: 28px; color: var(--text-muted); }
.slot-card.selected .slot-icon svg { color: var(--red); }
.slot-name   { font-size: var(--fs-base); font-weight: 700; color: var(--text-main); }
.slot-time   { font-size: var(--fs-xs); color: var(--text-muted); }
.slot-status { margin-left: auto; font-size: var(--fs-xs); color: #1aab52; font-weight: 700; }

.booking-cta-wrap { margin-top: var(--sp-6); text-align: center; }
.open-note { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.open-note strong { color: var(--text-main); }

/* =============================================
   TRUST BADGES
   ============================================= */
#badges { background: var(--bg-soft); padding: var(--sp-20) 0; }

.badges-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: var(--sp-4); margin-bottom: var(--sp-8); }

.badge-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  display: flex; align-items: center; gap: var(--sp-3);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}
.badge-item:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); }
.badge-icon svg { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; }
.badge-text { font-size: var(--fs-sm); font-weight: 600; color: var(--text-mid); }
.trust-copy { text-align: center; color: var(--text-muted); font-size: var(--fs-sm); }

/* =============================================
   REVIEWS
   ============================================= */
#reviews { background: var(--bg-main); padding: var(--sp-20) 0; }

.rating-hero { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-12); }
.rating-number { font-size: var(--fs-6xl); font-weight: 900; color: var(--gold); line-height: 1; }
.rating-stars-row { display: flex; gap: 3px; }
.star-svg { width: 28px; height: 28px; fill: var(--gold); }
.rating-count { color: var(--text-muted); font-size: var(--fs-base); }
.google-badge {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 5px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text-mid);
}
.google-g { font-size: var(--fs-lg); font-weight: 900; background: linear-gradient(135deg,#4285f4,#ea4335); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }

.reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-6); }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-mid); }

.review-header { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-red); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: var(--fs-lg); color: var(--text-white); flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: var(--fs-base); color: var(--text-main); }
.reviewer-date { font-size: var(--fs-xs); color: var(--text-muted); }
.review-stars-wrap { margin-left: auto; display: flex; gap: 2px; }
.review-star { width: 14px; height: 14px; fill: var(--gold); }
.review-text { color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.7; }

/* =============================================
   MEDIA / VIDEO / INSTAGRAM
   ============================================= */
#videos    { background: var(--bg-soft); padding: var(--sp-20) 0; }
#instagram { background: var(--bg-main); padding: var(--sp-20) 0; }

.media-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: var(--sp-4); }

.media-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.media-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.media-thumb {
  position: relative;
  height: 180px;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.media-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-thumb .placeholder-text { font-size: var(--fs-sm); color: var(--text-muted); text-align: center; padding: var(--sp-4); }

.play-btn {
  position: absolute;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.play-btn svg { width: 20px; height: 20px; color: var(--red); margin-left: 3px; }
.media-card:hover .play-btn { background: var(--red); }
.media-card:hover .play-btn svg { color: white; }

.media-caption { padding: var(--sp-3) var(--sp-4); font-size: var(--fs-sm); font-weight: 600; color: var(--text-mid); border-top: 1px solid var(--border); }

/* =============================================
   AREA SEO
   ============================================= */
#areas { background: var(--bg-soft); padding: var(--sp-20) 0; }

.areas-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: var(--sp-4); }

.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; gap: var(--sp-3);
}
.area-card:hover { border-color: var(--border-mid); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-icon svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.area-name { font-size: var(--fs-base); font-weight: 700; color: var(--text-main); margin-bottom: var(--sp-2); }
.area-desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; }
.areas-cta { text-align: center; margin-top: var(--sp-10); }

/* =============================================
   SEO CONTENT
   ============================================= */
#seo-content { background: var(--bg-main); padding: var(--sp-20) 0; }

.seo-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--sp-12); }
.seo-text h2 { font-size: var(--fs-3xl); font-weight: 800; color: var(--text-main); margin-bottom: var(--sp-6); }
.seo-text p  { color: var(--text-muted); font-size: var(--fs-base); line-height: 1.8; margin-bottom: var(--sp-4); }

.seo-sidebar { display: flex; flex-direction: column; gap: var(--sp-4); }
.seo-sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.seo-sidebar-card h4 { font-size: var(--fs-sm); font-weight: 700; color: var(--red); margin-bottom: var(--sp-3); text-transform: uppercase; letter-spacing: 1px; }
.seo-sidebar-card p  { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; }

/* =============================================
   FAQ
   ============================================= */
#faq { background: var(--bg-soft); padding: var(--sp-20) 0; }

.faq-list { max-width: 800px; margin: var(--sp-12) auto 0; display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--red); }

.faq-question {
  padding: var(--sp-5) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  cursor: pointer;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--text-main);
}

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  background: var(--bg-soft);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--text-muted); transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { color: white; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
  padding: var(--sp-4) var(--sp-6) var(--sp-5);
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { max-height: 300px; }

/* =============================================
   CONTACT
   ============================================= */
#contact { background: var(--bg-main); padding: var(--sp-20) 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); }
.contact-info { display: flex; flex-direction: column; gap: var(--sp-6); }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 { font-size: var(--fs-xl); font-weight: 800; color: var(--text-main); margin-bottom: var(--sp-4); }

.contact-detail { display: flex; align-items: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-3); font-size: var(--fs-sm); }
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-detail-text { color: var(--text-muted); line-height: 1.6; }
.contact-detail-text strong { color: var(--text-main); display: block; }

.contact-buttons { display: flex; flex-direction: column; gap: var(--sp-3); }

.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--sp-4);
  height: 220px;
  background: var(--bg-muted);
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: var(--fs-xl); font-weight: 700; color: var(--text-main); margin-bottom: var(--sp-6); }

.form-group { margin-bottom: var(--sp-4); }
.form-label { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--text-mid); margin-bottom: var(--sp-2); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  color: var(--text-main);
  padding: 12px 16px;
  font-size: var(--fs-sm);
  font-family: inherit;
  transition: var(--transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--red); background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  background: rgba(26,171,82,0.08);
  border: 1px solid rgba(26,171,82,0.3);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
  color: #1aab52;
  font-weight: 600;
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--bg-dark);
  border-top: 3px solid var(--red);
  padding: var(--sp-16) 0 var(--sp-8);
  color: rgba(255,255,255,0.85);
}

.footer-paint-line { height: 0; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--sp-8); margin-bottom: var(--sp-12); }

.footer-brand img { height: 145px; width: auto; max-width: 460px; margin-bottom: var(--sp-4); }
.footer-desc { color: rgba(255,255,255,0.60); font-size: var(--fs-sm); line-height: 1.7; margin-bottom: var(--sp-4); }

.footer-heading { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.50); margin-bottom: var(--sp-4); }

.footer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-links a { color: rgba(255,255,255,0.65); font-size: var(--fs-sm); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--text-white); }

.footer-contact { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-sm); color: rgba(255,255,255,0.65); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy { color: rgba(255,255,255,0.45); font-size: var(--fs-sm); }
.footer-copy span { color: var(--red); }
.footer-bottom-links { display: flex; gap: var(--sp-4); }
.footer-bottom-links a { color: rgba(255,255,255,0.40); font-size: var(--fs-xs); transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.80); }

/* =============================================
   IMAGES REQUIRED
   ============================================= */
#images-required {
  background: var(--bg-soft);
  border-top: 2px dashed var(--border-mid);
  padding: var(--sp-12) 0;
}
.images-required-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-8); box-shadow: var(--shadow-sm); }
.images-required-card h3 { font-size: var(--fs-xl); font-weight: 700; color: var(--text-main); margin-bottom: var(--sp-2); }
.images-required-card p  { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-6); }
.img-req-list { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: var(--sp-3); }
.img-req-item { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4); display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); color: var(--text-muted); }
.img-req-num { width: 26px; height: 26px; border-radius: 50%; background: var(--gradient-red); display: flex; align-items: center; justify-content: center; font-size: var(--fs-xs); font-weight: 800; color: white; flex-shrink: 0; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .hero-inner           { grid-template-columns: 1fr; }
  .hero-visual          { display: none; }
  .trust-grid           { grid-template-columns: repeat(2,1fr); }
  .ba-grid              { grid-template-columns: 1fr; }
  .comparison-grid      { grid-template-columns: 1fr; }
  .seo-grid             { grid-template-columns: 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .car-selector-grid    { grid-template-columns: 1fr; }
  .pickup-inner         { grid-template-columns: 1fr; }
  .pickup-visual        { display: none; }
  .repair-stages        { flex-wrap: wrap; gap: var(--sp-6); }
  .repair-stages::before, .repair-stages-fill { display: none; }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
  .header-nav              { display: none; }
  .header-actions .btn     { display: none; }
  .hamburger               { display: flex; }
  #mobile-bottom-bar       { display: flex; }
  #floating-ctas           { display: none; }
  body                     { padding-bottom: 66px; }

  .trust-grid       { grid-template-columns: repeat(2,1fr); }
  .services-grid    { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .calc-inputs      { grid-template-columns: 1fr; }
  .estimate-details { grid-template-columns: 1fr; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .slots-grid       { grid-template-columns: 1fr; }
  .day-tabs         { flex-direction: column; }
  .form-steps-indicator { display: none; }
  .comparison-grid  { grid-template-columns: 1fr; }
  .ba-grid          { grid-template-columns: 1fr; }
  .media-grid       { grid-template-columns: repeat(2,1fr); }
  .areas-grid       { grid-template-columns: 1fr; }

  .section-title   { font-size: var(--fs-2xl); }
  .hero-headline   { font-size: var(--fs-3xl); }
  .hero-inner      { padding: var(--sp-12) 0; }

  .timeline::before  { left: 28px; }
  .timeline-icon     { width: 56px; height: 56px; }
  .timeline-icon svg { width: 22px; height: 22px; }
  .timeline-item     { gap: var(--sp-4); }

  .header-logo img { height: 88px; max-width: 300px; }
  .footer-brand img { height: 110px; max-width: 360px; }
}

@media (max-width: 480px) {
  .container       { padding: 0 var(--sp-4); }
  .trust-grid      { grid-template-columns: 1fr; }
  .option-grid     { grid-template-columns: 1fr 1fr; }
  .badges-grid     { grid-template-columns: 1fr; }
  .img-req-list    { grid-template-columns: 1fr; }
  .form-body       { padding: var(--sp-4); }
  .urgency-text    { font-size: 0.7rem; text-align: center; }
  .hero-badge-row  { gap: 4px; }
  .hero-badge      { font-size: 0.65rem; padding: 4px 10px; }
  /* Disable particles on mobile to improve INP/CLS */
  .paint-particles { display: none; }
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li + li::before { content: "/"; color: var(--border-dark); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current="page"] { color: var(--text-main); font-weight: 600; }

/* =============================================
   HERO LOCATION LINE
   ============================================= */
.hero-location-line {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.02em;
}
.hero-location-line strong { color: var(--red); }

/* =============================================
   INNER PAGE HERO (service / location pages)
   ============================================= */
.inner-hero {
  background: var(--bg-dark);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(227,27,35,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero-label {
  display: inline-block;
  background: var(--red-mid);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: var(--sp-3);
}
.inner-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
.inner-hero h1 span { color: var(--red); }
.inner-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.inner-hero-price {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-6);
}
.inner-hero-ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* =============================================
   INNER PAGE CONTENT
   ============================================= */
.content-section { padding: 60px 0; }
.content-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: var(--sp-4);
}
.content-section h2 span { color: var(--red); }
.content-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
  max-width: 800px;
}
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 768px) { .content-grid-2 { grid-template-columns: 1fr; } }

.price-table {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: var(--sp-6) 0;
}
.price-table-header {
  background: var(--bg-dark);
  color: var(--white);
  padding: 16px 24px;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.price-table-row {
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.price-table-row:last-child { border-bottom: none; }
.price-table-row:nth-child(even) { background: var(--bg-main); }
.price-cell-price { color: var(--red); font-weight: 700; }

.related-pages {
  background: var(--bg-soft);
  padding: 50px 0;
}
.related-pages h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: var(--sp-6);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
}
.related-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}
.related-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px var(--red-glow);
  color: var(--red);
}
