/* ==========================================================================
   AQUAVO PLUMBING — LOS ANGELES & SAN FERNANDO VALLEY
   Master Design System & Stylesheet (Local Contractor & Trade Business)
   Visual Identity:
   - Primary Trust Authority: Deep Contractor Navy (#0F2744, #163866)
   - Action Accent: Plumber's Burnished Copper & Amber (#D95D1E, #EA580C)
   - Plumbing / Water Accent: Crystal Sky & Azure (#0284C7, #E0F2FE)
   - Ground Surfaces: Crisp Porcelain & Pure White (#FFFFFF, #F8FAFC, #F1F5F9)
   - Tactile 3D Depth: Physical Card Shadows, Smooth Perspective Tilt & Sunlight Sheen
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Core Brand Colors */
  --brand-navy: #0F2744;
  --brand-navy-dark: #0A1B30;
  --brand-navy-light: #1E3E68;
  --brand-navy-subtle: #F0F4F8;
  
  --brand-copper: #D95D1E;
  --brand-copper-hover: #BF4C12;
  --brand-copper-light: #FFF7ED;
  --brand-copper-subtle: rgba(217, 93, 30, 0.1);
  
  --water-blue: #0284C7;
  --water-blue-dark: #0369A1;
  --water-blue-light: #E0F2FE;
  --water-blue-subtle: rgba(2, 132, 199, 0.08);

  --badge-gold: #F59E0B;
  --badge-gold-light: #FEF3C7;
  --success-green: #10B981;

  /* Surfaces & Backgrounds */
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F1F5F9;
  --bg-navy-band: #0A1B30;
  --bg-footer: #081424;

  /* Text Typography */
  --text-heading: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-white: #FFFFFF;
  --text-white-muted: #CBD5E1;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout Boundaries */
  --container-max: 1240px;
  --header-height-desktop: 80px;
  --header-height-mobile: 68px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Tactile Physical 3D Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 39, 68, 0.08), 0 1px 2px rgba(15, 39, 68, 0.04);
  --shadow-card: 0 4px 6px -1px rgba(15, 39, 68, 0.06), 0 10px 25px -5px rgba(15, 39, 68, 0.08);
  --shadow-card-hover: 0 20px 35px -8px rgba(15, 39, 68, 0.15), 0 10px 15px -4px rgba(15, 39, 68, 0.06);
  --shadow-3d-button: 0 6px 18px rgba(217, 93, 30, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-3d-button-hover: 0 10px 25px rgba(217, 93, 30, 0.48), 0 3px 6px rgba(0, 0, 0, 0.12);
  --shadow-badge: 0 12px 28px -6px rgba(15, 39, 68, 0.18), 0 4px 8px -2px rgba(15, 39, 68, 0.06);

  --border-subtle: #E2E8F0;
  --border-card: #E2E8F0;
  --border-card-hover: #CBD5E1;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & FOUNDATION
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-page);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--brand-navy);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

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

svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.6rem);
  font-weight: 800;
  color: var(--brand-navy);
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--brand-navy);
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-navy);
}

p {
  color: var(--text-body);
  line-height: 1.7;
}

.highlight-copper {
  color: var(--brand-copper);
}

.highlight-blue {
  color: var(--water-blue);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Contractor Eyebrow Badge */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-navy);
  background: var(--brand-navy-subtle);
  border: 1px solid rgba(15, 39, 68, 0.12);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   BUTTONS & TACTILE 3D CTA ARCHITECTURE
   ========================================================================== */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(180deg, #EA580C 0%, #C2410C 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  min-height: 52px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid #9A3412;
  box-shadow: var(--shadow-3d-button);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-cta-primary:hover {
  background: linear-gradient(180deg, #F97316 0%, #D95D1E 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-3d-button-hover);
}

.btn-cta-primary:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(217, 93, 30, 0.3);
  border-bottom-width: 1px;
}

.btn-cta-primary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.btn-cta-primary:hover svg {
  transform: scale(1.1) rotate(-8deg);
}

.btn-cta-large {
  font-size: 1.15rem;
  padding: 1.1rem 2.35rem;
  min-height: 58px;
  border-radius: var(--radius-lg);
}

.btn-cta-header {
  font-size: 0.95rem;
  padding: 0.6rem 1.35rem;
  min-height: 42px;
  border-radius: var(--radius-sm);
}

/* Secondary Link */
.btn-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
  padding: 0.25rem 0;
}

.btn-link-secondary:hover {
  color: var(--brand-copper);
  transform: translateX(4px);
}

.btn-link-secondary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-link-secondary:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   GLOBAL CUSTOM WEB COMPONENTS
   ========================================================================== */
site-header {
  display: block;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

site-footer,
site-sticky-call {
  display: block;
  width: 100%;
}

/* ==========================================================================
   1. STICKY HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--header-height-mobile);
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px -2px rgba(15, 39, 68, 0.08);
  border-bottom-color: #CBD5E1;
}

.site-header .container {
  max-width: 100%;
  padding-left: clamp(1.25rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.25rem, 3.5vw, 3.5rem);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  vertical-align: middle;
}

.header-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0F2744 0%, #071524 100%);
  border: 1.5px solid var(--brand-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 39, 68, 0.22);
  transition: all var(--transition-bounce);
  padding: 4px;
  flex-shrink: 0;
}

.header-logo:hover .header-logo-icon {
  transform: rotate(6deg) scale(1.05);
  box-shadow: 0 6px 16px rgba(217, 93, 30, 0.35);
  border-color: #FB923C;
}

.header-logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header-logo-text {
  display: flex;
  align-items: center;
  line-height: 1;
}

.header-logo-text .brand-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--brand-navy);
  letter-spacing: -0.035em;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.header-logo-text .brand-title .brand-accent {
  color: var(--water-blue);
  font-weight: 800;
  margin-left: 0.32rem;
}

.header-logo:hover .brand-title {
  color: var(--water-blue-dark);
}

.header-logo:hover .brand-title .brand-accent {
  color: var(--brand-copper);
}

.header-nav {
  display: none;
}

.nav-menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu-link:hover,
.nav-menu-link.active {
  color: var(--brand-copper);
}

.nav-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-copper);
  transition: width var(--transition-fast);
}

.nav-menu-link:hover::after,
.nav-menu-link.active::after {
  width: 100%;
}

/* Dropdown Navigation for Services */
.nav-item-dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 0.72rem;
  display: inline-block;
  transition: transform 0.2s ease;
  margin-left: 2px;
  vertical-align: middle;
}

.nav-item-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  background: #0A1B30;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 270px;
  box-shadow: 0 16px 36px rgba(10, 27, 48, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
  list-style: none;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  color: #CBD5E1;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  background: rgba(217, 93, 30, 0.18);
  color: #FB923C;
  padding-left: 22px;
}

.nav-dropdown-menu.nav-dropdown-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 390px;
  gap: 2px 4px;
  padding: 10px 8px;
}

.nav-dropdown-menu.nav-dropdown-locations li a {
  padding: 7px 12px;
  font-size: 0.86rem;
  border-radius: var(--radius-sm);
}

.nav-dropdown-menu.nav-dropdown-locations li a:hover,
.nav-dropdown-menu.nav-dropdown-locations li a.active {
  padding-left: 14px;
}

.mobile-sub-link .mobile-nav-link {
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: #94A3B8;
}

/* ==========================================================================
   BREADCRUMBS NAVIGATION (Clean, Semantic, Accessible)
   ========================================================================== */
.breadcrumbs-container {
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none !important;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--text-muted);
}

.breadcrumbs-list li {
  list-style: none !important;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list a {
  color: var(--brand-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.breadcrumbs-list a:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

.breadcrumbs-sep {
  color: #94A3B8;
  user-select: none;
}

.breadcrumbs-list li[aria-current="page"] {
  color: var(--text-secondary);
  font-weight: 600;
}

.mobile-sub-link .mobile-nav-link.active {
  color: var(--brand-copper);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone-link {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-navy);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--brand-navy-subtle);
  border: 1px solid rgba(15, 39, 68, 0.08);
  transition: all var(--transition-fast);
}

.header-phone-link:hover {
  color: var(--brand-copper);
  border-color: var(--brand-copper);
  background: var(--brand-copper-light);
}

.header-phone-link svg {
  color: var(--brand-copper);
}

/* Mobile Toggle */
.header-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--brand-navy-subtle);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--brand-navy);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: var(--header-height-mobile);
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--brand-navy);
  padding: 2rem 1.5rem;
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  box-shadow: 0 20px 40px rgba(15, 39, 68, 0.15);
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link:hover {
  color: var(--brand-copper);
  padding-left: 0.5rem;
}

/* ==========================================================================
   2. HERO SECTION & HYDRO-FLOW CANVAS
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

/* Crystalline Hydro Flow Canvas */
.hero-3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #FFFFFF;
  border: 1px solid rgba(15, 39, 68, 0.12);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(15, 39, 68, 0.06);
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--success-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulseGreen 2s infinite ease-in-out;
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

.hero-title {
  margin-bottom: 1.35rem;
  line-height: 1.15;
}

.hero-subhead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-body);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-cta-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-cta-subtext {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Image & 3D Badges */
.hero-image-col {
  position: relative;
  perspective: 1200px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px -10px rgba(15, 39, 68, 0.2);
  border: 4px solid #FFFFFF;
}

.hero-image-wrapper img {
  border-radius: calc(var(--radius-xl) - 4px);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-image-caption {
  position: absolute;
  bottom: 3.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 39, 68, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.hero-image-caption svg {
  color: var(--brand-copper);
  flex-shrink: 0;
}

/* Floating 3D Contractor Badges */
.floating-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-badge);
  z-index: 5;
  transition: all var(--transition-bounce);
}

.floating-badge:hover {
  transform: translateY(-6px) scale(1.04) !important;
  box-shadow: 0 20px 40px -8px rgba(15, 39, 68, 0.25);
}

.floating-badge-1 {
  top: -18px;
  right: -15px;
  animation: floatSlow 5s infinite ease-in-out;
}

.floating-badge-2 {
  bottom: -18px;
  left: -15px;
  right: auto;
  animation: floatReverse 6s infinite ease-in-out;
}

@media (max-width: 640px) {
  .floating-badge {
    padding: 0.6rem 0.9rem;
    gap: 0.6rem;
  }
  .floating-badge-1 {
    top: -12px;
    right: -8px;
  }
  .floating-badge-2 {
    bottom: -14px;
    left: -8px;
    right: auto;
  }
  .badge-icon-box {
    width: 34px;
    height: 34px;
  }
  .badge-icon-box svg {
    width: 18px;
    height: 18px;
  }
  .badge-text-title {
    font-size: 0.85rem;
  }
  .badge-text-sub {
    font-size: 0.72rem;
  }
  .hero-image-caption {
    bottom: 2.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
  }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
}

.badge-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--brand-copper-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-copper);
  font-weight: 800;
}

