/* ============================================
   RIGHT AWAY AUTO DETAILING â€” Design System
   Ultra-Premium CSS | Kelowna, BC
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* â”€â”€ CSS Custom Properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Dark Mode (Default) â€” Auto Spa Kelowna Brand Palette */
  --bg-primary:      #080808;
  --bg-secondary:    #111111;
  --bg-card:         rgba(22, 20, 20, 0.85);
  --bg-glass:        rgba(8, 8, 8, 0.7);
  --accent:          #C8102E;
  --accent-dim:      rgba(200, 16, 46, 0.12);
  --accent-glow:     rgba(200, 16, 46, 0.4);
  --gold:            #B0B8C4;
  --gold-dim:        rgba(176, 184, 196, 0.12);
  --gold-glow:       rgba(176, 184, 196, 0.3);
  --text-primary:    #FFFFFF;
  --text-secondary:  #CCCCCC;
  --text-muted:      #777777;
  --border:          rgba(200, 16, 46, 0.2);
  --border-subtle:   rgba(255, 255, 255, 0.06);
  --shadow-glow:     0 0 40px rgba(200, 16, 46, 0.3);
  --shadow-card:     0 8px 48px rgba(0,0,0,0.6);
  --shadow-gold:     0 0 30px rgba(176, 184, 196, 0.25);
  --nav-bg:          rgba(8, 8, 8, 0.92);
  --radius:          12px;
  --radius-lg:       20px;
  --radius-xl:       32px;
  --transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --config-icon-color: rgba(255, 255, 255, 0.45);
}

[data-theme="light"] {
  --bg-primary:      #F5F5F5;
  --bg-secondary:    #EBEBEB;
  --bg-card:         rgba(255, 255, 255, 0.85);
  --bg-glass:        rgba(245, 245, 245, 0.85);
  --accent:          #A50E24;
  --accent-dim:      rgba(165, 14, 36, 0.08);
  --accent-glow:     rgba(165, 14, 36, 0.2);
  --gold:            #6B7280;
  --gold-dim:        rgba(107, 114, 128, 0.1);
  --gold-glow:       rgba(107, 114, 128, 0.25);
  --text-primary:    #111111;
  --text-secondary:  #333333;
  --text-muted:      #666666;
  --border:          rgba(165, 14, 36, 0.15);
  --border-subtle:   rgba(0, 0, 0, 0.07);
  --shadow-glow:     0 0 40px rgba(165, 14, 36, 0.15);
  --shadow-card:     0 8px 48px rgba(0,0,0,0.12);
  --shadow-gold:     0 0 30px rgba(107, 114, 128, 0.2);
  --nav-bg:          rgba(255, 255, 255, 0.95);
  --config-icon-color: rgba(0, 0, 0, 0.4);
}

/* â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-snap-type: y proximity;
}

section {
  scroll-snap-align: start;
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

img { max-width: 100%; display: block; }

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-family: 'Bebas Neue', sans-serif;
}

.display-lg {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: 'Bebas Neue', sans-serif;
}

.display-md {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.label-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
}

/* â”€â”€ Layout Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: 64px;
}

/* â”€â”€ Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50%       { box-shadow: 0 0 60px var(--accent-glow), 0 0 100px var(--accent-glow); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Scroll-Reveal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: normal;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, #C8102E 0%, #E8192F 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 24px var(--accent-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-gold {
  background: linear-gradient(135deg, #B0B8C4 0%, #D8E0E8 100%);
  color: #111111;
  box-shadow: 0 4px 24px var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--gold-glow);
}

/* â”€â”€ Navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), #F0C84A);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px var(--gold-glow);
}

.nav-logo-text {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.nav-logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--accent-dim);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* â”€â”€ Theme Toggle â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.theme-toggle {
  width: 56px;
  height: 28px;
  background: var(--bg-secondary);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  outline: none;
  flex-shrink: 0;
}

.theme-toggle:hover { border-color: var(--accent); }

.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold), #F0C84A);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(28px);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  padding: 16px 0 24px;
  border-top: 1px solid var(--border-subtle);
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-mobile a:hover {
  color: var(--accent);
  padding-left: 40px;
}

/* â”€â”€ Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08); /* Similar to previous hero-bg to give parallax room */
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.6) 45%,
    rgba(20, 5, 8, 0.85) 100%
  );
  pointer-events: none;
}

