/* ============================================================
   24 Hour Plumber Portland — "Red Alert" Premium Theme
   Call-conversion PPC site. Red = call actions / energy,
   navy = trust/structure, blue = quiet links. Fully tokenized.
   Signature: diagonal hero edge + gradient heading-underline,
   gradient icon tiles, process timeline, radial-glow bands.
   ============================================================ */

:root {
  --navy: #141c2c;
  --navy-2: #1f2c45;
  --navy-3: #0f1622;
  --blue: #1e63c4;
  --blue-2: #174c99;
  --blue-light: #e9f1fb;
  --red: #e01e2b;
  --red-2: #bb1320;
  --red-3: #ff5a64;
  --red-ink: #ffffff;
  --amber: #ff8a3d;
  --text: #18212f;
  --muted: #59657a;
  --line: #e3e8f1;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-dark: #141c2c;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-tile: 15px;
  --shadow-sm: 0 2px 6px rgba(20, 28, 44, 0.07);
  --shadow: 0 6px 22px rgba(20, 28, 44, 0.11);
  --shadow-lg: 0 22px 50px rgba(20, 28, 44, 0.20);
  --grad-red: linear-gradient(140deg, var(--red) 0%, var(--red-2) 100%);
  --grad-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  --tile-shadow: 0 12px 24px rgba(224, 30, 43, 0.28);
  --container: 1240px;
  --transition: 0.22s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: 'Figtree', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
h1, h2, h3, h4 { font-family: 'Archivo', 'Figtree', sans-serif; font-weight: 800; color: var(--navy); line-height: 1.15; margin: 0 0 0.6em; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); letter-spacing: -0.025em; font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--muted); }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224, 30, 43, 0.09); color: var(--red-2);
  padding: 7px 15px; border-radius: 999px;
  font-weight: 800; font-size: 0.76rem; letter-spacing: 0.07em;
  text-transform: uppercase; font-family: 'Archivo', sans-serif;
}
.eyebrow.center { display: inline-flex; }
.accent { color: var(--red); }

/* signature gradient heading-underline motif */
.section-head h2::after,
.seo-head h2::after,
.media-text h2::after,
.contact-info h2::after {
  content: ""; display: block; width: 64px; height: 4px; margin: 16px auto 0;
  background: linear-gradient(90deg, var(--red), var(--amber));
  border-radius: 2px;
}
.section-head.left h2::after,
.media-text h2::after,
.contact-info h2::after { margin-left: 0; margin-right: auto; }

