/* ============================================================
   Detail & Dents — Main Stylesheet
   Brand: Red #CC0000 | Dark #0d0d0d | Silver #888
   ============================================================ */

/* ---- Variables & Reset ----------------------------------- */
:root {
  --topbar-h: 36px;
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #ff1a1a;
  --dark: #0d0d0d;
  --dark-2: #161616;
  --dark-3: #1f1f1f;
  --dark-4: #2a2a2a;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --light: #f2f2f2;
  --white: #ffffff;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-red: 0 4px 32px rgba(204,0,0,0.3);
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-bg: rgba(13,13,13,0.85);
  --header-border: 1px solid rgba(255,255,255,0.06);
  --bg: var(--dark);
  --text: var(--white);
}

/* Light theme overrides — warm cream automotive premium palette */
.light-theme {
  --dark: #f7f4f0;
  --dark-2: #ffffff;
  --dark-3: #ede9e3;
  --dark-4: #d6d0c9;
  --white: #1a1a1a;
  --gray: #6a6560;
  --gray-light: #484440;
  --header-bg: rgba(247,244,240,0.97);
  --header-border: 1px solid rgba(0,0,0,0.09);
  --bg: #f7f4f0;
  --text: #1a1a1a;
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-red: 0 4px 24px rgba(204,0,0,0.18);
}
/* Light theme — body & nav */
.light-theme body { background: #f7f4f0; color: #1a1a1a; }
.light-theme #header.scrolled { background: rgba(247,244,240,0.98) !important; box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
.light-theme .top-bar { background: var(--red); color: #fff; }
.light-theme .btn-primary { color: #fff; }
.light-theme .nav-links a { color: #555550; }
.light-theme .nav-links a:hover,
.light-theme .nav-links a.active { color: #1a1a1a; background: rgba(0,0,0,0.05); }
.light-theme .hamburger span { background: #1a1a1a; }
.light-theme .mobile-menu { background: #ffffff; border-color: #d6d0c9; }
.light-theme .mobile-menu a { color: #555550; }
.light-theme .mobile-menu a:hover { color: #1a1a1a; background: #f0ece6; }
/* Light theme — hero & CTA always have dark overlays → keep text white */
.light-theme .hero .hero-desc { color: rgba(255,255,255,0.82); }
.light-theme .hero .stat-number { color: #ffffff; }
.light-theme .hero .stat-label { color: rgba(255,255,255,0.60); }
.light-theme .hero .btn-outline { color: #ffffff; border-color: rgba(255,255,255,0.45); }
.light-theme .hero .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.75); }
.light-theme .cta-subtitle { color: rgba(255,255,255,0.85); }
.light-theme .cta-note { color: rgba(255,255,255,0.55); }
/* Light theme — content sections */
.light-theme .section-title { color: #1a1a1a; }
.light-theme .service-tag { border-color: rgba(0,0,0,0.10); background: #f0ece6; color: #555550; }
.light-theme .service-card { border-color: #d6d0c9; }
.light-theme .service-card:hover { background: #f7f4f0; border-color: rgba(204,0,0,0.25); }
.light-theme .gallery-tab { color: #555550; }
.light-theme .gallery-tab.active,
.light-theme .gallery-tab:hover { color: #fff; }
.light-theme .why-point { background: #ffffff; border-color: #d6d0c9; }
.light-theme .why-point:hover { background: #f7f4f0; border-color: rgba(204,0,0,0.30); }
.light-theme .review-card { background: #ffffff; border-color: #d6d0c9; }
.light-theme .process-step::after { background: linear-gradient(90deg, #d6d0c9, transparent); }
.light-theme .contact-info-card { background: #ffffff; border-color: #d6d0c9; }
.light-theme .hours-item { background: #f0ece6; }
.light-theme .big-contact-value,
.light-theme .big-contact-value a { color: #1a1a1a; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utilities ------------------------------------------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-red { color: var(--red); }
.text-gray { color: var(--gray-light); }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

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

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 580px;
  margin-top: 12px;
}

.divider-red {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 20px 0;
  border-radius: 2px;
}

/* ---- Header / Navigation --------------------------------- */
#header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--header-border);
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img { height: 48px; width: auto; }
.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Theme toggle button */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.30);
  margin-left: 8px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.6);
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
  display: block;
}
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
.light-theme .theme-toggle { border-color: rgba(0,0,0,0.25); color: #111111; background: rgba(0,0,0,0.06); }
.light-theme .theme-toggle:hover { background: rgba(0,0,0,0.12); border-color: rgba(0,0,0,0.40); }
.light-theme .theme-toggle .icon-sun  { display: block; }
.light-theme .theme-toggle .icon-moon { display: none; }

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  border-radius: 4px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(72px + var(--topbar-h));
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-4);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }

/* ---- Menu Blur Overlay ----------------------------------- */
.menu-blur-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.menu-blur-overlay.active { display: block; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  color: var(--gray-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--white); background: var(--dark-3); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* ---- Top Bar --------------------------------------------- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: var(--red);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #fff;
}
.top-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ---- Hero ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(72px + var(--topbar-h));
}

.hero-bg {
  position: absolute;
  inset: 0px;
  background-image: url("../images/aurel2.png");
  background-size: cover;
  background-position: center 55%;
  transform: scale(1.05);
  transition: transform 8s;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.75) 50%,
    rgba(13,13,13,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--red); }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ---- Trust Badges ---------------------------------------- */
.trust-section {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  border-bottom: 1px solid var(--dark-4);
  padding: 36px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; fill: var(--red); }

.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.trust-text span {
  font-size: 12px;
  color: var(--gray);
}

/* ---- Services -------------------------------------------- */
.services-section {
  padding: 100px 0;
}

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 12px auto 0; }
.section-header.center .divider-red { margin: 20px auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  position: relative;
  background: var(--dark-2);
  padding: 48px 40px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark-3); }

.service-number {
  font-size: 72px;
  font-weight: 900;
  color: rgba(204,0,0,0.08);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
  pointer-events: none;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(204,0,0,0.2);
  border-color: rgba(204,0,0,0.5);
}
.service-icon svg { width: 28px; height: 28px; fill: var(--red); }

.service-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.service-tag {
  padding: 4px 12px;
  background: var(--dark-4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* ---- About Section --------------------------------------- */
.about-section {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  border-bottom: 1px solid var(--dark-4);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-red);
  min-width: 140px;
}
.about-badge-number {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.about-badge-text {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(204,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point-icon svg { width: 16px; height: 16px; fill: var(--red); }

.about-point-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.about-point-text span { font-size: 14px; color: var(--gray-light); }

/* ---- Before/After Gallery -------------------------------- */
.gallery-section {
  padding: 100px 0;
}

.gallery-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  border: 1px solid var(--dark-4);
  background: var(--dark-2);
  transition: var(--transition);
  cursor: pointer;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: ew-resize;
  user-select: none;
  background: var(--dark-3);
  box-shadow: var(--shadow);
}

.ba-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before-wrap {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  transition: width 0.01s;
}
.ba-before-wrap img { width: auto; height: 100%; max-width: none; }

.ba-handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--white);
  pointer-events: none;
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  pointer-events: none;
}
.ba-handle-btn svg { width: 20px; height: 20px; }

.ba-label {
  position: absolute;
  top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.ba-label-before {
  left: 14px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
}
.ba-label-after {
  right: 14px;
  background: rgba(204,0,0,0.85);
  color: var(--white);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
  -webkit-appearance: none;
}

/* ---- Why Choose Us --------------------------------------- */
.why-section {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-point {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid var(--dark-4);
  transition: var(--transition);
}
.why-point:hover { border-color: rgba(204,0,0,0.3); background: var(--dark-2); }

.why-check {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-check svg { width: 18px; height: 18px; fill: var(--red); }

.why-point-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.why-point-text { font-size: 13px; color: var(--gray-light); }

/* ---- Process Steps --------------------------------------- */
.process-section {
  padding: 100px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.process-step { text-align: center; position: relative; }
.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--dark-4), transparent);
}
.process-step:last-child::after { display: none; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: rgba(204,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
  margin: 0 auto 20px;
}
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--gray-light); }

/* ---- Testimonials ---------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.review-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { border-color: rgba(204,0,0,0.2); transform: translateY(-4px); }

.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 18px; height: 18px; fill: #f5a623; }

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; }
.review-vehicle { font-size: 12px; color: var(--gray); }

/* ---- CTA Section ----------------------------------------- */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-2.jpg');
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.95) 0%, rgba(153,0,0,0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

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

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---- Footer ---------------------------------------------- */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-4);
}

.footer-brand img { height: 44px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--red); border-color: var(--red); }
.social-btn svg { width: 16px; height: 16px; fill: var(--white); }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(204,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 15px; height: 15px; fill: var(--red); }
.footer-contact-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.footer-contact-value { font-size: 14px; color: var(--white); font-weight: 500; }
.footer-contact-value a { color: var(--white); }
.footer-contact-value a:hover { color: var(--red); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--gray); }
.footer-copy span { color: var(--red); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--gray); transition: var(--transition); }
.footer-legal a:hover { color: var(--white); }

.page-hero {
  /* Reduced vertical size for paint-correction video (≈3x smaller)
     Top/bottom paddings scaled down so the video area is visibly smaller. */
  padding: calc(54px + var(--topbar-h)) 0 27px;
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-4);
  min-height: 114px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
}
.page-hero-content { position: relative; z-index: 2; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gray); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--dark-4); }

/* ---- Service Detail Layout ------------------------------- */
.service-detail-section { padding: 80px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.detail-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-benefits { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.detail-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.detail-benefit svg { width: 20px; height: 20px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.detail-benefit-text { font-size: 15px; color: var(--gray-light); }
.detail-benefit-text strong { color: var(--white); }

/* ---- FAQ Section ----------------------------------------- */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--dark-4);
  padding: 24px 0;
}
.faq-question {
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-question svg { width: 20px; height: 20px; fill: var(--red); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 14px; }

/* ---- Contact Form ---------------------------------------- */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-title { font-size: 24px; font-weight: 800; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--red); }
.form-control::placeholder { color: var(--dark-4); }
select.form-control { cursor: pointer; }
textarea.form-control { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; padding: 15px; font-size: 16px; }

/* ---- Scroll Animations ----------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: none; }

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: none; }

/* ---- Service Work Gallery -------------------------------- */
.work-gallery-section {
  padding: 80px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  border-bottom: 1px solid var(--dark-4);
  overflow: hidden;
}
.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
  width: 100%;
}
.work-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.92);
  display: block;
}
.work-gallery-grid img:hover { transform: scale(1.03); filter: brightness(1); }

/* ---- Video Page Hero ------------------------------------- */
.page-hero-video {
  position: absolute;
  left: 50%;
  top: 139%;
  transform: translate(-50%, -50%);
  width: calc(100% + 90px);
  height: 327vh;
  /* object-fit: cover; */
  opacity: 0.45;
  pointer-events: none;
  max-width: 2000px;
}
.page-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.65) 60%, rgba(13,13,13,0.38) 100%);
}

/* Paint Correction — page specific hero + video overrides */
.page-paint-correction .page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: rgba(22,22,22,0.84);
  border-bottom: 1px solid var(--dark-4);
  min-height: 340px;
}
.page-paint-correction .page-hero-video {
  position: absolute !important;
  left: 0;
  top: 0;
  margin-left: 25vh;
  margin-top: -32vh;
  transform: scale(1.2);
  z-index: -1;
  width: auto;
  height: auto;
  min-width: 120%;
  min-height: 120%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .work-gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  #header { top: 0; }
  .mobile-menu { top: 72px; }
  .hero { padding-top: 72px; }
  .page-hero { padding-top: calc(40px + var(--topbar-h)); min-height: 87px; }
  /* responsive overrides for .page-hero-video removed to honor global positioning */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .hero-title { font-size: clamp(30px, 8vw, 50px); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .why-grid, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
  
  .about-badge { right: 0; bottom: -16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .work-gallery-grid { grid-template-columns: 1fr 1fr; }
  .work-gallery-grid img { height: 180px; }
  .reviews-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  
  .form-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .work-gallery-grid { grid-template-columns: 1fr; }
  .work-gallery-grid img { height: 220px; }
  .container { padding: 0 16px; }
  .service-card { padding: 32px 24px; }
  .contact-form-wrap { padding: 24px; }
  .page-hero { padding-top: calc(30px + var(--topbar-h)); min-height: 74px; }
  /* responsive overrides for .page-hero-video removed to honor global positioning */
}
