/* ══════════════════════════════════════════════════════════
   Service Area Map — Cerberus Development
   ══════════════════════════════════════════════════════════ */

.page-hero {
    padding-top: 120px;
    padding-bottom: 3rem;
}

/* ── SVG Map ────────────────────────────────────────────── */
.map-container {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.county-path {
    fill: var(--bg-card-hover);
    stroke: var(--bg-primary);
    stroke-width: 2;
    cursor: pointer;
    transition: fill 0.3s ease, filter 0.3s ease;
}

.county-path:hover,
.county-path.active {
    fill: rgba(0, 191, 255, 0.2);
    filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.3));
}

.county-path.county-home {
    fill: rgba(0, 191, 255, 0.12);
    stroke: var(--accent);
    stroke-width: 2;
}

.county-path.county-home:hover,
.county-path.county-home.active {
    fill: rgba(0, 191, 255, 0.3);
}

.county-label {
    fill: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-anchor: middle;
    pointer-events: none;
}

.hq-marker {
    fill: var(--accent);
    filter: drop-shadow(0 0 6px rgba(0, 191, 255, 0.6));
    animation: hq-pulse 2s ease-in-out infinite;
}

@keyframes hq-pulse {
    0%, 100% { r: 6; opacity: 1; }
    50% { r: 9; opacity: 0.7; }
}

.hq-label {
    fill: var(--accent);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
}

/* ── Info Panel ─────────────────────────────────────────── */
.county-info-panel {
    position: sticky;
    top: 100px;
    min-height: 300px;
}

.badge.bg-accent-subtle {
    background: rgba(0, 191, 255, 0.15);
    color: var(--accent);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.35em 0.65em;
}

/* ── CTA ────────────────────────────────────────────────── */
.cta-card {
    border: 1px solid var(--border-accent);
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, var(--bg-glass) 100%);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .county-info-panel {
        position: static;
    }
    .map-container {
        padding: 1rem;
    }
}