[data-theme="light"] .hero-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.9) 0%,
    rgba(8, 8, 8, 0.55) 45%,
    rgba(20, 5, 8, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  animation: fadeIn 1s ease 0.2s both;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: shimmer 2s ease infinite;
}

.hero-headline {
  color: #FFFFFF;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-headline .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-headline .gold-word {
  background: linear-gradient(135deg, #B0B8C4, #D8E0E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 1s ease 0.6s both;
  min-height: 2.5em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-ctas .btn {
  padding: 16px 40px;
  font-size: 0.95rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 1s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  align-self: center;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: float 2s ease infinite;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translateY(-4px);
}

/* â”€â”€ Services Bento Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#services {
  background-color: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

/* Card Base */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--border-subtle);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card:hover::before { opacity: 1; }

/* Bento Layout */
.bento-1 { grid-column: span 7; min-height: 360px; }
.bento-2 { grid-column: span 5; min-height: 360px; }
.bento-3 { grid-column: span 4; min-height: 280px; }
.bento-4 { grid-column: span 4; min-height: 280px; }
.bento-5 { grid-column: span 4; min-height: 280px; }

/* Card 1 â€” Featured */
.service-card.featured {
  background-image: url('../assets/services-bg.png');
  background-size: cover;
  background-position: center;
  color: #FFFFFF !important;
}

.service-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(30,5,10,0.7) 100%);
  border-radius: var(--radius-lg);
}

.service-card.featured > * { position: relative; z-index: 1; }

.service-card.featured .card-desc { color: rgba(255,255,255,0.85); }
.service-card.featured .card-price-note { color: rgba(255,255,255,0.6); }

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #C8102E, #E8192F);
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .card-icon {
  background: rgba(200, 16, 46, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: scale(1.1);
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 6px;
}

.card-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.card-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .card-arrow {
  background: var(--accent);
  color: #FFFFFF;
  transform: translate(3px, -3px);
}

/* â”€â”€ Before & After Slider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#before-after {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.slider-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-height: 640px;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.slider-after,
.slider-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slider-after {
  background-image: url('../assets/after.png');
  z-index: 1;
}

.slider-before {
  background-image: url('../assets/before.png');
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: white;
  z-index: 10;
  cursor: ew-resize;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  z-index: 11;
  cursor: ew-resize;
  transition: transform 0.2s ease;
  color: #0B0C10;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -2px;
}

.slider-handle:hover { transform: translate(-50%, -50%) scale(1.1); }

.slider-label {
  position: absolute;
  top: 24px;
  padding: 8px 20px;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 5;
}

.slider-label.before-label { left: 24px; }
.slider-label.after-label { right: 24px; }

.slider-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* â”€â”€ Stats Counter â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#stats {
  padding: 0;
  background: var(--bg-primary);
}

.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 64px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* â”€â”€ Process Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#process {
  background: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 40px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent);
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(16px);
}

.process-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, #C8102E, #E8192F);
  color: #FFFFFF;
  box-shadow: 0 0 30px var(--accent-glow);
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* â”€â”€ Paint Correction Split (Step 02) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Expanded card â€” wider, left-aligned, content-driven height */
.process-step--expanded {
  align-items: flex-start;
  text-align: left;
  padding: 40px 32px 36px;
  grid-column: span 1; /* stays in grid flow */
}

.process-step--expanded .step-number {
  /* Keep number centred at top */
  align-self: center;
}

.process-step--expanded .step-title {
  align-self: center;
}

.process-step--expanded .step-desc {
  align-self: stretch;
  text-align: left;
  margin-bottom: 28px;
}

/* Two-column correction split wrapper */
.correction-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  width: 100%;
  margin-top: 4px;
  align-items: start;
}

/* Individual column */
.correction-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 16px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.35s ease, background 0.35s ease;
  position: relative;
}

.correction-col:hover {
  background: var(--bg-card);
  border-color: var(--border);
}

/* Header row: tag + ruled line */
.correction-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.correction-rule {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  border-radius: 1px;
}

/* "1-Step" / "2-Step" accent tag */
.correction-step-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(200, 16, 46, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

.correction-step-tag--two {
  color: var(--text-primary);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

/* Sub-title */
.correction-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.3;
  text-transform: uppercase;
}

/* Description */
.correction-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

/* Severity badge */
.correction-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  background: rgba(200, 16, 46, 0.1);
  color: rgba(200, 16, 46, 0.8);
  border: 1px solid rgba(200, 16, 46, 0.2);
  margin-top: 4px;
  align-self: flex-start;
}

