﻿.service-container {
    width: min(92%, 1280px);
    margin: 0 auto;
}

.service-hero {
    background: #ffffff;
    padding: 64px 0;
    font-family: 'Poppins', sans-serif;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.page-label,
.section-label {
    color: #f97316;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-content h1 {
    color: #0b1f4d;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 18px 0 24px;
}

.hero-content p {
    color: #334155;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 34px;
}

.primary-button,
.secondary-button,
.cta-button {
    min-height: 56px;
    padding: 0 30px;
    border-radius: 9px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.primary-button,
.cta-button {
    background: #f97316;
    color: white;
}

.secondary-button {
    border: 1px solid #0b1f4d;
    color: #0b1f4d;
    background: white;
}

.hero-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.15);
}

    .hero-image img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        display: block;
    }

.coverage-section {
    background: #f8fbff;
    padding: 70px 0;
    font-family: 'Poppins', sans-serif;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 40px;
    align-items: center;
}

.section-title-row,
.map-header,
.communities-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #0b1f4d;
}

    .section-title-row svg,
    .map-header svg,
    .communities-heading svg {
        color: #f97316;
        width: 34px;
        height: 34px;
    }

    .section-title-row h2,
    .map-header h2,
    .communities-heading h2 {
        color: #0b1f4d;
        font-size: 1.75rem;
        font-weight: 800;
        margin: 0;
    }

.coverage-info h3 {
    color: #0b1f4d;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 22px 0;
}

.coverage-info p {
    color: #334155;
    line-height: 1.8;
}

.coverage-note {
    display: flex;
    gap: 18px;
    background: white;
    border: 1px solid #e0e7f1;
    border-radius: 14px;
    padding: 22px;
    margin-top: 34px;
}

    .coverage-note svg {
        color: #0b1f4d;
        width: 42px;
        height: 42px;
    }

    .coverage-note strong {
        color: #0b1f4d;
        font-size: 1.05rem;
    }

    .coverage-note p {
        margin: 6px 0 0;
    }

.map-card {
    background: white;
    border: 1px solid #e0e7f1;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.fake-map {
    margin-top: 22px;
    height: 430px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255,255,255,0.25) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.25) 1px, transparent 1px), linear-gradient(135deg, #dbeafe, #e8f5e9 55%, #bfdbfe);
    background-size: 40px 40px, 40px 40px, cover;
}

.map-circle {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.2);
    border: 2px dashed rgba(249, 115, 22, 0.55);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.map-pin {
    position: absolute;
    background: #0b1f4d;
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
}

    .map-pin::before {
        content: "";
        position: absolute;
        left: -8px;
        top: 50%;
        width: 16px;
        height: 16px;
        background: #f97316;
        border-radius: 50%;
        transform: translateY(-50%);
        border: 3px solid white;
    }

    .map-pin.main {
        left: 50%;
        top: 48%;
        transform: translate(-50%, -50%);
        font-size: 1.05rem;
    }

    .map-pin.p1 {
        left: 64%;
        top: 28%;
    }

    .map-pin.p2 {
        left: 38%;
        top: 30%;
    }

    .map-pin.p3 {
        left: 58%;
        top: 66%;
    }

    .map-pin.p4 {
        left: 34%;
        top: 56%;
    }

    .map-pin.p5 {
        left: 44%;
        top: 70%;
    }

.map-label {
    position: absolute;
    right: 24px;
    bottom: 22px;
    background: white;
    border-radius: 999px;
    padding: 10px 18px;
    color: #0b1f4d;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}

.communities-section {
    padding: 70px 0;
    font-family: 'Poppins', sans-serif;
}

.communities-heading {
    justify-content: center;
    margin-bottom: 36px;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

    .communities-grid ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .communities-grid li {
        color: #0b1f4d;
        font-weight: 600;
        margin-bottom: 16px;
        position: relative;
        padding-left: 28px;
    }

        .communities-grid li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #f97316;
            font-weight: 900;
        }

.commitment-section {
    background: #06224b;
    padding: 76px 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

    .commitment-section h2 {
        color: white;
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        margin: 14px 0 46px;
    }

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.commitment-item {
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

    .commitment-item:last-child {
        border-right: none;
    }

    .commitment-item svg {
        color: #f97316;
        width: 46px;
        height: 46px;
        margin-bottom: 20px;
    }

    .commitment-item h3 {
        color: white;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .commitment-item p {
        color: rgba(255,255,255,0.78);
        line-height: 1.6;
        margin: 0;
    }

.service-cta {
    background: #f8fbff;
    padding: 42px 0;
    font-family: 'Poppins', sans-serif;
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff3e6;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cta-icon svg {
        width: 42px;
        height: 42px;
    }

.cta-left h2 {
    color: #0b1f4d;
    font-weight: 800;
    margin: 0 0 6px;
}

.cta-left p {
    color: #334155;
    margin: 0;
}

@media (max-width: 1000px) {
    .hero-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid,
    .communities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .commitment-item {
        border-right: none;
    }
}

@media (max-width: 650px) {
    .hero-actions,
    .cta-grid,
    .cta-left {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-image img {
        height: 320px;
    }

    .communities-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .fake-map {
        height: 360px;
    }

    .map-pin {
        font-size: 0.75rem;
    }
}
