/**
 * Service Areas Block Styles
 */

.service-areas-section {
    background-color: var(--color-dark-blue);
    padding: 80px 0;
}

/* Title - Same style as other sections */
.service-areas-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.service-areas-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: normal;
}

/* Maps Row */
.service-areas-maps {
    display: flex;
    gap: 60px;
}

.service-areas-col {
    flex: 1;
}

/* MapLibre Map */
#map-homepage1,
#map-homepage2 {
    width: 100%;
    height: 462px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

/* Areas List - 2 columns grid */
.service-areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.area-item:hover {
    opacity: 0.8;
}

.area-icon {
    flex-shrink: 0;
    width: 20px;
    height: auto;
}

.area-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
    .service-areas-maps {
        flex-direction: column;
        gap: 50px;
    }

    .service-areas-title {
        font-size: 42px;
    }

    .area-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .service-areas-section {
        padding: 60px 0;
    }

    .service-areas-title {
        font-size: 36px;
    }

    .service-areas-list {
        gap: 12px;
    }

    .area-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-areas-title {
        font-size: 28px;
    }
}
