/* =========================================================
   ACC Plumbing and Backflow — Stylesheet
   Theme: Blueprint Technical — Precision & Trust
   Fonts: Bebas Neue (display) + Poppins (body)
   Colors: #375D99 primary, #1A3053 dark navy, #F4F7FC light bg
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --primary:       #375D99;
  --primary-dark:  #1A3053;
  --primary-light: #5880BF;
  --primary-xlight:#D4E0F5;
  --accent:        #F59E0B;
  --accent-dark:   #D97706;
  --bg:            #F4F7FC;
  --bg-dark:       #0F1929;
  --white:         #FFFFFF;
  --text:          #1C2340;
  --text-light:    #5A6480;
  --border:        #D0DBED;
  --success:       #22C55E;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow-sm:     0 2px 8px rgba(26,48,83,0.10);
  --shadow-md:     0 6px 24px rgba(26,48,83,0.15);
  --shadow-lg:     0 12px 48px rgba(26,48,83,0.20);
  --transition:    0.3s ease;
  --header-h:      72px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Skip Link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--primary-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { line-height: 1.75; color: var(--text-light); }
strong { color: var(--text); font-weight: 600; }

.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; max-width: 600px; }

/* ── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: .03em;
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary-dark);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
}
.logo-fallback {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1;
}
.logo-fallback span { color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.site-nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .875rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: .02em;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.site-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-phone {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  letter-spacing: .02em;
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { color: var(--accent); }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: none;
  border: none;
  cursor: pointer;
  aria-label: "Toggle menu";
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1657558665549-bd7d82afed8c?w=1400&h=700&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,48,83,.90) 0%,
    rgba(55,93,153,.75) 50%,
    rgba(26,48,83,.85) 100%);
  z-index: 1;
}
/* Blueprint grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.4);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.hero-stat svg { color: var(--accent); flex-shrink: 0; }
.hero-stat strong { color: var(--white); }

/* ── Trust Band ────────────────────────────────────────── */
.trust-band {
  background: var(--white);
  border-bottom: 3px solid var(--bg);
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
  gap: .4rem;
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
  color: var(--primary);
}
.trust-item-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--primary-dark);
  letter-spacing: .04em;
  line-height: 1;
}
.trust-item-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.stars { color: var(--accent); font-size: 1rem; letter-spacing: .05em; }

/* ── Services Section ──────────────────────────────────── */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin: 0;
}
.service-card p { font-size: .95rem; flex-grow: 1; }
.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: auto;
  transition: color var(--transition);
}
.service-link:hover { color: var(--accent-dark); }

/* ── About Teaser ──────────────────────────────────────── */
.about-section {
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(55,93,153,.3) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-section .section-label { color: var(--accent); }
.about-section h2 { color: var(--white); }
.about-section p { color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.about-creds {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}
.cred-icon {
  width: 32px;
  height: 32px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  box-shadow: var(--shadow-md);
}

/* ── Stats Counter Band ────────────────────────────────── */
.stats-band {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.counter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: .05em;
}
.stat-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.75);
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.2);
  align-self: stretch;
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonial-carousel {
  position: relative;
  max-width: 820px;
  margin: 3rem auto 0;
  overflow: hidden;
}
.tc-track {
  display: flex;
  transition: transform .5s ease;
}
.tc-slide {
  min-width: 100%;
  padding: .5rem;
}
.tc-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
}
.tc-card::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: var(--primary-xlight);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.tc-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
}
.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tc-author { font-weight: 600; color: var(--text); font-size: .95rem; }
.tc-source {
  font-size: .8rem;
  color: var(--text-light);
  background: var(--primary-xlight);
  color: var(--primary-dark);
  padding: .25rem .625rem;
  border-radius: 50px;
  font-weight: 600;
}
.tc-stars { color: var(--accent); font-size: .9rem; }
.tc-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.tc-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}
.tc-prev, .tc-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}
.tc-prev:hover, .tc-next:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── Service Area Map ──────────────────────────────────── */
.map-section { background: var(--bg); }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
#service-area-map {
  height: 380px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.map-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 1rem;
}
.map-area {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-light);
}
.map-area::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Emergency CTA ─────────────────────────────────────── */
.emergency-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.emergency-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.emergency-cta-inner { position: relative; }
.emergency-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.35);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.emergency-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: .04em;
  display: block;
  margin: .5rem 0 1rem;
  transition: color var(--transition);
}
.emergency-phone:hover { color: var(--accent); }
.emergency-cta h2 { color: var(--white); margin-bottom: .75rem; }
.emergency-cta p { color: rgba(255,255,255,.75); margin-bottom: 0; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img {
  height: 44px;
  width: auto;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: .9;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  font-size: .85rem;
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-info { display: flex; flex-direction: column; gap: .75rem; }
.fci-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
}
.fci-icon { color: var(--accent); margin-top: .15rem; flex-shrink: 0; }
.fci-text { color: rgba(255,255,255,.7); }
.fci-text a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}
.footer-badges {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
}
.footer-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  padding: .2rem .6rem;
  border-radius: 50px;
}

/* ── Floating CTA ──────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--primary);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(55,93,153,.5);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(55,93,153,.6);
}
.floating-cta:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; }
}

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-content { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }

/* ── Services All (services page) ─────────────────────── */
.services-all { background: var(--white); }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-full-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.sfc-header {
  background: var(--primary-dark);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sfc-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.sfc-header h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin: 0;
}
.sfc-body { padding: 1.5rem; }
.sfc-body p { font-size: .95rem; margin-bottom: 1rem; }

/* ── Before/After Slider ───────────────────────────────── */
.ba-section { background: var(--bg); padding: 5rem 0; }
.ba-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-slider img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.ba-before img { width: var(--ba-full-w, 100%); height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute;
  top: 0; left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 12px rgba(0,0,0,.35);
}
.ba-handle-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  font-size: 1.1rem;
  color: var(--primary-dark);
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,.55);
  padding: .25rem .75rem;
  border-radius: 50px;
  pointer-events: none;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--primary);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-answer {
  padding: 0 0 1.25rem;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── About Page ────────────────────────────────────────── */
.about-main { background: var(--white); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 2rem;
}
.cred-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.cred-card-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.cred-card p { font-size: .85rem; margin: 0; color: var(--text); font-weight: 500; }

.values-section { background: var(--bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
}
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1rem;
}
.value-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.value-card p { font-size: .9rem; }

/* ── Contact Page ──────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-group label span { color: #e53e3e; margin-left: .1rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.form-submit:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.form-status {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}
.form-status.success {
  display: block;
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
}
.form-status.error {
  display: block;
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}
.contact-info-panel { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .625rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; padding-bottom: 0; }
.cd-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.cd-text { font-size: .9rem; }
.cd-text strong { display: block; color: var(--text); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .15rem; }
.cd-text a:hover { color: var(--primary); }
.hours-grid { display: flex; flex-direction: column; gap: .4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; }
.hours-row .day { color: var(--text-light); }
.hours-row .time { font-weight: 600; color: var(--text); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .menu-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem 1rem; width: 100%; }
  .header-phone span { display: none; }
  .header-cta .btn { display: none; }

  .hero { min-height: 100svh; }
  .hero-stats { display: none; }

  .trust-band-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { order: -1; }
  .about-img-wrap img { height: 280px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-divider { display: none; }

  .map-grid { grid-template-columns: 1fr; }
  #service-area-map { height: 280px; }

  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-img img { height: 280px; }
  .credentials-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
