.mapboxgl-popup-content { border-radius: 16px; padding: 0.85rem 1.1rem 0.95rem; box-shadow: 0 18px 45px rgba(15,23,42,0.18); }
.mapboxgl-popup-close-button { top: 8px; right: 8px; border-radius: 999px; width: 26px; height: 26px; color: var(--ink); background: rgba(255,255,255,0.92); line-height: 1; font-size: 18px; }
.mapboxgl-popup-close-button:hover { background: rgba(14,165,233,0.18); }
/* Copied from /assets/css/styles.css for Next.js static serving */
/*
	Pro Movers of Cape Coral — Styles
	Modern, responsive, accessible CSS with a light brand palette.
*/

:root {
	/* Primary: Royal Blue; Secondary: Orange */
	--brand: #4169e1; /* Royal Blue */
	--brand-600: #2f55cc; /* darker Royal Blue */
	--brand-700: #2547b2; /* deepest Royal Blue */
	--accent: #ff7a00; /* vivid orange */
	--ink: #0f172a; /* slate-900 */
	--muted: #334155; /* slate-700 */
	--text: #1f2937; /* gray-800 */
	--subtle: #64748b; /* slate-500 */
	--bg: #ffffff;
	--bg-alt: #f8fafc; /* slate-50 */
	--card: #ffffff;
	--border: #e2e8f0; /* slate-200 */
	--shadow: 0 10px 25px rgba(65, 105, 225, 0.12), 0 2px 6px rgba(65, 105, 225, 0.08);
	--radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	color: var(--text);
	background: var(--bg);
	line-height: 1.5;
}

img { max-width: 100%; display: block; }
svg { vertical-align: middle; }
 a { color: var(--brand-600); text-decoration: none; }
 a:hover { text-decoration: underline; }

.container {
	width: min(1200px, 92vw);
	margin-inline: auto;
}

.site-header {
	position: sticky; top: 0; z-index: 40;
	background: rgba(255,255,255,0.85);
	backdrop-filter: saturate(150%) blur(10px);
	border-bottom: 1px solid var(--border);
}
.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 10px 0;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand-logo { width: auto; height: 60px; max-width: 240px; flex-shrink: 0; }
.brand-name { font-size: 1rem; letter-spacing: .2px; }

.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--muted); font-weight: 600; }
.nav .btn { margin-left: 6px; }

.nav.nav-simple {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(148,163,184,0.35);
	background: rgba(255,255,255,0.92);
	box-shadow: 0 14px 30px rgba(15,23,42,0.08);
	backdrop-filter: saturate(130%) blur(4px);
}
.nav.nav-simple .nav-link {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0.01em;
	transition: background-color .2s ease, color .2s ease;
}
.nav.nav-simple .nav-link:hover {
	background: rgba(65,105,225,0.08);
	color: var(--brand-700);
	text-decoration: none;
}
.nav.nav-simple .nav-link[aria-current="page"] {
	background: rgba(65,105,225,0.15);
	color: var(--brand-700);
}
.nav.nav-simple .btn { margin-left: 4px; }

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--ink);
	cursor: pointer;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
	border-color: var(--brand-600);
	box-shadow: 0 8px 18px rgba(65,105,225,0.18);
	outline: none;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
	content: "";
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-icon::before { transform: translateY(-6px); }
.nav-toggle-icon::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: rotate(-45deg); }

.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px; font-weight: 700; letter-spacing: .2px;
	padding: 12px 18px; border-radius: 999px; border: 1px solid transparent;
	transition: all .2s ease;
}
.btn-primary { background: var(--brand); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--brand-600); border-color: var(--brand-600); }
.btn-secondary:hover { background: rgba(65,105,225,0.08); color: var(--brand-700); text-decoration: none; }
.btn-outline { color: var(--brand-600); border-color: var(--brand-600); background: transparent; }
.btn-outline:hover { background: rgba(65,105,225,0.08); }

.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.section h2 { font-size: 2rem; margin: 0 0 10px; color: var(--ink); }
.section .section-intro { margin: 0 0 28px; color: var(--subtle); }

