/* ════════════════════════════════════════════════════════════
   2KD HOOD CLEANING — MAIN STYLESHEET
   ════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   RESET & ROOT VARIABLES
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:          #c51e30;
  --red-dark:     #9e1825;
  --charcoal:     #1a1a1a;
  --steel:        #2b2b2b;
  --mid:          #444;
  --muted:        #888;
  --light:        #f4f2ef;
  --white:        #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.8); backdrop-filter: blur(12px); }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 2px 8px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

/* ══════════════════════════════════════
   ANNOUNCEMENT BANNER
══════════════════════════════════════ */
.banner {
  background: var(--red);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
}

.banner a { color: var(--white); text-decoration: underline; }

.banner-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white);
  font-size: 16px; cursor: pointer; opacity: 0.7; line-height: 1;
}

.banner-close:hover { opacity: 1; }

/* ══════════════════════════════════════
   HEADER & NAV
══════════════════════════════════════ */
header {
  background: rgba(15,15,15,0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
}

.logo-img { display: flex; align-items: center; text-decoration: none; }
.logo-img img { display: block; height: 100px; width: auto; }

nav ul {
  list-style: none; display: flex; gap: 4px; align-items: center;
}

nav ul li { position: relative; }

nav ul li a {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #ccc; text-decoration: none;
  padding: 8px 12px; display: block;
  transition: color 0.2s;
}

nav ul li a:hover { color: var(--white); }

/* Dropdown */
nav ul li ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--steel); min-width: 220px;
  border-top: 2px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  flex-direction: column; gap: 0;
}

nav ul li:hover ul { display: flex; }

nav ul li ul li a {
  font-size: 13px; padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #bbb;
}

nav ul li ul li a:hover { background: var(--red); color: var(--white); }

.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.btn-phone {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px; letter-spacing: 0.06em;
  color: var(--white); text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--mid);
  transition: border-color 0.2s, color 0.2s;
}

.btn-phone:hover { border-color: var(--white); }

.btn-quote {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  text-decoration: none; padding: 9px 18px;
  transition: background 0.2s;
}

.btn-quote:hover { background: var(--red-dark); }

.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 22px; cursor: pointer;
  transition: transform 0.25s ease, color 0.2s ease;
}

.mobile-toggle.is-open { transform: rotate(90deg); color: var(--red); }

/* ══════════════════════════════════════
   MOBILE NAV (shared across all pages)
══════════════════════════════════════ */
nav.nav-open {
  display: block !important;
  position: fixed;
  top: 90px; left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--red);
  z-index: 99;
  animation: navFadeIn 0.3s ease forwards;
}

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

nav.nav-open ul { flex-direction: column; gap: 0; }

nav.nav-open > ul > li > a {
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  animation: navItemFade 0.3s ease forwards;
  opacity: 0;
}

nav.nav-open > ul > li:nth-child(1) > a { animation-delay: 0.05s; }
nav.nav-open > ul > li:nth-child(2) > a { animation-delay: 0.10s; }
nav.nav-open > ul > li:nth-child(3) > a { animation-delay: 0.15s; }
nav.nav-open > ul > li:nth-child(4) > a { animation-delay: 0.20s; }
nav.nav-open > ul > li:nth-child(5) > a { animation-delay: 0.25s; }

@keyframes navItemFade {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

nav.nav-open ul li ul {
  position: static; box-shadow: none; border-top: none;
  padding-left: 16px; display: flex; flex-direction: column;
}

/* ══════════════════════════════════════
   SHARED BUTTONS & TYPOGRAPHY
══════════════════════════════════════ */
.btn-primary {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  text-decoration: none; padding: 14px 28px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-secondary {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; color: var(--white);
  text-decoration: none; padding: 14px 28px;
  border: 2px solid var(--mid);
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--white); }

.btn-cta-white {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--white); color: var(--red);
  text-decoration: none; padding: 16px 36px; display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.2s ease;
}

.btn-cta-white:hover { background: var(--charcoal); color: var(--white); transform: scale(1.5); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px); font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.05;
  color: var(--white); margin-bottom: 16px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}

section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-lead {
  font-size: 16px; color: #999; max-width: 560px; line-height: 1.7;
  margin-bottom: 48px;
}

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s ease forwards; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════
   WAVE TEXT (CTA headings)
══════════════════════════════════════ */
.wave-text span {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
  letter-spacing: 0; margin: 0;
}