.correction-badge--two {
  background: var(--bg-card);
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

/* Vertical divider between the two columns */
.correction-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  gap: 0;
  min-height: 100%;
}

.correction-divider-line {
  flex: 1;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
  display: block;
}

.correction-divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.5);
  box-shadow: 0 0 8px rgba(200, 16, 46, 0.4);
  flex-shrink: 0;
  margin: 8px 0;
  display: block;
}

/* Mobile: stack columns vertically */
@media (max-width: 600px) {
  .correction-split {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .correction-divider {
    flex-direction: row;
    padding: 8px 0;
    min-height: auto;
    gap: 0;
  }

  .correction-divider-line {
    flex: 1;
    width: auto;
    height: 1px;
  }

  .correction-divider-dot {
    margin: 0 8px;
  }

  .process-step--expanded {
    padding: 32px 20px 28px;
  }

  .correction-col {
    padding: 16px 14px;
  }
}

/* â”€â”€ Reviews Marquee â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#reviews {
  background: var(--bg-primary);
  padding: 80px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-track-reverse {
  animation-direction: reverse;
  animation-duration: 40s;
  margin-top: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  width: 340px;
  flex-shrink: 0;
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: #FFB800;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8102E, #E8192F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
}

.review-google {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Brand Logos Marquee */
.brand-marquee {
  margin-top: 48px;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: var(--transition);
}

.brand-item:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

.brand-item span { font-size: 1.2rem; }

/* â”€â”€ Quote CTA Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#cta {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cta-headline {
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--text-primary);
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  padding: 18px 48px;
  font-size: 1rem;
}

.cta-tel {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-tel a {
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.cta-tel a:hover { text-shadow: 0 0 20px var(--accent-glow); }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: #050607;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px;
}

[data-theme="light"] footer {
  background: #0A192F;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.footer-heading {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-hours-row:last-child { border-bottom: none; }

.footer-hours-day { font-weight: 500; color: rgba(255,255,255,0.65); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(102, 252, 241, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-bottom: 2px;
}

.map-embed {
  width: 100%;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.5);
}

[data-theme="light"] .map-embed iframe {
  filter: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-seo {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  max-width: 600px;
  text-align: right;
}

/* â”€â”€ Chatbot Widget â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#chatbot {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}

.chat-toggle-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8102E, #E8192F);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 32px var(--accent-glow), 0 0 0 0 var(--accent-glow);
  transition: var(--transition);
  animation: glow-pulse 3s ease infinite;
  position: relative;
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 12px 48px var(--accent-glow);
}

.chat-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse-ring 2s ease infinite;
  pointer-events: none;
}

.chat-bubble-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  animation: shimmer 1.5s ease infinite;
}

.chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  background: linear-gradient(135deg, #C8102E, #A50E24);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.chat-header-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0;
}

.chat-header-text p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 8px #22C55E;
}

.chat-body {
  padding: 24px;
}

.chat-message {
  background: var(--bg-secondary);
  border-radius: 12px 12px 12px 4px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.chat-option-btn {
  padding: 10px 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.83rem;
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.chat-option-btn:hover {
  background: var(--accent);
  color: #0B0C10;
  border-color: var(--accent);
}

.chat-input-row {
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: var(--transition);
}

.chat-input:focus { border-color: var(--accent); }
.chat-input::placeholder { color: var(--text-muted); }

.chat-send-btn {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  transition: var(--transition);
}

.chat-send-btn:hover { transform: scale(1.1); }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .bento-1 { grid-column: span 12; }
  .bento-2 { grid-column: span 12; }
  .bento-3, .bento-4, .bento-5 { grid-column: span 4; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  .container { padding: 0 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }

  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5 { grid-column: span 12; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .process-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-seo { text-align: center; }

  .chat-panel { width: 300px; right: -8px; }
  #chatbot { bottom: 20px; right: 20px; }
}

.mobile-break { display: none; }

@media (max-width: 480px) {
  .mobile-break { display: block; }
  .display-xl { font-size: 2.5rem !important; line-height: 1.1; }
  .display-lg { font-size: 2rem !important; line-height: 1.1; }
  .display-md { font-size: 1.6rem !important; line-height: 1.2; }
  
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; padding: 0 16px; }
  p { font-size: 0.9rem; }
  
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 40px 16px; gap: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GOD-TIER CONFIGURATOR â€” CSS CLASS SYSTEM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#god-configurator {
  background: rgba(10, 10, 10, 0.6);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.config-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #e8192f, transparent);
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  #god-configurator { padding: 48px; }
  .config-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.config-left {}

.config-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.config-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}

.veh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.lvl-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.config-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px 12px;
  color: var(--text-primary);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.veh-btn.active,
.veh-btn:hover {
  border-color: var(--accent);
  background: rgba(232, 25, 47, 0.08);
}

.lvl-btn {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  padding: 16px;
}

.lvl-btn.active,
.lvl-btn:hover {
  border-color: var(--accent);
  background: rgba(232, 25, 47, 0.08);
}

.config-icon {
  font-size: 28px;
  line-height: 1;
}

.config-label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.lvl-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.lvl-inactive { color: var(--text-muted); }

.lvl-desc {
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.4;
}

.lvl-desc-dim { color: var(--text-muted); }

/* Right panel */
.config-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--bg-primary);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  gap: 0;
}

