/* ════════════════════════════════════════════════════════════════
   Midwest Gas Pipe Repair — shared site stylesheet
   Design system extracted from the homepage + extended for
   service pages, location pages, hubs, about, contact.
   Palette: red #c8222e · navy #1d3557 · gold #ffb703
   Type: Barlow Condensed (headings) + Inter (body)
   ════════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ──────────────────────────────── */
:root {
  --red:    #c8222e;
  --red-dk: #a81a24;
  --navy:   #1d3557;
  --gold:   #ffb703;
  --light:  #f6f7f9;
  --white:  #fff;
  --text:   #1a1a2e;
  --muted:  #6b7280;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  padding-top: 120px;
}

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

a { color: inherit; text-decoration: none; }

/* ─── UTILITY ────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section--alt { background: var(--light); }
.section--navy { background: var(--navy); color: #fff; }
.center { text-align: center; }
.narrow { max-width: 820px; margin: 0 auto; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light); border: 1px solid rgba(0,0,0,.07);
  border-radius: 999px; padding: 4px 14px;
  font-size: .8rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); margin-bottom: 10px;
}

h2.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--text); margin-bottom: 16px;
}

p.section-sub { color: var(--muted); max-width: 560px; font-size: 1.05rem; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700; letter-spacing: .03em;
  padding: 14px 32px; border-radius: 50px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(200,34,46,.35);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-call:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,34,46,.45); color: #fff; }
.btn-call:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.55); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  padding: 13px 28px; border-radius: 50px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

/* dark-on-light outline (for use on white sections) */
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(0,0,0,.18); color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  padding: 13px 28px; border-radius: 50px;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-outline-dark:hover { border-color: var(--red); color: var(--red); }

/* ─── STICKY EMERGENCY BAR ───────────────────────── */
#sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px; height: 44px;
  font-size: .85rem; font-weight: 600; color: #fff;
  gap: 16px;
}
#sticky-bar a { color: #fff; text-decoration: underline; }
#sticky-bar .pipe { opacity: .4; }

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 0 20px; height: 76px;
  display: flex; align-items: center;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.09); }
.navbar-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 60px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a, .nav-item > a {
  font-weight: 600; font-size: .9rem; color: var(--text);
  padding: 6px 14px; border-radius: 8px;
  transition: background .2s, color .2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-links > a:hover, .nav-item > a:hover { background: var(--light); color: var(--red); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  padding: 9px 22px; border-radius: 50px;
  margin-left: 12px; white-space: nowrap;
  transition: background .2s, transform .2s;
}
.nav-phone:hover { background: var(--red-dk); transform: translateY(-1px); color: #fff; }

/* ─── NAV DROPDOWN ───────────────────────────────── */
.nav-item { position: relative; }
.nav-item > a .caret { font-size: .7rem; transition: transform .2s; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 250px; background: #fff;
  border: 1px solid rgba(0,0,0,.08); border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0,0,0,.14);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:hover > a .caret { transform: rotate(180deg); }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: .88rem; font-weight: 600; color: var(--text);
  transition: background .2s, color .2s;
}
.dropdown a:hover { background: var(--light); color: var(--red); }
.dropdown .dropdown-head {
  display: block; padding: 6px 14px 8px; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s; }

@media (max-width: 980px) {
  body { padding-top: 108px; }
  .nav-links-wrap {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 12px 20px 20px; flex-direction: column; gap: 4px;
    max-height: calc(100vh - 120px); overflow-y: auto;
  }
  .nav-links-wrap.open { display: flex; }
  .nav-links { flex-direction: column; width: 100%; align-items: stretch; }
  .nav-links > a, .nav-item > a { display: block; padding: 10px 14px; }
  .nav-item { width: 100%; }
  /* on mobile, show dropdown links inline (no hover) */
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 2px solid var(--light);
    margin: 0 0 6px 14px; padding: 0; min-width: 0;
  }
  .nav-item > a .caret { display: none; }
  .dropdown .dropdown-head { display: none; }
  .nav-phone { margin: 10px 0 0; width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
}

/* ─── HERO (homepage) ────────────────────────────── */
.hero {
  background: linear-gradient(135deg, rgba(29,53,87,.91) 0%, rgba(168,26,36,.82) 100%),
              url('/img/hero-bg.webp') center/cover no-repeat;
  color: #fff; padding: 90px 0 80px;
  min-height: 88vh; display: flex; align-items: center;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--gold); }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800; line-height: 1.03; color: #fff;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.88);
  max-width: 520px; margin-bottom: 36px; line-height: 1.65;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.82);
}
.hero-trust-item i { color: var(--gold); }