.wave-text span:nth-child(1)  { animation-delay: 0.00s; }
.wave-text span:nth-child(2)  { animation-delay: 0.05s; }
.wave-text span:nth-child(3)  { animation-delay: 0.10s; }
.wave-text span:nth-child(4)  { animation-delay: 0.15s; }
.wave-text span:nth-child(5)  { animation-delay: 0.20s; }
.wave-text span:nth-child(6)  { animation-delay: 0.25s; }
.wave-text span:nth-child(7)  { animation-delay: 0.30s; }
.wave-text span:nth-child(8)  { animation-delay: 0.35s; }
.wave-text span:nth-child(9)  { animation-delay: 0.40s; }
.wave-text span:nth-child(10) { animation-delay: 0.45s; }
.wave-text span:nth-child(11) { animation-delay: 0.50s; }
.wave-text span:nth-child(12) { animation-delay: 0.55s; }
.wave-text span:nth-child(13) { animation-delay: 0.60s; }
.wave-text span:nth-child(14) { animation-delay: 0.65s; }
.wave-text span:nth-child(15) { animation-delay: 0.70s; }
.wave-text span:nth-child(16) { animation-delay: 0.75s; }
.wave-text span:nth-child(17) { animation-delay: 0.80s; }
.wave-text span:nth-child(18) { animation-delay: 0.85s; }
.wave-text span:nth-child(19) { animation-delay: 0.90s; }
.wave-text span:nth-child(20) { animation-delay: 0.95s; }
.wave-text span:nth-child(21) { animation-delay: 1.00s; }
.wave-text span:nth-child(22) { animation-delay: 1.05s; }
.wave-text span:nth-child(23) { animation-delay: 1.10s; }
.wave-text span:nth-child(24) { animation-delay: 1.15s; }
.wave-text span:nth-child(25) { animation-delay: 1.20s; }
.wave-text span:nth-child(26) { animation-delay: 1.25s; }
.wave-text span:nth-child(27) { animation-delay: 1.30s; }
.wave-text span:nth-child(28) { animation-delay: 1.35s; }
.wave-text span:nth-child(29) { animation-delay: 1.40s; }
.wave-text span:nth-child(30) { animation-delay: 1.45s; }
.wave-text span:nth-child(31) { animation-delay: 1.50s; }
.wave-text span:nth-child(32) { animation-delay: 1.55s; }
.wave-text span:nth-child(33) { animation-delay: 1.60s; }

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  25%       { transform: translateY(-10px); }
  50%       { transform: translateY(0); }
  75%       { transform: translateY(4px); }
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-section { background: var(--red); padding: 60px 24px; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p  { color: #ffffffcc; font-size: 17px; margin-bottom: 32px; }

.about-cta-section { background: var(--red); padding: 80px 24px; text-align: center; }

.about-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; margin-bottom: 16px; line-height: 1.0;
}

.about-cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }

/* ══════════════════════════════════════
   HERO (index.html)
══════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #2a1a1a 100%);
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px
  );
}

.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(255,255,255,0.03) 0%,
    rgba(197,30,48,0.04) 40%,
    transparent 70%
  );
}

.hero-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--red);
  box-shadow: 0 0 18px rgba(197,30,48,0.6);
  z-index: 3 !important;
}

.hero-content {
  position: relative !important;
  z-index: 3 !important;
  padding: 80px 24px 80px 64px;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}

.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }

h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900; line-height: 1.0; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white); margin-bottom: 20px;
}

h1 em { color: var(--red); font-style: normal; }

.hero-sub {
  font-size: 17px; font-weight: 300; color: #aaa;
  margin-bottom: 36px; max-width: 480px; line-height: 1.65;
}

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

/* Flip text */
.flip-wrap { display: inline-block; overflow: hidden; vertical-align: top; height: 1.05em; }

#flip-text { display: flex; flex-direction: column; animation: flipWords 4s linear infinite; }

#flip-text span {
  color: var(--red); font-style: normal;
  min-height: 1.05em; display: block; line-height: 1.05;
}

@keyframes flipWords {
  0%   { transform: translateY(0); }
  28%  { transform: translateY(0); }
  33%  { transform: translateY(-33.333%); }
  61%  { transform: translateY(-33.333%); }
  66%  { transform: translateY(-66.666%); }
  94%  { transform: translateY(-66.666%); }
  99%  { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

/* Hero video — full background */
.hero-video-card {
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  width: 100% !important; height: 100% !important;
  border-radius: 0 !important; overflow: hidden !important;
  border: none !important; box-shadow: none !important;
  animation: none !important; backdrop-filter: none !important;
  transform: none !important; display: block !important;
}

.hero-video-card video {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; display: block !important;
  opacity: 0.42 !important;
  filter: brightness(0.6) saturate(0.8) contrast(1.1) !important;
}

.hero-video-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.2) 100%);
  z-index: 2; pointer-events: none;
}

.hero-video-card::after { display: none !important; }

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust-bar { background: var(--red); padding: 0; }

.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid #ffffff33;
}

.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 22px; opacity: 0.9; }

.trust-text {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white);
}

/* ══════════════════════════════════════
   WHO WE ARE (index)
══════════════════════════════════════ */
.about-section { background: var(--charcoal); padding: 80px 24px; }

.about-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--steel);
  opacity: 0; transform: translateY(40px);
  animation: cardRise 0.7s ease 0.2s forwards, cardGlow 3s ease-in-out 1s infinite;
}

@keyframes cardRise { to { opacity: 1; transform: translateY(0); } }

@keyframes cardGlow {
  0%, 100% {
    box-shadow:
       0   6px 20px rgba(197,30,48,0.2),  0  -6px 20px rgba(197,30,48,0.2),
       6px  0  20px rgba(197,30,48,0.2), -6px  0  20px rgba(197,30,48,0.2);
  }
  50% {
    box-shadow:
       0   8px 35px rgba(197,30,48,0.6),  0  -8px 35px rgba(197,30,48,0.6),
       8px  0  35px rgba(197,30,48,0.6), -8px  0  35px rgba(197,30,48,0.6);
  }
}

.about-text { padding: 56px 52px; border-left: 4px solid var(--red); }
.about-text p { font-size: 15px; color: #999; line-height: 1.8; margin-bottom: 16px; }

.about-stats {
  display: flex; gap: 32px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item  { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900; color: var(--red);
  line-height: 1; letter-spacing: 0.02em;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #666;
}

.about-image { position: relative; min-height: 400px; overflow: hidden; }

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

.about-img-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  background: #222; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; color: #555;
}

.about-img-placeholder span { font-size: 48px; opacity: 0.4; }
.about-img-placeholder p    { font-size: 13px; color: #555; }

/* ══════════════════════════════════════
   QUOTE FORM (index)
══════════════════════════════════════ */
.quote-form-section {
  position: relative;
  padding: 100px 20px !important;
  text-align: center;
  background: #1a1a1a;
  overflow: hidden;
}

.quote-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.45; z-index: 0;
}

.quote-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.2) 50%, rgba(26,26,26,0.5) 100%);
  z-index: 1;
}