@media (min-width: 900px) {
  .config-right { padding: 40px; }
}

.config-badge {
  display: inline-block;
  background: rgba(232, 25, 47, 0.15);
  color: #e8192f;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(232, 25, 47, 0.3);
  margin-bottom: 20px;
  align-self: flex-start;
}

.config-price-block { margin-bottom: 20px; }

.config-price-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  line-height: 1.4;
}

.config-price-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 12vw, 6rem);
  color: var(--text-primary);
  line-height: 1;
  text-shadow: 0 0 40px var(--accent-glow);
}

.config-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 20px 0;
}

.config-value-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.config-trophy { font-size: 20px; flex-shrink: 0; }

.config-value-title {
  color: var(--text-primary);
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.config-value-text {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.config-strikeout {
  text-decoration: line-through;
  color: var(--text-muted);
}

.config-savings { color: var(--accent); }

.config-cta {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

@media (min-width: 900px) {
  .config-cta { padding: 20px; font-size: 1.1rem; }
}

/* â”€â”€ Paint Correction Info Block (inside Configurator) â”€â”€ */
.pc-info-block {
  margin-top: 24px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--accent);
}

.pc-info-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 14px;
  line-height: 1.4;
}

.pc-info-header svg {
  flex-shrink: 0;
  color: rgba(200, 16, 46, 0.6);
}

.pc-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pc-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 2px;
}

/* "1-Step" / "2-Step" labels */
.pc-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(200, 16, 46, 0.4);
  display: inline-block;
  line-height: 1;
}

.pc-tag--two {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.pc-text {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

/* Vertical divider dot */
.pc-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 14px;
  border-radius: 1px;
}

@media (max-width: 600px) {
  .pc-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pc-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    align-self: auto;
  }
}

/* â”€â”€ Coating Duration Grid (Step 2) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.yr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.yr-btn {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 14px 16px;
  gap: 4px;
  position: relative;
}

.yr-btn.active,
.yr-btn:hover {
  border-color: var(--accent);
  background: rgba(232, 25, 47, 0.08);
}

.yr-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  line-height: 1;
}

.yr-sublabel {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.yr-btn.active .yr-label { color: var(--accent); }
.yr-btn.active .yr-sublabel { color: var(--text-primary); }

/* â”€â”€ Paint Correction Step Grid (Step 3) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.step-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-btn {
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 14px 16px;
  gap: 12px;
}

.step-btn.active,
.step-btn:hover {
  border-color: var(--accent);
  background: rgba(232, 25, 47, 0.07);
}

/* Colored step tags */
.step-btn-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(200,16,46,0.4);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 52px;
}

.step-btn-tag--2 {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.step-btn-tag--3 {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251,191,36,0.3);
}

.step-btn:last-child.active,
.step-btn:last-child:hover {
  border-color: rgba(251,191,36,0.5);
  background: rgba(251,191,36,0.06);
}

.step-btn-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
  min-width: 110px;
}

.step-btn-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-family: 'Poppins', sans-serif;
}

/* Mobile: stack step-btn desc off to avoid clutter */
@media (max-width: 500px) {
  .step-btn { flex-wrap: wrap; }
  .step-btn-name { min-width: auto; }
  .step-btn-desc { width: 100%; margin-top: 2px; }
  .yr-grid { gap: 8px; }
  .yr-btn { padding: 12px 12px; }
  .yr-label { font-size: 1.1rem; }
}