/* hero callback card */
.hero-card {
  background: #fff; border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.hero-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--text);
  margin-bottom: 6px;
}
.hero-card .card-sub { font-size: .9rem; color: var(--muted); margin-bottom: 24px; }
.hero-card .field {
  display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px;
}
.hero-card label { font-size: .8rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .05em; }
.hero-card input, .hero-card select {
  height: 48px; border: 1.5px solid #e2e5ea; border-radius: 10px;
  padding: 0 14px; font-size: .95rem; font-family: inherit;
  color: var(--text); transition: border-color .2s;
  background: #fff;
}
.hero-card input:focus, .hero-card select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,34,46,.12);
}
.hero-card .btn-submit {
  width: 100%; height: 52px; border: none; border-radius: 50px;
  background: var(--red); color: #fff; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: .03em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(200,34,46,.3);
  transition: background .2s, transform .2s; margin-top: 8px;
}
.hero-card .btn-submit:hover { background: var(--red-dk); transform: translateY(-2px); }
.hero-card .card-disclaimer {
  text-align: center; font-size: .76rem; color: var(--muted);
  margin-top: 12px; line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 500px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0; min-height: auto; }
}

/* ─── INTERIOR HERO (service / location / page) ──── */
.hero--page {
  background: linear-gradient(135deg, rgba(29,53,87,.93) 0%, rgba(168,26,36,.85) 100%),
              url('/img/hero-bg.webp') center/cover no-repeat;
  color: #fff; padding: 64px 0;
}
.hero--page .hero-grid { grid-template-columns: 1fr 400px; align-items: center; }
.hero--page h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 800; line-height: 1.06; color: #fff; margin-bottom: 14px;
}
.hero--page h1 em { color: var(--gold); font-style: normal; }
.hero--page h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.hero--page p { color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 26px; }
@media (max-width: 900px) { .hero--page .hero-grid { grid-template-columns: 1fr; gap: 32px; } }

/* compact aside card (interior heroes) */
.hero-aside {
  background: #fff; color: var(--text); border-radius: 18px;
  padding: 28px 26px; box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.hero-aside h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 800;
  margin-bottom: 8px;
}
.hero-aside .badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.hero-aside .badge {
  background: var(--light); border: 1px solid rgba(0,0,0,.07); border-radius: 999px;
  padding: 5px 12px; font-size: .76rem; font-weight: 700; color: var(--navy);
}
.hero-aside .rating { font-size: .85rem; color: var(--muted); margin-top: 12px; }
.hero-aside .rating .stars { color: var(--gold); letter-spacing: 1px; }

/* ─── BREADCRUMBS ────────────────────────────────── */
.crumbs {
  font-size: .82rem; color: var(--muted); padding: 16px 0;
}
.crumbs a { color: var(--red); font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { margin: 0 6px; opacity: .6; }

/* ─── PROSE / CONTENT BODY ───────────────────────── */
.prose p { font-size: 1.02rem; color: #374151; margin-bottom: 18px; line-height: 1.75; }
.prose h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: var(--text);
  margin: 8px 0 16px; line-height: 1.15;
}
.prose h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.3rem; color: var(--navy); margin: 22px 0 10px;
}
.prose a { color: var(--red); font-weight: 600; }
.prose a:hover { text-decoration: underline; }