.quote-section-sub {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 32px;
  display: flex; align-items: center; gap: 10px;
}

.quote-section-sub::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }

.quote-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: #fff; margin-bottom: 8px; line-height: 1.0;
}

.quote-form { max-width: 800px; margin: 30px auto 0; text-align: left; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.quote-form label { color: var(--red) !important; font-weight: 700; }
.quote-form .form-label-hint { color: #888 !important; }

.form-group input {
  padding: 12px 16px;
  border: 1px solid #ddd; border-radius: 4px;
  font-family: var(--font-body); font-size: 1rem;
  color: #1a1a1a; background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus { outline: none; border-color: var(--red); }

.required { color: var(--red); }

/* Service checkboxes */
.form-group-full { grid-column: 1 / -1; }
.form-label-hint { color: #555; font-weight: 400; font-size: 12px; margin-left: 6px; }

.services-select-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 10px;
}

.service-checkbox { cursor: pointer; display: block; }
.service-checkbox input { display: none; }

.service-checkbox-box {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px;
  background: #ffffff; border: 1px solid #333; border-radius: 8px;
  transition: all 0.2s ease;
}

.service-checkbox:hover .service-checkbox-box { background: #222; border-color: var(--red); }

.service-checkbox input:checked + .service-checkbox-box {
  background: #fff; border-color: var(--red);
  box-shadow: 0 0 16px rgba(197,30,48,0.35);
}

.service-checkbox-icon  { font-size: 18px; flex-shrink: 0; }

.service-checkbox-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.04em; color: #aaa;
  flex: 1; line-height: 1.2; transition: color 0.2s;
}

.service-checkbox input:checked + .service-checkbox-box .service-checkbox-label { color: #111 !important; }

.service-checkbox-check {
  font-size: 13px; font-weight: 900; color: var(--red);
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s; flex-shrink: 0;
}

.service-checkbox input:checked + .service-checkbox-box .service-checkbox-check {
  opacity: 1; transform: scale(1);
}

/* Textarea */
.quote-textarea {
  width: 100%; min-height: 110px;
  padding: 14px 18px;
  background: #fff; border: 1px solid #ddd; border-radius: 8px;
  color: #111; font-family: var(--font-body); font-size: 14px;
  resize: vertical; outline: none;
  transition: border-color 0.2s; margin-top: 8px; box-sizing: border-box;
}

.quote-textarea::placeholder { color: #444; }
.quote-textarea:focus { border-color: var(--red); }

.quote-form .btn-primary { margin-top: 10px; width: 100%; text-align: center; justify-content: center; }

/* Fireworks success screen */
.form-success {
  position: relative; overflow: hidden; border-radius: 12px;
  min-height: 320px; display: none;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
}

#fireworksCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.form-success-glass {
  position: relative; z-index: 2;
  text-align: center; padding: 48px 40px;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  max-width: 420px; margin: 40px auto;
}

.form-success-glass .form-success-icon {
  font-size: 56px; margin-bottom: 16px; display: block;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  from { transform: scale(0.3); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.form-success-glass h3 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.06em; color: #fff; margin-bottom: 12px;
}

.form-success-glass p { color: #999; font-size: 14px; line-height: 1.7; }

/* ══════════════════════════════════════
   COMPLIANCE / NFPA SLIDER (index)
══════════════════════════════════════ */
.compliance-section {
  position: relative; overflow: hidden;
  transition: background 0.6s ease;
}

.compliance-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px
  );
  pointer-events: none; z-index: 0;
}

.compliance-section .section-inner { position: relative; z-index: 1; }

.compliance-section.bg-nfpa { background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 40%, #2a0a0a 100%); }
.compliance-section.bg-mfs  { background: linear-gradient(135deg, #05080f 0%, #0a1020 40%, #0f1a2e 100%); }

.compliance-section.bg-nfpa::after {
  content: '';
  position: absolute; top: 0; right: 0; width: 60%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,16,46,0.12) 0%, rgba(255,255,255,0.04) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.compliance-section.bg-mfs::after {
  content: '';
  position: absolute; top: 0; right: 0; width: 60%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(244,121,32,0.1) 0%, rgba(30,60,120,0.08) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.compliance-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}

.compliance-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; }

.nfpa-eyebrow { color: #c8102e; }
.nfpa-eyebrow::before { background: #c8102e; }
.mfs-eyebrow  { color: #f47920; }
.mfs-eyebrow::before  { background: #f47920; }

.compliance-slider { position: relative; overflow: hidden; }

.compliance-panel { display: grid; grid-template-columns: 1fr 80px; align-items: stretch; }
.compliance-panel.left-layout { grid-template-columns: 80px 1fr; }
.compliance-panel.hidden { display: none; }

.compliance-content { padding-right: 48px; }
.compliance-content h2 { margin-bottom: 20px; }
.compliance-content p  { font-size: 15px; color: #999; line-height: 1.75; margin-bottom: 16px; }
.compliance-content strong { color: var(--white); }

#panel-mfs .compliance-content { padding-right: 0; padding-left: 48px; }

/* Cert badges */
.cert-badge {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 24px; margin-top: 12px;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.08);
}

.nfpa-badge-card { background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%); border-left: 4px solid #c8102e; }
.mfs-badge-card  { background: linear-gradient(135deg, #1a1200 0%, #2a1e00 100%); border-left: 4px solid #f47920; }

.cert-badge-logo  { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }

.cert-badge-label {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #888; margin-bottom: 4px;
}

.cert-badge-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 2px;
}

.cert-badge-sub {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #666;
}

.nfpa-glow { animation: nfpaGlow 2.5s ease-in-out infinite; }
.mfs-glow  { animation: mfsGlow  2.5s ease-in-out infinite; }

@keyframes nfpaGlow {
  0%, 100% { box-shadow:  0  4px 12px rgba(200,16,46,0.2),  0 -4px 12px rgba(200,16,46,0.2),  4px 0 12px rgba(200,16,46,0.2), -4px 0 12px rgba(200,16,46,0.2); }
  50%       { box-shadow:  0  6px 24px rgba(200,16,46,0.7),  0 -6px 24px rgba(200,16,46,0.7),  6px 0 24px rgba(200,16,46,0.7), -6px 0 24px rgba(200,16,46,0.7); }
}

@keyframes mfsGlow {
  0%, 100% { box-shadow:  0  4px 12px rgba(244,121,32,0.2),  0 -4px 12px rgba(244,121,32,0.2),  4px 0 12px rgba(244,121,32,0.2), -4px 0 12px rgba(244,121,32,0.2); }
  50%       { box-shadow:  0  6px 24px rgba(244,121,32,0.7),  0 -6px 24px rgba(244,121,32,0.7),  6px 0 24px rgba(244,121,32,0.7), -6px 0 24px rgba(244,121,32,0.7); }
}

/* Peek panels */
.panel-peek {
  display: flex; cursor: pointer; align-items: center; justify-content: center;
  width: 80px; flex-shrink: 0; transition: background 0.2s;
}

.nfpa-peek { border-left:  2px solid #c8102e; }
.mfs-peek  { border-right: 2px solid #f47920; }

.panel-peek:hover { background: rgba(255,255,255,0.03); }

.peek-arrow-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; width: 100%; height: 100%; padding: 16px 0;
}

.peek-arrow { font-size: 42px; font-weight: 300; line-height: 1; transition: transform 0.2s; }

.nfpa-peek .peek-arrow { color: #c8102e; }
.mfs-peek  .peek-arrow { color: #f47920; }

.panel-peek:hover .peek-arrow              { transform: translateX(4px); }
.left-layout .panel-peek:hover .peek-arrow { transform: translateX(-4px); }

.peek-logo { width: 32px; height: 32px; object-fit: contain; opacity: 0.6; }

.peek-logo-label {
  font-family: var(--font-display);
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #555; text-align: center;
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* Slide animations */
.slide-out-left  { animation: slideOutLeft  0.35s ease forwards; }
.slide-out-right { animation: slideOutRight 0.35s ease forwards; }
.slide-in-right  { animation: slideInRight  0.4s  ease forwards; }
.slide-in-left   { animation: slideInLeft   0.4s  ease forwards; }

@keyframes slideOutLeft  { from { opacity:1; transform:translateX(0);    } to { opacity:0; transform:translateX(-60px); } }
@keyframes slideOutRight { from { opacity:1; transform:translateX(0);    } to { opacity:0; transform:translateX(60px);  } }
@keyframes slideInRight  { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0);     } }
@keyframes slideInLeft   { from { opacity:0; transform:translateX(-60px);} to { opacity:1; transform:translateX(0);     } }

/* ══════════════════════════════════════
   NJ MAP (index — small preview)
══════════════════════════════════════ */
.areas-section { background: #111; }

.nj-map-wrap { display: flex; gap: 40px; align-items: flex-start; margin-top: 40px; }

.nj-map-svg-col {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px;
  display: flex; align-items: center;
}

.nj-map-info-col { flex: 1; }

.county-path {
  fill: #1e1e1e; stroke: #555; stroke-width: 8;
  cursor: pointer; transition: fill 0.2s, filter 0.2s;
}

.county-path:hover        { fill: var(--red); filter: drop-shadow(0 0 6px rgba(197,30,48,0.5)); }
.county-path.active-county{ fill: var(--red); filter: drop-shadow(0 0 10px rgba(197,30,48,0.7)); }

.county-label {
  font-size: 55px; fill: #fff; pointer-events: none;
  text-anchor: middle; font-family: var(--font-display);
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}

.nj-info-box {
  height: 100%; min-height: 320px; position: relative;
  border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

.nj-info-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none; border-radius: 14px 14px 0 0;
}

.nj-glass-inner {
  position: relative; z-index: 1; padding: 36px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: center;
}

.nj-placeholder {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: 0.15em; color: #333; text-transform: uppercase;
  margin: auto; align-self: center;
}

.nj-placeholder-arrow { font-size: 20px; animation: arrowPulse 1.5s ease-in-out infinite; }

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0);   opacity: 0.3; }
  50%       { transform: translateX(-6px); opacity: 0.9; }
}

.nj-detail { display: none; width: 100%; }

.nj-county-name {
  font-family: var(--font-display); font-size: 36px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
  margin-bottom: 4px; text-shadow: 0 0 24px rgba(197,30,48,0.4);
}

.nj-county-desc { font-size: 12px; color: #666; margin-bottom: 20px; letter-spacing: 0.05em; }

.nj-city-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }

.nj-city-item {
  display: flex; align-items: center;
  padding: 11px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--red); border-radius: 6px; transition: background 0.2s;
}

.nj-city-item:hover { background: rgba(255,255,255,0.08); }

.nj-city-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
}

.nj-city-type {
  font-size: 10px; color: #555; margin-left: auto;
  font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase;
}

.nj-more { font-size: 12px; color: #555; margin-bottom: 4px; font-style: italic; }

.areas-disclaimer {
  margin-top: 32px; padding: 14px 20px; border-radius: 8px;
  background: rgba(255,200,0,0.05); border: 1px solid rgba(255,200,0,0.15);
  font-size: 13px; color: #ffcc00;
  animation: disclaimerGlow 3s ease-in-out infinite;
}

.areas-disclaimer strong { color: #ffdd44; }

@keyframes disclaimerGlow {
  0%, 100% { box-shadow: 0 0  8px rgba(255,200,0,0.1); }
  50%       { box-shadow: 0 0 18px rgba(255,200,0,0.3), 0 0 32px rgba(255,200,0,0.15); }
}

/* ══════════════════════════════════════
   SERVICE AREAS PAGE (sa-*)
══════════════════════════════════════ */
.sa-page { display: flex; height: 100vh; overflow: hidden; padding-top: 90px; }

.sa-map-col {
  flex: 0 0 420px; position: sticky; top: 90px;
  height: calc(100vh - 90px); background: #0a0a0a;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; overflow: hidden;
}

.sa-map-header { padding: 24px 28px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }

.sa-map-label {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: #c8102e; margin-bottom: 6px;
}

.sa-map-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; color: #fff; margin-bottom: 14px;
}

.sa-search { position: relative; }

.sa-search input {
  width: 100%; padding: 10px 16px 10px 36px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: #fff; font-family: var(--font-body); font-size: 13px;
  outline: none; backdrop-filter: blur(8px); transition: border-color 0.2s; box-sizing: border-box;
}

.sa-search input::placeholder { color: #555; }
.sa-search input:focus        { border-color: rgba(197,30,48,0.5); }

.sa-search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: #555; font-size: 13px;
}

.sa-search-results {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; z-index: 50; display: none; max-height: 200px; overflow-y: auto;
}

.sa-search-result-item {
  padding: 10px 16px; font-size: 13px; color: #ccc;
  cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.15s;
}

.sa-search-result-item:hover { background: rgba(197,30,48,0.15); color: #fff; }
.sa-search-result-item span  { color: #666; font-size: 11px; margin-left: 6px; }

.sa-map-svg-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 16px 20px; overflow: hidden;
}

.sa-map-svg-wrap svg { max-height: 100%; width: auto; }

.sa-county-path {
  fill: #1e1e1e; stroke: #3a3a3a; stroke-width: 8;
  cursor: pointer; transition: fill 0.2s, filter 0.2s;
}

.sa-county-path:hover     { fill: #c8102e; filter: drop-shadow(0 0 6px rgba(200,16,46,0.6)); }
.sa-county-path.sa-active { fill: #c8102e; filter: drop-shadow(0 0 12px rgba(200,16,46,0.9)); }
.sa-county-path.sa-dimmed { fill: #111; opacity: 0.4; }

.sa-county-label {
  font-size: 52px; fill: #fff; pointer-events: none; text-anchor: middle;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}

.sa-detail-col { flex: 1; overflow-y: auto; background: #111; scroll-behavior: smooth; }
.sa-detail-col::-webkit-scrollbar       { width: 6px; }
.sa-detail-col::-webkit-scrollbar-track  { background: #0a0a0a; }
.sa-detail-col::-webkit-scrollbar-thumb  { background: rgba(255,255,255,0.08); border-radius: 999px; }

.sa-intro {
  padding: 48px 48px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 100%);
}

.sa-intro-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: #c8102e;
  margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}

.sa-intro-label::before { content: ''; display: block; width: 24px; height: 2px; background: #c8102e; }

.sa-intro h1 {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.02em; color: #fff;
  margin-bottom: 12px; line-height: 1.0;
}

.sa-intro p { font-size: 15px; color: #888; max-width: 520px; line-height: 1.7; }

.sa-disclaimer {
  margin-top: 20px; padding: 12px 18px;
  background: rgba(255,200,0,0.05); border: 1px solid rgba(255,200,0,0.15);
  border-radius: 6px; font-size: 12px; color: #ffcc00; max-width: 520px;
}

.sa-county-section {
  display: none; padding: 40px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.3s;
}

.sa-county-section.sa-highlighted { background: rgba(197,30,48,0.04); }

@keyframes countyFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sa-county-section.sa-fade-in { animation: countyFadeIn 0.45s ease forwards; }

.sa-county-section-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px; gap: 16px;
}

.sa-county-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #c8102e; margin-bottom: 4px;
}

.sa-county-name-large {
  font-family: var(--font-display); font-size: 32px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; color: #fff; line-height: 1;
}

.sa-county-badge {
  flex-shrink: 0; font-family: var(--font-display);
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(197,30,48,0.15); border: 1px solid rgba(197,30,48,0.3); color: #c8102e;
}

.sa-county-badge.primary { background: rgba(197,30,48,0.25); border-color: #c8102e; color: #ff6b6b; }

.sa-city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; margin-bottom: 16px; }

.sa-city-tag {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; font-family: var(--font-display); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; color: #ccc;
  transition: background 0.2s, border-color 0.2s, color 0.2s; cursor: default;
}

.sa-city-tag:hover { background: rgba(197,30,48,0.1); border-color: rgba(197,30,48,0.3); color: #fff; }

.sa-city-dot { width: 5px; height: 5px; border-radius: 50%; background: #c8102e; flex-shrink: 0; }

.sa-county-cta { margin-top: 20px; }

.sa-county-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #c8102e;
  text-decoration: none; transition: gap 0.2s;
}

.sa-county-cta a:hover { gap: 14px; }

.sa-no-results {
  padding: 48px; text-align: center; color: #555;
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase; display: none;
}

.sa-click-prompt {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 48px; text-align: center; gap: 16px;
}

.sa-click-prompt-arrow { font-size: 48px; color: #333; animation: promptPulse 2s ease-in-out infinite; }

.sa-click-prompt-text {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #333;
}

.sa-click-prompt-sub { font-size: 13px; color: #444; max-width: 300px; line-height: 1.6; }

@keyframes promptPulse {
  0%, 100% { transform: translateX(0);    opacity: 0.4; }
  50%       { transform: translateX(-10px); opacity: 0.9; }
}

/* ══════════════════════════════════════
   SERVICES PAGE (srv-*)
══════════════════════════════════════ */
.srv-hero {
  position: relative; height: 52vh; min-height: 380px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}

.srv-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px);
}

.srv-hero-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--red); box-shadow: 0 0 24px rgba(197,30,48,0.8);
}

.srv-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }

.srv-hero-eyebrow {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 14px;
}

.srv-hero-eyebrow::before,
.srv-hero-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--red); }

.srv-hero h1 {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 88px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 0.95;
  color: #fff; margin-bottom: 16px;
}

.srv-hero h1 em { color: var(--red); font-style: normal; }
.srv-hero-sub   { font-size: 16px; font-weight: 300; color: #777; max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* Service cards */
.srv-cards-section { background: #0d0d0d; padding: 80px 24px; }
.srv-cards-inner   { max-width: 1200px; margin: 0 auto; }

.srv-cards-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
}

.srv-cards-label::before { content: ''; width: 32px; height: 2px; background: var(--red); display: block; }

.srv-cards-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.02em; color: #fff;
  margin-bottom: 48px; line-height: 1.0;
}

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

.srv-card {
  background: #161616; padding: 40px 36px;
  border-top: 2px solid transparent; position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s; cursor: pointer;
}

.srv-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(197,30,48,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}

.srv-card:hover::before { opacity: 1; }
.srv-card:hover { border-color: var(--red); background: #1a1a1a; }
.srv-card:hover .srv-card-arrow { transform: translateX(6px); color: var(--red); }

.srv-card-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px; opacity: 0.7;
}

.srv-card-icon  { font-size: 32px; margin-bottom: 16px; display: block; }

.srv-card-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
  margin-bottom: 12px; line-height: 1.1;
}

.srv-card-desc  { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 24px; }

.srv-card-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--red);
  background: none; border: none; cursor: pointer; padding: 0; transition: gap 0.2s;
}

.srv-card-btn:hover { gap: 14px; }
.srv-card-arrow { font-size: 16px; transition: transform 0.2s, color 0.2s; color: #444; }

/* Service detail sections */
.srv-detail { padding: 100px 24px; position: relative; overflow: hidden; }
.srv-detail:nth-child(odd)  { background: #080808; }
.srv-detail:nth-child(even) { background: #0d0d0d; }

.srv-detail-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}

.srv-detail:nth-child(even) .srv-detail-inner                  { direction: rtl; }
.srv-detail:nth-child(even) .srv-detail-text,
.srv-detail:nth-child(even) .srv-detail-media                  { direction: ltr; }

.srv-detail-text  { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.srv-detail:nth-child(even) .srv-detail-text                   { transform: translateX(60px); }
.srv-detail-media { opacity: 0; transform: translateX(60px);   transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s; }
.srv-detail:nth-child(even) .srv-detail-media                  { transform: translateX(-60px); }

.srv-detail.srv-visible .srv-detail-text,
.srv-detail.srv-visible .srv-detail-media { opacity: 1; transform: translateX(0); }

.srv-detail::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: 0; transition: opacity 0.8s ease;
}

.srv-detail.srv-visible::before { opacity: 1; }

.srv-detail-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--red);
  margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}

.srv-detail-num::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }

.srv-detail-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.02em; color: #fff;
  line-height: 1.0; margin-bottom: 28px;
}

.srv-illuminate      { font-family: var(--font-body); font-size: 15px; font-weight: 400; line-height: 1.85; color: #222; }
.srv-illuminate-word { display: inline; transition: color 0.3s ease; }

.srv-detail-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Before/After in service */
.srv-ba-slider {
  position: relative; overflow: hidden; cursor: col-resize;
  height: 380px; border-radius: 4px;
  user-select: none; touch-action: none; background: #111;
}

.srv-ba-after, .srv-ba-before { position: absolute; inset: 0; width: 100%; height: 100%; }

.srv-ba-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-display); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
}

.srv-ba-placeholder span { font-size: 24px; opacity: 0.25; }
.srv-ba-placeholder p    { margin: 0; }
.srv-ba-placeholder.before { background: #1a1a1a; color: #444; min-width: 200%; }
.srv-ba-placeholder.after  { background: #0d1a0d; color: #3a5a3a; }

.srv-ba-after img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

.srv-ba-before img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

.srv-ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; pointer-events: none;
}

.srv-ba-line   { flex: 1; width: 2px; background: rgba(255,255,255,0.8); box-shadow: 0 0 6px rgba(255,255,255,0.3); }

.srv-ba-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  gap: 2px; font-size: 10px; color: #111;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6); flex-shrink: 0;
}

.srv-ba-labels {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 12px; z-index: 5; pointer-events: none;
}

.srv-ba-label-b, .srv-ba-label-a {
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
}

.srv-ba-label-b { background: rgba(0,0,0,0.65); color: #aaa; }
.srv-ba-label-a { background: rgba(197,30,48,0.75); color: #fff; }

/* Cinematic dividers */
.srv-cinematic-div {
  position: relative; height: 220px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.srv-cinematic-div::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.srv-cinematic-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0505 0%, #1a0808 50%, #0a0505 100%);
}

.srv-cinematic-text {
  position: relative; z-index: 2; text-align: center;
  font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 28px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.15);
}

.srv-cinematic-text em { color: rgba(197,30,48,0.5); font-style: normal; }

.srv-cta { background: var(--red); padding: 80px 24px; text-align: center; }

.srv-cta h2 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
  margin-bottom: 14px; line-height: 1.0;
}

.srv-cta p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #0f0f0f; border-top: 2px solid var(--steel);
  padding: 48px 24px 32px;
}

.footer-main {
  max-width: 1200px; margin: 0 auto 40px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start;
}

.footer-brand-left { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.footer-brand-left p { font-size: 13px; color: #555; line-height: 1.7; max-width: 320px; }

.footer-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }

.footer-col-centered h4 {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}

.footer-col-centered ul { list-style: none; }
.footer-col-centered ul li { margin-bottom: 10px; }
.footer-col-centered ul li a { font-size: 13px; color: #666; text-decoration: none; transition: color 0.2s; }
.footer-col-centered ul li a:hover { color: var(--white); }

.footer-social-centered { display: flex; gap: 12px; justify-content: center; margin: 0 auto 32px; }

.social-icon-circle {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid #333; color: #888; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-icon-circle:hover { border-color: var(--white); color: var(--white); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--steel); text-align: center;
}

.footer-bottom p { font-size: 12px; color: #555; }

/* Footer inquiry form */
.footer-inquiry { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; max-width: 320px; }

.footer-inquiry-title { font-family: var(--font-body); font-size: 15px; font-weight: 500; letter-spacing: 0.04em; color: #ccc; margin-bottom: 4px; }

.footer-inquiry-email,
.footer-inquiry-box {
  width: 100%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; color: #fff; font-family: var(--font-body); font-size: 13px;
  outline: none; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.3);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-inquiry-email { padding: 10px 16px; }
.footer-inquiry-box   { height: 100px; padding: 12px 16px; resize: none; }

.footer-inquiry-email::placeholder,
.footer-inquiry-box::placeholder { color: #555; }

.footer-inquiry-email:focus,
.footer-inquiry-box:focus {
  border-color: rgba(255,255,255,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 0 0 2px rgba(255,255,255,0.05);
}

.footer-inquiry-btn {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(197,30,48,0.7); color: var(--white);
  border: 1px solid rgba(255,255,255,0.15); padding: 10px 24px;
  cursor: pointer; border-radius: 8px; align-self: flex-start;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 16px rgba(197,30,48,0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.footer-inquiry-btn:hover {
  background: rgba(158,24,37,0.8); transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 20px rgba(197,30,48,0.5);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-video-card { display: none; }
}

@media (max-width: 900px) {
  .srv-cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .srv-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .srv-detail:nth-child(even) .srv-detail-inner { direction: ltr; }
  .srv-detail-text  { transform: translateY(40px) !important; }
  .srv-detail-media { transform: translateY(40px) !important; }
  .srv-ba-slider    { height: 280px; }
}

@media (max-width: 860px) {
  nav, .header-cta .btn-phone { display: none; }
  .mobile-toggle { display: block; }
  .trust-inner   { grid-template-columns: 1fr; }
  .trust-item    { border-right: none; border-bottom: 1px solid #ffffff26; }
  .about-card    { grid-template-columns: 1fr; }
  .about-text    { padding: 40px 28px; }
  .about-image   { min-height: 260px; }
  .about-stats   { gap: 20px; }
  .footer-main   { grid-template-columns: 1fr; gap: 40px; }
  .compliance-panel { grid-template-columns: 1fr 60px; }
  .compliance-panel.left-layout { grid-template-columns: 60px 1fr; }
  .compliance-content { padding-right: 16px; }
  #panel-mfs .compliance-content { padding-left: 16px; padding-right: 0; }
  .panel-peek { width: 60px; }
  .cert-badge { flex-direction: column; text-align: center; }
  .sa-page       { flex-direction: column; height: auto; overflow: auto; }
  .sa-map-col    { flex: none; position: relative; top: 0; height: 480px; width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sa-detail-col { overflow-y: visible; }
  .sa-intro, .sa-county-section { padding: 32px 24px; }
  .nj-map-wrap   { flex-direction: column; }
  .nj-map-svg-col{ flex: none; width: 100%; padding: 12px; }
}

@media (max-width: 760px) {
  .nj-map-wrap { flex-direction: column; }
  .nj-map-svg-col { width: 100%; flex: none; }
}

@media (max-width: 700px) { .services-select-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 560px) {
  h1 { font-size: 38px; }
  .hero-actions  { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .srv-cards-grid { grid-template-columns: 1fr; }
  .services-select-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) { .services-select-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */

/* Hero */
.about-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #000;
}

.about-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4; filter: brightness(0.6) saturate(0.7);
}

.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.7) 100%);
}

.about-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 800px; }

.about-hero-eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
  margin-bottom: 20px; display: flex; align-items: center; justify-content: center;
  gap: 14px; animation: fadeUp 0.8s ease 0.2s both;
}

.about-hero-eyebrow::before,
.about-hero-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--red); }

.about-hero h1 {
  font-family: var(--font-display); font-size: clamp(52px, 8vw, 96px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 0.95;
  color: #fff; margin-bottom: 24px; animation: fadeUp 0.8s ease 0.4s both;
}

.about-hero h1 em { color: var(--red); font-style: normal; }

.about-hero-sub { font-size: 17px; font-weight: 300; color: #aaa; line-height: 1.7; animation: fadeUp 0.8s ease 0.6s both; }

.about-hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 8px; animation: fadeUp 0.8s ease 1s both;
}

.about-hero-scroll span { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #555; }

.about-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, #c51e30, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Stats band */
.about-stats-band {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.about-stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }

.about-stat-item { padding: 36px 32px; border-right: 1px solid rgba(255,255,255,0.06); text-align: center; }
.about-stat-item:last-child { border-right: none; }

.about-stat-num { font-family: var(--font-display); font-size: 52px; font-weight: 900; color: var(--red); line-height: 1; letter-spacing: 0.02em; margin-bottom: 6px; }
.about-stat-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #555; }

/* Illuminate */
.illuminate-section { background: #050505; padding: 120px 24px; }
.illuminate-inner { max-width: 900px; margin: 0 auto; }

.illuminate-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
  margin-bottom: 48px; display: flex; align-items: center; gap: 12px;
}

.illuminate-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }

.illuminate-text { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.25; }

.illuminate-word { display: inline-block; color: #222; transition: color 0.4s ease; margin-right: 0.22em; }

/* Timeline */
.timeline-section { background: #0a0a0a; padding: 100px 24px; }
.timeline-inner   { max-width: 900px; margin: 0 auto; }
.timeline-header  { margin-bottom: 72px; }

.timeline-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
}

.timeline-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }

.timeline-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; line-height: 1.0; }

.timeline { position: relative; padding-left: 48px; }

.timeline::before { content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--red), rgba(197,30,48,0.1)); }

.timeline-item { position: relative; margin-bottom: 64px; opacity: 0.25; transform: translateX(-16px); transition: opacity 0.5s ease, transform 0.5s ease; }

.timeline-item.tl-visible { opacity: 1; transform: translateX(0); }
.timeline-item:last-child  { margin-bottom: 0; }

.timeline-dot { position: absolute; left: -45px; top: 6px; width: 13px; height: 13px; border-radius: 50%; background: var(--red); border: 2px solid #050505; box-shadow: 0 0 12px rgba(197,30,48,0.6); transition: box-shadow 0.5s ease; }
.timeline-item.tl-visible .timeline-dot { box-shadow: 0 0 20px rgba(197,30,48,1); }

.timeline-year  { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.timeline-event { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; margin-bottom: 10px; line-height: 1.1; }
.timeline-desc  { font-size: 14px; color: #777; line-height: 1.75; max-width: 560px; }

/* Video break */
.about-video-section { position: relative; height: 70vh; min-height: 480px; overflow: hidden; display: flex; align-items: center; justify-content: center; }

.about-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(0.6); }

.about-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(197,30,48,0.05) 50%, rgba(0,0,0,0.7) 100%); }

.about-video-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 700px; }

.about-video-quote { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.about-video-quote em { color: var(--red); font-style: normal; }
.about-video-attr { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #666; }

/* Values */
.about-values-section { background: #111; padding: 100px 24px; }
.about-values-inner   { max-width: 1100px; margin: 0 auto; }
.about-values-header  { margin-bottom: 60px; }

.about-values-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.about-values-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }

.about-values-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; line-height: 1.0; }

.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.about-value-card { background: #1a1a1a; padding: 40px 36px; border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s; }
.about-value-card:hover { background: #1e1e1e; border-color: var(--red); }

.about-value-icon  { font-size: 28px; margin-bottom: 16px; display: block; }
.about-value-title { font-family: var(--font-display); font-size: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; margin-bottom: 10px; }
.about-value-desc  { font-size: 14px; color: #666; line-height: 1.7; }

/* Photo grid */
.about-media-section { background: #0a0a0a; padding: 80px 24px; }
.about-media-inner   { max-width: 1100px; margin: 0 auto; }

.about-media-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.about-media-label::before { content: ''; width: 32px; height: 2px; background: var(--red); display: block; }

.about-media-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; margin-bottom: 40px; line-height: 1.0; }

.about-photo-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 4px; }

.about-photo-item { background: #1a1a1a; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-photo-item:first-child { grid-row: 1 / 3; }

.about-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.4s ease; filter: brightness(0.7) saturate(0.8); }
.about-photo-item:hover img { transform: scale(1.04); filter: brightness(0.85) saturate(1); }

.about-photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: #161616; color: #333; font-family: var(--font-display); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.about-photo-placeholder span { font-size: 32px; opacity: 0.3; }

/* Before/After slider */
.ba-slider { position: relative; overflow: hidden; cursor: col-resize; background: #111; grid-row: 1 / 3; user-select: none; touch-action: none; }

.ba-after, .ba-before { position: absolute; inset: 0; width: 100%; height: 100%; }

.ba-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.ba-img-placeholder span { font-size: 28px; opacity: 0.3; }
.ba-img-placeholder p    { margin: 0; }
.ba-img-placeholder.before { background: #1a1a1a; color: #555; min-width: 200%; }
.ba-img-placeholder.after  { background: #0f1a0f; color: #3a5a3a; }

.ba-after img,
.ba-before img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  max-width: none;
}

.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.ba-handle-line { flex: 1; width: 2px; background: rgba(255,255,255,0.8); box-shadow: 0 0 8px rgba(255,255,255,0.3); }

.ba-handle-circle { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; gap: 2px; font-size: 11px; color: #111; box-shadow: 0 2px 12px rgba(0,0,0,0.5); flex-shrink: 0; }

.ba-labels { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 16px; z-index: 5; pointer-events: none; }

.ba-label-before, .ba-label-after { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; }
.ba-label-before { background: rgba(0,0,0,0.6); color: #aaa; }
.ba-label-after  { background: rgba(197,30,48,0.7); color: #fff; }

/* About page responsive */
@media (max-width: 860px) {
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-stat-item:nth-child(2) { border-right: none; }
  .about-values-grid { grid-template-columns: 1fr; gap: 2px; }
  .about-photo-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .about-photo-item:first-child { grid-row: auto; }
}

@media (max-width: 560px) {
  .about-stats-inner { grid-template-columns: 1fr 1fr; }
  .about-photo-grid  { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
}