/* â”€â”€ Vehicle SVG Icon Styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.config-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 36px;
  color: var(--config-icon-color);
  transition: color 0.3s ease, filter 0.3s ease;
}

.config-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.veh-btn.active .config-icon,
.veh-btn:hover .config-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(232, 25, 47, 0.6));
}

/* â”€â”€ Protection Level Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lvl-btn {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px;
}

.lvl-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent), #ff4d6d);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 4px;
}

.lvl-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
}

.lvl-sublabel {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.lvl-from {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.lvl-btn.active .lvl-label {
  color: #fff;
}

.lvl-btn.active .lvl-from {
  text-shadow: 0 0 12px var(--accent-glow);
}

/* â”€â”€ Asymmetrical Editorial Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.editorial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  margin-top: 16px;
}

.editorial-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
}

/* Image 1 bleeds into Image 2's territory */
.editorial-img-1 {
  grid-column: 1 / 2;
  grid-row: 1;
  z-index: 2;
  transform: translateX(40px);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.editorial-img-1:hover {
  transform: translateX(44px) scale(1.015);
  z-index: 4;
}

/* Image 2 overlaps Image 1 by sitting on a z-layer behind */
.editorial-img-2 {
  grid-column: 2 / 3;
  grid-row: 1;
  z-index: 1;
  transform: translateX(-24px) translateY(40px);
  box-shadow: -10px 24px 48px rgba(0,0,0,0.5);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.editorial-img-2:hover {
  transform: translateX(-28px) translateY(44px) scale(1.015);
  z-index: 3;
}

/* Floating depth badge that hovers over the overlap */
.editorial-depth-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(8,8,8,0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--accent);
  box-shadow: 0 0 30px var(--accent-glow), inset 0 0 20px rgba(200,16,46,0.04);
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  pointer-events: none;
}

.depth-badge-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 20px var(--accent-glow);
}

.depth-badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
  line-height: 1.4;
}

/* Editorial image label bar */
.editorial-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,8,0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.08);
}

.editorial-label svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* Liquid image wrapper */
.liquid-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.liquid-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.editorial-img:hover .liquid-img-wrap img {
  transform: scale(1.04);
}

/* Mobile: stack editorial grid */
@media (max-width: 768px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }
  .editorial-img-1 {
    transform: none;
    grid-column: 1;
    grid-row: 1;
    min-height: 260px;
  }
  .editorial-img-2 {
    transform: none;
    grid-column: 1;
    grid-row: 2;
    min-height: 260px;
  }
  .editorial-depth-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-column: 1;
    margin: 0 auto;
    width: fit-content;
  }
}

/* â”€â”€ CSS Equalizer Waveform for Audio Toggle â”€â”€â”€â”€ */
@keyframes eq-bar-1 {
  0%, 100% { height: 4px; }
  50%       { height: 14px; }
}
@keyframes eq-bar-2 {
  0%, 100% { height: 10px; }
  30%       { height: 4px; }
  70%       { height: 16px; }
}
@keyframes eq-bar-3 {
  0%, 100% { height: 6px; }
  40%       { height: 14px; }
  80%       { height: 4px; }
}

.audio-eq {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

#god-audio-toggle.active .audio-eq {
  display: flex;
}

#god-audio-toggle.active .audio-icon {
  display: none;
}

.eq-bar {
  width: 3px;
  background: #fff;
  border-radius: 2px;
  animation-duration: 2s; /* matches 0.2Hz LFO feel */
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.eq-bar:nth-child(1) { animation-name: eq-bar-1; animation-delay: 0s; }
.eq-bar:nth-child(2) { animation-name: eq-bar-2; animation-delay: 0.3s; }
.eq-bar:nth-child(3) { animation-name: eq-bar-3; animation-delay: 0.15s; }
.eq-bar:nth-child(4) { animation-name: eq-bar-2; animation-delay: 0.45s; }
.eq-bar:nth-child(5) { animation-name: eq-bar-1; animation-delay: 0.6s; }

/* Equalizer animaton respects reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .eq-bar { animation: none; height: 8px; }
}

/* â”€â”€ Configurator Responsive Fixes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 640px) {
  .veh-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .lvl-grid { gap: 8px; }
  .config-btn { padding: 12px 8px; }
  .lvl-btn { padding: 14px; }
  .lvl-label { font-size: 1.1rem; }
  .config-price-number { font-size: clamp(3rem, 16vw, 4.5rem); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SPECIALTY SERVICES â€” TRUCK & MARINE
   Premium card system, no pricing displayed
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

#specialty-services {
  background: var(--bg-primary);
  padding: 120px 0;
  position: relative;
  overflow: visible;
}

/* Section-level ambient glow */
#specialty-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.35;
}

