/* Jim Dickerson Company - Three Pillars Family Legacy */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;600;700;800;900&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --navy: #005BDA;
  --navy-dark: #101719;
  --blue: #005BDA;
  --blue-light: #00c1ff;
  --amber: #005BDA;
  --amber-dark: #0042A8;
  --plumbing: #005BDA;
  --hvac: #E85800;
  --electrical: #005BDA;
  --white: #ffffff;
  --off-white: #F7F9FC;
  --light: #dce8fb;
  --text: #1f2937;
  --text-muted: #4B5563;
  --border: #c2d4ef;
  --shadow: 0 4px 20px rgba(0,91,218,0.12);
  --shadow-lg: 0 8px 40px rgba(0,91,218,0.18);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--amber);
  color: white;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  padding: .4rem 0;
  letter-spacing: .02em;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.utility-bar a { color: rgba(255,255,255,.85); text-decoration: none; }
.utility-bar a:hover { color: var(--amber); }
.utility-phones { display: flex; gap: 1.5rem; }
.utility-right { display: flex; gap: 1.5rem; align-items: center; }
.emergency-badge {
  background: #DC2626;
  color: white;
  padding: .15rem .6rem;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,.4); }
  50% { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,57,94,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1.5rem;
}
.logo-wrap { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; padding: .5rem .75rem; }
.logo-wrap img { height: 52px; width: auto; }
.logo-text-fallback {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.2;
  display: none;
}
.logo-wrap img.error + .logo-text-fallback { display: block; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width .3s;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--navy); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  background: var(--amber);
  color: white !important;
  padding: .55rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .2s, transform .2s, box-shadow .2s !important;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,91,218,.4) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://jim-dickerson.com/wp-content/uploads/2023/09/homepage-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(16,23,25,.85) 0%, rgba(0,91,218,.5) 50%, rgba(0,193,255,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 4rem 0 5rem;
  animation: heroReveal .8s ease forwards;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,166,35,.2);
  border: 1px solid rgba(245,166,35,.5);
  color: var(--amber);
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero h1 span { color: var(--amber); }
.hero p {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 2rem;
  max-width: 520px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber);
  color: white;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,91,218,.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: white;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.6);
  transition: all .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: white; }
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 1.25rem 0;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: white;
}
.stat-pill .stat-num {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--amber);
  line-height: 1;
}
.stat-pill .stat-label {
  font-size: .8rem;
  font-weight: 500;
  opacity: .8;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.2);
  align-self: center;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: white; }
.section-navy-dark { background: var(--navy-dark); color: white; }

.section-label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-dark .section-title,
.section-navy-dark .section-title { color: white; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-dark .section-subtitle,
.section-navy-dark .section-subtitle { color: rgba(255,255,255,.75); }
.section-header { margin-bottom: 3rem; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ===== THREE PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pillar-card {
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform .3s;
  display: block;
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-card:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.pillar-plumbing { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }
.pillar-hvac { background: linear-gradient(135deg, #C84E00 0%, var(--hvac) 100%); }
.pillar-electrical { background: linear-gradient(135deg, #0042A8 0%, var(--blue) 100%); }
.pillar-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.pillar-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.pillar-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}
.pillar-icon svg { width: 32px; height: 32px; stroke: white; fill: none; }
.pillar-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.pillar-card p {
  font-size: .95rem;
  opacity: .85;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.pillar-link {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  opacity: .9;
  transition: gap .2s;
  position: relative;
  z-index: 1;
}
.pillar-card:hover .pillar-link { gap: .7rem; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow .25s, transform .25s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; }
.why-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.why-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ===== COUPONS ===== */
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.coupon-card {
  background: white;
  border: 2px dashed var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.coupon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}
.coupon-offer {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.coupon-price {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--hvac);
  display: block;
  margin-bottom: .5rem;
}
.coupon-terms {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  font-style: italic;
}
.coupon-expires {
  display: inline-block;
  background: var(--light);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
  letter-spacing: .04em;
}
.coupon-scissors {
  position: absolute;
  top: .75rem;
  right: .75rem;
  font-size: 1rem;
  color: var(--navy);
  opacity: .4;
  transform: rotate(-45deg);
}

/* ===== TESTIMONIALS ===== */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.tc-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.1,.25,1);
}
.tc-slide {
  min-width: 100%;
  padding: 1rem;
}
.tc-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.tc-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--light);
  line-height: 1;
}
.tc-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}
.tc-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.tc-attribution {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
}
.tc-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.tc-dot.active { background: var(--navy); transform: scale(1.2); }
.tc-dot:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.about-img-secondary {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.about-text-col .section-title { margin-bottom: 1rem; }
.about-text-col p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.founded-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--light);
  border-left: 4px solid var(--navy);
  padding: .75rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  font-family: 'League Spartan', sans-serif;
}
.founded-badge strong {
  font-size: 1.75rem;
  color: var(--navy);
  font-weight: 900;
  line-height: 1;
}
.founded-badge span { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

/* ===== ANIMATED COUNTERS ===== */
.counters-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.counters-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}
.counters-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  position: relative;
  z-index: 1;
}
.counter-item {
  text-align: center;
  color: white;
}
.counter-num {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.counter-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .75;
  margin-top: .4rem;
  display: block;
}

