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

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1e3a5f;
  --red: #e63027;
  --red-dark: #b8221a;
  --red-glow: rgba(230,48,39,0.15);
  --white: #ffffff;
  --off-white: #f0f4f8;
  --silver: #c8d6e5;
  --muted: #7a8fa6;
  --text: #1a2332;
  --text-light: #4a6080;
  --success: #00c896;
  --gold: #f5a623;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.12);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
  --radius: 4px;
  --radius-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; transition: all 0.2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 14px 28px;
  border-radius: var(--radius); cursor: pointer;
  transition: all 0.2s; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 20px rgba(230,48,39,0.4);
}
.btn-red:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 28px rgba(230,48,39,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); }

/* ─── HEADER ─── */
.topbar {
  background: var(--red);
  padding: 8px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: var(--white); }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.9); }
.topbar-phone { font-size: 16px; font-weight: 800; color: var(--white); letter-spacing: 0.5px; }
.topbar-right { display: flex; gap: 12px; }
.topbar-badge {
  background: rgba(255,255,255,0.2); color: var(--white);
  padding: 3px 10px; border-radius: 20px; font-size: 12px;
  display: flex; align-items: center; gap: 4px;
}

header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; padding: 16px 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 48px; height: 48px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.logo-text-wrap { line-height: 1; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 900; color: var(--white);
  letter-spacing: 1px; text-transform: uppercase;
}
.logo-name span { color: var(--red); }
.logo-sub {
  font-size: 11px; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 2px; display: block;
}

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--silver);
  border-radius: var(--radius);
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-menu a.active { color: var(--white); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 10px 20px !important;
  box-shadow: 0 3px 15px rgba(230,48,39,0.4);
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 0;
}

/* diagonal stripe pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.018) 60px,
      rgba(255,255,255,0.018) 61px
    );
  pointer-events: none; z-index: 0;
}

/* red accent bar left */
.hero::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--red); z-index: 2;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
  padding: 80px 24px 80px;
  max-width: 1180px; margin: 0 auto;
}

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

.hero h1 {
  font-size: 68px; font-weight: 900; color: var(--white);
  line-height: 0.95; margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--red); display: block; }
.hero h1 .location { font-size: 42px; color: var(--silver); font-weight: 600; display: block; margin-top: 6px; }

.hero-desc {
  font-size: 17px; color: var(--silver);
  font-weight: 300; line-height: 1.7;
  margin-bottom: 34px; max-width: 500px;
}

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

.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--silver); text-transform: uppercase;
}
.hero-trust-icon {
  color: var(--success); font-size: 16px;
}

/* hero image */
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 420px;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* hero form card */
.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-form-header {
  background: var(--red);
  padding: 20px 24px;
}
.hero-form-header h3 {
  font-size: 22px; color: var(--white);
  text-transform: uppercase; margin-bottom: 2px;
}
.hero-form-header p { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 300; }
.hero-form-body { padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #dde4ec;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 14px; color: var(--text);
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,48,39,0.1);
  background: var(--white);
}
.form-submit-btn {
  width: 100%; padding: 15px;
  background: var(--red); color: var(--white); border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(230,48,39,0.35);
}
.form-submit-btn:hover { background: var(--red-dark); }
.form-trust-note {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 10px;
  font-size: 12px; color: var(--muted);
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--red);
  padding: 0;
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 900;
  color: var(--white); line-height: 1;
  display: block;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  margin-top: 4px; display: block;
}

/* ─── SECTION BASE ─── */
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block; width: 24px; height: 2px; background: var(--red);
}

.section-title {
  font-size: 46px; font-weight: 900;
  color: var(--navy); text-transform: uppercase;
  line-height: 1.0; margin-bottom: 14px;
}
.section-dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: 17px; color: var(--text-light);
  font-weight: 300; line-height: 1.7;
  max-width: 580px;
}
.section-dark .section-subtitle { color: var(--silver); }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--off-white);
  border: 2px solid var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { background: var(--navy); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: var(--silver); }
.service-card:hover .service-icon-wrap { background: var(--red); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900; color: rgba(0,0,0,0.04);
  line-height: 1; transition: color 0.25s;
}
.service-card:hover .service-num { color: rgba(255,255,255,0.06); }

.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
  transition: background 0.25s;
}

.service-title {
  font-size: 22px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 10px;
  transition: color 0.25s;
}
.service-desc {
  font-size: 14px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 16px;
  transition: color 0.25s;
}
.service-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-link:hover { gap: 10px; }

/* ─── LOCATIONS ─── */
.locations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: all 0.25s;
}
.location-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.location-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(230,48,39,0.4);
  transform: translateY(-3px);
}
.location-card:hover::before { transform: scaleX(1); }

