﻿/* ==========================================================================
   HYDROHEAT PRO - MODERN WATER HEATER LANDING PAGE THEME
   Palette: Deep Obsidian (#090E17) + Electric Cyan (#00D2FF) + Flame Amber (#FF5E36)
   Typography: Plus Jakarta Sans & Inter
   ========================================================================== */

:root {
  /* Dark tones */
  --obsidian: #090e17;
  --navy-deep: #0f1a2e;
  --navy-surface: #16243d;
  --navy-card: #1d2e4d;
  --navy-border: rgba(0, 210, 255, 0.18);

  /* Primary Brand Accents */
  --cyan: #00d2ff;
  --cyan-dark: #0099b8;
  --cyan-light: #e0f8ff;
  --cyan-glow: rgba(0, 210, 255, 0.35);

  /* Warm Heat & Emergency Callout */
  --flame: #ff5e36;
  --flame-dark: #e0431b;
  --flame-light: #fff1ee;
  --flame-glow: rgba(255, 94, 54, 0.4);
  --amber-gold: #ffb703;

  /* Neutral Light Surfaces */
  --surface-white: #ffffff;
  --surface-light: #f8fafc;
  --surface-muted: #f1f5f9;
  --line-light: #e2e8f0;
  --line-strong: #cbd5e1;

  /* Typography Colors */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-cyan: #00d2ff;

  /* Elevation & Borders */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  --shadow-sm: 0 2px 8px rgba(9, 14, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(9, 14, 23, 0.1);
  --shadow-lg: 0 20px 40px rgba(9, 14, 23, 0.14);
  --shadow-glow-cyan: 0 0 30px rgba(0, 210, 255, 0.25);
  --shadow-glow-flame: 0 0 28px rgba(255, 94, 54, 0.32);

  /* Fonts */
  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-w: 1240px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--surface-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Utilities & Custom Elements */
.text-cyan { color: var(--cyan) !important; }
.text-flame { color: var(--flame) !important; }
.text-amber { color: var(--amber-gold) !important; }
.text-white { color: #ffffff !important; }

/* Pulse Indicator */
.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-head);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--flame);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 94, 54, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 94, 54, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 94, 54, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 94, 54, 0); }
}

/* ==========================================================================
   TOP ANNOUNCEMENT / UTILITY BAR
   ========================================================================== */
.utility-bar {
  background: var(--obsidian);
  color: #d1d5db;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.utility-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility-item svg {
  color: var(--cyan);
  width: 14px;
  height: 14px;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-highlight {
  background: rgba(255, 94, 54, 0.15);
  border: 1px solid rgba(255, 94, 54, 0.3);
  color: #ff9175;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ==========================================================================
   NAVIGATION / HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 26, 46, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 210, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--flame) 0%, var(--cyan) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 210, 255, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-name span {
  color: var(--cyan);
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--flame));
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--flame) 0%, var(--flame-dark) 100%);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(255, 94, 54, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 94, 54, 0.5);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu-drawer {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(0, 210, 255, 0.15);
  padding: 20px 24px 28px;
}

.mobile-menu-drawer.active {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.mobile-nav-links a {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   BUTTONS & ACTION STYLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--flame) 0%, #ff3b10 100%);
  color: #ffffff;
  padding: 16px 32px;
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(255, 94, 54, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 94, 54, 0.52);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(0, 210, 255, 0.12);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  padding: 16px 28px;
  font-size: 1.02rem;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--cyan);
  color: var(--obsidian);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 210, 255, 0.35);
}

.btn-dark {
  background: var(--obsidian);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(9, 14, 23, 0.2);
}

.btn-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(0, 210, 255, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(255, 94, 54, 0.12) 0%, transparent 40%),
              linear-gradient(180deg, var(--navy-deep) 0%, var(--obsidian) 100%);
  color: #ffffff;
  padding: 70px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 210, 255, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin: 18px 0 20px;
  letter-spacing: -0.03em;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .flame-text {
  color: var(--flame);
}

.hero-desc {
  font-size: 1.18rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 500;
}