/* ===== SERVICE AREA ===== */
#service-area-map {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.area-tag {
  background: var(--light);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all .2s;
}
.area-tag:hover { background: var(--navy); color: white; border-color: var(--navy); }
.service-area-two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* ===== TRUST BANNER ===== */
.trust-banner {
  background: var(--navy-dark);
  padding: 2rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
}
.trust-item svg { width: 20px; height: 20px; stroke: var(--blue-light); fill: none; }

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  position: relative;
  height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.subpage-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://jim-dickerson.com/wp-content/themes/bc-jim-dickerson/img/subpage-banner.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,23,25,.9) 0%, rgba(16,23,25,.4) 100%);
}
.subpage-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  color: white;
}
.subpage-hero-content h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: .5rem;
}
.breadcrumb {
  font-size: .85rem;
  opacity: .75;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }

/* ===== SERVICES PAGE ===== */
.division-tabs {
  display: flex;
  gap: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--border);
  margin-bottom: 0;
}
.div-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.25rem;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  cursor: pointer;
  background: var(--light);
  color: var(--text-muted);
  border: none;
  transition: all .3s;
  border-bottom: 3px solid transparent;
}
.div-tab:focus-visible { outline: 3px solid var(--amber); outline-offset: -3px; }
.div-tab img { width: 28px; height: 28px; }
.div-tab.active-plumbing {
  background: white;
  color: var(--plumbing);
  border-bottom-color: var(--plumbing);
}
.div-tab.active-hvac {
  background: white;
  color: var(--hvac);
  border-bottom-color: var(--hvac);
}
.div-tab.active-electrical {
  background: white;
  color: var(--electrical);
  border-bottom-color: var(--electrical);
}
.division-panel {
  background: white;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2.5rem;
  display: none;
}
.division-panel.active { display: block; }
.division-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.division-panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.division-panel-icon img { width: 32px; height: 32px; }
.icon-plumbing { background: rgba(0,57,94,.1); }
.icon-hvac { background: rgba(232,88,0,.1); }
.icon-electrical { background: rgba(0,91,218,.1); }
.division-panel-header h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
}
.division-panel-header h2 .label-plumbing { color: var(--plumbing); }
.division-panel-header h2 .label-hvac { color: var(--hvac); }
.division-panel-header h2 .label-electrical { color: var(--electrical); }
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}
.service-list-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 500;
  transition: all .2s;
  border: 1px solid transparent;
}
.service-list-item:hover { background: white; border-color: var(--border); box-shadow: var(--shadow); }
.service-bullet-p { width: 8px; height: 8px; border-radius: 50%; background: var(--plumbing); flex-shrink: 0; }
.service-bullet-h { background: var(--hvac); width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.service-bullet-e { background: var(--electrical); width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ===== MAINTENANCE PLAN ===== */
.maintenance-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.maintenance-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.maintenance-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.maintenance-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .95rem;
  opacity: .9;
}
.maintenance-features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.maintenance-cta { text-align: center; flex-shrink: 0; }
.maintenance-cta .btn-primary { white-space: nowrap; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--navy); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-item[open] summary { color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; stroke: currentColor; fill: none; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .95rem;
}

/* ===== BEFORE/AFTER SLIDER ===== */
.ba-section { max-width: 700px; margin: 3rem auto 0; }
.ba-label {
  text-align: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-story-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-story-text p:first-of-type { font-size: 1.1rem; }
.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.photo-stack-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-stack-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.photo-stack-secondary {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-stack-secondary img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
}
.team-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.team-card .team-title { font-size: .85rem; color: var(--text-muted); }
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
}
.cert-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; }
.cert-badge strong {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}
.cert-badge span { font-size: .8rem; color: var(--text-muted); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Work Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,57,94,.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}
.form-success {
  display: none;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; }
.info-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}
.info-card p, .info-card a {
  font-size: .95rem;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  line-height: 1.6;
}
.info-card a:hover { color: var(--navy); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-wrap img { filter: brightness(0) invert(1); height: 44px; }
.footer-brand p {
  font-size: .9rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  opacity: .75;
  max-width: 280px;
}
.footer-heading {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-contact-item a:hover { color: var(--amber); }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.social-link:hover { background: var(--amber); }
.social-link svg { width: 16px; height: 16px; fill: white; }
.footer-bottom {
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--amber); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--amber);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,91,218,.5);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,91,218,.65); }
.floating-cta:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 3px; }
.floating-cta svg { width: 26px; height: 26px; stroke: white; fill: none; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s 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; }

/* ===== CONTAINER ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-area-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { padding: 2rem 1.75rem; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; align-items: flex-start; padding: 1.5rem; border-top: 1px solid var(--border); box-shadow: var(--shadow); gap: 1.25rem; }
  .main-nav.open { display: flex; }
  .main-nav .nav-cta { width: 100%; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .about-images { grid-template-columns: 1fr; }
  .about-img-main { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
  .counters-grid { gap: 1.5rem 2.5rem; }
  .maintenance-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .stat-divider { display: none; }
  .stats-bar .container { gap: 1rem 2rem; }
  .division-tabs { flex-direction: column; }
  .div-tab { border-bottom: 1px solid var(--border); border-right: none; }
  .div-tab.active-plumbing, .div-tab.active-hvac, .div-tab.active-electrical { border-bottom: 3px solid; }
  .utility-right { flex-direction: column; gap: .25rem; align-items: flex-end; }
}
@media (min-width: 768px) { .site-header { position: sticky; } }
@media (min-width: 769px) { .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; } }

/* Focus visible for all interactive elements */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
