t/* FAQ Page Styles */

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #0a2463 0%, #1e3d72 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero .hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Search Section */
.faq-search-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.faq-search-box input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 4rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search-box input:focus {
    outline: none;
    border-color: #0a2463;
    box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

/* FAQ Content */
.faq-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Category Navigation */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.faq-category-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #555;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category-btn i {
    font-size: 1.1rem;
}

.faq-category-btn:hover {
    background: #f8f9fa;
    border-color: #0a2463;
    color: #0a2463;
}

.faq-category-btn.active {
    background: #0a2463;
    border-color: #0a2463;
    color: white;
}

/* FAQ Items */
.faq-items {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 4rem;
}

.faq-section-title {
    font-size: 2rem;
    color: #0a2463;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #fb8500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-section-title i {
    color: #fb8500;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #0a2463;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #0a2463;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem 2rem;
    max-height: 2000px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.faq-answer ul li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fb8500;
    font-weight: bold;
    font-size: 1.5rem;
}

.faq-answer strong {
    color: #0a2463;
    font-weight: 600;
}

/* Contact Section */
.faq-contact-section {
    margin-top: 4rem;
    text-align: center;
}

.faq-contact-card {
    background: linear-gradient(135deg, #0a2463, #1e3d72);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fb8500;
}

.faq-contact-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-contact-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-contact-card .btn {
    background: #fb8500;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.faq-contact-card .btn:hover {
    background: #e67700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 133, 0, 0.3);
}

/* Hidden state for categories */
.faq-category-section.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }

    .faq-categories {
        gap: 0.5rem;
    }

    .faq-category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .faq-section-title {
        font-size: 1.7rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .faq-hero {
        padding: 4rem 0 3rem;
    }

    .faq-hero h1 {
        font-size: 2rem;
    }

    .faq-hero p {
        font-size: 1.1rem;
    }

    .faq-search-box input {
        padding: 0.8rem 1rem 0.8rem 3.5rem;
    }

    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-category-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-section-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-contact-card {
        padding: 2rem 1.5rem;
    }

    .faq-contact-card h3 {
        font-size: 1.7rem;
    }
}
