/* ==========================================================================
   ZACK'S AUTO DETAILING - OFFICIAL BLACK & GREEN (#7CBB0F) DESIGN SYSTEM
   Directly Inspired by Zack's Official Logo & Brand Materials
   ========================================================================== */

:root {
  /* Exact Green Specified by User: #7CBB0F */
  --brand-green: #7CBB0F;
  --brand-green-hover: #8fd413;
  --brand-green-glow: rgba(124, 187, 15, 0.42);
  --brand-green-subtle: rgba(124, 187, 15, 0.09);
  --brand-green-border: rgba(124, 187, 15, 0.32);
  --dark-forest: #101c05;

  /* Pure Pitch Black & Surface Tones */
  --bg-black: #000000;
  --bg-surface: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --border-dark: #1f1f1f;
  --border-green: rgba(124, 187, 15, 0.35);

  /* Typography Colors */
  --text-white: #ffffff;
  --text-primary: #ededed;
  --text-secondary: #9aa0a6;
  --text-muted: #666666;
  --gold-star: #ffb703;

  /* Fonts */
  --font-brush: 'Permanent Marker', cursive, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(124, 187, 15, 0.12) 0%, transparent 50%),
    linear-gradient(to bottom, #000000 0%, #080808 100%);
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-green {
  color: var(--brand-green);
  text-shadow: 0 0 10px var(--brand-green-glow);
}

.glow-green {
  box-shadow: 0 0 18px var(--brand-green-glow);
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.85rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--brand-green);
  color: #000000;
  border: 1px solid var(--brand-green);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--brand-green-hover);
  color: #000000;
  box-shadow: 0 0 24px rgba(124, 187, 15, 0.6);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  border: 1.5px solid var(--brand-green);
  color: var(--brand-green);
}

.btn-outline-green:hover {
  background: var(--brand-green);
  color: #000;
  box-shadow: 0 0 18px var(--brand-green-glow);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid #444;
  color: #fff;
}
.btn-outline-white:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */

.top-bar {
  background: #080d04;
  border-bottom: 1px solid rgba(124, 187, 15, 0.25);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
}

.pulse {
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(124, 187, 15, 0.8); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(124, 187, 15, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(124, 187, 15, 0); }
}

.top-status strong {
  color: var(--brand-green);
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-phone {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s ease;
}
.top-phone:hover {
  color: var(--brand-green);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-green);
  padding: 12px 0;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-brush);
  font-size: 1.65rem;
  letter-spacing: 1.5px;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.brand-link:hover .brand-name {
  text-shadow: 0 0 20px var(--brand-green-glow);
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--brand-green);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.18s ease;
  position: relative;
  padding: 4px 0;
}

.nav-item:hover {
  color: var(--brand-green);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width 0.22s ease;
}
.nav-item:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-phone {
  background: #111;
  border: 1px solid var(--border-green);
  color: var(--text-white);
  padding: 10px 16px;
  font-size: 0.9rem;
}
.btn-phone:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
  background: var(--brand-green-subtle);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--brand-green);
  border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #080808;
  border-left: 2px solid var(--brand-green);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 35px rgba(0, 0, 0, 0.9);
}
.mobile-drawer.open {
  right: 0;
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid #222;
  padding-bottom: 16px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brand-green);
}

.drawer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--brand-green);
}

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.drawer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 1px solid #161616;
}
.drawer-nav a:hover {
  color: var(--brand-green);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 60px 0 50px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-tag-wrap {
  margin-bottom: 16px;
}

.hero-tag {
  display: inline-block;
  background: var(--brand-green-subtle);
  border: 1px solid var(--brand-green);
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-shadow: 0 0 8px var(--brand-green-glow);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.hero-punchline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand-green);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-hero-primary {
  background: var(--brand-green);
  color: #000000;
  border: 1px solid var(--brand-green);
  font-size: 1.05rem;
  font-weight: 900;
  padding: 16px 30px;
}

.btn-hero-secondary {
  background: #111;
  border: 1.5px solid var(--border-green);
  color: var(--text-white);
  font-size: 1.05rem;
  padding: 16px 26px;
}
.btn-hero-secondary:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
  background: var(--brand-green-subtle);
}

.hero-guarantees {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--text-secondary);
}
.hero-guarantees span {
  color: var(--text-white);
  font-weight: 600;
}