.trust-badge-icon {
  width: 26px;
  height: 26px;
  background: rgba(0, 210, 255, 0.15);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Floating Hero Diagnostic Card */
.hero-card-wrapper {
  position: relative;
  z-index: 2;
}

.hero-diagnostic-card {
  background: rgba(22, 36, 61, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(0, 210, 255, 0.15);
  position: relative;
}

.diagnostic-badge-top {
  position: absolute;
  top: -18px;
  right: 28px;
  background: linear-gradient(135deg, var(--flame) 0%, var(--flame-dark) 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 18px rgba(255, 94, 54, 0.4);
}

.card-heading {
  font-size: 1.45rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.card-subtext {
  font-size: 0.92rem;
  color: #94a3b8;
  margin-bottom: 22px;
}

.trouble-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(15, 26, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #f1f5f9;
  transition: var(--transition);
}

.checklist-item:hover {
  border-color: var(--cyan);
  background: rgba(0, 210, 255, 0.08);
}

.check-icon {
  color: var(--flame);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-phone-banner {
  background: linear-gradient(135deg, var(--flame) 0%, #d43610 100%);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  display: block;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 94, 54, 0.35);
  transition: var(--transition);
}

.card-phone-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 94, 54, 0.5);
  color: #ffffff;
}

.card-phone-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.card-phone-number {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

/* ==========================================================================
   STAT STRIP
   ========================================================================== */
.stats-strip {
  background: var(--surface-white);
  border-bottom: 1px solid var(--line-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-box {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--line-light);
  transition: var(--transition);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box:hover {
  background: var(--surface-light);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1;
}

.stat-number span {
  color: var(--flame);
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ==========================================================================
   EMERGENCY TRIAGE / RAPID RESPONSE SECTION
   ========================================================================== */
.emergency-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-surface) 100%);
  color: #ffffff;
  padding: 85px 0;
  position: relative;
}

.section-tagline {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  display: block;
  margin-bottom: 12px;
}

.section-heading-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
}

.section-heading-center h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: #ffffff;
  margin-bottom: 16px;
}

.section-heading-center p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.triage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 45px;
}

.triage-card {
  background: rgba(15, 26, 46, 0.8);
  border: 1.5px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.triage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--flame), var(--cyan));
  opacity: 0;
  transition: var(--transition);
}

.triage-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 210, 255, 0.2);
}

.triage-card:hover::before {
  opacity: 1;
}

.triage-icon-wrap {
  width: 58px;
  height: 58px;
  background: rgba(0, 210, 255, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.triage-card:hover .triage-icon-wrap {
  background: var(--cyan);
  color: var(--obsidian);
  transform: scale(1.08);
}

.triage-card h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.triage-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
}

.emergency-cta-box {
  background: linear-gradient(135deg, rgba(255, 94, 54, 0.15) 0%, rgba(0, 210, 255, 0.12) 100%);
  border: 1.5px solid rgba(255, 94, 54, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-box-text h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-box-text p {
  color: #cbd5e1;
  font-size: 0.98rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background: var(--surface-light);
  padding: 95px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-dark);
}

.service-icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-surface) 100%);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--flame) 0%, var(--cyan) 100%);
  color: #ffffff;
  transform: rotate(4deg);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  margin-bottom: 22px;
}

.service-feature-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-feature-point svg {
  color: var(--cyan-dark);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.service-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--cyan-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--flame);
  gap: 10px;
}

/* ==========================================================================
   WHY CHOOSE US / VALUE PILLARS
   ========================================================================== */
.why-section {
  background: var(--surface-white);
  padding: 95px 0;
  border-top: 1px solid var(--line-light);
}

.why-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.why-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy-deep);
  margin-bottom: 18px;
}

.why-left p {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 30px;
  line-height: 1.7;
}