.badge-icon-gold {
  background: var(--badge-gold-light);
  color: var(--badge-gold);
}

.badge-text-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   2.5 LIVE STATS STRIP
   ========================================================================== */
.stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  margin-bottom: 2rem;
}

.stats-glass-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number-wrap {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ==========================================================================
   3. TRUST STRIP
   ========================================================================== */
.trust-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: #FFFFFF;
  padding: 1.35rem 0;
  position: relative;
  z-index: 2;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.trust-strip-item svg {
  width: 22px;
  height: 22px;
  color: var(--brand-copper);
}

.town-separator {
  color: #CBD5E1;
}

/* ==========================================================================
   4. CORE SERVICES (Physical 3D Cards)
   ========================================================================== */
.services-section {
  position: relative;
  background: var(--bg-page);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  perspective: 1200px;
}

/* 3D Physical Service Card */
.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, box-shadow var(--transition-normal), border-color var(--transition-normal);
  cursor: pointer;
}

/* Natural Specular Sunlight Glare */
.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(2, 132, 199, 0.08) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.service-card:hover .card-glare {
  opacity: 1;
}

.service-card:hover {
  border-color: #CBD5E1;
  box-shadow: var(--shadow-card-hover);
}

.service-card-top {
  position: relative;
  z-index: 2;
  transform: translateZ(15px);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--water-blue-light);
  border: 1px solid rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--water-blue-dark);
  margin-bottom: 1.5rem;
  transition: all var(--transition-bounce);
}

.service-card:hover .service-icon-box {
  transform: scale(1.12) rotate(6deg);
  background: var(--brand-copper-light);
  color: var(--brand-copper);
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.service-card-title {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.service-card-desc {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.65;
}

/* Priority Emergency Service Card */
.service-card.priority-emergency {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
  border: 2px solid #FDBA74;
}

.service-card.priority-emergency .service-icon-box {
  background: #FFEDD5;
  color: var(--brand-copper);
}

.priority-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--brand-copper);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 3;
}

.services-footer-link {
  text-align: center;
  margin-top: 3.5rem;
}

/* ==========================================================================
   5. EMERGENCY PLUMBING SECTION (Authoritative Dark Navy Band)
   ========================================================================== */
.emergency-band {
  background: linear-gradient(135deg, #0A1B30 0%, #16325C 100%);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  color: #ffffff;
}

.emergency-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.emergency-warning-icon {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(234, 88, 12, 0.35) 0%, rgba(154, 52, 18, 0.2) 70%, rgba(10, 27, 48, 0.3) 100%);
  border: 2px solid #EA580C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFEDD5;
  margin: 0 auto 1.75rem auto;
  position: relative;
  box-shadow: 0 0 30px rgba(234, 88, 12, 0.5), inset 0 0 15px rgba(234, 88, 12, 0.3);
  animation: emergencyBeacon 2.5s infinite ease-in-out;
  transition: all var(--transition-bounce);
}

/* Concentric Expanding Emergency Radar Rings */
.emergency-warning-icon::before,
.emergency-warning-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(251, 146, 60, 0.85);
  pointer-events: none;
  z-index: 1;
}

.emergency-warning-icon::before {
  animation: emergencyRipple 2.5s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.emergency-warning-icon::after {
  animation: emergencyRipple 2.5s infinite cubic-bezier(0.25, 1, 0.5, 1) 1.25s;
}

.emergency-warning-icon svg {
  width: 38px;
  height: 38px;
  stroke: #FED7AA;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(251, 146, 60, 0.8));
  animation: alertIconPulse 2.5s infinite ease-in-out;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.emergency-warning-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(234, 88, 12, 0.85), inset 0 0 20px rgba(251, 146, 60, 0.55);
  border-color: #FB923C;
}

.emergency-warning-icon:hover svg {
  transform: scale(1.12) rotate(-6deg);
  stroke: #FFFFFF;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 20px rgba(234, 88, 12, 0.9));
}

@keyframes emergencyBeacon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(234, 88, 12, 0.45), inset 0 0 12px rgba(234, 88, 12, 0.25);
    border-color: #EA580C;
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 45px rgba(251, 146, 60, 0.8), inset 0 0 22px rgba(251, 146, 60, 0.5);
    border-color: #FB923C;
  }
}

@keyframes emergencyRipple {
  0% {
    transform: scale(1);
    opacity: 0.9;
    border-color: rgba(251, 146, 60, 0.9);
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
    border-color: rgba(234, 88, 12, 0);
  }
}

@keyframes alertIconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(251, 146, 60, 0.6));
    stroke: #FED7AA;
  }
  50% {
    transform: scale(1.09);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 18px rgba(234, 88, 12, 0.9));
    stroke: #FFFFFF;
  }
}

.emergency-band-title {
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.emergency-band-copy {
  font-size: 1.2rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.emergency-band-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.emergency-notice {
  font-size: 0.95rem;
  color: #94A3B8;
  font-weight: 600;
}

/* ==========================================================================
   6. WHY CHOOSE US
   ========================================================================== */
.why-section {
  position: relative;
  background: #FFFFFF;
}

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

.why-card {
  background: var(--bg-page);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-card-hover);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-copper);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(15, 39, 68, 0.06);
  transition: transform var(--transition-bounce);
}

.why-card:hover .why-card-icon {
  transform: scale(1.15) rotate(8deg);
  background: var(--brand-navy);
  color: #ffffff;
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.why-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.why-card-desc {
  color: var(--text-body);
  font-size: 1rem;
}

/* ==========================================================================
   7. HOW IT WORKS
   ========================================================================== */
.process-section {
  position: relative;
  background: var(--bg-page);
}

.process-steps-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin-bottom: 3.5rem;
}

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.process-step-num {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--brand-navy);
  border: 4px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.2);
  flex-shrink: 0;
  transition: all var(--transition-bounce);
}

.process-step-item:hover .process-step-num {
  transform: scale(1.12);
  background: var(--brand-copper);
}

.process-step-body {
  flex: 1;
}

.process-step-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.process-step-desc {
  color: var(--text-body);
  font-size: 1.05rem;
}

.process-cta-center {
  text-align: center;
}

/* ==========================================================================
   8. REVIEWS SECTION
   ========================================================================== */
.reviews-section {
  position: relative;
  background: #FFFFFF;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.review-card {
  background: var(--bg-page);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-card-hover);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author-meta,
.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--brand-navy);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author-name,
.review-author {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  display: block;
}

.review-author-loc,
.review-location,
.review-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  display: block;
}

