.service-areas {
    position: relative;
    padding: 110px 0 120px;
    background: #ffffff;
    overflow: hidden;
}

/* background image layer (map) */
.service-areas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/service-areas.webp");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    opacity: 0.42;
    /* restored stronger map */
    pointer-events: none;
    z-index: 0;
}

/* subtle white overlay so text always readable */
.service-areas::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sa2-inner {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.sa2-left {
    padding-top: 6px;
}

.sa2-title {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(30px, 3.1vw, 46px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0b1220;
}

.sa2-highlight {
    font-weight: 900;
    letter-spacing: -0.01em;
}


.sa2-sub {
    margin: 16px 0 0;
    max-width: 520px;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    color: rgba(11, 18, 32, 0.70);
}

/* RIGHT column */
.sa2-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* top row = 2 cards */
.sa2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* cards */
.sa2-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(229, 27, 39, 0.28);
    padding: 18px 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;

    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.sa2-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 27, 39, 0.42);
    box-shadow:
        0 22px 65px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.40) inset;
}

.sa2-card--wide {
    width: 100%;
}

.sa2-card--single {
    width: min(420px, 100%);
    padding: 16px 20px;
}

.sa2-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sa2-pin {
    width: 22px;
    height: 22px;
    color: #e51b27;
    flex: 0 0 auto;
    display: inline-block;
}

.sa2-pin svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sa2-card-title {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.2px;
    color: #0b1220;
}

/* OPTIONAL list */
.sa2-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 10px 28px;

    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(11, 18, 32, 0.82);

    grid-auto-rows: minmax(0, auto);
}

.sa2-list--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sa2-list--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sa2-list li {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .service-areas {
        padding: 78px 0 90px;
    }

    .sa2-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sa2-row {
        grid-template-columns: 1fr;
    }

    .sa2-card-title {
        font-size: 17px;
    }

    .sa2-list--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .sa2-inner {
        width: min(1200px, calc(100% - 28px));
    }

    .sa2-list--2,
    .sa2-list--3 {
        grid-template-columns: 1fr;
    }
}