@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --red: #C8241A;
  --red-dark: #9e1913;
  --navy: #0f1f3a;
  --navy-mid: #1a2f52;
  --gold: #D4952A;
  --gold-light: #f0b84a;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --gray-light: #e8e5e0;
  --gray-mid: #9a9590;
  --text: #1e1a16;
}

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

html, body {
  overflow-x: hidden;
}

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

/* ── EMERGENCY BAR ── */
.emergency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--red); color: white;
  height: 48px;
  padding: 0 20px;
  font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: nowrap;
  text-align: center; overflow: hidden;
}
.emergency-bar a {
  color: white; font-weight: 600; font-size: 18px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6); padding: 4px 16px; border-radius: 3px;
}
.pulse { animation: pulse 2s infinite; display: inline-block; margin-right: 6px; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

/* ── NAV ── */
nav {
  position: fixed; top: 48px; left: 0; right: 0; z-index: 999;
  background: var(--navy); padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo { display:flex; align-items:center; gap:10px; padding:4px 0; text-decoration:none; }
.nav-logo-img { height:44px; width:auto; display:block; }
.nav-brand-name { font-family:'Oswald',sans-serif; font-size:18px; font-weight:700; color:white; letter-spacing:0.03em; line-height:1.15; white-space:nowrap; }
.nav-links { display:flex; gap:22px; list-style:none; }
.nav-links a { color:rgba(255,255,255,0.85); text-decoration:none; font-size:14px; font-weight:500; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { background:var(--gold)!important; color:var(--navy)!important; padding:8px 18px!important; border-radius:3px; font-family:'Oswald',sans-serif!important; font-weight:700!important; font-size:14px!important; }

/* ── HAMBURGER ── */
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:6px; z-index:1001; }
.hamburger span { display:block; width:26px; height:3px; background:white; margin:5px 0; border-radius:2px; transition:all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-6px); }

@media(max-width:900px){
  .hamburger { display:block; }
  nav .nav-links {
    display:none; flex-direction:column; position:fixed; top:118px; left:0; right:0; bottom:0;
    background:var(--navy); padding:24px 5%; gap:0; overflow-y:auto; z-index:998;
  }
  nav .nav-links.open { display:flex; }
  nav .nav-links li { border-bottom:1px solid rgba(255,255,255,0.1); }
  nav .nav-links a { display:block; padding:16px 0; font-size:17px; color:rgba(255,255,255,0.9); }
  nav .nav-links .nav-cta { text-align:center; margin-top:12px; padding:14px 18px!important; font-size:17px!important; }
}

/* ── PAGE WRAPPER ── */
.page-wrap { margin-top: 118px; }

/* ── HERO ── */
.hero {
  background: var(--navy); min-height: 90vh;
  display: grid; grid-template-columns: 1fr 420px; position: relative; overflow: hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 30% 60%, rgba(200,36,26,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,149,42,0.08) 0%, transparent 50%);
}
.hero-content { padding:64px 6% 64px 8%; position:relative; z-index:2; display:flex; flex-direction:column; justify-content:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(212,149,42,0.15); border:1px solid var(--gold); color:var(--gold-light); font-family:'Oswald',sans-serif; font-size:12px; letter-spacing:0.12em; padding:6px 14px; border-radius:2px; margin-bottom:24px; text-transform:uppercase; width:fit-content; }
.hero h1 { font-family:'Oswald',sans-serif; font-size:clamp(36px,5vw,62px); font-weight:700; color:white; line-height:1.05; margin-bottom:20px; }
.hero h1 em { color:var(--gold); font-style:normal; display:block; }
.hero-sub { font-family:'Source Serif 4',serif; font-size:18px; color:rgba(255,255,255,0.75); margin-bottom:28px; max-width:520px; line-height:1.7; font-weight:300; }
.hero-owner { display:flex; align-items:center; gap:14px; margin-bottom:32px; padding:16px 20px; background:rgba(255,255,255,0.06); border-left:3px solid var(--gold); max-width:500px; }
.hero-owner-icon { width:44px; height:44px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Oswald',sans-serif; font-weight:700; font-size:18px; color:var(--navy); flex-shrink:0; }
.hero-owner-text { font-size:14px; color:rgba(255,255,255,0.8); }
.hero-owner-text strong { color:white; display:block; font-size:15px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:32px; }
.hero-trust { display:flex; gap:18px; flex-wrap:wrap; }
.trust-chip { display:flex; align-items:center; gap:6px; font-size:13px; color:rgba(255,255,255,0.7); }
.trust-chip .ck { color:var(--gold); }

/* ── LEAD FORM ── */
.hero-form { background:white; padding:40px 32px; display:flex; flex-direction:column; justify-content:center; z-index:2; box-shadow:-4px 0 40px rgba(0,0,0,0.3); }
.form-heading { font-family:'Oswald',sans-serif; font-size:19px; font-weight:600; color:var(--navy); margin-bottom:4px; text-transform:uppercase; letter-spacing:0.04em; }
.form-sub { font-size:13px; color:var(--gray-mid); margin-bottom:20px; font-style:italic; font-family:'Source Serif 4',serif; }
.fg { margin-bottom:12px; }
.fg label { display:block; font-size:11px; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; color:var(--navy-mid); margin-bottom:4px; }
.fg input, .fg select, .fg textarea { width:100%; padding:10px 13px; border:1.5px solid var(--gray-light); border-radius:3px; font-family:'DM Sans',sans-serif; font-size:15px; color:var(--text); background:var(--off-white); transition:border-color 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline:none; border-color:var(--red); background:white; }
.fg textarea { resize:vertical; min-height:72px; }
.btn-submit { width:100%; background:var(--red); color:white; padding:14px; font-family:'Oswald',sans-serif; font-size:17px; font-weight:600; letter-spacing:0.05em; border:none; border-radius:3px; cursor:pointer; margin-top:4px; }
.btn-submit:hover { background:var(--red-dark); }
.form-micro { font-size:12px; color:var(--gray-mid); text-align:center; margin-top:8px; font-style:italic; }

/* ── BUTTONS ── */
.btn-call { background:var(--red); color:white; padding:15px 30px; font-family:'Oswald',sans-serif; font-size:18px; font-weight:600; letter-spacing:0.04em; text-decoration:none; border-radius:3px; display:inline-flex; align-items:center; gap:9px; }
.btn-call:hover { background:var(--red-dark); }
.btn-call-lg { font-size:22px; padding:20px 44px; }
.btn-text-link { background:transparent; color:white; padding:15px 26px; font-family:'Oswald',sans-serif; font-size:16px; font-weight:500; letter-spacing:0.04em; text-decoration:none; border-radius:3px; border:2px solid rgba(255,255,255,0.4); display:inline-flex; align-items:center; gap:8px; }
.btn-white { background:white; color:var(--red); padding:17px 34px; font-family:'Oswald',sans-serif; font-size:18px; font-weight:700; letter-spacing:0.04em; text-decoration:none; border-radius:3px; display:inline-flex; align-items:center; gap:8px; }
.btn-outline-w { background:transparent; color:white; padding:17px 32px; font-family:'Oswald',sans-serif; font-size:16px; font-weight:600; letter-spacing:0.04em; text-decoration:none; border-radius:3px; border:2px solid rgba(255,255,255,0.55); display:inline-flex; align-items:center; gap:8px; }

/* ── CREDENTIAL BAR ── */
.cred-bar { background:var(--navy-mid); padding:16px 5%; display:flex; justify-content:center; align-items:center; gap:36px; flex-wrap:wrap; }
.cred-item { display:flex; align-items:center; gap:8px; color:rgba(255,255,255,0.85); font-size:13px; font-weight:500; }
.cred-icon { width:30px; height:30px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--navy); font-weight:700; flex-shrink:0; }

