/* ==========================================================================
   Service Areas Section – Reduced by 60%
   ========================================================================== */

.service-areas {
    text-align: center;
}

.service-areas-carousel {
    width: 100%;
    max-width: 520px;
    /* reduced */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 138px;
    /* reduced from 230px */
}

.service-areas-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-areas-carousel-image {
    width: 100%;
    height: 138px;
    /* reduced */
    object-fit: cover;
    border-radius: 6px;
    /* reduced */
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    animation: fade 80s infinite;
    aspect-ratio: 752 / 230;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    6.25% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    31.25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.service-areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    /* reduced */
    gap: 6px;
    /* reduced */
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-areas-list li {
    background-color: rgba(244, 244, 244, 0.8);
    padding: 7px;
    /* reduced */
    border-radius: 7px;
    /* reduced */
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.service-areas-list li:hover {
    background-color: rgba(220, 220, 220, 1);
}

.service-areas-list a {
    text-decoration: none;
    color: #2980b9;
    font-weight: bold;
    transition: color 0.3s ease;
    display: block;
    pointer-events: auto;
}

.service-areas-list a:hover {
    color: #1a3c5e;
}

.service-areas .button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /* reduced */
    margin-bottom: 12px;
    /* reduced */
}

.service-areas .button-group .schedule-btn {
    margin: 0;
    display: inline-block;
    width: 165px;
    /* reduced */
    text-align: center;
    padding: 8px 14px;
    /* reduced */
    line-height: 1.4;
    box-sizing: border-box;
    font-size: 13.5px;
    /* reduced */
}

/* ==========================================================================
   Mobile Adjustments – Also Reduced 60%
   ========================================================================== */
@media (max-width: 768px) {
    .service-areas {
        padding: 12px;
        /* reduced */
        margin: 15px auto;
        /* reduced */
    }

    .service-areas-carousel {
        margin: 0 auto;
        height: 138px;
        /* reduced */
    }

    .service-areas-carousel-image {
        width: 100%;
        height: 138px;
        /* reduced */
        object-fit: cover;
    }

    .service-areas-list {
        grid-template-columns: 1fr;
    }

    .service-areas .button-group {
        flex-direction: column;
        gap: 8px;
        /* reduced */
    }

    .service-areas .button-group .schedule-btn {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 200px;
        /* reduced */
        font-size: 13px;
    }
}