/*
Theme Name: Hurricane Plumbing
Theme URI: https://njproplumbers.com
Description: Hurricane Plumbing — NJ's Rapid Response Plumbing Force. Bootstrap 4.1 WordPress Theme.
Version: 2.1
Author: Logic Web Media
Author URI: https://logicwebmedia.com
License: GPL v2 or later
Text Domain: hurricane-plumbing
*/

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --navy:      #0f172a;
  --navy-mid:  #1e3a5f;
  --red:       #dc2626;
  --red-dark:  #b91c1c;
  --gold:      #f59e0b;
  --light:     #f8fafc;
  --muted:     #64748b;
  --text:      #1e293b;
  --border:    #e2e8f0;
}

/* ── Reset / Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); transition: color .15s; }
a:hover { color: var(--red-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Dispatch Banner ───────────────────────────────────────────────────────── */
.dispatch-banner {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  padding: 9px 16px;
  text-transform: uppercase;
}
.dispatch-banner a { color: var(--gold); text-decoration: none; }
.dispatch-banner a:hover { color: #fde68a; }
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 7px;
  vertical-align: middle;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── Header / Nav ──────────────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.site-header .navbar {
  padding: 0;
  min-height: 68px;
}
.site-header .navbar-brand {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.site-header .navbar-brand img {
  height: 52px;
  width: auto;
}
.navbar-nav .nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  padding: 10px 13px !important;
  letter-spacing: .01em;
  transition: color .15s;
}
.navbar-nav .nav-link:hover { color: var(--red); }
.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: none;
  text-decoration: none !important;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-emergency:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 2px solid #334155;
  color: #334155 !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: transparent;
  text-decoration: none !important;
  transition: all .15s;
  white-space: nowrap;
}
.btn-schedule:hover { border-color: var(--red); color: var(--red) !important; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,18,35,.93) 0%, rgba(10,18,35,.78) 45%, rgba(10,18,35,.55) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,.18);
  border: 1px solid rgba(220,38,38,.45);
  color: #fca5a5;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--red); }
.hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero-primary {
  background: var(--red);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(220,38,38,.45);
}
.btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,38,38,.5); }
.btn-hero-secondary {
  background: rgba(255,255,255,.1);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, border-color .15s;
  backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.hero-creds span::before { content: "✓ "; color: #22c55e; font-weight: 700; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
  font-weight: 600;
}
.hero-phone {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.hero-phone a { color: inherit; text-decoration: none; }
.hero-phone a:hover { color: #fde68a; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}
.hero-stat {
  background: rgba(255,255,255,.04);
  padding: 14px 8px;
  text-align: center;
}
.hero-stat-val { font-size: 1.3rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; font-weight: 500; }
.guarantee-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 88px;
  height: 88px;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}

/* ── Social Proof Bar ───────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
  font-weight: 600;
}
.proof-item i { color: var(--gold); font-size: 16px; }
.proof-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.12);
  margin: 0 auto;
}
.stars-gold { color: var(--gold); letter-spacing: 1px; }

/* ── Section Layout ─────────────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light); }
.section-white { background: #fff; }
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: 10px;
}
.eyebrow-light { color: rgba(255,255,255,.5); }
.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-title-light { color: #fff; }
.section-sub {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-sub-light { color: rgba(255,255,255,.6); }

/* ── Service Cards ──────────────────────────────────────────────────────────── */
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px 24px;
  height: 100%;
  text-decoration: none !important;
  color: var(--text) !important;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  border-color: rgba(220,38,38,.25);
  transform: translateY(-3px);
  color: var(--text) !important;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(220,38,38,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .2s;
}
.service-card:hover .service-icon-wrap { background: rgba(220,38,38,.14); }
.service-icon-wrap i { color: var(--red); font-size: 20px; }
.service-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
  margin: 0 0 14px;
}
.service-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.service-card:hover .service-link { color: var(--red-dark); }

/* ── Why Us ─────────────────────────────────────────────────────────────────── */
.why-card {
  padding: 36px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  height: 100%;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(220,38,38,.3); }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(220,38,38,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(220,38,38,.25);
}
.why-icon i { color: var(--red); font-size: 26px; }
.why-card h3 { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; margin: 0; }
.why-stats {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 64px;
  padding-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-stat {
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.why-stat:last-child { border-right: none; }
.why-stat-val {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.why-stat-lbl { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 6px; font-weight: 500; }

/* ── Testimonials ───────────────────────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 auto;
  padding: 0;
  border: none;
  flex-grow: 1;
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after  { content: '\201D'; }
.testimonial-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-author { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.testimonial-location { font-size: 12px; color: var(--muted); margin-top: 1px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  background: var(--light);
  padding: 4px 9px;
  border-radius: 20px;
}
.google-badge .fa-google { color: #ea4335; }

/* ── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-question:hover { color: var(--red); }
.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .2s;
}
.faq-chevron i { font-size: 11px; color: var(--muted); transition: transform .2s; }
.faq-item.open .faq-chevron { background: rgba(220,38,38,.1); }
.faq-item.open .faq-chevron i { color: var(--red); transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.75;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact ────────────────────────────────────────────────────────────────── */
.contact-col-left { padding-right: 40px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(220,38,38,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220,38,38,.25);
}
.contact-icon i { color: var(--gold); font-size: 16px; }
.contact-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  margin-bottom: 3px;
}
.contact-info-val { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.3; }
.contact-info-val a { color: #fff; text-decoration: none; }
.contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.contact-form-wrap h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-form-wrap .form-group { margin-bottom: 16px; }
.contact-form-wrap label {
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-form-wrap .form-control {
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  padding: 11px 14px;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
  outline: none;
}
.contact-form-wrap textarea.form-control { min-height: 96px; resize: vertical; }
.btn-submit {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  width: 100%;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(220,38,38,.35);
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(220,38,38,.45); }

/* ── CTA Banner ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 { font-size: 2.1rem; font-weight: 900; color: #fff; margin-bottom: 10px; position: relative; letter-spacing: -.02em; }
.cta-band p { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 30px; position: relative; }
.btn-cta-white {
  background: #fff;
  color: var(--red) !important;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 6px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background .15s, transform .1s;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.btn-cta-white:hover { background: #f1f5f9; transform: translateY(-2px); }
.btn-cta-outline {
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.6);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  margin-left: 12px;
  transition: background .15s, border-color .15s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,.85);
}
.footer-logo { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: .02em; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 6px; line-height: 1.5; }
.footer-phone { font-size: 1.75rem; font-weight: 900; color: var(--gold); margin-top: 16px; }
.footer-phone a { color: inherit; text-decoration: none; }
.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
  font-weight: 600;
}
.footer-heading {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 13.5px; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Service Page ───────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0 48px;
  color: #fff;
}
.breadcrumb-custom { display: flex; gap: 8px; align-items: center; font-size: 12px; margin-bottom: 16px; }
.breadcrumb-custom a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb-custom a:hover { color: rgba(255,255,255,.8); }
.breadcrumb-custom span { color: rgba(255,255,255,.3); }
.breadcrumb-custom .current { color: rgba(255,255,255,.85); }
.page-hero h1 { font-size: 2.6rem; font-weight: 900; margin-bottom: 10px; letter-spacing: -.02em; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 15px; margin: 0; }
.included-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.included-card h4 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: #374151;
  line-height: 1.5;
}
.included-item:last-child { border-bottom: none; }
.included-item::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2322c55e'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}
.sidebar-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: sticky;
  top: 90px;
}
.sidebar-cta h4 { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13.5px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.sidebar-phone { font-size: 1.7rem; font-weight: 900; color: var(--gold); margin-bottom: 16px; }
.sidebar-phone a { color: inherit; text-decoration: none; }
.trust-badges { margin-top: 24px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}
.trust-badge i { color: #22c55e; flex-shrink: 0; }

/* ── County Cards ───────────────────────────────────────────────────────────── */
.county-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.county-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}
.county-towns { list-style: none; padding: 0; margin: 0; columns: 2; }
.county-towns li { font-size: 13px; color: #475569; padding: 4px 0; }
.county-towns li::before { content: "· "; color: var(--muted); }

/* ── Utilities ──────────────────────────────────────────────────────────────── */
section { scroll-margin-top: 70px; }
.text-red    { color: var(--red) !important; }
.text-navy   { color: var(--navy) !important; }
.text-gold   { color: var(--gold) !important; }
.bg-navy     { background-color: var(--navy) !important; }
.bg-red      { background-color: var(--red) !important; }
.rounded-lg  { border-radius: 10px !important; }

/* ── CTA Banner ─────────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(220,38,38,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.cta-banner p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.btn-cta-white {
  background: #dc2626;
  color: #fff !important;
  border: 2px solid #dc2626;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: 6px;
  padding: 14px 32px;
  transition: background .2s, transform .15s;
}
.btn-cta-white:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff !important;
  transform: translateY(-2px);
  text-decoration: none;
}
.cta-banner .btn-outline-light {
  border-width: 2px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background .2s, color .2s, transform .15s;
}
.cta-banner .btn-outline-light:hover {
  transform: translateY(-2px);
}
@media (max-width: 575px) {
  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: 1.7rem; }
  .cta-banner .btn-cta-white,
  .cta-banner .btn-outline-light { display: block; width: 100%; margin: 0 0 12px 0 !important; }
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero { padding: 60px 0; min-height: auto; }
  .hero h1 { font-size: 2.4rem; }
  .contact-col-left { padding-right: 0; margin-bottom: 40px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .why-stat:nth-child(2) { border-right: none; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 1.9rem; }
  .hero .lead { font-size: 1rem; }
  .hero-phone { font-size: 1.5rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.75rem; }
  .cta-band h2 { font-size: 1.6rem; }
  .guarantee-badge { width: 60px; height: 60px; top: 14px; right: 14px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .county-towns { columns: 1; }
  .proof-divider { display: none; }
  .btn-cta-outline { margin-left: 0; margin-top: 10px; }
  .contact-form-wrap { padding: 24px; }
}

/* ── Blog — Archive & Single ────────────────────────────────────────────────── */

/* Hero */
.blog-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 100%);
  padding: 72px 0 60px;
  text-align: center;
}
.blog-hero-title { color: #fff; font-size: 2.4rem; font-weight: 800; margin: 8px 0 12px; }
.blog-hero-sub   { color: #94a3b8; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* Post hero */
.blog-post-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 100%);
  padding: 56px 0 48px;
}
.blog-back-link   { color: #94a3b8; font-size: .875rem; text-decoration: none; transition: color .2s; }
.blog-back-link:hover { color: #fff; text-decoration: none; }
.blog-back-link i { margin-right: 6px; }
.blog-post-meta-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.blog-post-title  { color: #fff; font-size: 2.2rem; font-weight: 800; line-height: 1.22; margin: 0 0 16px; }
.blog-post-meta   { display: flex; gap: 20px; color: #94a3b8; font-size: .875rem; }
.blog-post-meta i { margin-right: 5px; color: #dc2626; }

/* Category badge */
.blog-cat-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  text-decoration: none;
}
.blog-cat-badge-sm { font-size: .7rem; padding: 2px 8px; margin-bottom: 10px; display: inline-block; }

/* Archive body */
.blog-archive-body { padding: 64px 0; background: #f8fafc; }
.blog-post-body    { padding: 56px 0; background: #f8fafc; }

/* Blog card grid */
.blog-grid { display: flex; flex-direction: column; gap: 28px; }

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,40,.07);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(10,22,40,.12); }

.blog-card-img-link { display: block; overflow: hidden; }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform .35s; display: block; }
.blog-card:hover .blog-card-img { transform: scale(1.03); }

.blog-card-img-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, #0a1628, #0f2040);
  display: flex; align-items: center; justify-content: center;
  color: #334155; font-size: 2.5rem;
}
.blog-card-body   { padding: 24px 28px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-title  { font-size: 1.25rem; font-weight: 700; margin: 8px 0 10px; line-height: 1.3; }
.blog-card-title a { color: #0a1628; text-decoration: none; }
.blog-card-title a:hover { color: #dc2626; }
.blog-card-excerpt { color: #64748b; font-size: .9rem; line-height: 1.6; flex: 1; margin: 0 0 16px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f1f5f9; padding-top: 14px; margin-top: auto; }
.blog-card-date   { color: #94a3b8; font-size: .8rem; }
.blog-card-date i { margin-right: 4px; color: #dc2626; }
.blog-card-readmore { color: #dc2626; font-size: .85rem; font-weight: 600; text-decoration: none; transition: gap .2s; }
.blog-card-readmore i { margin-left: 4px; }
.blog-card-readmore:hover { color: #b91c1c; text-decoration: none; }

/* Pagination */
.blog-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 2px solid #e2e8f0; border-radius: 6px;
  color: #0a1628; font-weight: 600; font-size: .875rem;
  text-decoration: none; transition: all .2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: #dc2626; border-color: #dc2626; color: #fff;
}

/* Empty state */
.blog-empty { text-align: center; padding: 60px 0; }

/* Single article */
.blog-article { font-size: 1.05rem; line-height: 1.8; color: #334155; }
.blog-article h2, .blog-article h3 { color: #0a1628; font-weight: 700; margin: 40px 0 14px; }
.blog-article h2 { font-size: 1.5rem; }
.blog-article h3 { font-size: 1.2rem; }
.blog-article p  { margin-bottom: 1.4em; }
.blog-article ul, .blog-article ol { margin-bottom: 1.4em; padding-left: 1.4em; }
.blog-article li { margin-bottom: .5em; }
.blog-article a  { color: #dc2626; text-decoration: underline; }
.blog-article blockquote {
  border-left: 4px solid #dc2626;
  background: #fff8f8;
  padding: 16px 20px;
  margin: 28px 0;
  border-radius: 0 6px 6px 0;
  color: #475569;
  font-style: italic;
}
.blog-article img { max-width: 100%; border-radius: 8px; margin: 12px 0; }

/* Tags */
.blog-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.blog-tag {
  background: #f1f5f9; color: #475569;
  border: 1px solid #e2e8f0;
  padding: 4px 12px; border-radius: 20px;
  font-size: .8rem; text-decoration: none;
  transition: all .2s;
}
.blog-tag:hover { background: #dc2626; color: #fff; border-color: #dc2626; text-decoration: none; }

/* Bottom CTA */
.blog-bottom-cta {
  background: #0a1628;
  border-radius: 10px;
  padding: 28px 32px;
  color: #fff;
}
.blog-bottom-cta h4 { color: #fff; font-weight: 700; margin-bottom: 6px; }

/* Related posts */
.blog-related-title { font-size: 1.1rem; font-weight: 700; color: #0a1628; margin-bottom: 16px; border-bottom: 2px solid #f1f5f9; padding-bottom: 12px; }
.blog-related-card  { display: block; text-decoration: none; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(10,22,40,.07); transition: transform .2s; height: 100%; }
.blog-related-card:hover { transform: translateY(-2px); text-decoration: none; }
.blog-related-img   { width: 100%; height: 140px; object-fit: cover; display: block; }
.blog-related-img-placeholder { width: 100%; height: 140px; background: #0a1628; display: flex; align-items: center; justify-content: center; color: #334155; font-size: 1.5rem; }
.blog-related-body  { padding: 14px 16px; background: #fff; }
.blog-related-post-title { font-size: .9rem; font-weight: 600; color: #0a1628; line-height: 1.4; margin-bottom: 6px; }
.blog-related-date  { font-size: .78rem; color: #94a3b8; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 24px; }
.sidebar-cta-card {
  background: linear-gradient(160deg, #0a1628 0%, #0f2040 100%);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta-icon { font-size: 2rem; color: #fbbf24; margin-bottom: 12px; }
.sidebar-cta-card h4 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.sidebar-cta-card p  { color: #94a3b8; font-size: .875rem; margin-bottom: 20px; }
.btn-outline-emergency {
  display: inline-block;
  border: 2px solid #dc2626;
  color: #dc2626 !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .2s;
  font-size: .9rem;
}
.btn-outline-emergency:hover { background: #dc2626; color: #fff !important; text-decoration: none; }

.sidebar-widget { background: #fff; border-radius: 10px; padding: 22px 20px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(10,22,40,.06); }
.sidebar-widget-title { font-size: .8rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: #94a3b8; margin-bottom: 14px; border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }

.sidebar-service-list { list-style: none; padding: 0; margin: 0; }
.sidebar-service-list li { margin-bottom: 8px; }
.sidebar-service-list a { color: #334155; font-size: .9rem; text-decoration: none; transition: color .2s; }
.sidebar-service-list a i { color: #dc2626; width: 18px; margin-right: 6px; }
.sidebar-service-list a:hover { color: #dc2626; text-decoration: none; }

.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li { border-bottom: 1px solid #f1f5f9; }
.sidebar-cat-list a { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; color: #334155; font-size: .9rem; text-decoration: none; transition: color .2s; }
.sidebar-cat-list a:hover { color: #dc2626; text-decoration: none; }
.sidebar-cat-count { background: #f1f5f9; color: #64748b; font-size: .75rem; padding: 1px 7px; border-radius: 10px; }

.sidebar-recent-list { list-style: none; padding: 0; margin: 0; }
.sidebar-recent-list li { border-bottom: 1px solid #f1f5f9; }
.sidebar-recent-list a { display: block; padding: 10px 0; text-decoration: none; }
.sidebar-recent-title { display: block; color: #334155; font-size: .875rem; font-weight: 600; line-height: 1.4; margin-bottom: 3px; transition: color .2s; }
.sidebar-recent-list a:hover .sidebar-recent-title { color: #dc2626; }
.sidebar-recent-date  { color: #94a3b8; font-size: .78rem; }

.sidebar-small-text { color: #64748b; font-size: .875rem; line-height: 1.6; }
.sidebar-link { color: #dc2626; font-size: .875rem; font-weight: 600; text-decoration: none; }
.sidebar-link:hover { color: #b91c1c; text-decoration: none; }
.sidebar-link i { margin-left: 4px; }

/* Blog responsive */
@media (max-width: 767px) {
  .blog-hero { padding: 48px 0 36px; }
  .blog-hero-title { font-size: 1.7rem; }
  .blog-post-title { font-size: 1.5rem; }
  .blog-archive-body, .blog-post-body { padding: 40px 0; }
  .blog-card-img, .blog-card-img-placeholder { height: 180px; }
  .blog-bottom-cta { padding: 20px; }
}


/* ===== SERVICE / PAGE HERO BANNER ===== */
.service-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e2d4a 100%);
  padding: 44px 0 36px;
  border-bottom: 3px solid #dc2626;
  position: relative;
  overflow: hidden;
}
.service-hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.service-hero .breadcrumb {
  background: transparent;
  padding: 0 0 14px;
  margin: 0;
  font-size: 12px;
}
.service-hero .breadcrumb-item a { color: rgba(255,255,255,.55); text-decoration: none; }
.service-hero .breadcrumb-item a:hover { color: #fbbf24; }
.service-hero .breadcrumb-item.active { color: rgba(255,255,255,.35); }
.service-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }
.service-hero h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.2;
}
.service-hero .page-hero-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  margin: 0;
}
.service-hero-icon {
  width: 56px;
  height: 56px;
  background: rgba(220,38,38,.18);
  border: 2px solid rgba(220,38,38,.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}
.service-hero-icon i {
  font-size: 22px;
  color: #dc2626;
}