/* â”€â”€ Two-column bento-style grid â”€â”€ */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

/* â”€â”€ Card base: full bleed image + content overlay â”€â”€ */
.specialty-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
  will-change: transform;
}

.specialty-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(200, 16, 46, 0.4);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(200, 16, 46, 0.15),
    var(--shadow-glow);
}

#marine-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(56, 189, 248, 0.1),
    0 0 40px rgba(56, 189, 248, 0.12);
}

/* â”€â”€ Full-bleed background image â”€â”€ */
.specialty-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.specialty-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.9s ease;
  filter: brightness(0.75) saturate(0.8);
  will-change: transform;
}

.specialty-card:hover .specialty-bg-img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(1.1);
}

/* â”€â”€ Dark gradient overlay â”€â”€ */
.specialty-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8, 8, 8, 0.15) 0%,
    rgba(8, 8, 8, 0.5) 40%,
    rgba(8, 8, 8, 0.92) 100%
  );
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.specialty-card:hover .specialty-card-overlay {
  background: linear-gradient(
    170deg,
    rgba(8, 8, 8, 0.2) 0%,
    rgba(8, 8, 8, 0.55) 35%,
    rgba(8, 8, 8, 0.95) 100%
  );
}

/* Marine variant â€” tinted ocean blue */
.specialty-card-overlay--marine {
  background: linear-gradient(
    170deg,
    rgba(2, 12, 22, 0.12) 0%,
    rgba(4, 20, 40, 0.5) 40%,
    rgba(4, 14, 30, 0.94) 100%
  );
}

/* â”€â”€ Thin accent bar at top of card â”€â”€ */
.specialty-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 5;
  background: linear-gradient(90deg, transparent, #C8102E 40%, #E8192F 60%, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.specialty-card:hover .specialty-accent-bar {
  opacity: 1;
}

.specialty-accent-bar--marine {
  background: linear-gradient(90deg, transparent, #0ea5e9 40%, #38bdf8 60%, transparent);
}

/* â”€â”€ Card content layer â”€â”€ */
.specialty-card-content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}

/* â”€â”€ Eyebrow row: SVG icon + tag label â”€â”€ */
.specialty-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.specialty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease, filter 0.4s ease;
  flex-shrink: 0;
}

.specialty-icon svg {
  width: 100%;
  height: 100%;
}

.specialty-card:hover .specialty-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(232, 25, 47, 0.7));
}

.specialty-icon--marine,
#marine-card:hover .specialty-icon {
  color: rgba(56, 189, 248, 0.7);
}

#marine-card:hover .specialty-icon {
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
}

.specialty-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins', sans-serif;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.4s ease, color 0.4s ease;
}

.specialty-card:hover .specialty-tag {
  border-color: rgba(200, 16, 46, 0.4);
  color: rgba(255, 255, 255, 0.75);
}

#marine-card:hover .specialty-tag {
  border-color: rgba(56, 189, 248, 0.4);
}

/* â”€â”€ Card title â”€â”€ */
.specialty-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.0;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  transition: text-shadow 0.4s ease;
}

.specialty-card:hover .specialty-title {
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.8);
}

/* â”€â”€ Description â”€â”€ */
.specialty-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.72;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  max-width: 480px;
  transition: color 0.4s ease;
}

.specialty-card:hover .specialty-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* â”€â”€ Feature list â”€â”€ */
.specialty-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specialty-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.specialty-card:hover .specialty-features li {
  color: rgba(255, 255, 255, 0.75);
}

.specialty-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent-glow);
}

.specialty-feature-dot--marine {
  background: #38bdf8;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.5);
}

/* â”€â”€ CTA button inside card â”€â”€ */
.specialty-cta {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 13px 28px;
  letter-spacing: 0.06em;
}

/* â”€â”€ Floating status badge (top-right corner) â”€â”€ */
.specialty-float-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 5;
  background: rgba(8, 8, 8, 0.75);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(200, 16, 46, 0.35);
  border-radius: 16px;
  padding: 14px 18px;
  text-align: center;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.specialty-card:hover .specialty-float-badge {
  transform: translateY(-4px);
  border-color: rgba(200, 16, 46, 0.7);
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.2);
}