.hero {
	position: relative; isolation: isolate;
	padding: 40px 0 24px;
	/* Background now rendered via Next.js <Image> for sharper output */
	background: none;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { filter: none; }
.hero-bg::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 32px; min-height: 520px; }
.hero h1 { font-size: clamp(2rem, 2.4rem + 1vw, 3.2rem); line-height: 1.1; margin: 0 0 12px; color: var(--ink); }
.subtitle { color: var(--muted); margin: 0 0 18px; font-size: 1.125rem; }
.alt-cta { color: var(--subtle); margin-top: 10px; }
.hero-media { display: none; }
.hero-media::before { content: none; }

/* Readability card over photo */
.hero-copy { background: rgba(255,255,255,0.9); backdrop-filter: saturate(120%) blur(2px); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }

.zip-form { display: flex; gap: 10px; align-items: center; }
.zip-form input { flex: 1; min-width: 180px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; font-size: 1rem; }
.zip-form.inline { max-width: 520px; margin-top: 6px; }
.form-help { color: var(--subtle); margin: 8px 0 0; }

.trust-logos { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; padding: 14px 18px; background: transparent; border: 0; border-radius: 18px; box-shadow: none; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 999px; background: #fff; border: 1px solid rgba(148,163,184,0.32); box-shadow: 0 8px 22px rgba(15,23,42,0.12); color: var(--muted); font-weight: 600; letter-spacing: 0.01em; }
.trust-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--brand-600)); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6); }
.trust-icon svg { width: 16px; height: 16px; fill: #fff; }
.trust-label { white-space: nowrap; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: 0 1px 0 rgba(0,0,0,.02); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(65,105,225,.12); }
.card img { width: 56px; height: 56px; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 1.25rem; color: var(--ink); }
.card p { margin: 0; color: var(--muted); }

.service-cards { margin-top: 24px; }
.service-card { display: flex; flex-direction: column; gap: 16px; }
.service-card-media { position: relative; display: grid; place-items: center; width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; border: 1px dashed var(--border); background: linear-gradient(135deg, rgba(65,105,225,0.12), rgba(15,23,42,0.08)); color: var(--subtle); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; overflow: hidden; }
.service-card-media span { padding: 0 18px; text-align: center; }
.service-card-body { display: grid; gap: 12px; }
.service-card-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px; }
.service-actions { margin-top: 28px; display: flex; justify-content: flex-start; }
.service-actions .btn { min-width: 220px; }

/* Accordion */
.accordion { display: grid; gap: 12px; }
.accordion-item { border: 1px solid var(--border); border-radius: 12px; background: #fff; overflow: hidden; }
.accordion-header { margin: 0; }
.accordion-header button { all: unset; display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 16px; font-weight: 700; color: var(--ink); cursor: pointer; }
.accordion-header button:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 2px; border-radius: 8px; }
.accordion-header button::after { content: "\25BC"; font-size: .9rem; color: var(--brand-600); transition: transform .2s ease; }
.accordion-header button[aria-expanded="true"]::after { transform: rotate(-180deg); }
.accordion-panel { padding: 0 16px 14px; }
.accordion-panel p { color: var(--muted); margin: 0 0 8px; }
.accordion-panel .checklist { margin-top: 8px; }
.accordion-panel .btn { margin-top: 10px; }

/* Tabs */
.tabs { display: grid; gap: 12px; }
.tablist { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--border); }
.tab { appearance: none; border: 1px solid var(--border); background: #fff; color: var(--muted); padding: 10px 14px; border-radius: 10px 10px 0 0; font-weight: 700; cursor: pointer; }
.tab[aria-selected="true"] { color: var(--ink); border-color: var(--brand-600); background: rgba(65,105,225,.06); }
.tab:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 2px; }
.tabpanel { border: 1px solid var(--border); border-top: 0; border-radius: 0 12px 12px 12px; padding: 16px; background: #fff; }
.other-services { margin-top: 14px; }

/* Quote form */
.form-card h2 { margin: 0 0 14px; }
.form-card { padding: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .col-span-2 { grid-column: span 2; }
.field { display: grid; gap: 8px; }
.field input, .field select, .field textarea { padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 1rem; }
.field.compact select { max-width: 120px; }
.stops { display: grid; gap: 10px; margin-top: 12px; }
.stop-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

.progress { width: 100%; height: 8px; background: #eef2f7; border-radius: 999px; overflow: hidden; margin: 8px 0 12px; }
.progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--brand-700)); border-radius: inherit; transition: width .25s ease; }

