/* Modern Why Us Styles */

.modern-whyus-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.modern-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.modern-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
}

.modern-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f82c23 0%, #e02318 100%);
    border-radius: 2px;
}

.modern-section-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin: 20px 0 0 0;
}

.modern-whyus-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12.5px;
}

.modern-whyus-item {
    animation: fadeInUp 0.6s ease;
    padding: 0 12.5px 25px 12.5px;
    flex: 0 0 25%;
    max-width: 25%;
}

.modern-whyus-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.modern-whyus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(248, 44, 35, 0.2);
    border-color: #f82c23;
}

.modern-whyus-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.modern-whyus-card:hover .modern-whyus-icon-wrapper {
    background: linear-gradient(135deg, #f82c23 0%, #e02318 100%);
    transform: scale(1.1) rotate(5deg);
}

.modern-whyus-icon {
    max-width: 60px;
    max-height: 60px;
    transition: all 0.4s ease;
}

.modern-whyus-card:hover .modern-whyus-icon {
    filter: brightness(0) invert(1);
}

.modern-whyus-content {
    padding-top: 10px;
}

.modern-whyus-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-whyus-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .modern-section-title {
        font-size: 30px;
    }
    
    .modern-whyus-item {
        margin-bottom: 20px;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .modern-whyus-section {
        padding: 40px 0;
    }
    
    .modern-section-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .modern-section-title {
        font-size: 24px;
    }
    
    .modern-whyus-grid {
        margin: 0 15px;
    }
    
    .modern-whyus-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .modern-whyus-card {
        padding: 25px 15px;
    }
    
    .modern-whyus-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .modern-whyus-icon {
        max-width: 50px;
        max-height: 50px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