.location-city {
  font-size: 28px; font-weight: 900;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 4px;
}
.location-state {
  font-size: 14px; color: var(--red);
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.location-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; margin-bottom: 18px;
}
.location-stats {
  display: flex; gap: 16px; margin-bottom: 20px;
}
.loc-stat {
  flex: 1; background: rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 10px;
  text-align: center;
}
.loc-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--white);
}
.loc-stat-label {
  font-size: 10px; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 2px;
}
.location-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.loc-tag {
  font-size: 11px; font-weight: 600;
  background: rgba(230,48,39,0.15);
  color: #ff7a6c; padding: 3px 10px;
  border-radius: 20px; letter-spacing: 0.5px;
}
.location-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(230,48,39,0.1);
  border: 1px solid rgba(230,48,39,0.3);
  border-radius: var(--radius); color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.location-link:hover {
  background: var(--red); color: var(--white);
  border-color: var(--red);
}

/* ─── WHY US ─── */
.whyus-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.whyus-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--white); border-radius: var(--radius);
  border-left: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-point:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-text h4 {
  font-size: 17px; color: var(--navy); margin-bottom: 4px;
  text-transform: uppercase;
}
.why-text p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.whyus-visual {
  position: relative;
}
.big-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.big-stat {
  background: var(--navy);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
}
.big-stat::after {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--red); opacity: 0.08; border-radius: 50%;
}
.big-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px; font-weight: 900;
  color: var(--white); line-height: 1;
  display: block; margin-bottom: 6px;
}
.big-stat-num em { color: var(--red); font-style: normal; }
.big-stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
}
.big-stat.featured {
  grid-column: 1 / -1;
  background: var(--red);
  display: flex; align-items: center; gap: 24px;
}
.big-stat.featured .big-stat-num { font-size: 72px; color: var(--white); }
.big-stat.featured .big-stat-num em { color: rgba(255,255,255,0.6); }
.big-stat.featured .big-stat-label { color: rgba(255,255,255,0.75); }

/* ─── PROCESS ─── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
  margin-top: 56px;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--off-white); z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--white); border: 2px solid var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.process-step:hover .step-circle {
  background: var(--red); border-color: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(230,48,39,0.35);
}
.step-icon { font-size: 28px; margin-bottom: 4px; }
.step-num-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.step-title { font-size: 20px; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg); padding: 26px;
  border: 1px solid #e8edf3;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card::before {
  content: '"';
  position: absolute; top: -12px; left: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 900; color: var(--red);
  line-height: 1; opacity: 0.12;
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.reviewer-location { font-size: 12px; color: var(--muted); margin-top: 1px; }
.review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--success); font-weight: 600;
  background: rgba(0,200,150,0.1); padding: 2px 8px; border-radius: 20px;
  margin-top: 4px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0; width: 8px;
  background: var(--red);
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  align-items: center;
}
.cta-content h2 {
  font-size: 52px; color: var(--white);
  text-transform: uppercase; margin-bottom: 10px;
}
.cta-content p { font-size: 17px; color: var(--silver); font-weight: 300; }
.cta-action { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-phone-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 900; color: var(--white);
  letter-spacing: 1px; display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.cta-phone-num a { color: inherit; }
.cta-subtext { font-size: 13px; color: var(--muted); text-align: center; letter-spacing: 0.5px; }

/* ─── LOCATION / SERVICE PAGE ─── */
.page-hero {
  background: var(--navy); padding: 60px 0;
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 60px,
    rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px
  );
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-bottom: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--silver); }
.breadcrumb-sep { color: var(--red); }
.breadcrumb-current { color: var(--silver); }
.page-title { font-size: 52px; color: var(--white); text-transform: uppercase; margin-bottom: 14px; }
.page-subtitle { font-size: 17px; color: var(--silver); font-weight: 300; max-width: 600px; }
.page-hero-badges {
  display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  color: var(--silver); padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge.red { background: rgba(230,48,39,0.15); border-color: rgba(230,48,39,0.3); color: #ff7a6c; }

/* Page layout */
.page-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 50px; padding: 60px 0; align-items: start;
}

/* Article */
.article h2 {
  font-size: 30px; color: var(--navy);
  text-transform: uppercase; margin: 36px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--off-white);
  position: relative;
}
.article h2::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 40px; height: 2px; background: var(--red);
}
.article h2:first-child { margin-top: 0; }
.article p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.article ul { margin: 10px 0 18px; display: flex; flex-direction: column; gap: 8px; }
.article ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-light); line-height: 1.65;
  padding: 10px 14px; background: var(--off-white);
  border-radius: var(--radius); border-left: 3px solid var(--red);
}
.article ul li::before { content: none; }
.article ul li strong { color: var(--navy); }
.article a { color: var(--red); font-weight: 500; }
.article a:hover { text-decoration: underline; }

