/* ============================================================
   TITAN PLUMBING & ROOFING — Premium Stylesheet
   ============================================================ */

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

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --charcoal:    #1C2333;
  --charcoal-2:  #232B3E;
  --charcoal-3:  #2A3347;
  --blue:        #1565C0;
  --blue-light:  #1976D2;
  --blue-bright: #2196F3;
  --silver:      #C0C8D4;
  --silver-dark: #8B96A8;
  --white:       #ffffff;
  --accent:      #FFA726;
  --accent-dark: #E65100;
  --text-light:  #E8ECF0;
  --text-muted:  #8B96A8;
  --shadow-blue: rgba(21,101,192,0.35);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  0.3s ease;
}

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

/* ── Typography Helpers ───────────────────────────────────── */
.bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }
.raleway { font-family: 'Raleway', sans-serif; }
.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.section-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 90px 0; }
.section-alt { background: #F4F6F9; }
.section-dark { background: var(--charcoal); color: var(--text-light); }
.section-header { margin-bottom: 56px; }
.section-header .section-subtitle { margin-top: 12px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-blue);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--charcoal);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #FFB74D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,167,38,0.4);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-phone-nav {
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border: 2px solid var(--blue);
}
.btn-phone-nav:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  box-shadow: 0 4px 16px var(--shadow-blue);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text span { color: var(--blue-bright); }
.nav-logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--silver);
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--silver);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-emergency {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D1420 0%, var(--charcoal) 40%, #1A2540 100%);
  overflow: hidden;
  padding-top: 72px;
}
#ripple-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.6rem;
}
.hero-h1 .blue { color: var(--blue-bright); }
.hero-subtitle-wrap {
  height: 2.2rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--silver);
  animation: cycleText 6s infinite;
}
@keyframes cycleText {
  0%,40%  { transform: translateY(0);      opacity: 1; }
  45%,50% { transform: translateY(-100%);  opacity: 0; }
  55%,90% { transform: translateY(-100%);  opacity: 1; }
  95%,100%{ transform: translateY(0);      opacity: 0; }
}
.hero-subtitle-b {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--silver);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver);
}
.trust-pill .icon {
  width: 32px;
  height: 32px;
  background: rgba(21,101,192,0.2);
  border: 1px solid rgba(21,101,192,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
/* Hero SVG pipe decoration */
.hero-pipe-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.12;
  pointer-events: none;
}
@media (max-width: 900px) { .hero-pipe-deco { display: none; } }

/* ── Stats Row ────────────────────────────────────────────── */
.stats-row {
  background: var(--blue);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
  display: block;
}

/* ── Service Cards (dual showcase) ───────────────────────── */
.services-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--charcoal-3);
}
.service-card-dual {
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card-dual.plumbing {
  background: linear-gradient(135deg, #0D1A30 0%, #14213D 100%);
  border-top: 4px solid var(--blue);
}
.service-card-dual.roofing {
  background: linear-gradient(135deg, #1A1F2B 0%, var(--charcoal) 100%);
  border-top: 4px solid var(--silver);
}
.service-card-dual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card-dual.plumbing::before { background: radial-gradient(ellipse at 30% 50%, rgba(21,101,192,0.12), transparent 60%); }
.service-card-dual.roofing::before  { background: radial-gradient(ellipse at 70% 50%, rgba(192,200,212,0.08), transparent 60%); }
.service-card-dual:hover::before { opacity: 1; }
.service-icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1;
}
.service-card-dual .card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}
.service-card-dual.plumbing .card-title { color: #64B5F6; }
.service-card-dual.roofing  .card-title { color: var(--silver); }
.service-card-dual p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-list {
  margin-bottom: 2rem;
}
.service-list li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.plumbing .service-list li::before { background: var(--blue-bright); }
.roofing  .service-list li::before { background: var(--silver); }

/* ── Service Page Sections ────────────────────────────────── */
.service-section {
  padding: 70px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.service-section:nth-child(even) { background: #F4F6F9; }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }
.service-section-text .eyebrow { margin-bottom: 0.75rem; }
.service-section-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.service-section-text p {
  color: #4A5568;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.check-list { margin-bottom: 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #3D4A5C;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.roofing-page .check-list li::before { color: var(--silver-dark); }
.service-visual {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.1), transparent);
}
.service-visual-roofing::after {
  background: linear-gradient(135deg, rgba(192,200,212,0.08), transparent);
}

/* ── Page Banner ──────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, #0D1420 0%, var(--charcoal) 100%);
  padding: 120px 0 70px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
}
.page-banner.roofing-banner::after { background: var(--silver); }
.page-banner.emergency-banner::after { background: var(--accent); }
.page-banner-inner {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.page-banner p {
  color: var(--silver);
  font-size: 1.1rem;
  max-width: 600px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}
.page-banner .breadcrumb {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--silver-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.page-banner .breadcrumb a { color: var(--blue-bright); }
.page-banner .breadcrumb span { margin: 0 0.5rem; }
.banner-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

/* ── Why Titan ────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px var(--shadow-blue);
}
.pillar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.pillar-card p { color: #556070; font-size: 0.93rem; line-height: 1.7; }

/* ── Reviews ──────────────────────────────────────────────── */
.reviews-section { background: var(--charcoal); }
.reviews-hero {
  text-align: center;
  margin-bottom: 3rem;
}
.stars-large {
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: #FFD700;
}
.reviews-hero .rating-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.reviews-hero .rating-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.1em;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: rgba(21,101,192,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.review-stars { color: #FFD700; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.reviewer-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-bright);
  letter-spacing: 0.05em;
}
.reviewer-location {
  font-size: 0.78rem;
  color: var(--silver-dark);
  margin-top: 2px;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(21,101,192,0.15);
  border: 1px solid rgba(21,101,192,0.3);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
}

/* ── Emergency Callout ────────────────────────────────────── */
.emergency-callout {
  background: linear-gradient(135deg, #0A0F1A 0%, #0D1520 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}
.emergency-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,167,38,0.08), transparent 60%);
}
.emergency-callout .emergency-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.emergency-callout h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.emergency-callout p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1.05rem; }
.phone-massive {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin: 0.5rem 0 1.5rem;
  text-shadow: 0 0 40px rgba(255,167,38,0.4);
  transition: all var(--transition);
}
.phone-massive:hover { color: #FFB74D; text-shadow: 0 0 60px rgba(255,167,38,0.6); }

/* ── Emergency Page ───────────────────────────────────────── */
.emergency-hero {
  background: linear-gradient(135deg, #080D16 0%, #0F1726 100%);
  padding: 140px 0 80px;
  margin-top: 72px;
  text-align: center;
  border-bottom: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
}
.emergency-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,167,38,0.07), transparent 65%);
}
.emergency-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.5; }
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.step-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.step-number {
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  font-weight: 400;
}
.step-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.step-card p { font-size: 0.88rem; color: #556070; line-height: 1.6; }

/* ── Contact / Form ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(21,101,192,0.1);
  border: 1px solid rgba(21,101,192,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: #4A5568;
}
.contact-detail-text a { color: var(--blue); }
.contact-detail-text a:hover { color: var(--blue-light); }
.form-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.form-card p { font-size: 0.92rem; color: #556070; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #FAFBFC;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table tr { border-bottom: 1px solid #E2E8F0; }
.hours-table td { padding: 0.6rem 0; font-size: 0.9rem; color: #4A5568; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--charcoal); }
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.area-tag {
  background: rgba(21,101,192,0.08);
  border: 1px solid rgba(21,101,192,0.2);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #111827;
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-text { font-size: 2.2rem; margin-bottom: 0.5rem; display: block; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}
.footer-contact-item a { color: var(--blue-bright); }
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before { content: '→'; font-size: 0.7rem; opacity: 0.6; }
.footer-links a:hover { color: var(--blue-bright); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--blue-bright); }
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(21,101,192,0.12);
  border: 1px solid rgba(21,101,192,0.25);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: 0.06em;
}

/* ── Utility Sections ─────────────────────────────────────── */
.divider { height: 2px; background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.tag {
  background: rgba(21,101,192,0.08);
  border: 1px solid rgba(21,101,192,0.2);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  color: var(--blue);
  letter-spacing: 0.04em;
}
.guarantee-strip {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  padding: 20px 0;
  text-align: center;
}
.guarantee-strip p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── Responsive 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-emergency { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0.25rem;
    z-index: 999;
  }
  .nav-links.open a { width: 100%; padding: 0.75rem 1rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .services-dual { grid-template-columns: 1fr; }
  .service-card-dual { padding: 50px 30px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .service-section-inner { grid-template-columns: 1fr; }
  .service-section-inner.reverse { direction: ltr; }
  .service-visual { height: 220px; font-size: 4rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-pipe-deco { display: none; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
}
/* ── Responsive 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 1rem; }
  .trust-pill { font-size: 0.78rem; }
  .phone-massive { font-size: 2.2rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 100px 0 50px; }
}