/* "Open now" pulse */
.open-dot { width: 9px; height: 9px; border-radius: 50%; background: #3ddc84; display: inline-block; animation: blink 1.6s infinite; flex-shrink: 0; }
@keyframes blink { 0%,100% { box-shadow: 0 0 0 0 rgba(61,220,132,0.55); } 60% { box-shadow: 0 0 0 7px rgba(61,220,132,0); } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem; font-family: 'Archivo', 'Figtree', sans-serif;
  border: 2px solid transparent; cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px rgba(30, 99, 196, 0.30); }
.btn-primary:hover { background: var(--blue-2); color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(30, 99, 196, 0.40); }
.btn-accent { background: var(--grad-red); color: var(--red-ink); box-shadow: 0 12px 26px rgba(224, 30, 43, 0.36); }
.btn-accent:hover { color: var(--red-ink); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(224, 30, 43, 0.5); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: var(--white); color: var(--navy); }
.btn-white { background: var(--white); color: var(--red-2); }
.btn-white:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar { background: var(--navy); color: rgba(255, 255, 255, 0.88); font-size: 0.83rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-left i, .topbar-right i { color: var(--red-3); margin-right: 6px; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right a { color: rgba(255, 255, 255, 0.88); font-weight: 700; }
.topbar-right a:hover { color: var(--white); }
.topbar .open-now { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: #b9f0d0; }
.hide-sm { display: inline; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.16rem; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; background: var(--grad-red); color: var(--white); border-radius: 14px; font-size: 1.15rem; box-shadow: var(--tile-shadow); }
.brand-text { line-height: 1.08; font-weight: 600; letter-spacing: 0.01em; }
.brand-text strong { display: block; font-weight: 900; }

/* Nav */
.primary-nav > ul { display: flex; gap: 6px; align-items: center; }
.primary-nav a { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 700; font-size: 0.95rem; padding: 10px 14px; border-radius: 9px; }
.primary-nav a:hover { background: rgba(224, 30, 43, 0.08); color: var(--red-2); }
.primary-nav li { position: relative; }
.mega { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 260px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 12px; display: none; flex-direction: column; gap: 2px; }
.mega a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 0.92rem; }
.mega a i { color: var(--red); width: 18px; text-align: center; }
.primary-nav .has-mega:hover .mega { display: flex; }
.mega.two-col { min-width: 460px; flex-direction: row; flex-wrap: wrap; }
.mega.two-col a { width: calc(50% - 4px); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-pill { display: inline-flex; align-items: center; gap: 12px; background: var(--grad-red); color: var(--white); padding: 10px 18px; border-radius: 999px; box-shadow: 0 10px 22px rgba(224, 30, 43, 0.32); white-space: nowrap; flex-shrink: 0; }
.phone-pill:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(224, 30, 43, 0.44); }
.phone-pill i { font-size: 1.2rem; }
.phone-pill small { display: block; font-size: 0.7rem; opacity: 0.9; line-height: 1; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.phone-pill strong { font-size: 1.02rem; line-height: 1.2; font-weight: 900; }
.nav-toggle { display: none; background: rgba(224, 30, 43, 0.08); border: none; color: var(--red-2); font-size: 1.3rem; width: 44px; height: 44px; border-radius: 11px; cursor: pointer; }

/* ============================================================
   HERO — CSS-only night gradient + diagonal signature edge
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(224, 30, 43, 0.24) 0%, transparent 60%),
    radial-gradient(700px 480px at -10% 110%, rgba(30, 99, 196, 0.30) 0%, transparent 60%),
    linear-gradient(125deg, var(--navy-3) 0%, var(--navy) 45%, var(--navy-2) 100%);
  color: var(--white); padding: 92px 0 124px; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.hero::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,0.022) 0 2px, transparent 2px 26px); pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 24% 30%, rgba(30, 99, 196, 0.26) 0%, transparent 55%); pointer-events: none; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.18fr 1fr; gap: 56px; align-items: center; z-index: 1; }
.hero-text .eyebrow { background: rgba(255, 255, 255, 0.14); color: #fff; backdrop-filter: blur(8px); }
.hero-text h1 { color: var(--white); margin-top: 18px; }
.hero-text .accent { color: var(--red-3); }
.hero-text .lead { color: rgba(255, 255, 255, 0.88); font-size: 1.14rem; max-width: 580px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }
.hero-points { display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.94rem; color: rgba(255, 255, 255, 0.92); }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points i { color: var(--red-3); }

/* hero call card (replaces lead form — calls are the conversion) */
.hero-card { background: var(--white); color: var(--text); border-radius: var(--radius-lg); padding: 34px 30px 28px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32); position: relative; border-top: 5px solid var(--red); }
.hero-card-badge { position: absolute; top: -24px; left: 30px; width: 52px; height: 52px; display: grid; place-items: center; background: var(--navy); color: var(--white); border-radius: 14px; font-size: 1.25rem; box-shadow: 0 12px 24px rgba(20, 28, 44, 0.4); border: 2px solid var(--red); }
.call-card { text-align: center; }
.call-card .call-card-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; color: var(--red); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }
.call-card-number { display: block; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 2.5rem); color: var(--navy); letter-spacing: -0.02em; margin: 4px 0 16px; }
.call-card-number:hover { color: var(--red); }
.call-card-points { display: grid; gap: 11px; margin: 20px 0 6px; text-align: left; }
.call-card-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: var(--text); }
.call-card-points i { color: var(--red); margin-top: 3px; width: 18px; text-align: center; flex-shrink: 0; }
.quick-form { display: grid; gap: 10px; margin-top: 14px; }
.quick-form input, .quick-form select, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 8px; font: inherit; color: var(--text); background: var(--bg-soft);
  transition: border-color var(--transition), background var(--transition);
}
.quick-form input:focus, .quick-form select:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.form-note { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.8rem; margin-top: 4px; }
.form-note i { color: var(--blue); }

/* ============================================================
   TRUST STRIP — gradient icon tiles
   ============================================================ */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 15px; padding: 8px 4px; }