.google-badge {
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  font-size: 1.15rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-text,
.review-quote {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.reviews-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.25rem 2.25rem;
  margin-top: 1.5rem;
  margin-bottom: 2.75rem;
  box-shadow: var(--shadow-card);
}

.reviews-grid + .reviews-summary-bar {
  margin-top: 2.75rem;
  margin-bottom: 0;
}

.reviews-summary-bar > span {
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.summary-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.summary-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}

.summary-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.summary-stars {
  color: #F59E0B;
  font-size: 1.15rem;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
}

.summary-score {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.summary-count {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

.summary-call {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.summary-phone-link {
  color: var(--brand-copper);
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.summary-phone-link:hover {
  color: var(--brand-copper-hover);
}

/* ==========================================================================
   9. SERVICE AREAS & LOS ANGELES COVERAGE MAP
   ========================================================================== */
.service-areas-section {
  position: relative;
  background: var(--bg-page);
}

.service-map-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.map-region-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.map-filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.map-filter-btn:hover {
  border-color: var(--brand-copper);
  color: var(--brand-copper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.map-filter-btn.active {
  background: var(--brand-navy);
  color: #FFFFFF;
  border-color: var(--brand-navy);
  box-shadow: 0 4px 14px rgba(15, 39, 68, 0.25);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.map-container-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  background: #E2E8F0;
  height: 520px;
  display: flex;
  flex-direction: column;
}

.la-map-iframe {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  border: 0;
  display: block;
}

.map-dispatch-card {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  left: auto;
  z-index: 10;
  background: rgba(15, 39, 68, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  max-width: 370px;
  color: #FFFFFF;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  animation: fadeIn 0.4s ease-out;
}

.dispatch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-pulse-circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse 1.8s infinite;
}

.dispatch-eta {
  font-size: 0.82rem;
  color: #CBD5E1;
  font-weight: 600;
}

.dispatch-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.dispatch-address {
  font-size: 0.86rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.dispatch-address svg {
  color: var(--brand-copper);
  flex-shrink: 0;
}

.btn-cta-dispatch {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.map-bottom-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(10, 27, 48, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  color: #E2E8F0;
  font-size: 0.88rem;
  font-weight: 600;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ribbon-item svg {
  color: var(--brand-copper);
  flex-shrink: 0;
}

.areas-intro {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--text-body);
}

.areas-cluster-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.area-cluster-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.area-cluster-card:hover {
  transform: translateY(-5px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-card-hover);
}

.area-cluster-card.active-region {
  border-color: var(--brand-copper);
  box-shadow: 0 0 0 2px var(--brand-copper), var(--shadow-card-hover);
  transform: translateY(-4px);
}

.cluster-name {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand-navy);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  min-height: 2.75rem;
}

.cluster-name svg {
  width: 22px;
  height: 22px;
  color: var(--brand-copper);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.cluster-towns-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.8rem;
}

.town-item-link {
  color: var(--text-body);
  font-size: 0.98rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.town-item-link:hover {
  color: var(--brand-copper);
}

.cluster-neighborhood-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.cluster-neighborhood-item {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.85rem;
}

.cluster-neighborhood-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cluster-neighborhood-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.cluster-neighborhood-link {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-fast);
}

.cluster-neighborhood-link:hover {
  color: var(--brand-copper);
}

.cluster-neighborhood-link::after {
  content: '→';
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition-fast);
}

.cluster-neighborhood-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.zip-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}

.zip-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

.zip-pill:hover {
  background: var(--brand-copper-light);
  border-color: var(--brand-copper);
  color: var(--brand-copper);
}

/* Dedicated Postal Zip Code Directory Banner */
.home-zip-matrix-card {
  background: #0A1B30;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 3.5rem;
  color: #FFFFFF;
  box-shadow: 0 16px 36px rgba(10, 27, 48, 0.35);
}

.home-zip-matrix-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.home-zip-matrix-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.home-zip-matrix-subtitle {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
}

.home-zip-pills-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.home-zip-cloud-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: #E2E8F0;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.home-zip-cloud-badge .zip-num {
  color: #FB923C;
  font-weight: 700;
}

.home-zip-cloud-badge:hover {
  background: rgba(217, 93, 30, 0.25);
  border-color: #FB923C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   10. ABOUT / CREDIBILITY SECTION
   ========================================================================== */
.about-section {
  position: relative;
  background: #FFFFFF;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.about-image-col {
  width: 100%;
}

.about-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid #FFFFFF;
}

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

.about-content-col h2 {
  margin-bottom: 1.25rem;
}

.about-content-col p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text-body);
}

/* ==========================================================================
   11. FAQ SECTION
   ========================================================================== */
.faq-section {
  position: relative;
  background: var(--bg-page);
}

.faq-accordion-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.faq-item[open] {
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-card);
}

.faq-summary {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast);
}

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

.faq-summary:hover {
  color: var(--brand-copper);
}

.faq-summary-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--brand-navy-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item[open] .faq-summary-icon {
  transform: rotate(180deg);
  background: var(--brand-copper-light);
  color: var(--brand-copper);
}

.faq-content {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   12. FINAL CALL CTA
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
}

.final-cta-box {
  background: linear-gradient(135deg, #0F2744 0%, #1A3E6D 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 45px -10px rgba(15, 39, 68, 0.35);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.final-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-copper), transparent);
}

.final-cta-title {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.final-cta-copy {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  color: #E2E8F0;
}

.final-cta-button-wrap {
  margin-bottom: 1.5rem;
}

.final-cta-microcopy {
  font-size: 0.98rem;
  color: #CBD5E1;
  font-weight: 600;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.site-footer {
  width: 100%;
  background-color: var(--bg-footer);
  color: #CBD5E1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 3rem 0;
  position: relative;
  z-index: 2;
}

.site-footer .container {
  max-width: 100%;
  padding-left: clamp(1.25rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.25rem, 3.5vw, 3.5rem);
}

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

.footer-brand-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0A1B30 0%, #030B14 100%);
  border: 1.5px solid var(--brand-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-logo-text {
  display: flex;
  align-items: center;
  line-height: 1;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
}

.footer-brand-title .brand-accent {
  color: var(--water-blue);
  font-weight: 800;
  margin-left: 0.32rem;
}

.footer-brand-desc {
  color: #94A3B8;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-nap-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer-nap-item strong {
  color: #ffffff;
  margin-right: 0.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #94A3B8;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-links-list a.active,
.footer-links-list a.highlight-copper {
  color: var(--brand-copper);
  font-weight: 700;
}

.footer-links-grid-2col {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.25rem;
  margin: 0;
  padding: 0;
}

.footer-links-grid-2col a {
  color: #94A3B8;
  font-size: 0.93rem;
  transition: all var(--transition-fast);
  display: block;
  white-space: nowrap;
}

.footer-links-grid-2col a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-links-grid-2col a.active,
.footer-links-grid-2col a.highlight-copper {
  color: var(--brand-copper);
  font-weight: 700;
}

@media (max-width: 480px) {
  .footer-links-grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 0.75rem;
  }
}

/* ==========================================================================
   FOOTER SERVICE AREA GOOGLE MAP EMBED
   ========================================================================== */
.footer-map-card {
  background: linear-gradient(180deg, rgba(15, 39, 68, 0.7) 0%, rgba(10, 27, 48, 0.95) 100%);
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 3.5rem;
  transition: border-color var(--transition-normal);
}

.footer-map-card:hover {
  border-color: rgba(251, 146, 60, 0.45);
}

.footer-map-header {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(15, 39, 68, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: #FFFFFF;
}

.footer-map-pin {
  width: 18px;
  height: 18px;
  color: var(--brand-copper);
  stroke: currentColor;
  flex-shrink: 0;
}

.footer-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34D399;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-map-frame-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  background: #0A1B30;
}

.footer-map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.02) saturate(1.05);
}

.footer-map-footer {
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(10, 27, 48, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.footer-map-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  color: #CBD5E1;
  font-weight: 500;
}

.footer-map-sep {
  color: #64748B;
}

.footer-map-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #FB923C;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-map-call:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .footer-map-frame-wrap {
    height: 230px;
  }
  .footer-map-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: #64748B;
}

/* ==========================================================================
   14. MOBILE STICKY CALL BAR
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  border-top: 2px solid var(--brand-copper);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 -8px 25px rgba(15, 39, 68, 0.15);
  transform: translateY(100%);
  transition: transform var(--transition-bounce);
  display: none;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.mobile-sticky-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(180deg, #EA580C 0%, #C2410C 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(217, 93, 30, 0.4);
}

.mobile-sticky-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & DESKTOP)
   ========================================================================== */
@media (min-width: 640px) {
  .stats-glass-card {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .areas-cluster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1.3fr 1.05fr 1.65fr 0.9fr;
    gap: 2.5rem;
  }
  :root {
    --header-height-mobile: var(--header-height-desktop);
  }
  
  .site-header {
    height: var(--header-height-desktop);
  }
  
  .header-nav {
    display: block;
  }
  
  .header-phone-link {
    display: flex;
  }
  
  .header-menu-toggle {
    display: none;
  }
  
  /* Hero Desktop Layout */
  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  
  .hero-content {
    flex: 1 1 52%;
    max-width: 54%;
  }
  
  .hero-image-col {
    flex: 1 1 48%;
    max-width: 48%;
  }
  
  /* Services 3-Col Grid */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card.priority-emergency {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    align-items: center;
    padding: 2.75rem;
  }
  
  .service-card.priority-emergency .service-card-top {
    margin-bottom: 0;
  }
  
  /* How It Works Desktop Sequence Line */
  .process-steps-row {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
  
  .process-steps-row::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: #E2E8F0;
    z-index: 1;
  }
  
  .process-step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 1.5rem;
  }
  
  .process-step-body {
    align-items: center;
    margin-top: 1.25rem;
  }
  
  .areas-cluster-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .about-grid {
    flex-direction: row;
    gap: 4rem;
  }
  
  .about-image-col {
    flex: 0 0 45%;
  }
  
  .about-content-col {
    flex: 0 0 55%;
  }
}

/* Mobile Sticky Bar and Responsive Map on small screens */
@media (max-width: 1023px) {
  body.has-sticky-bar {
    padding-bottom: 74px;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  .final-cta-button-wrap .btn-cta-primary {
    width: 100%;
  }

  .map-dispatch-card {
    max-width: 320px;
    padding: 1rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .map-container-card {
    height: auto;
  }

  .map-dispatch-card {
    position: static;
    max-width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--brand-navy);
  }

  .la-map-iframe {
    height: 340px;
  }

  .map-bottom-ribbon {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
  }

  .map-region-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .map-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   SERVICE PAGE COMPONENT ARCHITECTURE (Flagship Services Catalog)
   Consistent with "Modern Flow" Design Tokens & Layout Rules
   ========================================================================== */

/* Breadcrumbs Navigation */
.breadcrumbs-container {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
}

.breadcrumbs-nav {
  display: flex;
  align-items: center;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.breadcrumbs-list a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.breadcrumbs-list a:hover {
  color: var(--brand-copper);
}

.breadcrumbs-sep {
  color: #CBD5E1;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list [aria-current="page"] {
  color: var(--brand-navy);
  font-weight: 700;
}

/* Service Hero (Desktop 55/45, Light Background) */
.service-hero-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2.5rem, 4vw, 4rem);
  }
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-hero-content .hero-title {
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.service-hero-content .hero-subhead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-body);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2rem;
}

.service-hero-content .hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-cta-note {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-copper);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #FFFFFF;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  box-shadow: 0 1px 3px rgba(15, 39, 68, 0.04);
}

.trust-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--success-green);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.service-hero-media {
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

.service-hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(15, 39, 68, 0.22);
  border: 4px solid #FFFFFF;
  background: #E2E8F0;
}

.service-hero-image-wrap img,
.hero-technician-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* 3D Floating Tech Chip in Service Hero */
.service-hero-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-badge);
  z-index: 4;
  animation: floatSlow 5s infinite ease-in-out;
}

.chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--success-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
  flex-shrink: 0;
}

.chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.chip-text strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.chip-text span {
  font-size: 0.76rem;
  color: var(--water-blue-dark);
  font-weight: 600;
}

.service-hero-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 39, 68, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  z-index: 4;
}

.service-hero-caption svg {
  color: var(--brand-copper);
  flex-shrink: 0;
}

/* SECTION 3: 5 Warning Signs Grid */
.signs-section {
  background-color: var(--bg-surface-alt);
}

.hard-water-grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 600px) {
  .hard-water-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hard-water-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.15rem;
  }
}

.hard-water-card,
.hard-water-sign-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.35rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.hard-water-card:hover,
.hard-water-sign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--water-blue);
}

.sign-num-badge,
.sign-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--water-blue);
  background: rgba(2, 132, 199, 0.1);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  flex-shrink: 0;
}

.sign-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.sign-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* SECTION 4: System Comparison Grid */
.system-choice-section {
  background: var(--bg-surface);
}

.softener-vs-conditioner-grid,
.service-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .softener-vs-conditioner-grid,
  .service-comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.system-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.system-card.system-card-highlight {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 10px 30px -5px rgba(2, 132, 199, 0.12), var(--shadow-card);
}

.system-card-header {
  margin-bottom: 1.5rem;
}

