/* ==========================================================================
   Titanic Auto Transport — Site Stylesheet
   ========================================================================== */

:root {
  --navy: #071c47;
  --navy-2: #0b2760;
  --blue: #0257b3;
  --blue-bright: #1f7ae0;
  --blue-pale: #eaf2fd;
  --ink: #16233c;
  --gray: #5b6b85;
  --gray-light: #eef1f6;
  --border: #dfe4ee;
  --white: #ffffff;
  --gold: #ffb400;
  --success: #1c9a5b;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(7, 28, 71, 0.10);
  --shadow-sm: 0 4px 14px rgba(7, 28, 71, 0.08);
  --max: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 800; color: var(--navy); }
p { margin: 0 0 1em; color: var(--gray); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); background: var(--blue-pale);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--gray); max-width: 700px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 10px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; transition: all .18s ease;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline-dark:hover { background: var(--blue-pale); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }

/* ==== Top bar ==== */
.topbar { background: var(--navy); color: #ffffff; font-size: .85rem; }
.topbar .container { display: flex; justify-content: center; align-items: center; padding-top: 8px; padding-bottom: 8px; }
.topbar a, .topbar .topbar-links span { color: #ffffff; }
.topbar .topbar-links { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px 28px; }
.topbar .topbar-links a:hover { color: var(--white); }
.topbar-phone, .topbar-hours { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-phone svg { width: 15px; height: 15px; fill: #fff; flex: 0 0 auto; }
.topbar-hours svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

/* ==== Header / nav ==== */
header.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo img { height: 48px; width: auto; }
nav.main-nav { display: flex; align-items: center; gap: 6px; }
.mobile-drawer-head, .mobile-drawer-actions, .mobile-nav-backdrop, .mobile-submenu-toggle, .mobile-how-it-works { display: none; }
nav.main-nav > ul { display: flex; gap: 2px; position: relative; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a {
  display: block; padding: 12px 14px; font-weight: 600; font-size: .95rem; color: var(--navy);
  border-radius: 8px; transition: background .15s, color .15s;
}
nav.main-nav > ul > li:hover > a { background: var(--blue-pale); color: var(--blue); }
nav.main-nav > ul > li > a.active { background: var(--blue); color: var(--white); box-shadow: inset 0 -3px 0 var(--gold); }
.has-dropdown > a::after { content: ""; display: inline-block; width: 7px; height: 7px; margin: 0 0 3px 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .18s ease, margin .18s ease; }
.has-dropdown:hover > a::after, .has-dropdown:focus-within > a::after { transform: rotate(225deg); margin-bottom: -1px; }

.has-dropdown > .dropdown {
  display: none; position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow); padding: 10px; border: 1px solid var(--border);
}
.has-dropdown:hover > .dropdown { display: block; }
.dropdown li a { display: block; padding: 10px 12px; border-radius: 8px; font-size: .92rem; color: var(--ink); }
.dropdown li a:hover { background: var(--blue-pale); color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .header-quote-btn { background: #fd9800; border: 1px solid #fd9800; color: #000; white-space: nowrap; flex: 0 0 auto; }
.header-cta .header-quote-btn:hover { background: #e98900; border-color: #e98900; color: #000; }
.contact-page-hero { background: linear-gradient(120deg, var(--navy), var(--blue)); color: var(--white); padding: 18px 0; }
.contact-page-hero h1 { color: var(--white); margin: 0 0 4px; }
.contact-page-hero p { color: #dbe8fb; margin: 0; }
.blog-post-hero .container { grid-template-columns: 1fr; }

.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); }
.header-phone svg { width: 20px; height: 20px; fill: var(--blue); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

/* ==== Hero ==== */
.hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, var(--blue) 130%);
  color: var(--white); position: relative; overflow: hidden;
}
.hero.hero-photo {
  background-image: linear-gradient(120deg, rgba(7,28,71,.72) 10%, rgba(7,28,71,.48) 55%, rgba(2,87,179,.35) 100%);
  background-size: cover; background-position: center;
}
.hero.hero-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(4,17,43,.84) 0%, rgba(5,25,61,.76) 54%, rgba(3,43,96,.66) 100%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding-top: 64px; padding-bottom: 64px; }
.hero-background-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; pointer-events: none; }
.hero h1, .hero h2 { color: #fff; }
.hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.hero p.lead { color: #cfe0ff; }
.hero-badges { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; color: #eaf2fd; }
.hero-badge svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* Hero quote widget (right column) — hosts an admin-configured iframe embed */
.hero-widget {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.35); max-width: 600px; width: 100%; margin: 0 auto; padding: 4px;
}
.hero-widget iframe { display: block; width: 100%; border: 0; }
.hero-widget-empty {
  padding: 34px 26px; text-align: center; color: var(--ink);
}
.hero-widget-empty h3 { margin-bottom: 8px; }
.hero-widget-empty p { font-size: .9rem; margin-bottom: 18px; }

.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: rgba(7,28,71,.18);
}
.play-btn .circle {
  width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .2s;
}
.play-btn:hover .circle { transform: scale(1.08); }
.play-btn .circle svg { width: 26px; height: 26px; fill: var(--blue); margin-left: 4px; }

/* Quote strip */
.quote-strip { background: var(--blue-pale); border-bottom: 1px solid var(--border); }
.quote-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; flex-wrap: wrap; }
.quote-strip strong { color: var(--navy); }

/* ==== Cards / grids ==== */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 54px; height: 54px; border-radius: 12px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card .icon svg { width: 28px; height: 28px; fill: var(--blue); }
.card h3 { font-size: 1.1rem; }
.card p { margin-bottom: .5em; font-size: .95rem; }
.card a.more { font-weight: 700; color: var(--blue); font-size: .9rem; }

.service-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; }
.service-card img { height: 190px; object-fit: cover; width: 100%; }
.service-card .body { padding: 22px; }
.service-card h3 { font-size: 1.1rem; }
.service-card p { font-size: .92rem; }

/* Two-col feature */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.checklist li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .97rem; color: var(--ink); }
.checklist svg { width: 20px; height: 20px; fill: var(--success); flex-shrink: 0; margin-top: 2px; }

/* Stats */
.stats { background: var(--navy); color: var(--white); }
.stats .grid-4 { text-align: center; }
.stats .num { font-size: 2.4rem; font-weight: 800; color: var(--gold); }
.stats .label { color: #cfe0ff; font-size: .92rem; }

/* Steps */
.steps { counter-reset: step; }
.steps .grid-4 > div { position: relative; padding-top: 10px; }
.steps .step-num {
  counter-increment: step; width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 16px;
}

/* Map section */
.map-section { background: var(--gray-light); }
.us-map { max-width: 900px; margin: 0 auto; }
.us-map svg { width: 100%; height: auto; }
.us-map path {
  fill: #94b7e6; stroke: var(--navy); stroke-width: 1; cursor: pointer; transition: fill .15s;
}
.us-map path:hover, .us-map path:focus { fill: var(--gold); outline: none; }
.us-map path.no-link { cursor: default; fill: #c3d3ec; }
.map-label {
  font: 700 13px "Segoe UI", Arial, sans-serif; fill: #ffffff; text-anchor: middle;
  dominant-baseline: middle; pointer-events: none; paint-order: stroke; stroke: rgba(7,28,71,.65); stroke-width: 2.5px;
}
.map-label-callout { font-size: 11px; text-anchor: start; fill: var(--navy); stroke: #ffffff; stroke-width: 3px; }
.map-leader { stroke: var(--navy); stroke-width: 1; opacity: .55; }
.map-leader-dot { fill: var(--navy); opacity: .8; }
.map-tooltip {
  position: fixed; pointer-events: none; background: var(--navy); color: var(--white);
  padding: 6px 12px; border-radius: 8px; font-size: .85rem; font-weight: 600; z-index: 50; display: none;
}

/* Reviews */
.reviews-slider { overflow: hidden; width: 100%; }
.reviews-track { display: flex; transition: transform .55s ease; will-change: transform; }
.reviews-track .review-card { flex: 0 0 calc(33.333% - 22px); margin-right: 22px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-weight: 700; font-size: .9rem; }
.review-source-icon { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border); font-weight: 800; line-height: 1; }
.review-source-google { background: #fff; }
.review-source-google svg { width: 22px; height: 22px; display: block; }
.review-source-facebook { color: #1877f2; font-family: Arial, sans-serif; font-size: 1.6rem; }
.review-source-bbb { color: #1456a0; font-size: .62rem; letter-spacing: -.04em; }
.review-source-other { color: var(--gold); font-size: 1.2rem; }
.review-summary { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 30px; }
.review-summary .score { font-size: 2.6rem; font-weight: 800; color: var(--navy); }
.review-summary .stars { color: var(--gold); font-size: 1.3rem; }
.reviews-skeleton { color: var(--gray); text-align: center; padding: 20px; }

/* Video section */
.video-section { background: var(--navy); color: var(--white); }
.video-section h2 { color: var(--white); }
.video-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; background: #000; }
.video-frame img.poster { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.video-frame iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }

/* FAQ / accordion */
.accordion .acc-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.acc-head {
  width: 100%; text-align: left; padding: 18px 20px; background: var(--white); border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1rem; color: var(--navy);
}
.acc-head:hover { background: var(--blue-pale); }
.acc-head .chev { transition: transform .2s; flex-shrink: 0; margin-left: 12px; }
.acc-item.open .acc-head .chev { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 20px; }
.acc-item.open .acc-body { padding: 0 20px 18px; }
.acc-body p { margin: 0; font-size: .95rem; }

/* Quote / lead form */
.quote-form { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.quote-form h3 { margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.single { grid-template-columns: 1fr; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: .95rem;
  font-family: inherit; color: var(--ink); background: var(--white);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--blue-bright); border-color: var(--blue-bright); }
label { font-size: .85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }

/* Sitewide quote widget */
.site-quote-section { padding: 44px 0; background: var(--gray-light); }
.site-quote-section h2 { margin-bottom: 24px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--blue) 0%, var(--navy) 100%); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #dbe8fb; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: var(--gray); padding: 16px 0; }
.breadcrumb a { color: var(--blue); }

/* Page hero (interior pages) */
.page-hero { background: linear-gradient(120deg, var(--navy), var(--blue)); color: var(--white); padding: 42px 0; position: relative; overflow: hidden; }
.page-hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: #dbe8fb; margin: 0; }
.page-hero .hero-widget { max-width: 600px; }

/* Footer */
footer.site-footer { background: var(--navy); color: #b9c9e8; }
.footer-top { padding: 56px 20px 30px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 30px; }
.footer-grid > div { min-width: 0; overflow-wrap: anywhere; }
.footer-grid h4 { color: var(--white); font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-grid li { margin-bottom: 10px; font-size: .9rem; }
.footer-grid a:hover { color: var(--white); }
.footer-logo img { height: 42px; margin-bottom: 14px; }
.footer-about p { color: #9fb3d8; font-size: .9rem; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }
.footer-states { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .82rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #8fa4cc; }
.footer-bottom a:hover { color: var(--white); }

/* Sticky call bar (mobile) */
.mobile-call-bar { display: none; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.text-white { color: var(--white) !important; }
.badge-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.trust-logos { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; opacity: .85; }

/* Admin (shared minimal styling) */
.admin-body { background: var(--gray-light); min-height: 100vh; font-family: inherit; }
.admin-card { max-width: 440px; margin: 90px auto; background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.admin-shell { max-width: 760px; margin: 40px auto; padding: 0 20px; }
.admin-panel { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; margin-bottom: 20px; }
.admin-topbar { background: var(--navy); color: var(--white); padding: 16px 0; }
.admin-topbar .container { display: flex; justify-content: space-between; align-items: center; }
.flash-ok { background: #e5f7ec; color: var(--success); padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-weight: 600; font-size: .9rem; }
.flash-err { background: #fdeaea; color: #b3261e; padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-weight: 600; font-size: .9rem; }

body.mobile-nav-open { overflow: hidden; }
body.mobile-nav-open .mobile-call-bar { display: none !important; }

/* ==== Responsive ==== */
@media (max-width: 980px) {
  header.site-header { z-index: 310; }
  .nav-wrap { position: relative; }
  nav.main-nav { display: block; position: fixed; top: 0; bottom: 0; left: 0; width: min(88vw, 380px); max-width: 100%; height: 100vh; height: 100dvh; padding: 0 0 calc(34px + env(safe-area-inset-bottom)); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; background: linear-gradient(165deg, #075bb8 0%, #064ba2 58%, #073477 100%); box-shadow: 16px 0 42px rgba(4,22,55,.28); z-index: 302; transform: translateX(-105%); visibility: hidden; transition: transform .32s cubic-bezier(.2,.75,.25,1), visibility .32s; }
  nav.main-nav.is-open { transform: translateX(0); visibility: visible; }
  .mobile-nav-backdrop { display: block; position: fixed; inset: 0; z-index: 301; background: rgba(5,18,42,.56); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .mobile-nav-backdrop.is-open { opacity: 1; visibility: visible; }
  .mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; min-height: 94px; padding: 20px 22px; background: #f4f7fd; border-bottom: 1px solid rgba(7,28,71,.12); }
  .mobile-drawer-logo img { display: block; width: 190px; max-width: 62vw; height: auto; }
  .mobile-menu-close { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1px solid rgba(7,28,71,.24); border-radius: 8px; background: #f8faff; color: var(--navy); font-size: 2rem; line-height: 1; cursor: pointer; }
  nav.main-nav > ul { display: flex; flex-direction: column; gap: 0; width: 100%; padding: 0 2px; background: linear-gradient(180deg, #075bb8, #064aa0); }
  nav.main-nav > ul > li { width: 100%; position: relative; border-bottom: 1px solid rgba(255,255,255,.08); }
  nav.main-nav > ul > li > a { display: block; width: 100%; min-height: 74px; padding: 22px 58px 22px 28px; border-radius: 0; color: #f7faff; font-weight: 400; font-size: 1.18rem; }
  nav.main-nav > ul > li:hover > a { background: rgba(255,255,255,.08); color: #fff; }
  nav.main-nav > ul > li > a.active { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 4px 0 0 #fd9800; }
  .has-dropdown > a::after { display: none; }
  .mobile-submenu-toggle { display: flex; position: absolute; top: 13px; right: 12px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 0; border-radius: 8px; background: transparent; color: #fff; cursor: pointer; }
  .mobile-submenu-toggle span { width: 11px; height: 11px; border-right: 3px solid currentColor; border-bottom: 3px solid currentColor; transform: rotate(45deg) translate(-2px,-2px); transition: transform .2s ease; }
  .has-dropdown.submenu-open > .mobile-submenu-toggle span { transform: rotate(225deg) translate(-2px,-2px); }
  .has-dropdown > .dropdown { display: none; position: static; min-width: 0; width: 100%; padding: 2px 12px 16px 24px; border: 0; border-radius: 0; box-shadow: none; background: rgba(2,30,79,.24); }
  nav.main-nav .has-dropdown:not(.submenu-open) > ul.dropdown { display: none !important; }
  nav.main-nav .has-dropdown.submenu-open > ul.dropdown { display: block; }
  .dropdown li a { padding: 13px 14px; color: rgba(255,255,255,.92); font-size: 1rem; }
  .dropdown li a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .mobile-drawer-actions { display: block; padding: 22px 22px 4px; }
  .mobile-drawer-quote { display: block; width: 100%; padding: 18px 14px; border: 1px solid #fff; border-radius: 3px; background: #fff; color: #121a27; text-align: center; font-size: 1.18rem; font-weight: 500; white-space: nowrap; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .mobile-how-it-works { display: list-item; }
  .hero .container { grid-template-columns: 1fr; }
  .page-hero .container { grid-template-columns: 1fr; gap: 18px; }
  .feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .reviews-track .review-card { flex-basis: calc(50% - 22px); }
}
@media (max-width: 600px) {
  .topbar .container { padding: 7px 12px; }
  .topbar .topbar-links { gap: 4px 14px; font-size: .76rem; }
  .nav-wrap { gap: 10px; padding: 10px clamp(18px, 5vw, 24px); }
  .hero { padding: 0; }
  .logo { min-width: 0; flex: 0 1 auto; }
  .logo img { height: 40px; max-width: 100%; }
  .header-cta { gap: 10px; flex: 0 0 auto; }
  .header-cta .header-quote-btn { padding: 10px 12px; font-size: .82rem; white-space: nowrap; }
  .mobile-drawer-head { min-height: 82px; }
  section { padding: 44px 0; }
  .hero .container { padding-top: 24px; padding-bottom: 30px; row-gap: 12px; }
  .hero .container > div:first-child { display: contents; }
  .hero .container > div:first-child > .eyebrow,
  .hero .container > div:first-child > .hero-badges,
  .hero .container > div:first-child > .hero-actions { display: none; }
  .hero .container > div:first-child > h1 { order: 1; margin-bottom: 0; }
  .hero .container > div:first-child > p.lead { order: 2; margin-bottom: 0; }
  .hero .container > .hero-widget { order: 3; width: calc(100% - 20px); max-width: 600px; margin: 0 auto; }
  .page-hero { padding: 34px 0 30px; }
  .page-hero .container { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .page-hero-copy { display: contents; }
  .page-hero h1 { order: 1; margin-bottom: 0; }
  .page-hero p { order: 2; }
  .page-hero .hero-widget { order: 3; width: calc(100% - 12px); max-width: 600px; margin: 0 auto; }
  .footer-top { padding: 42px 20px 24px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; }
  .footer-grid > div { min-width: 0; }
  .footer-about p { overflow-wrap: anywhere; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .reviews-track .review-card { flex-basis: 100%; margin-right: 0; }
  .form-row { grid-template-columns: 1fr; }
  .quote-strip .container { flex-direction: column; align-items: flex-start; }
  .mobile-call-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--blue); color: var(--white); padding: 14px 20px; justify-content: center;
    align-items: center; gap: 10px; font-weight: 700; box-shadow: 0 -6px 18px rgba(0,0,0,.15);
  }
  body { padding-bottom: 58px; }
}

.state-location-hero .container { grid-template-columns: 1.05fr .95fr; }
.state-location-hero .hero-widget { max-width: 620px; }
.state-shipping-guide h2 { margin-top: 1.6em; }
.state-shipping-guide h2:first-child { margin-top: 0; }
.state-shipping-guide a { color: var(--blue); text-decoration: underline; }

@media (max-width: 980px) { .state-location-hero .container { grid-template-columns: 1fr; } }