.why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-pillar-card {
  background: var(--surface-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.why-pillar-card:hover {
  background: var(--surface-white);
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--cyan-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-pillar-card h3 {
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.why-pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.brand-trust-box {
  background: var(--navy-deep);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.brand-trust-box::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.brand-trust-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.brand-trust-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.brand-badges-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.brand-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: #f1f5f9;
}

.brand-badge-item svg {
  color: var(--flame);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   4-STEP PROCESS TIMELINE
   ========================================================================== */
.process-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--obsidian) 100%);
  color: #ffffff;
  padding: 95px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step-card {
  background: rgba(22, 36, 61, 0.7);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  background: rgba(22, 36, 61, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number-tag {
  position: absolute;
  top: -15px;
  left: 24px;
  background: linear-gradient(135deg, var(--flame) 0%, #ff3b10 100%);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(255, 94, 54, 0.4);
}

.process-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 210, 255, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  margin-top: 8px;
}

.process-step-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.process-step-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ==========================================================================
   TANK VS TANKLESS COMPARISON SECTION
   ========================================================================== */
.compare-section {
  background: var(--surface-light);
  padding: 95px 0;
}

.compare-table-wrapper {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.compare-table th {
  background: var(--navy-deep);
  color: #ffffff;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
}

.compare-table th.tankless-th {
  background: linear-gradient(135deg, var(--navy-surface) 0%, #1a335a 100%);
  color: var(--cyan);
  border-left: 2px solid var(--cyan);
}

.compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.95rem;
  color: var(--text-body);
}

.compare-table tr:nth-child(even) {
  background: var(--surface-light);
}

.compare-table tr:hover {
  background: #f0f9ff;
}

.compare-feature-title {
  font-weight: 700;
  color: var(--navy-deep);
}

/* ==========================================================================
   SERVICE AREAS & MAP SECTION
   ========================================================================== */
.areas-section {
  background: var(--surface-white);
  padding: 95px 0;
  border-top: 1px solid var(--line-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: stretch;
}

.areas-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  color: var(--navy-deep);
  margin-bottom: 16px;
}

.areas-info p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.locations-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-light);
  border: 1px solid var(--line-light);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-deep);
  transition: var(--transition);
}

.location-pill:hover {
  border-color: var(--cyan);
  background: #e0f8ff;
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.location-pill svg {
  color: var(--flame);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  min-height: 400px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ==========================================================================
   FAQ SECTION (UNFOLDED / ACCORDION READY)
   ========================================================================== */
.faq-section {
  background: var(--surface-light);
  padding: 95px 0;
}

.faq-container-narrow {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-card {
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--cyan-dark);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-card:hover {
  border-left-color: var(--flame);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.faq-question svg {
  color: var(--flame);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.faq-answer {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  padding-left: 32px;
}

/* ==========================================================================
   MID & BOTTOM MEGA CTA SECTION
   ========================================================================== */
.mega-cta-section {
  background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.18) 0%, transparent 60%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--obsidian) 100%);
  color: #ffffff;
  padding: 85px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 210, 255, 0.2);
}

.mega-cta-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mega-cta-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #ffffff;
  margin-bottom: 14px;
}

.mega-cta-content p {
  color: #cbd5e1;
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.mega-phone-display {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--flame);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-shadow: 0 0 35px rgba(255, 94, 54, 0.45);
  transition: var(--transition);
}

.mega-phone-display:hover {
  transform: scale(1.04);
  color: #ffffff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--obsidian);
  color: #94a3b8;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* ==========================================================================
   STICKY MOBILE CALL BAR (< 768px)
   ========================================================================== */
.mobile-call-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--flame) 0%, #d43610 100%);
  padding: 14px 18px;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.35);
}

.mobile-call-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .triage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px; /* offset for sticky mobile bar */
  }
  .desktop-nav,
  .header-cta-group .header-phone-btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .utility-bar {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box:nth-child(2) {
    border-right: none;
  }
  .stat-box {
    border-bottom: 1px solid var(--line-light);
  }
  .services-grid,
  .triage-grid,
  .process-grid,
  .why-pillars-grid,
  .locations-pill-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mobile-call-sticky {
    display: block;
  }
  .emergency-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   SERVICE PAGE TEMPLATE SPECIFIC STYLES
   ========================================================================== */

/* Breadcrumbs */
.breadcrumb-bar {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
}

.breadcrumb-list a {
  color: #cbd5e1;
  font-weight: 500;
  transition: var(--transition);
}

.breadcrumb-list a:hover {
  color: var(--cyan);
}

.breadcrumb-sep {
  color: #64748b;
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--cyan);
  font-weight: 600;
}

/* Service Hero */
.service-hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.15) 0%, transparent 45%),
              radial-gradient(circle at 20% 80%, rgba(255, 94, 54, 0.12) 0%, transparent 40%),
              linear-gradient(180deg, var(--navy-deep) 0%, var(--obsidian) 100%);
  color: #ffffff;
  padding: 60px 0 75px;
  border-bottom: 1px solid rgba(0, 210, 255, 0.12);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 45px;
  align-items: center;
}