.system-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(217, 93, 30, 0.1);
  color: var(--brand-copper);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(217, 93, 30, 0.2);
}

.system-badge.badge-highlight {
  background: rgba(2, 132, 199, 0.12);
  color: var(--water-blue);
  border-color: rgba(2, 132, 199, 0.3);
}

.system-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
}

.system-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.system-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.55;
}

.feat-check {
  color: var(--success-green);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.system-cta-box {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* SECTION 5: 3-Step Process */
.process-section {
  background: var(--bg-surface-alt);
}

.process-3step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .process-3step-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.process-step-card .step-num-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: rgba(15, 39, 68, 0.12);
  line-height: 1;
  background: none;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
}

.step-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.1);
  color: var(--water-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.step-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.step-card-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* SECTION 6: Commercial Solutions Card */
.commercial-water-card {
  background: linear-gradient(135deg, #0F2744 0%, #163866 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 3.75rem);
  box-shadow: 0 20px 40px -10px rgba(15, 39, 68, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.commercial-water-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-copper), var(--water-blue));
}

.commercial-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(217, 93, 30, 0.2);
  border: 1px solid var(--brand-copper);
  color: #FB923C;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.commercial-title {
  color: #FFFFFF;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.commercial-desc {
  color: #CBD5E1;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 780px;
  margin-bottom: 2rem;
}

.commercial-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* SECTION 7: Cost Factors */
.cost-factors-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 600px) {
  .cost-factors-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cost-factors-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.cost-factor-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.35rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cost-factor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.cost-factor-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--water-blue);
  background: rgba(2, 132, 199, 0.1);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.cost-factor-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.cost-factor-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* SECTION 8: Why Choose Us & Technician Spotlight */
.tech-spotlight-wrap {
  margin-top: 3.5rem;
}

.tech-spotlight-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .tech-spotlight-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.tech-avatar-box {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-initials {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FFFFFF;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.18);
}

.tech-cert-pill {
  position: absolute;
  bottom: -8px;
  background: var(--brand-copper);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.tech-details {
  flex-grow: 1;
}

.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.tech-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.2rem;
}

.tech-role {
  font-size: 0.9rem;
  color: var(--brand-copper);
  font-weight: 700;
}

.tech-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--badge-gold-light);
  color: #92400E;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.tech-quote {
  font-style: italic;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.65;
  border-left: 3px solid var(--brand-copper);
  padding-left: 1rem;
  margin: 0;
}

/* SECTION 12: Related Services Grid */
.related-services-section {
  background-color: var(--bg-surface);
}

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

@media (min-width: 680px) {
  .related-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.related-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-copper);
}

.related-service-card .service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--water-blue-light);
  color: var(--water-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.related-service-card .service-icon-box svg {
  width: 24px;
  height: 24px;
}

.related-service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.related-service-desc {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-link-secondary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-copper);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.btn-link-secondary:hover {
  color: var(--brand-copper-hover);
  gap: 0.6rem;
}

/* ==========================================================================
   SERVICES COLLECTION INDEX PAGE (/services/)
   ========================================================================== */
.service-collection-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.service-collection-hero .hero-content-center {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.service-collection-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.service-collection-hero .hero-subhead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.service-collection-hero .hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-collection-hero .hero-trust-row {
  justify-content: center;
}

/* Service Clusters */
.services-collection-section {
  background-color: var(--bg-page);
}

.service-cluster-block {
  margin-bottom: 4rem;
}

.service-cluster-block:last-child {
  margin-bottom: 0;
}

.cluster-header {
  margin-bottom: 2.25rem;
}

.cluster-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(217, 93, 30, 0.1);
  color: var(--brand-copper);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 0.65rem;
  border: 1px solid rgba(217, 93, 30, 0.2);
}

.cluster-badge-blue {
  background: rgba(14, 116, 144, 0.1);
  color: var(--water-blue);
  border-color: rgba(14, 116, 144, 0.2);
}

.cluster-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.cluster-desc {
  font-size: 1.02rem;
  color: var(--text-body);
  max-width: 760px;
}

/* Triage Section */
.triage-section {
  background-color: #FFFFFF;
}

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

@media (min-width: 640px) {
  .triage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .triage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.triage-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.triage-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-copper);
  box-shadow: var(--shadow-card-hover);
  background: #FFFFFF;
}

.triage-card-top {
  margin-bottom: 1.25rem;
}

.triage-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--water-blue-light);
  color: var(--water-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.triage-card.triage-urgent .triage-icon-wrap {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}

.triage-symptom-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.triage-symptom-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}

.triage-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.triage-service-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-copper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.triage-service-link:hover {
  color: var(--brand-copper-hover);
  transform: translateX(3px);
}

.triage-cta-box {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: 0 16px 36px rgba(10, 27, 48, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.triage-cta-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.triage-cta-text p {
  font-size: 1rem;
  color: #CBD5E1;
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   LOCATIONS COLLECTION INDEX PAGE (/locations/)
   ========================================================================== */
.location-collection-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.location-collection-hero .hero-content-center {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.location-collection-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.location-collection-hero .hero-subhead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.location-collection-hero .hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.location-collection-hero .hero-trust-row {
  justify-content: center;
}

/* Region Clusters on Locations Index */
.regions-index-section {
  background-color: var(--bg-page);
}

.region-cluster-container {
  margin-bottom: 4rem;
}

.region-cluster-container:last-child {
  margin-bottom: 0;
}

.region-cluster-header {
  margin-bottom: 2rem;
}

.region-cluster-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(14, 116, 144, 0.1);
  color: var(--water-blue);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 0.65rem;
  border: 1px solid rgba(14, 116, 144, 0.2);
}

.region-cluster-badge-copper {
  background: rgba(217, 93, 30, 0.1);
  color: var(--brand-copper);
  border-color: rgba(217, 93, 30, 0.2);
}

.region-cluster-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.region-cluster-desc {
  font-size: 1.02rem;
  color: var(--text-body);
  max-width: 760px;
}

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

@media (min-width: 640px) {
  .neighborhood-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .neighborhood-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.neighborhood-hub-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.neighborhood-hub-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-copper);
  box-shadow: var(--shadow-card-hover);
}

.hub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.hub-city-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.hub-arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--brand-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: all var(--transition-fast);
}

.neighborhood-hub-card:hover .hub-arrow-icon {
  background: var(--brand-copper);
  color: #FFFFFF;
  transform: translateX(4px);
}

.hub-card-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.hub-zipcodes-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.85rem;
}

.hub-zip-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--bg-surface);
  color: var(--text-muted);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

/* Unlisted Area Banner */
.unlisted-area-section {
  background-color: #FFFFFF;
}

.unlisted-area-card {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: 0 16px 36px rgba(10, 27, 48, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.unlisted-area-content {
  max-width: 650px;
}

.unlisted-area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(251, 146, 60, 0.2);
  color: #FB923C;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.unlisted-area-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.unlisted-area-desc {
  font-size: 1.02rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin: 0;
}

/* Services Available in Every Area */
.services-availability-section {
  background-color: var(--bg-surface);
}

.services-availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-avail-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.service-avail-pill:hover {
  border-color: var(--brand-copper);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  color: var(--brand-copper);
}


/* ==========================================================================
   GAS LINE REPAIR SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* Hero Subtext Trust Badges */
.hero-cta-subtext {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.5rem;
}

.hero-subtext-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.subtext-separator {
  color: #CBD5E1;
  font-weight: 400;
}

/* Hero Urgent Safety Callout */
.hero-safety-alert {
  margin: 1.25rem 0 1.5rem;
  padding: 0.9rem 1.25rem;
  background: #FFFBEB;
  border: 1.5px solid #F59E0B;
  border-left: 4px solid #D97706;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.08);
}

.hero-safety-icon {
  color: #D97706;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.hero-safety-text {
  font-size: 0.94rem;
  line-height: 1.45;
  color: #78350F;
  margin: 0;
}

.hero-safety-text strong {
  color: #92400E;
  font-weight: 700;
}

.hero-safety-text a {
  color: #B45309;
  font-weight: 800;
  text-decoration: underline;
}

/* 3D Floating Flame Chip */
.hero-flame-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 28px -6px rgba(217, 93, 30, 0.22);
  z-index: 4;
  animation: floatSlow 5s infinite ease-in-out;
}

.hero-flame-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-copper);
  flex-shrink: 0;
}

.hero-flame-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-flame-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.hero-flame-sub {
  font-size: 0.76rem;
  color: var(--brand-copper-dark);
  font-weight: 600;
}

/* Section 3 Non-Marketing Safety Instruction Bar */
.safety-instruction-bar {
  margin-top: 2.25rem;
  padding: 1.25rem 1.5rem;
  background: #FEF2F2;
  border: 1.5px solid #F87171;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.1);
}

.safety-instruction-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FEE2E2;
  border: 2px solid #EF4444;
  color: #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-instruction-content {
  flex: 1;
}

.safety-instruction-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #991B1B;
  margin-bottom: 0.25rem;
}

.safety-instruction-text {
  font-size: 0.95rem;
  color: #7F1D1D;
  line-height: 1.5;
  margin: 0;
}

.safety-instruction-text a {
  color: #B91C1C;
  font-weight: 800;
  text-decoration: underline;
}

/* Layout symmetry helpers for 6-card and 4-item blocks */
@media (min-width: 900px) {
  .signs-grid-6 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 768px) {
  .takeaways-list-2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Service Area Cluster Towns - Clean Vertical Layout */
.area-cluster-card .cluster-towns-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 0.75rem;
  padding: 0;
  flex-grow: 1;
}

.area-cluster-card .cluster-towns-list .town-separator {
  display: none;
}

.area-cluster-card .town-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.area-cluster-card .town-item-link::before {
  content: "›";
  color: var(--brand-copper);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

/* ==========================================================================
   REPIPING SERVICE SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* 3D Floating Coiled Pipe Chip */
.hero-pipe-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 28px -6px rgba(2, 132, 199, 0.22);
  z-index: 4;
  animation: floatSlow 5s infinite ease-in-out;
}

.hero-pipe-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--water-blue);
  flex-shrink: 0;
}

.hero-pipe-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-pipe-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.hero-pipe-sub {
  font-size: 0.76rem;
  color: var(--water-blue-dark);
  font-weight: 600;
}