/* ── INSURANCE BAR ── */
.ins-bar { background:var(--off-white); padding:18px 5%; text-align:center; border-bottom:1px solid var(--gray-light); }
.ins-label { font-family:'Oswald',sans-serif; font-size:12px; letter-spacing:0.1em; color:var(--gray-mid); text-transform:uppercase; margin-bottom:10px; }
.carrier-row { display:flex; justify-content:center; align-items:center; gap:10px; flex-wrap:wrap; }
.carrier { background:white; border:1px solid var(--gray-light); padding:6px 16px; border-radius:4px; font-size:13px; font-weight:600; color:var(--navy); }

/* ── SECTIONS ── */
section { padding:72px 8%; }
.section-label { font-family:'Oswald',sans-serif; font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--red); margin-bottom:8px; display:block; }
.section-title { font-family:'Oswald',sans-serif; font-size:clamp(26px,3.5vw,42px); font-weight:700; color:var(--navy); line-height:1.1; margin-bottom:14px; }
.section-body { font-family:'Source Serif 4',serif; font-size:17px; color:#4a453f; line-height:1.75; max-width:680px; font-weight:300; }

/* ── SERVICES GRID ── */
.services-section { background:var(--off-white); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:18px; margin-top:44px; }
.svc-card { background:white; border-radius:4px; padding:28px 24px; border-top:4px solid var(--red); box-shadow:0 2px 14px rgba(0,0,0,0.06); }
.svc-card:hover { transform:translateY(-3px); box-shadow:0 8px 28px rgba(0,0,0,0.11); transition:all 0.2s; }
.svc-icon { font-size:30px; margin-bottom:12px; display:block; }
.svc-card h3 { font-family:'Oswald',sans-serif; font-size:18px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.svc-card p { font-size:14px; color:#6a6460; line-height:1.6; margin-bottom:16px; }
.svc-link { font-family:'Oswald',sans-serif; font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:var(--red); text-decoration:none; border-bottom:2px solid var(--red); padding-bottom:1px; }

/* ── WHY CHOOSE ── */
.why-section { background:var(--navy); display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:72px 8%; }
.why-list { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:32px; }
.why-item { display:flex; align-items:flex-start; gap:10px; color:rgba(255,255,255,0.85); font-size:14px; font-weight:500; }
.why-check { width:22px; height:22px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; color:var(--navy); font-weight:700; flex-shrink:0; margin-top:1px; }
.owner-box { background:rgba(255,255,255,0.05); border:1px solid rgba(212,149,42,0.3); border-radius:4px; padding:36px; }
.owner-avatar { width:68px; height:68px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Oswald',sans-serif; font-weight:700; font-size:26px; color:var(--navy); margin-bottom:18px; }
.owner-quote { font-family:'Source Serif 4',serif; font-size:15px; color:rgba(255,255,255,0.8); font-style:italic; line-height:1.7; margin-bottom:16px; font-weight:300; }
.owner-sig { font-family:'Oswald',sans-serif; font-weight:600; color:var(--gold-light); font-size:14px; letter-spacing:0.04em; }

/* ── CITIES GRID ── */
.area-section { background:var(--off-white); }
.cities-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:10px; margin-top:32px; }
.city-link { background:white; border:1px solid var(--gray-light); padding:11px 15px; border-radius:3px; font-size:14px; font-weight:500; color:var(--navy); text-decoration:none; display:flex; align-items:center; gap:7px; }
.city-link:hover { background:var(--red); color:white; border-color:var(--red); }

/* ── REVIEWS ── */
.reviews-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:22px; margin-top:44px; }
.review-card { background:white; border-radius:4px; padding:26px; border-left:4px solid var(--gold); box-shadow:0 2px 12px rgba(0,0,0,0.06); }
.stars { color:var(--gold); font-size:15px; margin-bottom:10px; }
.review-text { font-family:'Source Serif 4',serif; font-size:15px; font-style:italic; color:#4a453f; line-height:1.7; margin-bottom:16px; font-weight:300; }
.review-meta strong { display:block; font-size:14px; font-weight:700; color:var(--navy); }
.review-meta span { font-size:12px; color:var(--gray-mid); }

/* ── FAQ ── */
.faq-section { background:var(--off-white); }
.faq-list { margin-top:36px; max-width:780px; }
.faq-item { border-bottom:1px solid var(--gray-light); }
details summary { padding:18px 0; font-family:'Oswald',sans-serif; font-size:17px; font-weight:500; color:var(--navy); cursor:pointer; list-style:none; display:flex; justify-content:space-between; }
details summary::-webkit-details-marker { display:none; }
details summary::after { content:'＋'; color:var(--red); font-size:20px; flex-shrink:0; margin-left:14px; }
details[open] summary::after { content:'－'; }
details p { padding-bottom:18px; font-family:'Source Serif 4',serif; font-size:15px; color:#4a453f; line-height:1.7; font-weight:300; max-width:720px; }

/* ── PROBLEM GRID ── */
.problems-section { background:var(--navy); }
.problems-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:14px; margin-top:36px; }
.prob-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:4px; padding:22px 18px; text-decoration:none; display:block; }
.prob-card:hover { background:var(--red); border-color:var(--red); }
.prob-icon { font-size:24px; margin-bottom:8px; display:block; }
.prob-card h3 { font-family:'Oswald',sans-serif; font-size:15px; font-weight:600; color:white; margin-bottom:5px; }
.prob-card p { font-size:13px; color:rgba(255,255,255,0.6); line-height:1.5; }

/* ── CTA SECTION ── */
.cta-section { background:var(--red); padding:72px 8%; text-align:center; }
.cta-section h2 { font-family:'Oswald',sans-serif; font-size:clamp(26px,3.5vw,46px); font-weight:700; color:white; margin-bottom:10px; }
.cta-section p { font-family:'Source Serif 4',serif; font-size:17px; color:rgba(255,255,255,0.85); margin-bottom:32px; font-weight:300; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── HUB / INNER PAGE ── */
.breadcrumb { background:var(--off-white); padding:14px 8%; font-size:13px; color:var(--gray-mid); border-bottom:1px solid var(--gray-light); }
.breadcrumb a { color:var(--red); text-decoration:none; }
.page-hero { background:var(--navy); padding:64px 8% 56px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 70% 50%, rgba(200,36,26,0.1) 0%, transparent 60%); }
.page-hero h1 { font-family:'Oswald',sans-serif; font-size:clamp(30px,4vw,50px); font-weight:700; color:white; margin-bottom:14px; position:relative; z-index:2; line-height:1.1; }
.page-hero p { font-family:'Source Serif 4',serif; font-size:17px; color:rgba(255,255,255,0.75); max-width:640px; font-weight:300; line-height:1.7; position:relative; z-index:2; margin-bottom:24px; }
.page-body { padding:60px 8%; }
.page-body h2 { font-family:'Oswald',sans-serif; font-size:25px; font-weight:600; color:var(--navy); margin:36px 0 14px; }
.page-body h2:first-child { margin-top:0; }
.page-body p { font-family:'Source Serif 4',serif; font-size:16px; color:#4a453f; line-height:1.75; margin-bottom:14px; font-weight:300; max-width:760px; }
.page-body ul, .page-body ol { margin:14px 0 18px 22px; max-width:720px; }
.page-body li { font-family:'Source Serif 4',serif; font-size:15px; color:#4a453f; line-height:1.7; margin-bottom:7px; font-weight:300; }
.page-body li strong { color:var(--navy); font-weight:600; }

/* ── PROCESS STEPS ── */
.process-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:18px; margin:20px 0 32px; }
.step-card { background:var(--off-white); border-radius:4px; padding:22px; border-top:3px solid var(--red); }
.step-num { font-family:'Oswald',sans-serif; font-size:34px; font-weight:700; color:var(--red); opacity:0.25; line-height:1; margin-bottom:6px; }
.step-card h3 { font-family:'Oswald',sans-serif; font-size:15px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.step-card p { font-size:13px; color:#6a6460; line-height:1.6; }

/* ── CITY SPOKES LIST ── */
.spokes-list { display:grid; grid-template-columns:repeat(auto-fill,minmax(195px,1fr)); gap:9px; margin:18px 0; }
.spoke-link { background:var(--off-white); border:1px solid var(--gray-light); border-radius:3px; padding:9px 13px; font-size:13px; font-weight:500; color:var(--navy); text-decoration:none; display:flex; align-items:center; gap:6px; }
.spoke-link:hover { background:var(--red); color:white; border-color:var(--red); }

/* ── INLINE CTA BAR ── */
.inline-cta { background:var(--navy); padding:24px 28px; border-radius:4px; display:flex; align-items:center; justify-content:space-between; gap:18px; margin:44px 0; flex-wrap:wrap; }
.inline-cta p { font-family:'Oswald',sans-serif; font-size:17px; color:white; font-weight:500; margin:0!important; max-width:100%!important; }

/* ── BOTTOM CTA + FORM ── */
.bottom-cta-section { background:var(--navy); padding:72px 8%; display:grid; grid-template-columns:1fr 420px; gap:60px; align-items:center; }

/* ── FOOTER ── */
footer { background:#090e1a; padding:60px 8% 28px; color:rgba(255,255,255,0.6); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; margin-bottom:44px; }
.footer-brand p { font-size:13px; line-height:1.7; margin-bottom:14px; }
.footer-phone { display:flex; align-items:center; gap:7px; color:var(--gold-light); text-decoration:none; font-family:'Oswald',sans-serif; font-size:17px; font-weight:600; margin-bottom:5px; }
.footer-addr { font-size:13px; color:rgba(255,255,255,0.4); line-height:1.6; }
.footer-col h4 { font-family:'Oswald',sans-serif; font-size:13px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:white; margin-bottom:16px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:7px; }
.footer-col a { color:rgba(255,255,255,0.55); text-decoration:none; font-size:13px; }
.footer-col a:hover { color:var(--gold-light); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding-top:20px; display:flex; justify-content:space-between; align-items:center; font-size:12px; flex-wrap:wrap; gap:8px; color:rgba(255,255,255,0.3); }
.footer-bottom a { color:var(--gold-light); text-decoration:none; }

/* ── LOGO IMAGES ── */
.nav-logo-img { height:48px; width:auto; display:block; }
.footer-logo-img { height:70px; width:auto; display:block; margin-bottom:8px; }
.footer-brand-name { font-family:'Oswald',sans-serif; font-size:20px; font-weight:700; color:white; margin-bottom:10px; }

/* ── MOBILE ── */
@media(max-width:900px){
  .hero { grid-template-columns:1fr; }
  .bottom-cta-section { grid-template-columns:1fr; }
  .why-section { grid-template-columns:1fr; gap:36px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  nav { padding:0 5%; }
  section { padding:52px 5%; }
  .hero-content { padding:36px 5%; }
  .page-body { padding:48px 5%; }
  .page-hero { padding:52px 5% 44px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .why-section { padding:52px 5%; }
  .cta-section { padding:52px 5%; }
  .inline-cta { flex-direction:column; align-items:flex-start; }
  .emergency-bar { gap:8px; font-size:13px; }
  .emergency-bar span:first-child { display:none; }
  .emergency-bar span:last-child { display:none; }
  .emergency-bar::before { content:'🔴 CALL NOW'; font-weight:600; }
}

/* ── STICKY MOBILE CTA ── */
.sticky-mobile-cta {
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:1000;
  background:var(--navy); padding:10px 12px;
  box-shadow:0 -2px 16px rgba(0,0,0,0.3);
  width:100%; max-width:100vw; box-sizing:border-box;
}
.sticky-mobile-cta .sticky-btns {
  display:grid; grid-template-columns:1fr 1fr; gap:10px;
}
.sticky-mobile-cta .sticky-btns a {
  text-align:center; padding:14px 0; border-radius:4px;
  font-family:'Oswald',sans-serif; font-size:16px; font-weight:600;
  letter-spacing:0.04em; text-decoration:none;
  display:block; line-height:1;
}
.sticky-btn-call { background:var(--red); color:white; }
.sticky-btn-text { background:var(--gold); color:var(--navy); }
@media(max-width:900px){
  .sticky-mobile-cta { display:block; }
  .page-wrap { padding-bottom:80px; }
}