.service-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 16px 0 18px;
  letter-spacing: -0.025em;
}

.service-hero-desc {
  font-size: 1.12rem;
  color: #cbd5e1;
  line-height: 1.68;
  margin-bottom: 30px;
}

/* 4-Col Service Meta Specs Strip */
.service-meta-strip {
  background: var(--obsidian);
  border-bottom: 1px solid rgba(0, 210, 255, 0.2);
  padding: 22px 0;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
}

.service-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-meta-item:last-child {
  border-right: none;
}

.meta-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.meta-info-label {
  font-size: 0.74rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.meta-info-value {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 2px;
}

/* Service Scope & Included Items */
.scope-section {
  background: var(--surface-white);
  padding: 90px 0;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.scope-card {
  background: var(--surface-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.scope-card:hover {
  background: var(--surface-white);
  border-color: var(--cyan-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.scope-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-surface) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: var(--transition);
}

.scope-card:hover .scope-card-icon {
  background: linear-gradient(135deg, var(--flame) 0%, var(--cyan) 100%);
  color: #ffffff;
}

.scope-card h3 {
  font-size: 1.22rem;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.scope-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  flex-grow: 1;
}

/* Service Callout Box */
.svc-advisory-box {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-surface) 100%);
  color: #ffffff;
  border-left: 4px solid var(--flame);
  border-radius: var(--radius-md);
  padding: 30px 34px;
  margin: 50px 0;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.advisory-icon {
  color: var(--flame);
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.advisory-text h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.advisory-text p {
  font-size: 0.96rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Vertical Numbered Step List */
.numbered-steps-section {
  background: var(--surface-light);
  padding: 90px 0;
  border-top: 1px solid var(--line-light);
}

.steps-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 45px auto 0;
}

.step-row-card {
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-row-card:hover {
  transform: translateX(6px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.step-circle-badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--flame) 0%, #ff3b10 100%);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(255, 94, 54, 0.35);
}

.step-row-content h3 {
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.step-row-content p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.62;
  margin-bottom: 0;
}

/* What We Handle Tag Cloud */
.handle-tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.handle-tag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-deep);
  transition: var(--transition);
}

.handle-tag-item:hover {
  border-color: var(--cyan);
  background: #e0f8ff;
}

.handle-tag-item svg {
  color: var(--flame);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
  }
  .service-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-meta-item:nth-child(2) {
    border-right: none;
  }
  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .handle-tag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-meta-grid {
    grid-template-columns: 1fr;
  }
  .service-meta-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .scope-grid {
    grid-template-columns: 1fr;
  }
  .step-row-card {
    flex-direction: column;
    padding: 24px;
  }
  .handle-tag-grid {
    grid-template-columns: 1fr;
  }
  .svc-advisory-box {
    flex-direction: column;
  }
}

/* ==========================================================================
   TEMPLATE 2: EMERGENCY REPAIR & DIAGNOSTIC UNIQUE STYLES
   ========================================================================== */

/* Symptom Triage Matrix */
.triage-matrix-wrapper {
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  margin-top: 36px;
}

.triage-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.triage-matrix-table th {
  background: var(--navy-deep);
  color: #ffffff;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 2px solid var(--cyan);
}

.triage-matrix-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.94rem;
  color: var(--text-body);
  vertical-align: middle;
}

.triage-matrix-table tr:hover {
  background: #f0f9ff;
}

.symptom-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 94, 54, 0.12);
  color: var(--flame-dark);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--cyan-dark);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}

/* 30-Point Inspection Audit Cards */
.audit-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.audit-card {
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.audit-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.audit-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
}

.audit-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--cyan-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audit-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.audit-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audit-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-body);
}