/* Section 4: Will This Tear Up My House? (Reassurance Section) */
.reassurance-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .reassurance-grid {
    grid-template-columns: 1.05fr 1fr;
  }
}

.reassurance-media {
  position: relative;
}

.reassurance-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 4px solid #FFFFFF;
  background: #FFFFFF;
}

.reassurance-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.reassurance-caption {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--brand-navy);
  color: #FFFFFF;
  padding: 1.15rem 1.35rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.reassurance-caption svg {
  color: #38BDF8;
  flex-shrink: 0;
  margin-top: 2px;
}

.reassurance-content h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  color: var(--brand-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.reassurance-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.reassurance-promises-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.promise-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: #ECFDF5;
  border: 1.5px solid #10B981;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

.promise-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.reassurance-cta-link {
  font-size: 0.95rem;
  color: var(--brand-copper);
  font-weight: 700;
  text-decoration: underline;
}



/* ==========================================================================
   EMERGENCY PLUMBING SPECIFIC COMPONENTS
   ========================================================================== */
/* Emergency Droplet & Wrench 3D Floating Chip */
.hero-emergency-chip {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 14px 28px rgba(15, 39, 68, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  animation: floatBadge 4.5s ease-in-out infinite;
}

.hero-emergency-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
  flex-shrink: 0;
}

.hero-emergency-meta {
  display: flex;
  flex-direction: column;
}

.hero-emergency-badge-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.2;
}

.hero-emergency-badge-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* 4-Column Triage Grid for Section 3 */
.triage-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .triage-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .triage-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Why LA Sees More Plumbing Emergencies (Section 4) */
.la-factors-section {
  position: relative;
  background: #FFFFFF;
}

.la-factors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .la-factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .la-factors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.factor-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.factor-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-copper);
  box-shadow: var(--shadow-card-hover);
}

.factor-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(217, 93, 30, 0.1);
  color: var(--brand-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.factor-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.factor-card-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Transparent Pricing / After Hours Card (Section 6) */
.after-hours-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  max-width: 960px;
  margin: 0 auto;
}

.after-hours-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .after-hours-content {
    grid-template-columns: 1.4fr 1fr;
  }
}

.after-hours-text h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.85rem;
}

.after-hours-text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.after-hours-perks-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.after-hours-perk {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.after-hours-perk svg {
  width: 18px;
  height: 18px;
  color: #10B981;
  flex-shrink: 0;
}

.after-hours-callout-box {
  background: var(--brand-navy);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 39, 68, 0.2);
}

.after-hours-callout-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(217, 93, 30, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.after-hours-callout-box h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  position: relative;
}

.after-hours-callout-box p {
  font-size: 0.9rem;
  color: #E2E8F0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  position: relative;
}

/* 3D Floating Emergency Droplet & Response Chip */
.hero-emergency-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 28px -6px rgba(239, 68, 68, 0.22);
  z-index: 4;
  animation: floatSlow 5s infinite ease-in-out;
}

.hero-emergency-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DC2626;
  flex-shrink: 0;
}

.hero-emergency-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-emergency-badge-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.hero-emergency-badge-sub {
  font-size: 0.76rem;
  color: #B91C1C;
  font-weight: 600;
}

@media (max-width: 768px) {
  .tech-spotlight-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tech-photo-col {
    max-width: 200px;
    margin: 0 auto;
  }
  .tech-stats-row {
    justify-content: center;
  }
}

/* ==========================================================================
   WATER HEATER SERVICE SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* 3D Floating Water Heater & Flame Chip */
.hero-heater-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 28px -6px rgba(217, 93, 30, 0.25);
  z-index: 4;
  animation: floatSlow 5s infinite ease-in-out;
}

.hero-heater-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-copper);
  flex-shrink: 0;
}

.hero-heater-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-heater-badge-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.hero-heater-badge-sub {
  font-size: 0.76rem;
  color: var(--brand-copper-dark);
  font-weight: 600;
}

/* 5-Item Diagnostic Signs Grid */
.signs-grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 600px) {
  .signs-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .signs-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.15rem;
  }
}

.signs-grid-5 .sign-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.6rem 1.25rem;
}

.signs-grid-5 .sign-card .sign-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.signs-grid-5 .sign-card .sign-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-navy);
  margin: 0;
}

.signs-grid-5 .sign-card .sign-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
  flex-grow: 1;
}

/* Tank or Tankless Comparison Section */
.tank-vs-tankless-section {
  background: var(--bg-surface-alt);
  position: relative;
}

.tank-vs-tankless-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .tank-vs-tankless-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tank-option-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tank-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.tank-option-card.highlight-card {
  border-color: var(--brand-copper);
  box-shadow: 0 0 0 1px var(--brand-copper), var(--shadow-card);
}

.tank-option-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background: var(--brand-navy-subtle);
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.tank-option-card.highlight-card .tank-option-badge {
  background: var(--brand-copper-light);
  color: var(--brand-copper-dark);
}

.tank-option-title {
  font-size: 1.45rem;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.tank-option-desc {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tank-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.tank-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.tank-spec-label {
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.tank-spec-val {
  color: var(--brand-navy);
  font-weight: 700;
  text-align: right;
}

.tank-option-card .btn-cta-primary {
  margin-top: auto;
}

/* Rebate & Cost Guidance Callout */
.rebate-callout-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-card);
  margin-top: 2rem;
}

.rebate-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .rebate-grid-2col {
    grid-template-columns: 1.35fr 1fr;
  }
}

.rebate-program-pills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.rebate-program-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-md);
}

.rebate-pill-icon {
  color: #059669;
  flex-shrink: 0;
  margin-top: 2px;
}

.rebate-pill-text {
  font-size: 0.92rem;
  color: #065F46;
  line-height: 1.45;
}

.rebate-pill-text strong {
  color: #064E3B;
  font-weight: 700;
}

/* ==========================================================================
   HYDRO JETTING SERVICE SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* 3D Floating Hydro Jet Water-Pressure Chip */
.hero-jet-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 28px -6px rgba(2, 132, 199, 0.25);
  z-index: 4;
  animation: floatSlow 5s infinite ease-in-out;
}

.hero-jet-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--water-blue);
  flex-shrink: 0;
}

.hero-jet-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-jet-badge-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.hero-jet-badge-sub {
  font-size: 0.76rem;
  color: var(--water-blue-dark);
  font-weight: 600;
}

/* Residential & Commercial Bifurcation Grid (Section 5) */
.jet-facility-section {
  background: var(--bg-surface-alt);
  position: relative;
}

.jet-facility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .jet-facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jet-facility-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.jet-facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.jet-facility-card.highlight-card {
  border-color: var(--water-blue);
  box-shadow: 0 0 0 1px var(--water-blue), var(--shadow-card);
}

.jet-facility-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background: var(--brand-navy-subtle);
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.jet-facility-card.highlight-card .jet-facility-badge {
  background: var(--water-blue-light);
  color: var(--water-blue-dark);
}

.jet-facility-title {
  font-size: 1.45rem;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.jet-facility-desc {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.jet-facility-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.jet-facility-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
}

.jet-facility-item svg {
  color: var(--brand-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.jet-facility-card.highlight-card .jet-facility-item svg {
  color: var(--water-blue);
}

.jet-facility-card .btn-cta-primary {
  margin-top: auto;
}

/* ==========================================================================
   SEWER & TRENCHLESS REPAIR SERVICE SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* 3D Floating Sewer Camera & Trenchless Chip */
.hero-sewer-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 28px -6px rgba(15, 39, 68, 0.22);
  z-index: 4;
  animation: floatSlow 5s infinite ease-in-out;
}

.hero-sewer-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D97706;
  flex-shrink: 0;
}

.hero-sewer-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-sewer-badge-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.hero-sewer-badge-sub {
  font-size: 0.76rem;
  color: var(--brand-copper-dark);
  font-weight: 600;
}

/* Section 4: We Look Before We Dig Diagnostic Card */
.camera-diagnostic-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-card);
  margin-top: 2rem;
}

.camera-diagnostic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .camera-diagnostic-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

/* Section 6: Why LA Sewer Lines Fail Grid */
.sewer-causes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .sewer-causes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sewer-cause-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.sewer-cause-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.sewer-cause-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.sewer-cause-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.sewer-cause-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
  flex-grow: 1;
}

/* ==========================================================================
   DRAIN CLEANING SERVICE SPECIFIC ENHANCEMENTS
   ========================================================================== */

/* 3D Floating Drain Swirl & Auger Chip */
.hero-drain-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 28px -6px rgba(2, 132, 199, 0.22);
  z-index: 4;
  animation: floatSlow 5s infinite ease-in-out;
}

.hero-drain-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--water-blue);
  flex-shrink: 0;
}

.hero-drain-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-drain-badge-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.hero-drain-badge-sub {
  font-size: 0.76rem;
  color: var(--water-blue-dark);
  font-weight: 600;
}

/* 3-Tier Triage Framework (Section 3) */
.triage-3tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .triage-3tier-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.triage-tier-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.triage-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.triage-tier-card.tier-urgent {
  border: 2px solid #EF4444;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
  background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 25%);
}

.triage-tier-card.tier-moderate {
  border: 1.5px solid #F59E0B;
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 25%);
}

.triage-tier-card.tier-normal {
  border: 1.5px solid #0284C7;
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 25%);
}

.triage-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.tier-urgent .triage-tier-badge {
  background: #FEE2E2;
  color: #B91C1C;
}

.tier-moderate .triage-tier-badge {
  background: #FEF3C7;
  color: #B45309;
}

.tier-normal .triage-tier-badge {
  background: #E0F2FE;
  color: #0369A1;
}

.triage-tier-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.triage-tier-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.triage-tier-triggers {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.triage-trigger-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.45;
}

.triage-trigger-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-urgent .triage-trigger-item svg {
  color: #DC2626;
}

.tier-moderate .triage-trigger-item svg {
  color: #D97706;
}

.tier-normal .triage-trigger-item svg {
  color: #0284C7;
}

/* 5-Item Drain Types Grid (Section 4) */
.drain-types-grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 600px) {
  .drain-types-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .drain-types-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.15rem;
  }
}

.drain-type-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.drain-type-card:hover {
  transform: translateY(-4px);
  border-color: var(--water-blue);
  box-shadow: var(--shadow-card-hover);
}

