/* FAQ Page Specific Styles */

.hero-faq {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #c7e4fb 0%, #a8d5f0 35%, #89c4e8 70%, #6bb3e0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-faq .container {
    position: relative;
    z-index: 1;
}

.hero-faq h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1E3A8A;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
    line-height: 1.2;
}

.hero-faq p {
    font-size: 1.3rem;
    color: #4B5563;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.faq-categories {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid #F8F9FB;
    background: white;
    color: #1A2B4C;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #1A2B4C;
    color: white;
    border-color: #1A2B4C;
}

.faq-content {
    padding: 80px 0;
    background: #c7e4fb;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: white;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* Contact CTA Section - Theme Design */
.faq-contact {
    padding: 80px 0;
    background: #c7e4fb;
    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: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    text-align: center;
}

.faq-cta h2 {
    color: white;
    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;
    }
}