.trust-item i { font-size: 1.3rem; color: #fff; width: 52px; height: 52px; display: grid; place-items: center; background: var(--grad-red); border-radius: var(--radius-tile); flex-shrink: 0; box-shadow: var(--tile-shadow); }
.trust-item strong { display: block; color: var(--navy); font-size: 0.98rem; }
.trust-item span { color: var(--muted); font-size: 0.82rem; }

/* SECTION HEAD */
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head.left { text-align: left; margin: 0 0 30px; }
.section-head .eyebrow { margin-bottom: 4px; }
.section-head h2 { margin-top: 16px; }
.section-head p { font-size: 1.05rem; }

/* SERVICES — premium cards */
.services-section { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--amber)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; background: var(--grad-red); color: #fff; border-radius: var(--radius-tile); font-size: 1.45rem; margin-bottom: 22px; box-shadow: var(--tile-shadow); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red-2); font-weight: 800; font-size: 0.92rem; }
.service-link:hover { gap: 10px; color: var(--red); }

/* PROCESS — timeline with dashed connector */
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.process-grid::before { content: ""; position: absolute; top: 50px; left: 12%; right: 12%; height: 3px; background: repeating-linear-gradient(90deg, var(--line) 0 9px, transparent 9px 18px); z-index: 0; }
.process-step { position: relative; z-index: 1; background: var(--bg-soft); border-radius: var(--radius-lg); padding: 38px 28px 28px; border: 1px solid var(--line); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.step-num { position: absolute; top: 16px; right: 20px; font-family: 'Archivo', sans-serif; font-size: 2.6rem; font-weight: 900; color: rgba(224, 30, 43, 0.12); line-height: 1; }
.step-icon { font-size: 1.55rem; color: #fff; width: 60px; height: 60px; background: var(--grad-red); display: grid; place-items: center; border-radius: var(--radius-tile); box-shadow: var(--tile-shadow); margin-bottom: 20px; }
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; margin: 0; }

/* URGENCY CTA */
.urgency-cta { background: linear-gradient(120deg, var(--navy-3) 0%, var(--navy) 50%, var(--navy-2) 100%); color: var(--white); padding: 74px 0; position: relative; overflow: hidden; }
.urgency-cta::before { content: ""; position: absolute; top: -60%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(224, 30, 43, 0.22) 0%, transparent 65%); pointer-events: none; }
.urgency-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center; position: relative; }
.urgency-text h2 { color: var(--white); margin-bottom: 12px; }
.urgency-text h2::after { content: ""; display: block; width: 62px; height: 4px; margin: 14px 0 0; background: linear-gradient(90deg, var(--red), var(--amber)); border-radius: 2px; }
.urgency-text p { color: rgba(255, 255, 255, 0.88); margin: 0; font-size: 1.05rem; }
.urgency-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* WHY US — premium cards + gradient tiles */
.why-section { background: var(--bg-soft); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 28px; border: 1px solid var(--line); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card i { font-size: 1.4rem; color: #fff; background: var(--grad-red); width: 56px; height: 56px; display: grid; place-items: center; border-radius: var(--radius-tile); margin-bottom: 18px; box-shadow: var(--tile-shadow); }
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: 0.94rem; margin: 0; }

/* STATS — radial-glow band */
.stats-section { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%); color: var(--white); padding: 66px 0; }
.stats-section::before { content: ""; position: absolute; top: -55%; left: -8%; width: 540px; height: 540px; background: radial-gradient(circle, rgba(224, 30, 43, 0.20) 0%, transparent 64%); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; position: relative; }
.stat strong { display: block; font-family: 'Archivo', sans-serif; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.stat strong small { font-size: 0.5em; opacity: 0.75; margin-left: 2px; color: var(--red-3); }
.stat span { display: block; margin-top: 10px; font-size: 0.92rem; opacity: 0.9; letter-spacing: 0.03em; text-transform: uppercase; font-weight: 700; }

/* COVERAGE / AREAS */
.coverage-section { background: var(--white); }
.states-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; background: var(--bg-soft); border-radius: var(--radius-lg); padding: 18px; }
.states-grid a { display: block; padding: 12px 14px; border-radius: 8px; font-size: 0.92rem; font-weight: 700; color: var(--navy); transition: background var(--transition), color var(--transition); }
.states-grid a:hover { background: var(--red); color: var(--white); }

