/* ===== Service Support ===== */
.service-menu {
    padding: 50px 0 70px;
}


.service-support-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-support-item {
    width: calc(25% - 18px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f3f3;
}

    .service-support-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 35px rgba(252,0,0,0.15);
        border-color: rgba(252,0,0,0.15);
    }

.service-support-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f8f8;
}

    .service-support-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

.service-support-item:hover .service-support-img img {
    transform: scale(1.06);
}

.service-support-name {
    padding: 18px 15px 20px;
    text-align: center;
    font-size: 18px;
    color: #222;
    font-weight: 600;
    line-height: 28px;
    transition: all 0.3s ease;
}

.service-support-item:hover .service-support-name {
    color: #fc0000;
}



@media screen and (max-width: 767px) {
    .service-menu {
        padding: 35px 0 45px;
    }


    .service-support-list {
        gap: 16px;
    }

    .service-support-item {
        width: 100%;
        border-radius: 12px;
    }

    .service-support-img {
        height: 210px;
    }

    .service-support-name {
        font-size: 17px;
        padding: 14px 12px 16px;
    }
}
