/* FAQ Page Specific Styles */

/* Hero styles removed - using Unified Hero (.hero-new) in style.css */

.faq-categories {
    padding: 40px 0;
    background: transparent;
    border-bottom: 1px solid rgba(233, 236, 239, 0.5);
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: #4B5563;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}

.category-btn:hover,
.category-btn.active {
    background: transparent;
    color: #1E3A8A;
    border-color: #1E3A8A;
}

.faq-content {
    padding: 80px 0;
    background: transparent;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    color: #1F2937;
    border: 1px solid #E5E7EB;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.8rem;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 58, 138, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: #1E3A8A;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: #1E3A8A;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
}

.faq-answer p {
    padding: 0 1.8rem 1.8rem;
    margin: 0;
    color: #4B5563;
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.95;
}

/* Contact CTA Section - Theme Design */
.faq-contact {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.contact-cta {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-cta h2 {
    color: #1E3A8A;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-cta>p {
    color: #4B5563;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-options .btn {
    min-width: 200px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-options .btn-primary {
    background: #1E3A8A;
    color: white;
    border: 2px solid #1E3A8A;
}

.contact-options .btn-primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.contact-options .btn-outline {
    background: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.contact-options .btn-outline:hover {
    background: #1E3A8A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.response-time {
    color: #6B7280;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

/* FAQ CTA Section */
.faq-cta {
    padding: 80px 0;
    background: transparent;
    color: var(--text-primary);
    text-align: center;
}

.faq-cta h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.faq-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    /* .hero-faq {
        padding: 120px 0 60px;
    }
    
    .hero-faq h1 {
        font-size: 2.8rem;
    }
    
    .hero-faq p {
        font-size: 1.1rem;
        max-width: 90%;
    } */

    .category-nav {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer p {
        padding: 1rem;
    }

    /* FAQ Contact Section Mobile */
    .faq-contact {
        padding: 60px 0;
    }

    .contact-cta {
        padding: 2rem 1rem;
    }

    .contact-cta h2 {
        font-size: 2.2rem;
    }

    .contact-cta>p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-options .btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
    }

    .response-time {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* .hero-faq h1 {
        font-size: 2.2rem;
    }
    
    .hero-faq p {
        font-size: 1rem;
    } */

    .faq-question h3 {
        font-size: 1rem;
    }

    /* FAQ Contact Responsive */
    .faq-contact {
        padding: 50px 0;
    }

    .contact-cta {
        padding: 1.5rem 0.8rem;
    }

    .contact-cta h2 {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
    }

    .contact-cta>p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-options {
        gap: 0.8rem;
    }

    .contact-options .btn {
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .response-time {
        font-size: 0.9rem;
    }
}