.drain-type-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.1);
  color: var(--water-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.drain-type-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.drain-type-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

/* Chemical Warning Section (Section 5) */
.chemical-warning-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-card);
  margin-top: 2rem;
}

.chemical-warning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .chemical-warning-grid {
    grid-template-columns: 1.35fr 1fr;
  }
}

.chemical-dangers-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chemical-danger-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.5;
}

.chemical-danger-item svg {
  color: #DC2626;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   LOCATION LANDING PAGE BLUEPRINT SPECIFIC STYLES
   ========================================================================== */

/* 10-Service Grid: 3-column balanced desktop layout with priority emergency card */
.location-10services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  perspective: 1200px;
}

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

@media (max-width: 640px) {
  .location-10services-grid {
    grid-template-columns: 1fr;
  }
}

/* Granular Location Coverage Layout */
.location-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .location-coverage-grid {
    grid-template-columns: 1fr;
  }
}

.coverage-cluster-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.coverage-cluster-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: #CBD5E1;
}

.coverage-cluster-card.active-cluster {
  border-color: rgba(217, 93, 30, 0.4);
  box-shadow: 0 10px 30px -5px rgba(217, 93, 30, 0.12);
}

.coverage-card-intro {
  font-size: 1rem;
  color: var(--text-body);
  margin: 0.85rem 0 1.5rem 0;
  line-height: 1.65;
}

.cluster-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.town-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  background: #FFFFFF;
  color: var(--brand-navy);
  transition: all var(--transition-fast);
}

.town-pill-subarea {
  background: rgba(15, 39, 68, 0.05);
  border-color: rgba(15, 39, 68, 0.12);
  color: var(--brand-navy);
  font-weight: 700;
}

.town-pill-subarea:hover {
  background: rgba(15, 39, 68, 0.1);
  transform: translateY(-2px);
}

.town-pill-link {
  background: rgba(2, 132, 199, 0.08);
  color: var(--water-blue-dark);
  font-weight: 700;
  border: 1px solid rgba(2, 132, 199, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.town-pill-link:hover {
  background: var(--water-blue);
  color: #ffffff;
  border-color: var(--water-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.coverage-streets-block {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px dashed var(--border-subtle);
}

.coverage-streets-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.coverage-cta-banner {
  background: linear-gradient(135deg, #0F2744 0%, #1A3E6D 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 39, 68, 0.25);
  position: relative;
  overflow: hidden;
}

.coverage-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-copper), transparent);
}

.coverage-cta-text h4 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.coverage-cta-text p {
  color: #CBD5E1;
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .coverage-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* Local Causal Mechanics Section */
.local-causal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .local-causal-grid {
    grid-template-columns: 1fr;
  }
}

.local-causal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.local-causal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-copper);
}

.causal-icon-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-copper) 0%, #C2410C 100%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 14px rgba(217, 93, 30, 0.3);
}

.causal-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.causal-card-lead {
  font-size: 0.98rem;
  color: var(--brand-copper);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.causal-card-body {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.local-causal-callout {
  background: #FFFFFF;
  border: 1.5px solid rgba(2, 132, 199, 0.35);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

.callout-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: var(--water-blue-light);
  border: 1px solid rgba(2, 132, 199, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--water-blue-dark);
  flex-shrink: 0;
}

.callout-icon-box svg {
  width: 28px;
  height: 28px;
}

.callout-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-navy);
  margin-bottom: 0.35rem;
}

.callout-content p {
  color: var(--text-body);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.65;
}

.callout-link {
  color: var(--water-blue-dark);
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.callout-link:hover {
  color: var(--brand-copper);
}

.local-fallback-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.fallback-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.fallback-sub {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.fallback-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Key Takeaways Card: 2-Column Desktop Grid */
.takeaways-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3.5rem 3rem 3.5rem;
  box-shadow: var(--shadow-card);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .takeaways-card {
    padding: 2.25rem 1.5rem;
  }
}

.takeaways-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.takeaways-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-top: 0.75rem;
}

.takeaways-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .takeaways-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.takeaways-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
}

.takeaway-check {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: #D1FAE5;
  color: #059669;
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.15);
}

/* Zip Code Targeting & Postal Coverage Section */
.zipcodes-section {
  position: relative;
}

.zipcode-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  max-width: 1140px;
  margin: 0 auto 2.5rem auto;
  gap: 2rem;
  justify-content: center;
}

.zipcode-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.zipcode-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-copper);
}

.zipcode-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.zipcode-badge {
  display: inline-flex;
  align-items: center;
  background: var(--brand-navy);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.4rem 0.95rem;
  gap: 0.5rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 10px rgba(15, 39, 68, 0.2);
}

.zip-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-copper);
  text-transform: uppercase;
}

.zip-code {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.zipcode-speed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success-green);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success-green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.zipcode-card-body {
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.zipcode-zone-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.zipcode-zone-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.zipcode-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.zipcode-services-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.zip-check {
  color: var(--brand-copper);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-zip-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
}

.zipcode-guarantee-box {
  background: #FFFFFF;
  border: 1.5px solid var(--brand-copper);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.zip-guarantee-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--brand-copper-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-copper);
  flex-shrink: 0;
}

.zip-guarantee-icon-box svg {
  width: 28px;
  height: 28px;
}

.zip-guarantee-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brand-navy);
  margin-bottom: 0.35rem;
}

.zip-guarantee-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .zipcode-guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }
}


/* ==========================================================================
   BLOG INDEX & INDIVIDUAL BLOG POST PAGES (/blog/ & /blog/[slug]/)
   ========================================================================== */

/* Blog Hero */
.blog-collection-hero {
  background: linear-gradient(180deg, #071322 0%, #0A1B30 100%);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.blog-collection-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(217, 93, 30, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(15, 39, 68, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
}

.blog-stat-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-stat-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-copper-light);
}

.blog-stat-lbl {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 600;
}

.blog-stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
  .blog-hero-stats {
    flex-direction: column;
    gap: 0.75rem;
    border-radius: var(--radius-lg);
    padding: 1rem;
    width: 100%;
  }
  .blog-stat-divider {
    display: none;
  }
}

/* Blog Grids */
.blog-featured-grid,
.blog-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .blog-featured-grid,
  .blog-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-featured-grid,
  .blog-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Card */
.blog-card {
  background: #0F2744;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.85rem 1.65rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 20px rgba(217, 93, 30, 0.15);
  background: #132F52;
}

.blog-card-featured {
  border-color: rgba(251, 146, 60, 0.3);
  background: linear-gradient(180deg, #132F52 0%, #0F2744 100%);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.blog-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.blog-cat-cost-pricing {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.blog-cat-signs-symptoms {
  background: rgba(245, 158, 11, 0.15);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.blog-cat-understanding-your-home {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.blog-cat-around-los-angeles {
  background: rgba(168, 85, 247, 0.15);
  color: #C084FC;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.blog-read-time {
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 600;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--brand-copper-light);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-copper-light);
  text-decoration: none;
  transition: all 0.2s;
}

.blog-read-more:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.blog-service-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-service-pill:hover {
  background: rgba(217, 93, 30, 0.15);
  color: var(--brand-copper-light);
  border-color: rgba(217, 93, 30, 0.3);
}

/* Filter Tabs */
.blog-filter-tabs-wrap {
  display: flex;
  justify-content: center;
}

.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(15, 39, 68, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .blog-filter-tabs {
    border-radius: var(--radius-lg);
  }
}

.blog-tab-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s;
}

.blog-tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.blog-tab-btn.active {
  background: var(--brand-copper);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(217, 93, 30, 0.3);
}