/* ─── CHECK LIST ─────────────────────────────────── */
.checks { list-style: none; display: grid; gap: 12px; margin: 18px 0; }
.checks li {
  position: relative; padding-left: 34px; font-size: 1rem; color: #374151; line-height: 1.6;
}
.checks li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 2px;
  color: var(--red); font-size: .9rem;
}
.checks.cols { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .checks.cols { grid-template-columns: 1fr; } }

/* ─── PANEL + STAT ROW ───────────────────────────── */
.panel {
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 16px;
  padding: 32px; box-shadow: var(--shadow);
}
.stat-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 22px;
}
.stat-box { text-align: center; padding: 16px; background: var(--light); border-radius: 12px; }
.stat-box strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1;
}
.stat-box span { font-size: .82rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; } }

/* ─── MID-PAGE CTA BANNER ────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #16263f);
  color: #fff; border-radius: 16px; padding: 32px 36px; text-align: center;
}
.cta-banner h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 8px;
}
.cta-banner p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 18px; }
.cta-banner a.btn-call { background: var(--red); }

/* ─── COMPARE TABLE ──────────────────────────────── */
.compare { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: .95rem; }
.compare th, .compare td { text-align: left; padding: 12px 14px; border-bottom: 1px solid rgba(0,0,0,.08); vertical-align: top; }
.compare thead th {
  background: var(--navy); color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; letter-spacing: .02em;
}
.compare thead th:first-child { border-top-left-radius: 10px; }
.compare thead th:last-child { border-top-right-radius: 10px; }
.compare tbody tr:nth-child(even) { background: var(--light); }
.compare td:first-child { font-weight: 600; color: var(--text); }

/* ─── PROCESS GRID (numbered steps, 4-up) ────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.card--num {
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 14px; padding: 24px 22px;
  position: relative;
}
.card--num .num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: rgba(200,34,46,.15); line-height: 1; display: block; margin-bottom: 6px;
}
.card--num h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card--num p { font-size: .9rem; color: var(--muted); }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* ─── STATS BAR ──────────────────────────────────── */
.stats-bar { background: var(--navy); color: #fff; padding: 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 680px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
}

/* ─── SERVICES GRID + CARDS ──────────────────────── */
.services { background: var(--light); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid rgba(0,0,0,.055);
  transition: box-shadow .25s, transform .25s;
  position: relative; overflow: hidden; display: block; color: inherit;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(200,34,46,.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--muted); line-height: 1.6; }
.service-price {
  display: inline-block; margin-top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--red);
}
.service-card .more {
  display: inline-block; margin-top: 14px; font-weight: 700; font-size: .9rem; color: var(--red);
}
.service-card .more::after { content: ' \2192'; }

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

/* ─── HOW IT WORKS ───────────────────────────────── */
.how-it-works { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 52px; }
.step { text-align: center; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem; font-weight: 800; color: rgba(200,34,46,.1);
  line-height: 1; margin-bottom: 8px;
}
.step-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(200,34,46,.25);
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { font-size: .93rem; color: var(--muted); max-width: 280px; margin: 0 auto; }

@media (max-width: 680px) { .steps { grid-template-columns: 1fr; gap: 36px; } }

/* ─── WHY CHOOSE US ──────────────────────────────── */
.why { background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.feature { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(200,34,46,.09); color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.feature-text h4 { font-size: 1.05rem; margin-bottom: 5px; }
.feature-text p { font-size: .9rem; color: var(--muted); }
.why-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-images img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); }