.specialty-float-badge--marine {
  border-color: rgba(56, 189, 248, 0.3);
}

#marine-card:hover .specialty-float-badge {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
}

.specialty-badge-icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
  line-height: 1;
}

.specialty-badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

/* â”€â”€ Responsive: tablet â”€â”€ */
@media (max-width: 1024px) {
  .specialty-card-content { padding: 36px 28px; }
  .specialty-title { font-size: clamp(2rem, 5vw, 3rem); }
}

/* â”€â”€ Responsive: mobile â”€â”€ */
@media (max-width: 768px) {
  .specialty-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .specialty-card {
    min-height: 500px;
  }

  .specialty-card-content {
    padding: 28px 24px;
  }

  .specialty-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .specialty-float-badge {
    top: 16px;
    right: 16px;
    padding: 10px 14px;
  }

  .specialty-badge-icon { font-size: 1.1rem; }
  .specialty-badge-text { font-size: 0.6rem; }
}

@media (max-width: 480px) {
  .specialty-card { min-height: 440px; }
  .specialty-card-content { padding: 24px 20px; }
  .specialty-features { gap: 8px; }
  .specialty-features li { font-size: 0.78rem; }
  .specialty-cta { width: 100%; justify-content: center; }
}

/* nav links for new section */
#specialty-services {
  scroll-snap-align: start;
}

/* ----------------------------------------------
   SUPPLIES WE TRUST — Section
   Ticker + card grid + mobile performance CSS
---------------------------------------------- */

/* -- Section wrapper -- */
#supplies {
  padding: 100px 0 80px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

#supplies::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.25;
}

/* -- Logo ticker -- */
.supplies-ticker-wrap {
  width: 100%;
  overflow: hidden;
  margin: 48px 0 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.supplies-ticker {
  display: flex;
  width: max-content;
  /* GPU-accelerated continuous scroll */
  animation: supplies-scroll 32s linear infinite;
  will-change: transform;
}

@keyframes supplies-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .supplies-ticker { animation: none; }
  .supplies-ticker-wrap { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

.supplies-track {
  display: flex;
  align-items: center;
  gap: 0;
}

.supplies-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.supplies-logo-item:hover { opacity: 1; }

.supplies-logo-item img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.35s ease;
}

.supplies-logo-item:hover img {
  filter: grayscale(0) brightness(1);
}

/* -- 4-column product card grid -- */
.supplies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* -- Individual supply card -- */
.supplies-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease,
              transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease;
  will-change: transform;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.supplies-card:hover {
  border-color: rgba(200,16,46,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,16,46,0.08);
}

/* Image container */
.supplies-card-img {
  height: 120px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.supplies-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.04));
  transition: transform 0.4s ease;
}

.supplies-card:hover .supplies-card-img img {
  transform: scale(1.06);
}

/* Text body */
.supplies-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.supplies-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.supplies-card-cat {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}

/* -- Responsive: tablet -- */
@media (max-width: 1024px) {
  .supplies-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
  #supplies { padding: 72px 0 64px; }
  .supplies-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .supplies-card-img { height: 96px; padding: 16px; }
  .supplies-logo-item { padding: 10px 18px; }
  .supplies-logo-item img { height: 36px; }
  .supplies-ticker { animation-duration: 22s; }
}

@media (max-width: 480px) {
  .supplies-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .supplies-card-img { height: 84px; padding: 14px; }
  .supplies-card-name { font-size: 0.75rem; }
}

/* ----------------------------------------------
   MOBILE PERFORMANCE & SMOOTHNESS FIXES
   Targets phones = 768px — no visual changes
   on desktop, just better feel on touch devices
---------------------------------------------- */