.radio-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.radio-card { position: relative; display: flex; align-items: center; padding: 14px 18px; border: 1px solid var(--border); border-radius: 14px; cursor: pointer; user-select: none; transition: border-color .2s ease, box-shadow .2s ease; min-height: 64px; }
.radio-card input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; }
.radio-card span { position: relative; padding-left: 32px; font-weight: 600; color: var(--ink); }
.radio-card span::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--brand-600); background: #fff; box-shadow: 0 0 0 0 rgba(65,105,225,0.25); transition: border-color .2s ease, box-shadow .2s ease; }
.radio-card span::after { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scale(0); width: 18px; height: 18px; border-radius: 50%; background: var(--brand-600); transition: transform .2s ease; }
.radio-card input:checked + span::after { transform: translateY(-50%) scale(1); }
.radio-card input:focus-visible + span::before { box-shadow: 0 0 0 4px rgba(65,105,225,0.18); }
.radio-card.active { border-color: var(--brand-600); background: rgba(65,105,225,.06); box-shadow: 0 10px 24px rgba(65,105,225,0.08); }

.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--muted); cursor: pointer; }
.chip.active { border-color: var(--brand-600); background: rgba(65,105,225,.06); color: var(--brand-700); }

.summary { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Mapbox preview */
.map-wrap { margin-top: 12px; }
.mapbox { width: 100%; height: 280px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.route-meta { margin-top: 6px; color: var(--muted); }
.map-marker { display: flex; flex-direction: column; align-items: center; font-weight: 600; text-align: center; cursor: pointer; user-select: none; }
.map-marker-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 2px 4px rgba(15, 23, 42, 0.35); margin-bottom: 4px; }
.map-marker-label { background: rgba(15, 23, 42, 0.9); color: #fff; padding: 2px 6px; border-radius: 6px; font-size: 12px; line-height: 1.2; white-space: nowrap; box-shadow: 0 2px 6px rgba(15, 23, 42, 0.35); }

/* Services page */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.16em; color: var(--accent); }
.services-hero {
	position: relative;
	padding: 130px 0 120px;
	color: #fff;
	overflow: hidden;
}
.services-hero-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.services-hero-bg > span {
	position: absolute !important;
	inset: 0 !important;
}
.services-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(120deg, rgba(8,15,28,0.88) 0%, rgba(12,34,64,0.7) 48%, rgba(12,32,60,0.88) 100%);
}
.services-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 28px;
	align-items: center;
}
.services-hero-copy { display: grid; gap: 18px; max-width: 640px; }
.services-hero .eyebrow { color: rgba(255,255,255,0.82); }
.services-hero h1 { color: #fff; }
.services-hero .subtitle { color: rgba(255,255,255,0.82); }
.services-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.services-hero-actions .btn-primary { box-shadow: 0 24px 45px rgba(5,18,43,0.3); }
.services-hero-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.68); background: rgba(255,255,255,0.08); }
.services-hero-actions .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.18); color: #fff; }
.services-grid { display: grid; gap: 40px; margin-top: 32px; }
.service-section { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 32px; align-items: center; }
.service-section--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.service-section--reverse .service-media { order: 2; }
.service-media { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 10; border-radius: 18px; border: 1px dashed rgba(15,23,42,0.18); background: linear-gradient(135deg, rgba(65,105,225,0.16), rgba(255,122,0,0.14)); color: var(--subtle); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; overflow: hidden; }
.service-media span { padding: 0 28px; text-align: center; }
.service-copy { display: grid; gap: 14px; }
.service-intro { font-weight: 600; color: var(--muted); margin: 0; }
.service-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.service-buttons .btn { min-width: 200px; }
.services-card-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-detail-card { display: flex; flex-direction: column; gap: 14px; }
.service-detail-media { position: relative; display: grid; place-items: center; aspect-ratio: 3 / 2; border-radius: 12px; border: 1px dashed rgba(15,23,42,0.18); background: linear-gradient(135deg, rgba(15,23,42,0.06), rgba(65,105,225,0.12)); color: var(--subtle); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; overflow: hidden; }
.service-detail-media img { border-radius: inherit; }
.service-detail-media span { padding: 0 12px; text-align: center; }
.service-detail-card .checklist { margin-top: 10px; }
.services-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 960px) {
	.form-grid { grid-template-columns: 1fr; }
	.hero-inner { min-height: 0; }
	.hero-media { display: none; }
	.hero-media::before { content: none; }
	.summary { grid-template-columns: 1fr; }
	.radio-cards { grid-template-columns: 1fr; }
	.services-hero { padding: 110px 0 100px; }
	.services-hero-inner { grid-template-columns: 1fr; gap: 20px; }
	.service-section,
	.service-section--reverse { grid-template-columns: 1fr; }
	.service-media { order: unset; }
	.services-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nav.nav-simple { width: 100%; justify-content: flex-start; }
}