/* Official Isolated Performance Car Presentation in Hero */
.hero-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-car-stage {
  position: relative;
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 20px;
}

.hero-car-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(124, 187, 15, 0.42));
  animation: floatCar 5s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-car-img:hover {
  transform: scale(1.025) translateY(-4px);
}

.hero-car-glow {
  position: absolute;
  bottom: 12px;
  width: 90%;
  height: 48px;
  background: radial-gradient(ellipse at center, rgba(124, 187, 15, 0.5) 0%, rgba(124, 187, 15, 0.12) 60%, transparent 80%);
  filter: blur(16px);
  z-index: 1;
  pointer-events: none;
}

.hero-car-badge {
  position: absolute;
  bottom: -10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--brand-green);
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-car-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-green);
}

@keyframes floatCar {
  0% { transform: translateY(0px); filter: drop-shadow(0 12px 25px rgba(124, 187, 15, 0.35)); }
  100% { transform: translateY(-8px); filter: drop-shadow(0 22px 45px rgba(124, 187, 15, 0.55)); }
}

/* ==========================================================================
   4 BRAND PILLARS BAR (From the Logo's Exact Hexagonal Icons)
   ========================================================================== */

.pillars-section {
  background: #080808;
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
  padding: 34px 0;
}

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

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.pillar-hexagon {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--brand-green);
  border-radius: 12px;
  background: rgba(124, 187, 15, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 15px rgba(124, 187, 15, 0.22);
  transition: transform 0.22s ease;
}
.pillar-card:hover .pillar-hexagon {
  transform: scale(1.08);
  background: var(--brand-green);
}
.pillar-card:hover .pillar-hexagon svg {
  stroke: #000;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 45px;
}

.sub-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--brand-green);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.title-main {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.18;
  margin-bottom: 14px;
}

.subtitle-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   BEFORE & AFTER GALLERY (CAROUSEL SLIDER - ZERO FAKE OVERLAY BADGES)
   ========================================================================== */

.gallery-section {
  background: #050505;
}

/* Shared Slider Layout */
.slider-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.slider-track-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  touch-action: pan-y;
}

/* Before & After Track & Slide */
.ba-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  width: 100%;
}

.ba-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #080808;
}

.ba-slide-img-box {
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-height: 540px;
}

.ba-slide-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-slide-info {
  padding: 24px 28px;
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
}

.ba-slide-info h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.ba-slide-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Shared Slider Controls (Arrows & Pagination Dots) */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.88);
  border: 1.5px solid var(--brand-green);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.22s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.slider-arrow:hover {
  background: var(--brand-green);
  color: #000000;
  box-shadow: 0 0 20px var(--brand-green-glow);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: -24px;
}

.slider-next {
  right: -24px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #252525;
  border: 1px solid #444444;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.slider-dot:hover {
  border-color: var(--brand-green);
  background: #3a3a3a;
}

.slider-dot.active {
  background: var(--brand-green);
  border-color: var(--brand-green);
  box-shadow: 0 0 12px var(--brand-green-glow);
  width: 32px;
  border-radius: var(--radius-pill);
}

@media (max-width: 820px) {
  .slider-prev {
    left: 8px;
  }
  .slider-next {
    right: 8px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.82);
  }
}

/* ==========================================================================
   ACTUAL SERVICES MENU (Strictly Limited to Real Offerings - No Hallucinated Prices)
   ========================================================================== */

.packages-section {
  background: var(--bg-black);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.packages-grid.four-cards {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1120px) {
  .packages-grid.four-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .packages-grid.four-cards {
    grid-template-columns: 1fr;
  }
}

.package-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.package-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-green);
}

.pkg-img-wrap {
  width: calc(100% + 48px);
  margin: -28px -24px 18px -24px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  background: #000000;
  position: relative;
  z-index: 1;
}

.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.package-box:hover .pkg-img {
  transform: scale(1.05);
}

.featured-box {
  border: 2px solid var(--brand-green);
  box-shadow: 0 0 25px rgba(124, 187, 15, 0.2);
  background: linear-gradient(180deg, #131a0e 0%, #111111 100%);
}

.pkg-badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #0a0a0a;
  color: var(--brand-green);
  border: 1.5px solid var(--brand-green);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 10px var(--brand-green-glow);
}

.pkg-badge-signature {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--brand-green);
  color: #000;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.9), 0 0 14px var(--brand-green);
  z-index: 10;
}

