.fourseasons-services-cards-section {
    text-align: center;
    padding: 60px 0;
    background: #f5f5f5;
}

.fourseasons-services-cards-section .container {
    max-width: 1137px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Animation classes */
.service-card {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.service-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Rest of the existing styles */
.fourseasons-services-cards-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 0;
}

.fourseasons-services-cards-section .service-card {
    padding: 38px !important;
    background: #E9E4DC;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fourseasons-services-cards-section .service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: #F0EBE3;
}

.fourseasons-services-cards-section .service-icon {
    width: 80px;
    height: 80px;
    background: #555452;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 30px auto;
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.fourseasons-services-cards-section .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fourseasons-services-cards-section .service-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.fourseasons-services-cards-section .service-icon-placeholder span {
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
}

.fourseasons-services-cards-section .service-card:hover .service-icon {
    background: #333;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.fourseasons-services-cards-section .service-card:hover .service-card-title {
    color: #333;
    transform: translateY(-2px);
}

.fourseasons-services-cards-section .service-card:hover .service-card-description {
    color: #555;
    transform: translateY(-1px);
}

.fourseasons-services-cards-section .service-card-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
    margin-top: 0;
}

.fourseasons-services-cards-section .service-card-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Allow Elementor typography controls to override */
.elementor-widget-fourseasons-services-cards .service-card-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    text-decoration: inherit;
    font-style: inherit;
}

.elementor-widget-fourseasons-services-cards .service-card-description {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    text-decoration: inherit;
    font-style: inherit;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .fourseasons-services-cards-section .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

