/*-- -------------------------- -->
<---         Service Area        -->
<--- -------------------------- -*/

#service-area {
    display: flex;
    flex-direction: column-reverse;
    scroll-margin-top: 80px;
}

/* Left: Map */
.sa-map-col {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.sa-map-col img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Right: Dark panel */
.sa-content-col {
    width: 100%;
    background: #0d1b2a;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Diagonal accent behind the van */
.sa-content-col::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(115deg, transparent 45%, #16314d 45%);
    pointer-events: none;
    z-index: 0;
}

.sa-inner {
    padding: 3rem 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
}

.sa-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3B82F6;
    margin: 0 0 0.75rem;
}

.sa-heading {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 1.75rem;
    text-transform: uppercase;
}

.sa-heading span {
    color: #3B82F6;
}

.sa-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #3B82F6;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.sa-cta-btn:hover {
    background: #2563eb;
}

.sa-cta-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Van */
.sa-van {
    display: block;
    width: 100%;
    max-width: 460px;
    margin: 0.5rem auto -1rem;
    position: relative;
    z-index: 1;
    object-fit: contain;
}

@media only screen and (min-width: 48rem) {
    #service-area {
        flex-direction: row;
        height: 540px;
    }

    .sa-map-col {
        width: 55%;
        height: 100%;
    }

    .sa-content-col {
        width: 45%;
        height: 100%;
        overflow: visible;
        justify-content: flex-start;
    }

    .sa-content-col::before {
        width: 70%;
        height: 75%;
        z-index: 0;
    }

    .sa-inner {
        height: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 2.5rem;
        z-index: 4;
    }

    .sa-heading {
        font-size: clamp(1.75rem, 2.4vw, 2.35rem);
        margin-bottom: 2rem;
    }

    .sa-eyebrow {
        font-size: 0.9rem;
    }

    .sa-cta-btn {
        font-size: 1.05rem;
        padding: 1.05rem 2.25rem;
    }

    .sa-cta-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Van anchored bottom, spills left over the map.
       The PNG has transparent padding below the van, so a negative
       bottom drops that empty space below the section edge. */
    .sa-van {
        position: absolute;
        bottom: -16%;
        left: -16%;
        right: auto;
        width: auto;
        height: 66%;
        max-width: none;
        margin: 0;
        z-index: 3;
    }
}
