/* ============================================================
   LUX MOBILE DETAILING — styles.css
   Mobile-first, premium dark theme
   Colors: #0a0a0a (near black), #141414 (charcoal), #e01e25 (red), #ffffff (white)
   ============================================================ */

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

:root {
  /* Brand Colors */
  --black:        #0a0a0a;
  --charcoal:     #141414;
  --charcoal-2:   #1c1c1c;
  --charcoal-3:   #242424;
  --red:          #e01e25;
  --red-dark:     #b01519;
  --red-glow:     rgba(224, 30, 37, 0.25);
  --white:        #ffffff;
  --off-white:    #f0f0f0;
  --gray-light:   #a0a0a0;
  --gray-mid:     #666666;
  --border:       rgba(255,255,255,0.07);

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-heading: 'Rajdhani', 'Bebas Neue', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad: 5rem 0;
  --container:    1200px;
  --gap:          1.5rem;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-bg-img { transform: none !important; }
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--red);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 20px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 0 32px rgba(224, 30, 37, 0.45);
  transform: translateY(-1px);
}

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

.btn-ghost {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.btn-ghost:hover {
  background: var(--red);
  color: var(--white);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Section Scaffolding ---------- */
.section {
  padding: var(--section-pad);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}
.section-cta p {
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.inline-link {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-link:hover { color: var(--off-white); }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.35s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.42s; }
.services-grid .reveal:nth-child(8) { transition-delay: 0.49s; }

.why-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  transition: padding 0.35s var(--ease);
}

.site-header.scrolled .nav-container {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gray-light);
  text-transform: uppercase;
}

/* Nav Links (desktop) */
.nav-links {
  display: none;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

/* Nav Actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.instagram-icon {
  color: var(--gray-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.instagram-icon:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--red); }

/* Desktop nav reveal */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Red glow in corner */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 30, 37, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.red-accent {
  color: var(--red);
  display: block;
}

.hero-sub {
  color: var(--off-white);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 2rem;
  opacity: 0.85;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  backdrop-filter: blur(4px);
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-hint span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-mid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--charcoal);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(224,30,37,0.2);
  border-color: rgba(224,30,37,0.2);
}
.service-card:hover::before { height: 100%; }

/* Featured card */
.service-card--featured {
  border-color: rgba(224,30,37,0.3);
  background: linear-gradient(135deg, var(--charcoal-2) 0%, rgba(224,30,37,0.05) 100%);
}
.service-card--featured::before { height: 100%; background: var(--red); width: 3px; }

.service-badge-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(224,30,37,0.1);
  border: 1px solid rgba(224,30,37,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
  transition: background 0.25s;
}
.service-card:hover .service-icon {
  background: rgba(224,30,37,0.18);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  color: var(--white);
}

.service-desc {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.service-best {
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-left: 0.875rem;
  border-left: 2px solid var(--red);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* ============================================================
   WHY LUX
   ============================================================ */
.why-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(224,30,37,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.why-number {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(224,30,37,0.12);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
  user-select: none;
}

.why-icon {
  color: var(--red);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.why-card p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-section {
  background: var(--charcoal);
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  width: 100%;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--red);
  flex-shrink: 0;
  min-width: 3rem;
  text-align: center;
}

.step-icon {
  color: var(--red);
  margin-bottom: 0.875rem;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.step-content p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(224,30,37,0.4), rgba(224,30,37,0.1));
  margin: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--black);
}

/* Before/After Slider */
.before-after {
  margin-bottom: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}

.ba-after, .ba-before {
  position: absolute;
  inset: 0;
}

.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  width: 50%;
  overflow: hidden;
}

.ba-before img {
  width: 200%; /* double width so it fills */
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  background: var(--charcoal-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-mid);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ba-placeholder small { font-size: 0.7rem; letter-spacing: 0.1em; }

.ba-label {
  position: absolute;
  bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  pointer-events: none;
}
.ba-label--after {
  right: 1rem;
  background: var(--red);
  color: var(--white);
}
.ba-label--before {
  left: 1rem;
  background: rgba(0,0,0,0.7);
  color: var(--gray-light);
  border: 1px solid var(--border);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 10;
}
.ba-handle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4), 0 0 0 2px rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
  transition: transform 0.2s var(--ease-bounce);
}
.ba-handle:hover .ba-handle-circle { transform: scale(1.1); }

.ba-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-mid);
  padding: 0.625rem;
  background: var(--charcoal-2);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-item--placeholder {
  background: var(--charcoal-3);
}

.placeholder-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  color: var(--gray-mid);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.placeholder-content small {
  font-size: 0.65rem;
  color: var(--gray-mid);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

.gallery-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-light);
  justify-content: center;
}
.gallery-note svg { color: var(--red); flex-shrink: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--charcoal);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.review-stars {
  color: #f5c518;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.875rem;
}