/* TESTIMONIALS */
.testimonials-section { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; border-top: 4px solid var(--red); }
.stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { font-style: italic; font-size: 1rem; color: var(--text); margin-bottom: 20px; flex: 1; }
.testimonial footer { border-top: 1px solid var(--line); padding-top: 14px; }
.testimonial footer strong { display: block; color: var(--navy); }
.testimonial footer span { color: var(--muted); font-size: 0.86rem; }

/* FAQ — answers always visible (no fold) */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.faq-item { background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius); padding: 24px 24px; transition: transform var(--transition), box-shadow var(--transition); }
.faq-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.faq-q { display: flex; gap: 11px; align-items: flex-start; font-size: 1.04rem; color: var(--navy); margin: 0 0 9px; font-family: 'Archivo', sans-serif; font-weight: 800; line-height: 1.3; }
.faq-q i { color: var(--red); margin-top: 3px; flex-shrink: 0; font-size: 0.95rem; }
.faq-a { margin: 0; font-size: 0.95rem; color: var(--muted); }
.faq-a a { font-weight: 700; }

/* CONTACT */
.contact-section { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.contact-info h2 { margin-top: 16px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list i { font-size: 1.05rem; color: #fff; background: var(--grad-red); width: 46px; height: 46px; display: grid; place-items: center; border-radius: var(--radius-tile); flex-shrink: 0; box-shadow: var(--tile-shadow); }
.contact-list strong { display: block; color: var(--navy); font-size: 0.95rem; }
.contact-list a, .contact-list span { color: var(--muted); font-size: 0.95rem; }
.contact-list a:hover { color: var(--red); }

/* call panel (replaces contact form — calls are the conversion) */
.call-panel { background: var(--grad-navy); color: rgba(255,255,255,0.9); border-radius: var(--radius-lg); padding: 46px 34px; text-align: center; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; }
.call-panel::before { content: ""; position: absolute; top: -50%; right: -20%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(224,30,43,0.24) 0%, transparent 65%); pointer-events: none; }
.call-panel > * { position: relative; }
.call-panel-badge { width: 64px; height: 64px; display: grid; place-items: center; background: var(--grad-red); color: var(--white); border-radius: var(--radius-tile); font-size: 1.5rem; margin-bottom: 18px; box-shadow: 0 12px 24px rgba(224, 30, 43, 0.4); }
.call-panel h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.call-panel p { color: rgba(255,255,255,0.82); margin-bottom: 16px; max-width: 360px; }
.call-panel-number { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(2.1rem, 4.5vw, 2.7rem); color: var(--white); display: block; margin-bottom: 18px; letter-spacing: -0.02em; }
.call-panel-number:hover { color: var(--red-3); }
.call-panel .btn-block { max-width: 380px; }
.call-panel .form-note { color: rgba(255,255,255,0.65); margin-top: 14px; }
.call-panel .form-note i { color: var(--red-3); }
.contact-form { background: var(--white); padding: 36px 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; border-top: 5px solid var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* FOOTER */
.site-footer { background: var(--navy-3); color: rgba(255, 255, 255, 0.78); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 42px; padding-bottom: 50px; }
.footer-brand .brand { color: var(--white); margin-bottom: 18px; }
.footer-brand p { color: rgba(255, 255, 255, 0.72); font-size: 0.94rem; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.08); color: var(--white); border-radius: 11px; transition: background var(--transition), transform var(--transition); }
.social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.72); font-size: 0.94rem; }
.footer-col a:hover { color: var(--white); padding-left: 3px; }
.footer-contact li { display: flex; gap: 10px; align-items: center; font-size: 0.94rem; }
.footer-contact i { color: var(--red-3); width: 18px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.86rem; color: rgba(255, 255, 255, 0.6); flex-wrap: wrap; gap: 10px; }

/* FLOATING CALL BUTTON */
.floating-call { display: none; position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 60px; height: 60px; background: var(--grad-red); color: var(--white); border-radius: 50%; font-size: 1.6rem; align-items: center; justify-content: center; box-shadow: 0 14px 30px rgba(224, 30, 43, 0.5); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(224, 30, 43, 0.5), 0 0 0 0 rgba(224, 30, 43, 0.45); }
  70% { box-shadow: 0 14px 30px rgba(224, 30, 43, 0.5), 0 0 0 18px rgba(224, 30, 43, 0); }
}

