.service-map-page {
    background: #050508;
    color: #fff;
    min-height: 100vh;
}

.service-map-hero {
    padding: 140px 2rem 3rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-map-hero h1 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #FC00FF, #0A8DFC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 1rem;
}

.service-map-hero p {
    font-family: "Exo 2", sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 680px;
    margin: 0 auto 1.5rem;
    color: #cfd0d6;
    line-height: 1.6;
}

.service-map-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(252, 0, 255, 0.3);
    border-radius: 12px;
    background: rgba(252, 0, 255, 0.05);
    min-width: 160px;
}

.stat-card .stat-num {
    display: block;
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    color: #FC00FF;
    text-shadow: 0 0 12px rgba(252, 0, 255, 0.6);
    line-height: 1;
}

.stat-card .stat-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cfd0d6;
    margin-top: 0.5rem;
}

.map-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

#serviceMap {
    width: 100%;
    height: 65vh;
    min-height: 480px;
    border-radius: 16px;
    border: 1px solid rgba(252, 0, 255, 0.25);
    box-shadow: 0 0 40px rgba(252, 0, 255, 0.12);
    background: #0a0a12;
}

#mapStatus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Exo 2", sans-serif;
    color: #cfd0d6;
    font-size: 1rem;
    z-index: 10;
    pointer-events: auto;
}

#mapStatus a {
    color: #FC00FF;
    text-decoration: underline;
}

#mapLegend {
    margin: 1.5rem auto 0;
    max-width: 720px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(252, 0, 255, 0.2);
    border-radius: 12px;
    background: rgba(10, 10, 18, 0.6);
    font-family: "Exo 2", sans-serif;
}

#mapLegend h3 {
    margin: 0 0 0.75rem;
    font-family: "Orbitron", sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

#mapLegend ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem 1rem;
}

#mapLegend li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #cfd0d6;
}

.legend-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid rgba(252, 0, 255, 0.6);
}

.map-note {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: "Exo 2", sans-serif;
    font-size: 0.9rem;
    color: #999aa1;
    text-align: center;
    line-height: 1.6;
}

.zip-popup {
    font-family: "Exo 2", sans-serif;
    font-size: 0.95rem;
    color: #0a0a12;
}

.zip-popup strong {
    color: #8800a0;
    font-family: "Orbitron", sans-serif;
    letter-spacing: 0.04em;
}

.leaflet-tooltip.zip-tooltip {
    background: #0a0a12;
    color: #fff;
    border: 1px solid #FC00FF;
    border-radius: 6px;
    font-family: "Exo 2", sans-serif;
    font-size: 0.85rem;
    box-shadow: 0 0 12px rgba(252, 0, 255, 0.4);
}

.leaflet-tooltip.zip-tooltip::before {
    border-top-color: #FC00FF;
}

.map-cta {
    text-align: center;
    padding: 2rem 1rem 4rem;
}

.map-cta h2 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.75rem;
    color: #fff;
}

.map-cta p {
    font-family: "Exo 2", sans-serif;
    color: #cfd0d6;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.map-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: "Orbitron", sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.map-cta-estimate {
    background: #FC00FF;
    color: #fff;
    box-shadow: 0 0 20px rgba(252, 0, 255, 0.5);
}

.map-cta-estimate:hover {
    box-shadow: 0 0 30px rgba(252, 0, 255, 0.8);
    transform: translateY(-2px);
}

.map-cta-call {
    background: transparent;
    color: #FF6B00;
    border: 2px solid #FF6B00;
}

.map-cta-call:hover {
    background: #FF6B00;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
}

@media (max-width: 640px) {
    .service-map-hero {
        padding: 100px 1rem 2rem;
    }
    #serviceMap {
        height: 60vh;
        min-height: 400px;
    }
    .service-map-stats {
        gap: 1rem;
    }
    .stat-card {
        min-width: 130px;
        padding: 0.75rem 1rem;
    }
    .stat-card .stat-num {
        font-size: 1.6rem;
    }
}