@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-images { display: none; }
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.tcard {
  background: var(--light); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(0,0,0,.055);
}
.tcard-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
.tcard p { font-size: .93rem; line-height: 1.65; color: #333; margin-bottom: 20px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.tcard-author strong { font-size: .9rem; display: block; }
.tcard-author span { font-size: .8rem; color: var(--muted); }

@media (max-width: 760px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ────────────────────────────────────────── */
.faq { background: var(--light); }
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  background: #fff; border-radius: var(--radius); margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,.06); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--text);
  text-align: left; gap: 12px;
}
.faq-q i { color: var(--red); flex-shrink: 0; transition: transform .25s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: .95rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 600px; }

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section {
  background: linear-gradient(rgba(15,20,35,.80), rgba(15,20,35,.80)),
              url('/img/cta-bg.webp') center/cover no-repeat;
  padding: 100px 0; text-align: center; color: #fff;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800; margin-bottom: 14px;
}
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto 36px; }
.cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--gold);
  display: block; margin-bottom: 28px; transition: opacity .2s;
}
.cta-phone:hover { opacity: .85; color: var(--gold); }
.cta-trust { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 20px; }

/* ─── SERVICE AREAS ──────────────────────────────── */
.areas { background: var(--white); }
.areas-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 40px;
}
.area-tag {
  background: var(--light); border-radius: 8px; padding: 9px 14px;
  font-size: .85rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
  transition: background .2s, color .2s;
}
a.area-tag:hover { background: var(--red); color: #fff; }
a.area-tag:hover i { color: #fff; }
.area-tag i { color: var(--red); font-size: .75rem; }

@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 540px) { .areas-grid { grid-template-columns: repeat(2,1fr); } }

/* ─── BLOG ───────────────────────────────────────── */
.blog { background: var(--light); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.bcard {
  background: #fff; border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.055); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.bcard:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); transform: translateY(-4px); }
.bcard img { width: 100%; height: 190px; object-fit: cover; }
.bcard-body { padding: 22px 24px; }
.bcard-meta { font-size: .78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.bcard-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.35; }
.bcard-body p { font-size: .88rem; color: var(--muted); }

@media (max-width: 760px) { .blog-grid { grid-template-columns: 1fr; } }

/* ─── CONTACT FORM ───────────────────────────────── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 28px; }
.ci-icon { color: var(--red); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.ci-text h4 { font-size: 1rem; margin-bottom: 4px; }
.ci-text p, .ci-text a { font-size: .93rem; color: var(--muted); }
.ci-text a:hover { color: var(--red); }
.cform { background: var(--light); border-radius: 16px; padding: 36px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform input, .cform select, .cform textarea {
  width: 100%; border: 1.5px solid #e2e5ea; border-radius: 10px;
  padding: 12px 16px; font-size: .93rem; font-family: inherit;
  margin-bottom: 14px; background: #fff; color: var(--text);
  transition: border-color .2s;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,34,46,.1);
}
.cform textarea { height: 130px; resize: vertical; }
.cform-submit {
  width: 100%; height: 52px; border: none; border-radius: 50px;
  background: var(--red); color: #fff; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 6px 20px rgba(200,34,46,.28); transition: background .2s, transform .2s;
}
.cform-submit:hover { background: var(--red-dk); transform: translateY(-2px); }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo img { height: 58px; margin-bottom: 18px; }
.footer-about p { font-size: .88rem; line-height: 1.7; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: background .2s;
}
.footer-social a:hover { background: var(--red); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; margin-top: 48px; text-align: center;
  font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ─── FLOATING CALL BUTTON ───────────────────────── */
.fab {
  position: fixed; bottom: 28px; right: 24px; z-index: 300;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 6px 24px rgba(200,34,46,.45);
  animation: fab-pulse 2.5s infinite;
}
.fab:hover { color: #fff; background: var(--red-dk); }
@keyframes fab-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(200,34,46,.45); }
  50%      { box-shadow: 0 6px 36px rgba(200,34,46,.70); }
}

/* ─── HELPERS ────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.wrap { flex-wrap: wrap; }
.gap-2 { gap: 14px; }
