/* Modern Why Choose Section - Minimal 3 Features */

.why-choose-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
    position: relative;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.03em;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Feature Card */
.feature-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #4A6E1A;
    box-shadow: 0 20px 40px rgba(74, 110, 26, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f5f9f0 100%);
}

/* Feature Icon */
.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E8F5E0 0%, #D4E8C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.feature-icon svg {
    color: #4A6E1A;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #5A7E2A 0%, #4A6E1A 100%);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon svg {
    color: #ffffff;
}

/* Feature Content */
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-modern {
        padding: 4rem 0;
    }

    .why-choose-container {
        padding: 0 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon svg {
        width: 36px;
        height: 36px;
    }

    .feature-card h3 {
        font-size: 1.35rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose-modern {
        padding: 3rem 0;
    }

    .why-choose-container {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

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

.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}