.faq-list { margin-top: 8px; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--off-white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid #e4eaf1;
}
.faq-q {
  padding: 16px 20px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  text-transform: uppercase;
}
.faq-q::after { content: '+'; color: var(--red); font-size: 22px; font-weight: 300; }
.faq-a {
  padding: 0 20px 16px; font-size: 14px;
  color: var(--text-light); line-height: 1.7;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }

.side-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid #e4eaf1; box-shadow: var(--shadow-sm);
}
.side-card-head {
  padding: 16px 20px;
  background: var(--navy);
}
.side-card-head h3 {
  font-size: 16px; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.side-card-head p { font-size: 12px; color: var(--muted); margin-top: 3px; }
.side-card-body { background: var(--white); padding: 20px; }

.call-box {
  text-align: center; margin-bottom: 16px;
}
.call-number {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 900; color: var(--red);
  letter-spacing: 0.5px; margin-bottom: 4px;
}
.call-label { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.call-btn {
  display: block; width: 100%;
  background: var(--red); color: var(--white);
  padding: 14px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; text-align: center;
  box-shadow: 0 4px 16px rgba(230,48,39,0.3);
  transition: all 0.2s; margin-top: 14px;
}
.call-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.checklist { display: flex; flex-direction: column; gap: 8px; }
.check-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-light); font-weight: 500;
  padding: 8px 10px; border-radius: var(--radius);
  background: var(--off-white);
}
.check-icon { color: var(--success); font-size: 15px; flex-shrink: 0; }

.area-list {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
}
.area-tag {
  font-size: 12px; font-weight: 600;
  background: var(--off-white); color: var(--navy);
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid #dde4ec;
}

.side-card.emergency {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(230,48,39,0.15);
}
.side-card.emergency .side-card-head { background: var(--red); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
}
.footer-main {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px; padding: 60px 0 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-cert {
  display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap;
}
.cert-badge {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--muted); padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.footer-col-title::before {
  content: '';
  display: block; width: 16px; height: 2px; background: var(--red);
}
.footer-links-list { display: flex; flex-direction: column; gap: 8px; }
.footer-links-list li { font-size: 13px; color: var(--muted); }
.footer-links-list a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links-list a:hover { color: var(--silver); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--muted); }
.footer-legal a:hover { color: var(--muted); }

/* ─── HAMBURGER TOGGLE (hidden on desktop) ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-close-btn {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  z-index: 202;
  padding: 4px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form { display: none; }
  .hero-image { display: none; }
  .hero h1 { font-size: 52px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .whyus-layout { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .cta-action { width: 100%; align-items: center; }
  .cta-phone-num { justify-content: center; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 36px; }
  .page-title { font-size: 38px; }
  .topbar-badge { display: none; }
  .cta-content h2 { font-size: 38px; }
}

@media (max-width: 640px) {
  /* Topbar */
  .topbar-left .topbar-item:last-child { display: none; }
  .topbar-right .topbar-badge { display: none; }

  /* Nav: full-screen drawer */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    z-index: 200;
    gap: 0;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 16px 20px;
    font-size: 18px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu a.nav-cta {
    margin-top: 24px;
    border-radius: var(--radius);
    text-align: center;
    justify-content: center;
    display: flex;
    border-bottom: none;
  }
  .nav-close-btn { display: block; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* Section spacing */
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  .cta-banner { padding: 50px 0; }

  /* Hero */
  .hero-inner { padding: 48px 20px; }
  .hero h1 { font-size: 38px; }
  .hero h1 .location { font-size: 26px; }
  .hero-desc { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px; }

  /* Stats */
  .stat-num { font-size: 36px; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Why us */
  .big-stat.featured { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Process */
  .process-step { padding: 0 8px 36px; }

  /* CTA */
  .cta-content h2 { font-size: 28px; }
  .cta-phone-num { font-size: 26px; }

  /* Typography */
  .section-title { font-size: 30px; }
  .page-title { font-size: 28px; }
  .page-subtitle { font-size: 15px; }

  /* Footer */
  .topbar-left { flex-wrap: wrap; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero h1 .location { font-size: 20px; }
  .section-title { font-size: 24px; }
  .page-title { font-size: 22px; }
  .cta-phone-num { font-size: 20px; }
  .topbar-inner { flex-wrap: wrap; gap: 6px; }
  .logo-name { font-size: 20px; }
  .logo-sub { font-size: 10px; }
}