.pkg-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #222;
}

.pkg-category {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.pkg-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 4px 0 8px;
}

.pkg-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 42px;
  margin-bottom: 12px;
}

.pkg-quote-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-green);
  background: var(--brand-green-subtle);
  border: 1px solid var(--border-green);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pkg-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pkg-features li {
  font-size: 0.88rem;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.check {
  color: var(--brand-green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ==========================================================================
   GOOGLE 5-STAR REVIEWS SECTION
   ========================================================================== */

.reviews-section {
  background: #060606;
}

.google-header-box {
  background: #111;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.google-logo-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-score-meta {
  display: flex;
  flex-direction: column;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stars-gold {
  color: var(--gold-star);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.verified-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.google-badge-side {
  display: flex;
  gap: 10px;
}

.badge-pill {
  background: var(--brand-green-subtle);
  border: 1px solid var(--brand-green);
  color: var(--brand-green);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.reviews-slider-wrapper {
  max-width: 860px;
  margin: 35px auto 0;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  width: 100%;
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 6px;
}

.review-box {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-height: 190px;
  box-sizing: border-box;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.review-box:hover {
  border-color: var(--brand-green);
  box-shadow: 0 8px 30px rgba(124, 187, 15, 0.15);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #18220f;
  border: 1.5px solid var(--brand-green);
  color: var(--brand-green);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.reviewer-loc {
  font-size: 0.76rem;
  color: var(--text-secondary);
}

.stars {
  color: var(--gold-star);
  font-size: 0.95rem;
  margin-left: auto;
}

.review-quote {
  font-size: 0.96rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin: 0;
}

.review-quote strong {
  color: var(--brand-green);
}

.service-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-green);
  border-top: 1px solid #1f1f1f;
  padding-top: 10px;
}

/* ==========================================================================
   SERVICE COVERAGE & MOBILE INFORMATION
   ========================================================================== */

.coverage-section {
  background: var(--bg-black);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.coverage-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

.coverage-text strong {
  color: #fff;
}

.coverage-towns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.town-tag {
  background: #111;
  border: 1px solid #222;
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
}
.town-tag:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.travel-note {
  background: var(--brand-green-subtle);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.coverage-box-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 28px;
}

.box-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  border-bottom: 1px solid #222;
  padding-bottom: 12px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-green);
  margin-bottom: 2px;
}

.why-list li span {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   DIRECT APPOINTMENT & QUOTE FORM (Matching Jotform Fields - No Fake Prices)
   ========================================================================== */

.booking-section {
  background: #070707;
}

/* Fast Mobile QR Code Card */
.qr-booking-card {
  max-width: 820px;
  margin: 0 auto 35px;
  background: linear-gradient(135deg, #0e1708 0%, #111111 60%);
  border: 1.5px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.qr-card-content {
  display: flex;
  align-items: center;
  gap: 28px;
}

.qr-img-box {
  flex-shrink: 0;
  width: 135px;
  height: 135px;
  background: #ffffff;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 2px solid var(--brand-green);
  box-shadow: 0 0 20px rgba(124, 187, 15, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.qr-pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand-green);
  background: var(--brand-green-subtle);
  border: 1px solid var(--border-green);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.qr-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.qr-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.qr-url-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  border: 1.5px solid var(--brand-green);
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.qr-url-badge:hover {
  background: var(--brand-green);
  color: #000000;
  box-shadow: 0 0 15px var(--brand-green-glow);
}

@media (max-width: 640px) {
  .qr-card-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .qr-text-col {
    align-items: center;
  }
}

.booking-card {
  background: var(--bg-card);
  border: 1.5px solid var(--brand-green);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 0 35px rgba(124, 187, 15, 0.16);
}

.booking-header {
  margin-bottom: 30px;
}

.field-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.field-select, .field-input, .field-textarea {
  width: 100%;
  background: #080808;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: all 0.18s ease;
}

.field-select:focus, .field-input:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 12px rgba(124, 187, 15, 0.3);
}

/* Service Select Visual Grid */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .service-select-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-select-card-other {
    grid-column: span 4;
  }
}

.service-select-card {
  position: relative;
  background: #090909;
  border: 1.5px solid #222222;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.22s ease;
  user-select: none;
}

.service-select-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.service-select-card.active {
  border-color: var(--brand-green);
  background: linear-gradient(180deg, #101c05 0%, #0d0d0d 100%);
  box-shadow: 0 0 18px var(--brand-green-glow);
}

.svc-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.service-select-card:hover .svc-card-img {
  transform: scale(1.06);
}

.svc-card-content {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.svc-card-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.service-select-card.active .svc-card-name {
  color: var(--brand-green);
}

.svc-card-sub {
  font-size: 0.74rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.svc-card-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 1.5px solid #444;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  transition: all 0.2s ease;
  z-index: 3;
}

.service-select-card.active .svc-card-check {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #000000;
  box-shadow: 0 0 10px var(--brand-green-glow);
}

.svc-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-green);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  z-index: 3;
  box-shadow: 0 0 10px var(--brand-green);
}

.service-select-card-other {
  flex-direction: row;
  align-items: center;
  padding: 10px 16px;
  gap: 12px;
}

.svc-card-other-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-green-subtle);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  flex-shrink: 0;
}

.visually-hidden-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 540px) {
  .service-select-grid {
    grid-template-columns: 1fr;
  }
  .service-select-card-other {
    flex-direction: row;
  }
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mode-pills-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mode-pill {
  position: relative;
  background: #080808;
  border: 1px solid #262626;
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mode-pill input {
  position: absolute;
  opacity: 0;
}

.mode-pill:has(input:checked) {
  background: var(--brand-green-subtle);
  border-color: var(--brand-green);
  color: var(--brand-green);
  box-shadow: 0 0 10px rgba(124, 187, 15, 0.2);
}

.quote-summary-banner {
  background: #091004;
  border: 1px dashed var(--brand-green);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-badge-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-secondary);
}

.quote-service-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.quote-tag-free {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-green);
  letter-spacing: 0.5px;
}

.btn-submit {
  padding: 16px;
  font-size: 1.1rem;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  background: var(--bg-black);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--border-green);
}

.faq-q {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  color: var(--brand-green);
  font-size: 1.4rem;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-q::after {
  content: '−';
  color: var(--brand-green);
}

.faq-a {
  padding: 0 20px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #000;
  border-top: 1px solid var(--border-green);
  padding: 45px 0 25px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-car-logo {
  max-width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(124, 187, 15, 0.35));
}

.footer-brand-title strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
}

.footer-brand-title span {
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  color: var(--brand-green);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.footer-links a:hover {
  color: var(--brand-green);
}

.footer-contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-call {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 800;
}

.footer-qr-block {
  margin: 12px 0 6px;
  display: flex;
  justify-content: center;
}

.footer-qr-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0d0d0d;
  border: 1px solid var(--border-green);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.86rem;
  transition: all 0.2s ease;
}

.footer-qr-link:hover {
  border-color: var(--brand-green);
  color: #ffffff;
  background: var(--brand-green-subtle);
}

.footer-qr-link strong {
  color: var(--brand-green);
}

.footer-qr-img {
  width: 44px;
  height: 44px;
  background: #ffffff;
  padding: 2px;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid #141414;
  padding-top: 18px;
  width: 100%;
}

/* ==========================================================================
   FLOATING MOBILE ACTION BAR
   ========================================================================== */

.mobile-float-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-green);
  padding: 10px 14px;
  z-index: 999;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.float-call {
  background: #111;
  color: #fff;
  border: 1px solid #333;
}

.float-book {
  background: var(--brand-green);
  color: #000;
}

/* Confirmation Dialog */
.confirm-dialog {
  border: none;
  background: transparent;
  padding: 20px;
  margin: auto;
  max-width: 550px;
  width: 100%;
}

.confirm-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.confirm-box {
  background: #111;
  border: 2px solid var(--brand-green);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  text-align: center;
  box-shadow: 0 0 35px rgba(124, 187, 15, 0.3);
}

.confirm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #000;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.confirm-box h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.confirm-summary {
  background: #080808;
  border: 1px solid #222;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 20px 0;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-guarantees {
    justify-content: center;
  }
  .hero-car-stage {
    max-width: 480px;
    margin: 0 auto;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ba-cards-grid {
    grid-template-columns: 1fr;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mode-pills-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mobile-float-bar {
    display: grid;
  }
  body {
    padding-bottom: 60px;
  }
  .btn-phone span {
    display: none;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .ba-photos-pair {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .booking-card {
    padding: 24px 16px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
}