/* Section 5: This Isn't a Substitute for a Professional */
.blog-warning-card {
  background: linear-gradient(135deg, #182C4A 0%, #10213A 100%);
  border: 1.5px solid rgba(251, 146, 60, 0.4);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blog-warning-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(245, 158, 11, 0.15);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  flex-shrink: 0;
}

.blog-warning-icon {
  width: 28px;
  height: 28px;
}

.blog-warning-content {
  flex: 1;
  min-width: 280px;
}

.blog-warning-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.blog-warning-text {
  font-size: 0.98rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin: 0;
}

.blog-warning-action {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .blog-warning-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-warning-action {
    width: 100%;
  }
  .blog-warning-action .btn-cta-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Individual Blog Post Page */
.blog-post-hero {
  background: linear-gradient(180deg, #071322 0%, #0A1B30 100%);
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-meta-item {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 600;
}

.blog-header-bridge-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 116, 144, 0.15);
  border: 1px solid rgba(14, 116, 144, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: #CBD5E1;
}

.blog-bridge-link {
  color: var(--water-blue-light);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-bridge-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Article Layout Grid */
.blog-post-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .blog-post-layout-grid {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

/* Article Content & Typography */
.blog-prose {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-prose p {
  margin-bottom: 1.5rem;
}

.blog-prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-prose h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.blog-prose ul,
.blog-prose ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.blog-prose li {
  margin-bottom: 0.75rem;
}

.blog-prose strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* In-Article CTA Card */
.blog-cta-card {
  background: linear-gradient(135deg, #132F52 0%, #0F2744 100%);
  border: 1px solid rgba(251, 146, 60, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.blog-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.blog-cta-card p {
  font-size: 0.98rem;
  color: #CBD5E1;
  max-width: 550px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.blog-cta-card .btn-link-secondary {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-copper-light);
  text-decoration: none;
  transition: all 0.2s;
}

.blog-cta-card .btn-link-secondary:hover {
  color: #FFFFFF;
}

/* Comparison Table in Blog */
.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0F2744;
}

.blog-table th {
  background: #163860;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 0.9rem 1.15rem;
  text-align: left;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.blog-table td {
  padding: 0.9rem 1.15rem;
  color: #CBD5E1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-table tr:last-child td {
  border-bottom: none;
}

.blog-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Author Credentials Card */
.blog-author-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(15, 39, 68, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.blog-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-copper) 0%, var(--brand-copper-dark) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.blog-author-bio {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 90px;
}

.blog-sidebar-card {
  background: #0F2744;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.blog-sidebar-cta {
  background: linear-gradient(180deg, #132F52 0%, #0F2744 100%);
  border-color: rgba(251, 146, 60, 0.3);
}

.blog-sidebar-service-btn {
  display: block;
  text-align: center;
  background: rgba(14, 116, 144, 0.2);
  border: 1px solid rgba(14, 116, 144, 0.4);
  color: var(--water-blue-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.2s;
}

.blog-sidebar-service-btn:hover {
  background: var(--water-blue);
  color: #FFFFFF;
}

.blog-sidebar-loc-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar-loc-list a {
  color: #94A3B8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-sidebar-loc-list a:hover {
  color: var(--brand-copper-light);
}

/* ==========================================================================
   CONTACT PAGE STYLING (/contact/)
   ========================================================================== */

.contact-hero-section {
  background: var(--bg-surface-dark, #0A192F);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-section .hero-content-center {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-hero-section .hero-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
}

.contact-hero-section .hero-subhead {
  color: #CBD5E1;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

/* Section 3: Why We Don't Use a Contact Form */
.no-form-section {
  background: var(--bg-surface, #F8FAFC);
}

.no-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-2xl, 24px);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 12px 36px rgba(10, 25, 47, 0.06);
  position: relative;
}

.no-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.no-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 93, 30, 0.1);
  color: var(--brand-copper, #D95D1E);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full, 9999px);
  border: 1px solid rgba(217, 93, 30, 0.25);
  margin-bottom: 1rem;
}

.no-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin: 0;
}

.no-form-quote-box {
  background: linear-gradient(135deg, rgba(15, 39, 68, 0.04) 0%, rgba(217, 93, 30, 0.06) 100%);
  border-left: 4px solid var(--brand-copper, #D95D1E);
  border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 12px) 0;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.no-form-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--brand-navy, #0A192F);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.no-form-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .no-form-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.no-form-benefit-item {
  background: var(--bg-surface, #F8FAFC);
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.no-form-benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 93, 30, 0.4);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.6rem;
}

.benefit-text p {
  font-size: 0.92rem;
  color: var(--text-body, #475569);
  line-height: 1.55;
  margin: 0;
}

/* Section 4: Other Ways to Reach Us */
.contact-channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .contact-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-channels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-channel-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.contact-channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-channel-featured {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 100%);
  border: 2px solid var(--brand-copper, #D95D1E);
  box-shadow: 0 8px 24px rgba(217, 93, 30, 0.12);
}

.channel-card-badge {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-copper, #D95D1E);
  background: rgba(217, 93, 30, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full, 9999px);
  align-self: flex-start;
  margin-bottom: 1rem;
}

.channel-badge-neutral {
  color: #0369A1;
  background: #E0F2FE;
}

.channel-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg, 12px);
  background: linear-gradient(135deg, var(--brand-copper, #D95D1E) 0%, var(--brand-copper-dark, #9A3412) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.channel-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.channel-icon-email {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
}

.channel-icon-email svg {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
}

.channel-icon-location {
  background: linear-gradient(135deg, #0F2744 0%, #0A192F 100%);
}

.channel-icon-location svg {
  fill: none;
  stroke: #38BDF8;
  stroke-width: 2;
}

.channel-icon-hours {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.channel-icon-hours svg {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
}

.channel-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.25rem;
}

.channel-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted, #64748B);
  margin-bottom: 1rem;
}

.channel-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg, 12px);
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.phone-action-link {
  background: var(--brand-copper, #D95D1E);
  color: #FFFFFF;
}

.phone-action-link:hover {
  background: var(--brand-copper-dark, #B4460E);
  color: #FFFFFF;
  transform: translateX(2px);
}

.email-action-link {
  background: #F0F9FF;
  color: #0369A1;
  border: 1px solid #BAE6FD;
  font-size: 0.92rem;
  word-break: break-all;
}

.email-action-link:hover {
  background: #0284C7;
  color: #FFFFFF;
}

.channel-address-text {
  font-size: 0.92rem;
  color: var(--brand-navy, #0A192F);
  line-height: 1.45;
  margin-bottom: 1rem;
  background: #F8FAFC;
  padding: 0.75rem;
  border-radius: var(--radius-md, 8px);
  border: 1px solid #E2E8F0;
}

.channel-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.channel-hours-list li {
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  border-bottom: 1px dashed #E2E8F0;
  padding-bottom: 0.4rem;
}

.hours-day {
  color: var(--text-muted, #64748B);
  font-weight: 600;
}

.hours-time {
  color: var(--brand-navy, #0A192F);
  font-weight: 700;
}

.channel-note-box {
  background: #FFF8F5;
  border: 1px solid rgba(217, 93, 30, 0.2);
  border-radius: var(--radius-md, 8px);
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
  color: #7C2D12;
  line-height: 1.45;
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.channel-note-neutral {
  background: #F8FAFC;
  border-color: #E2E8F0;
  color: var(--text-body, #475569);
}

/* Contact Map Embed */
.contact-map-embed-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--brand-navy, #0A192F);
  color: #FFFFFF;
}

.contact-map-info-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.contact-map-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.15);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full, 9999px);
}

/* Section 5: Condensed Triage */
.contact-triage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .contact-triage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-triage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-triage-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.contact-triage-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-copper, #D95D1E);
  box-shadow: var(--shadow-card-hover, 0 8px 24px rgba(0, 0, 0, 0.08));
}

.triage-catalog-banner {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.catalog-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.catalog-banner-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brand-navy, #0A192F);
}

.catalog-banner-text span {
  font-size: 0.9rem;
  color: var(--text-body, #475569);
}

/* Section 6: Service Areas */
.contact-clusters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .contact-clusters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-clusters-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-cluster-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.5rem;
}

.cluster-card-badge {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  border-bottom: 2px solid var(--brand-copper, #D95D1E);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.cluster-city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cluster-city-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-body, #475569);
}

.city-dot {
  font-size: 0.85rem;
}

/* ==========================================================================
   ABOUT US PAGE (/about/) DEDICATED STYLES
   ========================================================================== */

/* Hero Section */
.about-hero-section {
  background: #FFFFFF;
  text-align: center;
  border-bottom: 1px solid var(--border-light, #E2E8F0);
}

/* Section 3: Our Story */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.about-story-text-col .lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--brand-navy, #0A192F);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.about-story-text-col p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-body, #475569);
  margin-bottom: 1.25rem;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .story-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.story-stat-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-lg, 12px);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--brand-copper, #D95D1E);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy, #0A192F);
  margin-top: 0.25rem;
}

.about-visual-card {
  position: relative;
  border-radius: var(--radius-2xl, 24px);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 25, 47, 0.12);
  border: 1px solid var(--border-card, #E2E8F0);
}

.about-visual-card .story-image {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.visual-badge-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(10, 25, 47, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl, 16px);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #FFFFFF;
}

.overlay-icon {
  font-size: 1.75rem;
}

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

.overlay-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #FFFFFF;
}

.overlay-text span {
  font-size: 0.82rem;
  color: #94A3B8;
}

/* Section 4: Meet The Team */
.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-team-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
  transition: all 0.2s ease;
}

.about-team-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-copper, #D95D1E);
  box-shadow: var(--shadow-card-hover, 0 8px 24px rgba(0, 0, 0, 0.08));
}

.team-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 1rem;
}

.team-avatar-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-lg, 12px);
  background: #FFF8F5;
  border: 1px solid rgba(217, 93, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.team-member-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.2rem;
}

.team-member-role {
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.team-member-cred {
  font-size: 0.78rem;
  color: var(--text-muted, #64748B);
  font-weight: 600;
}

.team-member-bio {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body, #475569);
  margin: 0;
}

/* Section 5: Operating Principles */
.about-principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .about-principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-principles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.principle-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
  transition: all 0.2s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-copper, #D95D1E);
  box-shadow: var(--shadow-card-hover, 0 8px 24px rgba(0, 0, 0, 0.08));
}

.principle-icon-wrap {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.principle-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.principle-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body, #475569);
  margin: 0;
}

/* Section 6: Licensing & Credentials */
.about-credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .about-credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-credentials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.credential-box {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
}

.credential-badge-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-copper, #D95D1E);
  background: #FFF8F5;
  border: 1px solid rgba(217, 93, 30, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full, 9999px);
  margin-bottom: 0.85rem;
}

.credential-icon-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.cred-icon {
  font-size: 1.4rem;
}

.credential-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin: 0;
  line-height: 1.3;
}

.credential-details {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-body, #475569);
  margin: 0;
}

.credentials-verification-banner {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl, 16px);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.verification-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 680px;
}

.verification-banner-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brand-navy, #0A192F);
}

.verification-banner-text span {
  font-size: 0.9rem;
  color: var(--text-body, #475569);
}

/* Section 7: Reviews Spotlight */
.about-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .about-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
}

.review-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-stars-row .star-rating {
  color: #F59E0B;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.review-service-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0284C7;
  background: #F0F9FF;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full, 9999px);
}

.review-quote-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--brand-navy, #0A192F);
  font-style: italic;
  margin: 0 0 1.25rem 0;
}

.review-author-meta {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #F1F5F9;
  padding-top: 0.85rem;
  font-size: 0.88rem;
}

.review-author-meta strong {
  color: var(--brand-navy, #0A192F);
}

.review-author-meta span {
  color: var(--text-muted, #64748B);
  font-size: 0.82rem;
}

/* Section 8: Jumps to Services & Locations */
.about-jumps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-jumps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-jump-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 2.25rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
  transition: all 0.2s ease;
}

.about-jump-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-copper, #D95D1E);
  box-shadow: var(--shadow-card-hover, 0 8px 24px rgba(0, 0, 0, 0.08));
}

.jump-card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.jump-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jump-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin: 0;
}

.jump-card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body, #475569);
  margin: 0;
}

/* ==========================================================================
   REVIEWS PAGE (/reviews/) DEDICATED STYLES
   ========================================================================== */

/* Hero Section */
.reviews-hero-section {
  background: #FFFFFF;
  text-align: center;
  border-bottom: 1px solid var(--border-light, #E2E8F0);
}

.reviews-hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #FFF8F5;
  border: 1px solid rgba(217, 93, 30, 0.25);
  border-radius: var(--radius-full, 9999px);
  padding: 0.6rem 1.25rem;
  margin: 1.25rem 0 1.75rem 0;
}

.rating-stars-large {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.rating-badge-text {
  font-size: 0.95rem;
  color: var(--brand-navy, #0A192F);
}

.rating-badge-text strong {
  color: var(--brand-copper, #D95D1E);
  font-weight: 800;
}

/* Section 3: Review Feed */
.feed-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feed-header-left {
  max-width: 600px;
}

.feed-header-left h2 {
  font-size: 2rem;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.5rem;
}

.feed-header-left p {
  font-size: 1rem;
  color: var(--text-body, #475569);
  margin: 0;
}

.feed-source-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-full, 9999px);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--brand-navy, #0A192F);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.source-badge .source-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  color: #FFFFFF;
}

.google-source-badge .source-icon {
  background: #4285F4;
}

.yelp-source-badge .source-icon {
  background: #D32323;
}

/* Category Filter Bar */
.reviews-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E2E8F0;
}

.filter-pill-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-full, 9999px);
  padding: 0.55rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-body, #475569);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.filter-pill-btn:hover {
  border-color: var(--brand-copper, #D95D1E);
  color: var(--brand-copper, #D95D1E);
  transform: translateY(-1px);
}

.filter-pill-btn.active {
  background: var(--brand-navy, #0A192F);
  border-color: var(--brand-navy, #0A192F);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
}

.filter-pill-btn .pill-count {
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full, 9999px);
}

.filter-pill-btn.active .pill-count {
  background: var(--brand-copper, #D95D1E);
  color: #FFFFFF;
}

/* Review Cards Grid */
.reviews-feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .reviews-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .reviews-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feed-review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
  transition: all 0.2s ease;
}

.feed-review-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-copper, #D95D1E);
  box-shadow: var(--shadow-card-hover, 0 8px 24px rgba(0, 0, 0, 0.08));
}

.feed-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.feed-card-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.source-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full, 9999px);
}

