/* ===== Sandy Wang - Services Icons Fix ===== */

@keyframes iconSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 
.rs-services-icon i {
    font-size: 58px;
    line-height: 1;
    display: block;
} */

.rs-services-icon i {
    font-size: 58px;
    line-height: 1;
    display: inline-block;
    color: #ff5c28;
}

/* Hover pe apni jagah spin */
.rs-services-wrapper:hover .rs-services-icon i {
    animation: iconSpin 0.6s linear forwards;
}


/* ===== Sandy Wang - Serviced Areas Badges ===== */

.rs-serviced-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.rs-area-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
    border: 1.5px solid var(--badge-color);
    color: var(--badge-color);
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.rs-area-badge:hover {
    background-color: var(--badge-color);
    color: #ffffff;
    transform: translateY(-3px);
}