/* FAQ Section Styles - Scoped to Page Only */


.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    color: var(--gold-primary);
}

/* Breadcrumbs (Consistent) */

.breadcrumbs {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .breadcrumbs {
    background: rgba(10, 25, 47, 0.05);
    color: var(--text-secondary);
    border-color: rgba(10, 25, 47, 0.1);
}

.breadcrumbs a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

body.light-mode .breadcrumbs a:hover {
    color: var(--navy-primary);
}

/* Premium Styling for FAQ Page ONLY (Excludes Homepage #faq) */
.faq-section:not(#faq) {
    background-color: var(--navy-primary);
    background-image: linear-gradient(to bottom, var(--navy-primary), var(--navy-secondary));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

/* Decorative Orbs - Page Only (Visible mainly in Dark Mode) */
.faq-section:not(#faq)::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s;
}

.faq-section:not(#faq)::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100,255,218,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s;
}

/* Hide Orbs in Light Mode */
body.light-mode .faq-section:not(#faq)::before,
body.light-mode .faq-section:not(#faq)::after {
    opacity: 0;
}

/* Title Styling - Page Only */
.faq-section:not(#faq) .section-title-sm {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.faq-section:not(#faq) .section-subtitle {
    color: var(--gold-primary);
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-section:not(#faq) .section-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Page Specific Grid & Categories */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-category {
    margin-bottom: 30px;
}

.category-header {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-header i {
    color: var(--gold-primary);
}

/* Accordion Items - Page Only Styling */
.faq-item {
    background-color: var(--navy-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    padding: 20px 25px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-item.active .faq-question {
    color: var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.05); /* Subtle highlight for active header */
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.7;
    background-color: var(--navy-secondary); 
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 500px; /* Increased max-height for longer answers */
}

/* FAQ Footer Button */
.faq-footer .btn-outline-gold {
    margin-top: 30px;
    display: inline-block;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.faq-footer .btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #fff; /* White text on gold hover */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq-section:not(#faq) {
        padding: 60px 0;
    }
    
    .category-header {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
}