.source-google {
  background: #E8F0FE;
  color: #1967D2;
}

.source-yelp {
  background: #FEECEB;
  color: #D32323;
}

.review-date-text {
  font-size: 0.78rem;
  color: var(--text-muted, #94A3B8);
}

.review-stars-feed {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.feed-service-tag-row {
  margin-bottom: 0.85rem;
}

.service-pill-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-copper, #D95D1E);
  background: #FFF8F5;
  border: 1px solid rgba(217, 93, 30, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full, 9999px);
}

.feed-review-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin: 0 0 0.75rem 0;
  line-height: 1.35;
}

.feed-review-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body, #475569);
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.feed-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #F1F5F9;
  padding-top: 1rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-navy, #0A192F) 0%, #1E3A8A 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
}

.author-loc {
  font-size: 0.8rem;
  color: var(--text-muted, #64748B);
}

/* Section 4: Why Reviews Matter */
.accountability-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-2xl, 24px);
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(10, 25, 47, 0.05);
}

.accountability-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
}

.accountability-header h2 {
  font-size: 2.15rem;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 1rem;
}

.accountability-quote {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--brand-copper, #D95D1E);
  font-style: italic;
  font-weight: 600;
}

.accountability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .accountability-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.accountability-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accountability-item .item-icon {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.accountability-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin: 0;
}

.accountability-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body, #475569);
  margin: 0;
}

/* Section 5: Leave a Review */
.leave-review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-2xl, 24px);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card, 0 4px 16px rgba(0, 0, 0, 0.04));
}

.leave-review-content {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.google-g-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.leave-review-content h2 {
  font-size: 2.15rem;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.75rem;
}

.leave-review-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body, #475569);
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   PRIVACY POLICY (/privacy-policy/) LEGAL PAGE STYLES
   ========================================================================== */

.legal-hero-section {
  background: #FFFFFF;
  text-align: center;
  border-bottom: 1px solid var(--border-light, #E2E8F0);
  padding: 3.5rem 0 2.5rem 0;
}

.legal-header-center {
  max-width: 780px;
  margin: 0 auto;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-navy, #0A192F);
  margin: 0.5rem 0;
}

.legal-effective-date {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-copper, #D95D1E);
  margin-bottom: 1.25rem;
}

.legal-intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body, #475569);
  margin: 0;
}

.legal-content-section {
  padding: 3rem 0 5rem 0;
}

.legal-document-card {
  max-width: 860px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-card, #E2E8F0);
  border-radius: var(--radius-2xl, 24px);
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.legal-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  border-radius: var(--radius-xl, 16px);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.notice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.notice-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.92rem;
  color: #0369A1;
  line-height: 1.55;
}

.notice-text strong {
  color: #0C4A6E;
  font-size: 0.98rem;
}

.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #F1F5F9;
}

.legal-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 1rem;
}

.legal-block h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin: 1.25rem 0 0.5rem 0;
}

.legal-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body, #475569);
  margin-bottom: 1rem;
}

.legal-block ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-block li {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body, #475569);
}

.legal-contact-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl, 16px);
  padding: 1.5rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-card-row {
  display: flex;
  flex-direction: column;
  font-size: 0.92rem;
  gap: 0.15rem;
}

@media (min-width: 640px) {
  .contact-card-row {
    flex-direction: row;
    gap: 0.5rem;
  }
}

.contact-card-row strong {
  min-width: 140px;
  color: var(--brand-navy, #0A192F);
}

.contact-card-row a {
  color: var(--brand-copper, #D95D1E);
  font-weight: 700;
  text-decoration: none;
}

.contact-card-row a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Keyboard Focus States */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--brand-copper);
  outline-offset: 3px;
}

/* ==========================================================================
   404 ERROR PAGE STYLES
   ========================================================================== */
.error-404-section {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  text-align: center;
}

.error-404-card {
  max-width: 760px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-2xl, 24px);
  padding: 3rem 2rem;
  box-shadow: 0 12px 36px rgba(10, 25, 47, 0.06);
}

.error-404-badge {
  display: inline-block;
  background: rgba(217, 93, 30, 0.12);
  color: var(--brand-copper, #D95D1E);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full, 9999px);
  margin-bottom: 1.25rem;
}

.error-icon-graphic {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.error-subhead {
  font-size: 1.15rem;
  color: var(--text-body, #475569);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.error-cta-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.error-cta-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--brand-navy, #0A192F);
  margin: 0;
}

.error-cta-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
}

.error-search-wrap {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
}

.search-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.5rem;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  color: #94A3B8;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.85rem;
  font-size: 0.98rem;
  font-family: inherit;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-lg, 12px);
  background: #FFFFFF;
  color: var(--brand-navy, #0A192F);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-copper, #D95D1E);
  box-shadow: 0 0 0 3px rgba(217, 93, 30, 0.15);
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid #F1F5F9;
  text-decoration: none;
  transition: background 0.15s;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #F8FAFC;
}

.search-item-cat {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-copper, #D95D1E);
  margin-bottom: 0.15rem;
}

.search-item-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--brand-navy, #0A192F);
}

.search-item-desc {
  font-size: 0.84rem;
  color: #64748B;
  margin-top: 0.15rem;
}

.search-no-results {
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #64748B;
  text-align: center;
}

/* Quick links cards */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl, 16px);
  padding: 1.35rem 1.25rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.quick-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.08);
  border-color: var(--brand-copper, #D95D1E);
}

.quick-link-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.quick-link-body {
  flex: 1;
}

.quick-link-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.2rem;
}

.quick-link-desc {
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.4;
  margin: 0;
}

.quick-link-arrow {
  color: var(--brand-copper, #D95D1E);
  font-weight: 800;
  font-size: 1.25rem;
  transition: transform 0.2s;
}

.quick-link-card:hover .quick-link-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   OUR WORK & PORTFOLIO GALLERY STYLES
   ========================================================================== */
.portfolio-hero-section {
  padding: 4.5rem 0 3.5rem;
  background: #FFFFFF;
}

.portfolio-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0 2.5rem;
}

.portfolio-tab-btn {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: var(--brand-navy, #0A192F);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.portfolio-tab-btn:hover {
  border-color: var(--brand-copper, #D95D1E);
  color: var(--brand-copper, #D95D1E);
}

.portfolio-tab-btn.active {
  background: var(--brand-navy, #0A192F);
  border-color: var(--brand-navy, #0A192F);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10, 25, 47, 0.09);
}

.portfolio-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0A192F;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.04);
}

.portfolio-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 25, 47, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full, 9999px);
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.portfolio-card-summary {
  font-size: 0.9rem;
  color: var(--text-body, #475569);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.portfolio-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid #F1F5F9;
  padding-top: 0.85rem;
}

.portfolio-card-bullets li {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
}

/* Before & After Grid */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 860px) {
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.before-after-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl, 16px);
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.04);
}

.ba-header {
  margin-bottom: 1.25rem;
}

.ba-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.25rem;
}

.ba-loc {
  font-size: 0.84rem;
  font-weight: 600;
  color: #64748B;
}

.ba-comparison-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 600px) {
  .ba-comparison-row {
    grid-template-columns: 1fr 1fr;
  }
}

.ba-pane {
  border-radius: var(--radius-lg, 12px);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
}

.ba-before {
  background: #FFF5F5;
  border: 1px solid #FED7D7;
}

.ba-after {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.ba-pane-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.ba-before .ba-pane-label {
  color: #C53030;
}

.ba-after .ba-pane-label {
  color: #16A34A;
}

.ba-pane-text {
  font-size: 0.86rem;
  color: #334155;
  line-height: 1.5;
  margin: 0;
}

.ba-caption {
  font-size: 0.88rem;
  color: var(--brand-navy, #0A192F);
  background: #F8FAFC;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md, 8px);
  border-left: 3px solid var(--brand-copper, #D95D1E);
}

/* Behind the Scenes Steps */
.behind-scenes-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .behind-scenes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .behind-scenes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.behind-step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.behind-step-media {
  position: relative;
  height: 170px;
  background: #0A192F;
}

.behind-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behind-step-number {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: var(--brand-navy, #0A192F);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-md, 6px);
}

.behind-step-body {
  padding: 1.25rem;
  flex: 1;
}

.behind-step-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--brand-navy, #0A192F);
  margin-bottom: 0.5rem;
}

.behind-step-desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Portfolio Reviews */
.portfolio-reviews-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .portfolio-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reviews-more-cta {
  text-align: center;
  margin-top: 2.25rem;
}