.steps { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: 0 16px 36px rgba(15,23,42,0.08); }
.step-num { position: relative; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #4169e1, #5b8bff); color: #fff; font-weight: 800; font-size: 1.1rem; display: grid; place-items: center; box-shadow: 0 14px 34px rgba(65,105,225,0.32); flex-shrink: 0; }
.step-num::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(65,105,225,0.28); box-shadow: inset 0 0 0 6px rgba(91,139,255,0.12); z-index: -1; }

.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.areas-copy > p { color: var(--muted); margin: 10px 0 0; }
.areas-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 22px; }
.areas-highlight { background: #fff; border: 1px solid rgba(65,105,225,0.15); border-radius: 18px; padding: 18px 20px; box-shadow: 0 12px 30px rgba(15,23,42,0.08); display: grid; gap: 10px; }
.areas-highlight h3 { margin: 0; font-size: 1.05rem; color: var(--brand-700); }
.areas-highlight p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.areas-note { margin-top: 16px; color: var(--subtle); }
.map-wrapper { position: relative; min-height: 360px; }
.map-wrapper .mapbox { height: 100%; min-height: 360px; border-radius: 18px; }
.map-card { position: absolute; inset: auto auto 16px 16px; padding: 14px 18px; background: rgba(255,255,255,0.95); border-radius: 16px; box-shadow: 0 18px 42px rgba(15,23,42,0.22); max-width: 240px; }
.map-card strong { display: block; font-size: 0.95rem; color: var(--ink); }
.map-card p { margin: 8px 0 10px; color: var(--muted); font-size: 0.85rem; }
.map-card-link { font-weight: 700; color: var(--brand-600); }
.map-card-link:hover { color: var(--brand-700); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 10px 0 0; list-style: none; }
.tag-list li { padding: 8px 12px; background: #fff; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); }
.map-placeholder { height: 260px; border: 2px dashed var(--border); border-radius: 14px; background: repeating-linear-gradient(45deg, #f1f5f9, #f1f5f9 10px, #eef2f7 10px, #eef2f7 20px); }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { margin: 0; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; color: var(--muted); }
blockquote cite { display: block; margin-top: 8px; color: var(--ink); font-weight: 700; font-style: normal; }

.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.about-img img { width: 100%; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 8px 20px rgba(65,105,225,.08); }
.checklist { list-style: none; padding: 0; margin: 14px 0 0; color: var(--muted); }
.checklist li { margin: 6px 0; }

.cta-banner { background: linear-gradient(90deg, rgba(65,105,225,.06), rgba(65,105,225,.16)); padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form .field { display: grid; gap: 6px; margin-bottom: 12px; }
.contact-form label { font-weight: 600; color: var(--muted); }
.contact-form input, .contact-form textarea, select { padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 1rem; }
.small { font-size: .9rem; color: var(--subtle); }

.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-inner { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 24px; padding: 24px 0; align-items: center; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-logo { width: auto; height: 64px; margin-bottom: 10px; }

.visually-hidden { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); padding: 0 !important; border: 0 !important; height: 1px !important; width: 1px !important; overflow: hidden; }

/* Modal */
.modal { position: fixed; inset: 0; display: none; }
.modal[aria-hidden="false"] { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); }
.modal-dialog { position: relative; margin: 8vh auto; width: min(680px, 92vw); background: #fff; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3); padding: 18px; }
.modal-close { position: absolute; top: 6px; right: 8px; border: 0; background: transparent; font-size: 28px; color: var(--subtle); cursor: pointer; }
.modal-content { padding: 10px; }
.modal-content.hidden { display: none; }
.actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 6px; }

/* Location pages */
.location-page { display: flex; flex-direction: column; gap: 60px; padding-bottom: 80px; }
.location-hero {
	position: relative;
	padding: 110px 0 90px;
	background-image: linear-gradient(125deg, rgba(13,18,34,0.82), rgba(32,47,94,0.78)), url('/assets/img/naples-sw-fl.jpg');
	background-size: cover;
	background-position: center;
	border-bottom: 1px solid var(--border);
	color: #fff;
}
.location-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15,23,42,0.5), rgba(65,105,225,0.38));
	opacity: 0.8;
}
.location-hero .container {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 14px;
	max-width: 760px;
}
.location-breadcrumb {
	margin: 0;
	color: rgba(255,255,255,0.82);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.location-hero h1 {
	margin: 0;
	font-size: clamp(2.1rem, 1.8rem + 1.2vw, 3rem);
	color: #fff;
}
.location-hero p {
	margin: 0;
	color: rgba(248,250,252,0.92);
	font-size: 1.05rem;
}
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.cta-group .btn { min-width: 200px; }
.location-highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.location-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: 0 12px 30px rgba(15,23,42,0.08); }
.location-card h2 { margin-top: 0; margin-bottom: 12px; font-size: 1.4rem; color: var(--brand-700); }
.location-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.location-neighborhoods { display: grid; gap: 24px; }
.location-neighborhoods h2 { margin: 0; font-size: 1.8rem; color: var(--ink); }
.neighborhood-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.neighborhood-grid article { background: #fff; border: 1px solid rgba(65,105,225,0.18); border-radius: 16px; padding: 18px; box-shadow: 0 10px 26px rgba(65,105,225,0.08); }
.neighborhood-grid h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--brand-600); }
.location-service-areas { display: grid; gap: 16px; }
.location-service-areas h2 { margin: 0; font-size: 1.8rem; color: var(--ink); }
.location-service-areas p { margin: 0; color: var(--muted); }
.service-area-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; list-style: none; padding: 0; margin: 0; }
.service-area-list li { padding: 12px 16px; border-radius: 12px; border: 1px solid var(--border); background: #fff; color: var(--muted); font-weight: 600; }
.location-faqs { display: grid; gap: 24px; }
.location-faqs h2 { margin: 0; font-size: 1.9rem; color: var(--ink); }
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.faq-list article { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: 0 10px 24px rgba(15,23,42,0.08); }
.faq-list h3 { margin: 0 0 10px; font-size: 1.1rem; color: var(--brand-600); }
.faq-list p { margin: 0; color: var(--muted); }
.location-testimonials { display: grid; gap: 24px; }
.location-testimonials h2 { margin: 0; font-size: 1.9rem; color: var(--ink); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.testimonial-grid blockquote { border-radius: 18px; border: 1px solid rgba(65,105,225,0.16); box-shadow: 0 14px 30px rgba(65,105,225,0.1); background: linear-gradient(135deg, rgba(65,105,225,0.08), rgba(15,23,42,0.03)); padding: 22px; }
.testimonial-grid blockquote p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.testimonial-grid blockquote cite { margin-top: 12px; display: block; color: var(--brand-700); font-weight: 700; font-style: normal; }
.location-cta { padding: 72px 0; background: linear-gradient(135deg, rgba(65,105,225,0.12), rgba(15,23,42,0.06)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.location-cta .container { display: grid; gap: 12px; text-align: center; }
.location-cta h2 { margin: 0; font-size: 2rem; color: var(--ink); }
.location-cta p { margin: 0; color: var(--muted); }
.location-other-areas { display: grid; gap: 18px; }
.location-other-areas h2 { margin: 0; font-size: 1.6rem; color: var(--ink); }
.location-other-areas ul { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 0; }
.location-other-areas a { display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--muted); font-weight: 600; }
.location-other-areas a:hover { border-color: var(--brand-600); color: var(--brand-700); text-decoration: none; }
.location-list { padding: 72px 0; }
.location-list ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; list-style: none; margin: 0; padding: 0; }
.location-list a { display: block; padding: 14px 18px; border-radius: 14px; border: 1px solid var(--border); background: #fff; color: var(--muted); font-weight: 600; text-align: center; }
.location-list a:hover { border-color: var(--brand-600); color: var(--brand-700); text-decoration: none; }

/* Responsive */
@media (max-width: 960px) {
	.hero-inner, .about, .areas, .contact, .footer-inner { grid-template-columns: 1fr; }
	.card-grid { grid-template-columns: 1fr 1fr; }
	.quotes { grid-template-columns: 1fr; }
	.trust-logos { justify-content: flex-start; padding: 16px; }
	.trust-item { width: calc(50% - 12px); }
	.cta-inner { flex-direction: column; align-items: stretch; }
	.steps { grid-template-columns: 1fr; }
	.steps li { flex-direction: column; align-items: flex-start; }
	.location-highlights { grid-template-columns: 1fr; }
	.location-hero { padding: 90px 0 70px; }
	.cta-group { justify-content: flex-start; }
	.cta-group .btn { min-width: 0; }
	.faq-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.header-inner { position: relative; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; }
	.brand { gap: 8px; align-items: center; }
	.brand-logo { height: 48px; }
	.brand-name { font-size: 0.95rem; }
	.nav-toggle { display: inline-flex; }
	.nav.nav-simple {
		position: absolute;
		inset: calc(100% + 8px) 16px auto 16px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding: 18px;
		border-radius: 18px;
		background: rgba(255,255,255,0.98);
		border: 1px solid var(--border);
		box-shadow: 0 18px 40px rgba(15,23,42,0.28);
		z-index: 50;
		width: calc(100vw - 32px);
		max-width: none;
	}
	.nav.nav-simple.is-open { display: flex; }
	.nav.nav-simple .nav-link {
		width: 100%;
		justify-content: flex-start;
		padding: 12px;
		border-radius: 10px;
	}
	.nav.nav-simple .btn {
		width: 100%;
		justify-content: center;
		margin-left: 0;
	}
	.hero { padding: 48px 0 30px; }
	.hero-inner { gap: 20px; }
	.hero-copy { padding: 20px; border-radius: 20px; text-align: center; }
	.zip-form { flex-direction: column; align-items: stretch; }
	.zip-form input { width: 100%; }
	.zip-form.inline { width: 100%; }
	.zip-form button { width: 100%; }
	.form-card { padding: 20px; }
	.trust-item { width: 100%; justify-content: flex-start; }
	.services-hero { padding: 80px 0 70px; }
	.services-hero-inner { justify-items: center; text-align: center; gap: 18px; }
	.services-hero-copy { justify-items: center; }
	.services-hero-actions { width: 100%; justify-content: center; }
	.services-hero-actions .btn { width: 100%; max-width: 240px; }
	.service-buttons { flex-direction: column; }
	.service-buttons .btn { width: 100%; min-width: 0; justify-content: center; }
	.services-card-grid { grid-template-columns: 1fr; }
	.services-cta-actions { flex-direction: column; width: 100%; }
	.services-cta-actions .btn { width: 100%; }
	.card-grid { grid-template-columns: 1fr; }
	.footer-inner { text-align: center; justify-items: center; }
	.footer-nav { justify-content: center; }
	.footer-legal { justify-self: center; text-align: center; }
	.map-wrapper { min-height: 320px; }
	.map-wrapper .mapbox { min-height: 320px; }
	.map-card { position: static; margin: 12px auto 0; max-width: none; width: 100%; }
	.location-page { gap: 40px; }
	.location-hero { padding: 70px 0 60px; }
	.location-hero .container { text-align: center; justify-items: center; }
	.location-breadcrumb { letter-spacing: 0.08em; }
	.cta-group { justify-content: center; width: 100%; }
	.cta-group .btn { width: 100%; max-width: 240px; }
	.neighborhood-grid article { text-align: left; }
	.location-cta .container { text-align: center; }
	.location-other-areas ul { justify-content: center; }
	.location-list ul { grid-template-columns: 1fr; }
	.faq-list article { padding: 18px; }
	.testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.section { padding: 56px 0; }
	.hero h1,
	.services-hero h1 { font-size: 1.9rem; }
	.hero .subtitle,
	.services-hero .subtitle { font-size: 1rem; }
	.services-hero-actions .btn { max-width: none; }
	.footer-inner { gap: 20px; }
}