.audit-check-item svg {
  color: var(--cyan-dark);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Repair vs Replace Decision Split Card */
.decision-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.decision-card {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
}

.decision-card.repair {
  background: var(--surface-white);
  border: 2px solid var(--cyan-dark);
  box-shadow: var(--shadow-sm);
}

.decision-card.replace {
  background: var(--navy-deep);
  color: #ffffff;
  border: 2px solid var(--flame);
  box-shadow: var(--shadow-md);
}

.decision-card-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.decision-card.repair .decision-card-badge {
  background: rgba(0, 210, 255, 0.15);
  color: var(--cyan-dark);
}

.decision-card.replace .decision-card-badge {
  background: rgba(255, 94, 54, 0.2);
  color: var(--flame);
}

.decision-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.decision-card.repair h3 { color: var(--navy-deep); }
.decision-card.replace h3 { color: #ffffff; }

.decision-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.decision-card.replace p { color: #cbd5e1; }

.decision-points-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.decision-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.decision-card.replace .decision-point-item { color: #f1f5f9; }

.decision-point-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.decision-card.repair .decision-point-item svg { color: var(--cyan-dark); }
.decision-card.replace .decision-point-item svg { color: var(--flame); }


/* ==========================================================================
   TEMPLATE 3: MAINTENANCE, DESCALING & FLUSH UNIQUE STYLES
   ========================================================================== */

/* 3-Tier Maintenance Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
  align-items: stretch;
}

.plan-card {
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card.featured {
  border: 2px solid var(--cyan);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 210, 255, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f0faff 100%);
}

.plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--flame) 0%, #ff3b10 100%);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(255, 94, 54, 0.35);
  white-space: nowrap;
}

.plan-title {
  font-size: 1.35rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  min-height: 44px;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line-light);
  padding-top: 22px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.plan-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.plan-feature-row svg {
  color: var(--cyan-dark);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Hard Water Impact Degradation Strip */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.impact-stat-card {
  background: var(--surface-white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.impact-stat-card:hover {
  border-color: var(--flame);
  transform: translateY(-4px);
}

.impact-stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--flame);
  line-height: 1;
  margin-bottom: 6px;
}

.impact-stat-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.impact-stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Anode Rod Anatomy Breakdown */
.anode-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.anode-info-card {
  background: var(--surface-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.anode-info-card h3 {
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.anode-info-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}


/* Responsive Overrides */
@media (max-width: 1024px) {
  .audit-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .decision-split-grid {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured {
    transform: none;
  }
  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .anode-split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .audit-category-grid {
    grid-template-columns: 1fr;
  }
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   ENHANCED COMPONENTS: COMPARISON TABLE, TESTIMONIALS, MAP EMBED, ABOUT PAGE
   ========================================================================== */

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
  margin-top: 32px;
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th, 
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: var(--navy-deep);
  color: var(--surface-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table th:first-child {
  border-top-left-radius: var(--radius-lg);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--radius-lg);
}

.comparison-table tr:hover {
  background: rgba(0, 210, 255, 0.04);
}

.table-highlight-col {
  background: rgba(0, 210, 255, 0.07);
  font-weight: 600;
  color: var(--navy-deep);
}

.badge-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
  font-weight: 700;
}

.badge-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ef4444;
  font-weight: 600;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.testimonial-card {
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--aqua);
}

.stars-row {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--aqua) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.author-meta h4 {
  font-size: 0.95rem;
  color: var(--navy-deep);
  margin-bottom: 2px;
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Map Embed Section */
.map-embed-section {
  padding: 60px 0 30px;
  background: var(--surface-light);
}

.map-card-wrapper {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-header-bar {
  padding: 18px 24px;
  background: var(--navy-deep);
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.map-header-bar h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin: 0;
}

.map-iframe-container {
  width: 100%;
  height: 380px;
  border: none;
}

/* About Page Persona & Stats */
.persona-bio-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.persona-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.persona-stat-box {
  background: var(--surface-light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border-left: 4px solid var(--aqua);
}

.persona-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.persona-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Fix for unconstrained SVGs */
svg {
    max-width: 100%;
}
.prose-feature-item svg,
.badge-check svg,
.icon-box svg,
ul.check-list svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.testimonial-card svg {
    width: 20px;
    height: 20px;
}

.utility-item svg,
.geo-tag-pill svg,
.contact-item svg,
.info-card-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.check-icon svg,
.footer-contact svg,
.phone-cta svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Custom Added Sections CSS */
.section {
    padding: 95px 0;
}
.section .section-heading-center h2 {
    color: var(--navy-deep) !important;
}
.section .section-heading-center p {
    color: var(--text-body) !important;
}