@media (max-width: 768px) {

  /* Smoother scroll momentum on iOS */
  html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  /* Reduce GPU pressure: disable heavy will-change on small screens */
  .specialty-card,
  .supplies-card,
  .editorial-img,
  .specialty-bg-img {
    will-change: auto;
  }

  /* Disable liquid distortion on touch devices (too heavy) */
  .liquid-hover {
    filter: none !important;
  }

  /* Simplify magnetic button on mobile — no movement, just color */
  .btn {
    transform: none !important;
    transition: background 0.2s ease, border-color 0.2s ease !important;
  }

  /* Reduce backdrop-filter layers */
  .specialty-card,
  .supplies-card,
  .nav-mobile {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  /* Keep animations snappy, not heavy */
  .reveal {
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Configurator grid single column on very small screens */
  @media (max-width: 480px) {
    .config-grid { grid-template-columns: 1fr; }
    .specialty-card { min-height: 400px; }
    .editorial-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .editorial-img-1,
    .editorial-img-2 {
      transform: none;
    }
  }

  /* Prevent horizontal scroll from editorial grid overlap */
  .editorial-grid {
    overflow: hidden;
  }

  /* Fix touch target sizes — minimum 44×44px */
  .config-btn,
  .yr-btn,
  .step-btn,
  .chat-option-btn,
  .social-btn {
    min-height: 44px;
  }

  /* Stop text size inflation on iOS */
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* Prevent overscroll bounce showing white edges */
  body {
    overscroll-behavior-y: contain;
  }

  /* Process section single-col on mobile */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Reduce marquee on mobile to avoid jank */
  .marquee-track {
    animation-duration: 28s;
  }

  /* Footer single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Logo visibility fixes */
img[src*='logo.png'] { mix-blend-mode: lighten; }
[data-theme='light'] img[src*='logo.png'] { filter: invert(1) hue-rotate(180deg) brightness(1.1); mix-blend-mode: multiply; }


/* Products We Sell - Animated Strip */
.brand-strip-wrap { width: 100%; overflow: hidden; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 20px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); }
.brand-strip-track { display: flex; width: max-content; gap: 64px; animation: strip-scroll 40s linear infinite; will-change: transform; align-items: center; }
.brand-strip-item { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--text-muted); display: flex; align-items: center; gap: 12px; white-space: nowrap; transition: color 0.3s ease; }
.brand-strip-item span { font-size: 1.2rem; filter: grayscale(0.5); }
.brand-strip-item:hover { color: var(--accent); }
@keyframes strip-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .brand-strip-item { font-size: 1.2rem; gap: 8px; } .brand-strip-track { animation-duration: 25s; } }


.brand-strip-item img { height: 28px; width: auto; object-fit: contain; opacity: 0.6; filter: grayscale(1) brightness(1.5); transition: opacity 0.3s ease, filter 0.3s ease; }
.brand-strip-item:hover img { opacity: 1; filter: grayscale(0) brightness(1); }


/* ═══════════════════════════════════════════
   WINDOW TINTING SECTION
═══════════════════════════════════════════ */
#window-tinting {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.tinting-bg-visual {
  position: absolute;
  top: 50%;
  right: -5%;
  width: 55%;
  height: 80%;
  transform: translateY(-50%);
  opacity: 0.25;
  filter: blur(2px) saturate(0.8);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent, black 40%, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40%, black 60%, transparent);
}

.tinting-content {
  position: relative;
  z-index: 1;
}

.tinting-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.tint-card {
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.tint-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 16, 46, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tint-card:hover::after {
  opacity: 1;
}

.tint-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(200, 16, 46, 0.1);
  border-color: rgba(200, 16, 46, 0.3);
}

.tint-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  width: fit-content;
}

.tint-badge--premium {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.tint-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1;
}

.tint-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.tint-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.tint-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.tint-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.tint-icon--silver {
  color: var(--gold);
}

/* Why Choose Us Banner */
.why-choose-banner {
  margin-top: 80px;
  background: linear-gradient(90deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.why-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.why-point:hover .why-icon {
  transform: translateY(-8px);
  color: #fff;
  background: var(--accent);
  box-shadow: 0 15px 35px var(--accent-glow);
}

.why-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .why-points { grid-template-columns: repeat(2, 1fr); }
  .tinting-bg-visual { width: 80%; opacity: 0.15; }
}

@media (max-width: 768px) {
  .tinting-tiers { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .why-choose-banner { padding: 48px 24px; }
  .tint-card { padding: 40px 24px; }
  .tint-card h3 { font-size: 2.2rem; }
}

/* ── Light Theme Overrides ────────────────── */
[data-theme="light"] #god-configurator {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .tint-card {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .tint-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 30px rgba(165, 14, 36, 0.08);
  border-color: var(--border);
}

[data-theme="light"] .brand-strip-item img {
  filter: grayscale(1) brightness(0.6);
}

