/* WHY CHOOSE – FAQ PAGE */

.why-choose-faq-con {
    background: var(--bg--color);
}

.why-faq-subtext {
    max-width: 720px;
    margin: 10px auto 40px;
    color: var(--text--color);
    font-size: 16px;
    line-height: 1.7;
}

.why-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-faq-card {
    background: var(--secondary--color);
    border: 1px solid var(--border--color2);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.why-faq-card:nth-child(1) { animation-delay: 0.1s; }
.why-faq-card:nth-child(2) { animation-delay: 0.2s; }
.why-faq-card:nth-child(3) { animation-delay: 0.3s; }
.why-faq-card:nth-child(4) { animation-delay: 0.4s; }
.why-faq-card:nth-child(5) { animation-delay: 0.5s; }
.why-faq-card:nth-child(6) { animation-delay: 0.6s; }

.why-faq-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary--color);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.why-faq-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: rgba(169,55,9,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary--color);
    font-size: 22px;
}

.why-faq-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--black--color2);
}

.why-faq-card p {
    font-size: 14.8px;
    color: var(--text--color);
    line-height: 1.6;
}

.why-faq-cta {
    margin-top: 40px;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .why-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-faq-grid {
        grid-template-columns: 1fr;
    }
}