/* =========================================================
   SERVICE AREA BLOCK — BEM
   Left: full-height image | Right: tag + headline + sub + 3-col location pills
   ========================================================= */

.smartfix-service-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--sf-bg-light);
    min-height: 680px;
}

/* ── LEFT: image ── */
.smartfix-service-area__image-col {
    position: relative;
    overflow: hidden;
}

.smartfix-service-area__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    min-height: 480px;
}

/* ── RIGHT: content ── */
.smartfix-service-area__content {
    padding: 72px 64px 72px 56px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.smartfix-service-area__tag {
    font-size: 13px;
    letter-spacing: 0.12em;
}

.smartfix-service-area__headline {
    font-family: var(--sf-font-heading);
    font-weight: 700;
    font-size: var(--sf-fs-h2);
    line-height: 1.1;
    color: var(--sf-text-dark);
    margin: 0;
}

.smartfix-service-area__headline .sf-highlight {
    color: var(--sf-color-primary);
    display: block;
}

.smartfix-service-area__sub {
    font-family: var(--sf-font-body);
    font-size: var(--sf-fs-body);
    line-height: var(--sf-lh-body);
    color: var(--sf-text-muted);
    margin: 0;
}

.smartfix-service-area__sub p {
    margin: 0;
}

/* ── Locations: 3-col plain text grid ── */
.smartfix-service-area__locations {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.smartfix-service-area__location {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--sf-bg-white);
    border-radius: 100px;
    padding: 12px 22px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Card-like hover/focus: bg shift + white text, no layout movement */
.smartfix-service-area__location:hover,
.smartfix-service-area__location:focus-within {
    background: var(--sf-color-card-hover, #395956);
    box-shadow: 0 8px 22px rgba(7, 18, 18, 0.14);
}

.smartfix-service-area__location:hover .smartfix-service-area__location-number,
.smartfix-service-area__location:focus-within .smartfix-service-area__location-number,
.smartfix-service-area__location:hover .smartfix-service-area__location-name,
.smartfix-service-area__location:focus-within .smartfix-service-area__location-name {
    color: var(--sf-text-white);
}

.smartfix-service-area__location-number {
    font-family: var(--sf-font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--sf-text-dark);
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.smartfix-service-area__location-name {
    font-family: var(--sf-font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--sf-text-muted);
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1280px) {
    .smartfix-service-area__content {
        padding: 60px 48px 60px 40px;
    }

    .smartfix-service-area__headline {
        font-size: clamp(30px, 4vw, var(--sf-fs-h2));
    }
}


@media (max-width: 834px) {
    .smartfix-service-area {
        grid-template-columns: 1fr;
    }

    .smartfix-service-area__image-col {
        height: 280px;
    }

    .smartfix-service-area__content {
        padding: 40px 20px;
    }

    .smartfix-service-area__headline {
        font-size: 26px;
    }
}

@media (max-width: 375px) {
    .smartfix-service-area__content {
        padding: 36px 16px;
    }
}