/* ============================================================
   PAGE ADDITIONS (service/area pages)
   ============================================================ */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: 0.85rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 12px 0; color: var(--muted); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--line); font-size: 0.8rem; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--red-2); font-weight: 600; }
.breadcrumb a:hover { color: var(--red); }

/* sub-hero for inner pages — diagonal signature edge */
.page-hero {
  position: relative;
  background:
    radial-gradient(700px 420px at 88% -20%, rgba(224, 30, 43, 0.22) 0%, transparent 60%),
    radial-gradient(620px 420px at -10% 120%, rgba(30, 99, 196, 0.22) 0%, transparent 60%),
    linear-gradient(125deg, var(--navy-3) 0%, var(--navy) 50%, var(--navy-2) 100%);
  color: var(--white); padding: 64px 0 92px; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 26px); pointer-events: none; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow { background: rgba(255,255,255,0.14); color: #fff; }
.page-hero h1 { color: var(--white); margin-top: 16px; max-width: 820px; }
.page-hero .lead { color: rgba(255,255,255,0.9); font-size: 1.13rem; max-width: 680px; }
.page-hero .hero-cta { margin-top: 24px; }
.page-hero .hero-points { margin-top: 22px; }

/* rich body content */
.content-section { background: var(--white); }
.prose { max-width: 820px; }
.prose p { font-size: 1.04rem; color: var(--muted); }
.prose h2 { margin-top: 8px; }
.prose ul.ticks { display: grid; gap: 10px; margin: 6px 0 18px; }
.prose ul.ticks li { position: relative; padding-left: 30px; color: var(--text); }
.prose ul.ticks li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--red); position: absolute; left: 0; top: 2px; }

/* two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.split.center { align-items: center; }

/* info card (sidebar / callout) */
.info-card { background: var(--navy); color: rgba(255,255,255,0.9); border-radius: var(--radius-lg); padding: 30px 28px; }
.info-card h3 { color: var(--white); }
.info-card.soft { background: var(--blue-light); color: var(--text); }
.info-card.soft h3 { color: var(--navy); }
.info-card.warn { background: #fff1f1; border: 1px solid #f6cdcd; color: var(--text); }
.info-card.warn h3 { color: var(--red-2); }

/* steps list */
.steps { counter-reset: s; display: grid; gap: 16px; }
.steps li { list-style: none; position: relative; padding-left: 58px; color: var(--muted); min-height: 44px; display: flex; flex-direction: column; justify-content: center; }
.steps li strong { color: var(--navy); }
.steps li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 0; width: 44px; height: 44px; background: var(--grad-red); color: #fff; border-radius: var(--radius-tile); display: grid; place-items: center; font-weight: 900; font-family: 'Archivo',sans-serif; box-shadow: var(--tile-shadow); }

/* price table */
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th { background: var(--navy); color: #fff; text-align: left; padding: 15px 18px; font-size: 0.9rem; font-family: 'Archivo', sans-serif; }
.price-table td { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--text); }
.price-table td:last-child { text-align: right; font-weight: 800; color: var(--navy); white-space: nowrap; }
.price-table tr:hover td { background: var(--bg-soft); }
.price-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }

/* offer band */
.offer-band { background: linear-gradient(120deg, #fff1f1, #fde3e3); border: 1px dashed var(--red); border-radius: var(--radius-lg); padding: 30px; text-align: center; }
.offer-band .big { color: var(--red-2); font-weight: 900; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .faq-grid, .contact-grid, .urgency-inner, .split { grid-template-columns: 1fr; }
  .urgency-cta-buttons { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .states-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mega.two-col { min-width: 320px; }
}
@media (max-width: 760px) {
  .topbar { display: none; }
  .primary-nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--white); box-shadow: var(--shadow-lg); padding: 80px 20px 20px; overflow-y: auto; transition: right 0.32s ease; z-index: 99; }
  .primary-nav.open { right: 0; }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav a { font-size: 1rem; }
  .mega { position: static; display: none; box-shadow: none; border: none; padding: 8px 0 8px 18px; min-width: 0; }
  .mega.two-col { flex-direction: column; min-width: 0; }
  .mega.two-col a { width: 100%; }
  .primary-nav .has-mega.open .mega { display: flex; }
  .nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0; }
  .header-inner { gap: 10px; min-height: 64px; }
  .brand { font-size: 0.95rem; gap: 8px; }
  .brand-mark { width: 38px; height: 38px; font-size: 1rem; border-radius: 11px; }
  .header-cta { gap: 8px; }
  .header-cta .phone-pill small { display: none; }
  .header-cta .phone-pill { padding: 9px 13px; gap: 8px; }
  .header-cta .phone-pill strong { font-size: 0.95rem; }
  .header-cta .phone-pill i { font-size: 1rem; }
  .services-grid, .process-grid, .why-grid, .testimonials-grid, .footer-grid, .stats-grid, .trust-grid, .form-row { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
  .hero { padding: 62px 0 92px; clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%); }
  .page-hero { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .urgency-cta-buttons { flex-direction: column; }
  .urgency-cta-buttons .btn { width: 100%; }
  .floating-call { display: flex; }
  .hide-sm { display: none; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .brand-text { font-size: 0.82rem; }
  .brand-mark { width: 34px; height: 34px; font-size: 0.95rem; }
  .header-cta .phone-pill { padding: 8px 11px; gap: 7px; }
  .header-cta .phone-pill strong { font-size: 0.86rem; }
  .header-cta .phone-pill i { font-size: 0.92rem; }
  h1 { font-size: clamp(1.7rem, 7vw, 2.1rem); }
}

/* ============================================================
   MEDIA + MAP + SEO SECTIONS  (images, embedded map, long-form copy)
   ============================================================ */
.media-section { background: var(--white); }
.media-section.alt { background: var(--bg-soft); }
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.media-grid.img-right .media-figure { order: 2; }
.media-figure { position: relative; }
.media-figure img { width: 100%; height: 100%; min-height: 340px; max-height: 470px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; background: var(--bg-soft); }
.media-badge { position: absolute; left: 20px; bottom: 20px; background: var(--grad-red); color: #fff; padding: 12px 18px; border-radius: var(--radius); font-weight: 800; box-shadow: 0 12px 26px rgba(224,30,43,0.42); display: inline-flex; gap: 10px; align-items: center; }
.media-badge i { font-size: 1.25rem; }
.media-badge small { display: block; font-weight: 600; opacity: 0.9; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }
.media-text h2 { margin-top: 14px; }
.media-text .btn { margin-top: 8px; }

/* trust badges row used inside who-we-are */
.cred-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 18px 0 22px; }
.cred-row div { display: flex; gap: 9px; align-items: center; font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.cred-row i { color: var(--red); font-size: 1.05rem; }

/* service-area / embedded map */
.map-section { background: var(--bg-soft); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.map-grid.map-right .map-frame { order: 2; }
.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.map-embed { width: 100%; min-height: 400px; height: 100%; border: 0; display: block; filter: saturate(1.05); }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }
.area-tags a { background: var(--white); border: 1px solid var(--line); color: var(--navy); padding: 8px 16px; border-radius: 999px; font-size: 0.86rem; font-weight: 700; }
.area-tags a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* long-form SEO content */
.seo-section { background: var(--white); }
.seo-section.alt { background: var(--bg-soft); }
.seo-section .container { max-width: 1010px; }
.seo-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.seo-body h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0 0 14px; }
.seo-body h3 { color: var(--navy); margin: 30px 0 10px; font-size: 1.2rem; }
.seo-body p { color: var(--muted); font-size: 1.04rem; margin: 0 0 16px; }
.seo-body a { font-weight: 700; }
.seo-body ul.ticks { display: grid; gap: 10px; margin: 8px 0 20px; }
.seo-body ul.ticks li { position: relative; padding-left: 30px; color: var(--text); }
.seo-body ul.ticks li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--red); position: absolute; left: 0; top: 3px; }
.seo-cols { columns: 2; column-gap: 42px; }
.seo-cols p { break-inside: avoid; }
.seo-note { font-size: 0.85rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; margin-top: 8px; }

@media (max-width: 900px) {
  .media-grid, .map-grid { grid-template-columns: 1fr; gap: 30px; }
  .media-grid.img-right .media-figure, .map-grid.map-right .map-frame { order: 0; }
  .media-figure img { max-height: 380px; }
  .map-embed { min-height: 320px; }
  .seo-cols { columns: 1; }
}