.review-text {
  color: var(--off-white);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gray-mid);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.review-author span {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* Trust Row */
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.trust-item svg { color: var(--red); flex-shrink: 0; }

.trust-item span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ============================================================
   HOURS
   ============================================================ */
.hours-section {
  background: var(--black);
}

.hours-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hours-info .section-title {
  text-align: left;
  margin-bottom: 0.875rem;
}

.hours-info p {
  color: var(--gray-light);
  max-width: 380px;
}

.hours-table-wrap {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr:hover { background: rgba(255,255,255,0.02); }

.hours-table th,
.hours-table td {
  padding: 0.875rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
}

.hours-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  width: 40%;
}

.hours-table td {
  color: var(--off-white);
}

.weekend-row th, .weekend-row td { color: var(--red) !important; }

.todo-hours {
  color: var(--gray-mid);
  font-style: italic;
  font-size: 0.85rem;
}

.hours-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: rgba(224,30,37,0.05);
  border-top: 1px solid rgba(224,30,37,0.15);
  font-size: 0.8rem;
  color: var(--gray-light);
  font-style: italic;
}
.hours-note svg { color: var(--red); flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--charcoal);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-cta-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-cta-block:hover {
  border-color: var(--red);
  transform: translateX(4px);
}

.contact-cta-icon {
  width: 52px;
  height: 52px;
  background: rgba(224,30,37,0.1);
  border: 1px solid rgba(224,30,37,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.contact-cta-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-mid);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-cta-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.contact-arrow {
  margin-left: auto;
  color: var(--gray-mid);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.contact-cta-block:hover .contact-arrow {
  color: var(--red);
  transform: translateX(3px);
}

.service-area-note {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 0.5rem;
}
.service-area-note svg { color: var(--red); flex-shrink: 0; }

/* Form */
.contact-form-wrap {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.form-group label span { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-mid);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-glow);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--charcoal-3);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: -0.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-tagline {
  color: var(--gray-mid);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-icon:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(224,30,37,0.1);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--red); }

.footer-contact svg { color: var(--red); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  transform: translateX(-50%) translateY(10px);
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
}
.floating-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 24px var(--red-glow);
}

.floating-btn--call {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .ba-slider { height: 380px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  .process-step {
    align-items: center;
  }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   RESPONSIVE — DESKTOP
   ============================================================ */
@media (min-width: 900px) {
  :root { --section-pad: 7rem 0; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .hero { padding-top: 6rem; }
  .hero-content { padding-bottom: 6rem; }

  .hours-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .hours-info { flex: 1; }
  .hours-table-wrap { flex: 1.5; }

  .contact-layout { grid-template-columns: 1fr 1.4fr; gap: 4rem; }

  .ba-slider { height: 480px; }

  .process-steps {
    flex-direction: row;
    align-items: stretch;
    max-width: 100%;
  }
  .process-step { flex: 1; flex-direction: column; }
  .process-connector {
    width: 40px;
    height: 2px;
    align-self: center;
    flex-shrink: 0;
    background: linear-gradient(to right, rgba(224,30,37,0.4), rgba(224,30,37,0.1));
  }

  /* Hide floating CTA on desktop if user can see the header CTA */
  .floating-cta { display: none; }
}


/* ============================================================
   SCHEDULE SECTION
   ============================================================ */
.schedule-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(224,30,37,0.10), transparent 28%),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  overflow: hidden;
}

.schedule-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.schedule-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.schedule-card--photo {
  aspect-ratio: 4 / 5;
  position: relative;
}

.schedule-card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 50%);
  pointer-events: none;
}

.schedule-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.schedule-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.schedule-highlight {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 1rem 1.1rem;
}

.schedule-highlight strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.schedule-highlight span {
  color: var(--off-white);
  font-size: 0.92rem;
}

.schedule-form-wrap {
  background: linear-gradient(145deg, var(--charcoal-2), rgba(224,30,37,0.045));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
}

.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-message {
  border: 1px solid rgba(224,30,37,0.35);
  background: rgba(224,30,37,0.08);
  color: var(--off-white);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.gallery-grid--featured {
  grid-template-columns: 1fr;
}

.gallery-item--large {
  aspect-ratio: 4 / 5;
}

.gallery-item--brand {
  aspect-ratio: 1 / 1;
  background: #000;
}

.gallery-item--brand img {
  object-fit: contain;
  padding: 1rem;
  background: #000;
}

.logo-img {
  max-width: 72px;
  max-height: 56px;
}

@media (min-width: 640px) {
  .schedule-form-wrap { padding: 2rem; }
  .schedule-highlights { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid--featured { grid-template-columns: 1fr 1fr 0.75fr; }
}

@media (min-width: 900px) {
  .schedule-layout {
    grid-template-columns: 0.9fr 1.35fr;
    gap: 4rem;
  }
  .schedule-card--photo { aspect-ratio: 4 / 5; }
  .gallery-item--large { aspect-ratio: 3 / 4; }
}

/* Keep fallback text hidden when the real uploaded logo loads. */
.logo-link .logo-fallback {
  display: none;
}
