/* ===== FAQ PAGE SPECIFIC STYLES ===== */

/* FAQ Hero */
.faq-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-hero-content {
    max-width: 900px;
}

.faq-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

/* FAQ Search */
.faq-search-container {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    z-index: 1;
}

.faq-search-input {
    width: 100%;
    padding: 18px 25px 18px 55px;
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 60px;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.faq-search-input::placeholder {
    color: var(--text-muted);
}

/* Category Filters */
.faq-filters {
    padding: 20px 0 40px;
    background: var(--dark-light);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-muted);
    padding: 10px 25px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.search-results {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Content */
.faq-content {
    padding: 60px 0;
    background: var(--dark-deep);
}

.faq-category {
    margin-bottom: 50px;
}

.category-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--gold);
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question span i {
    color: var(--gold);
    margin-right: 12px;
    width: 20px;
}

.faq-question i.fa-chevron-down {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
}

.faq-answer ul, .faq-answer ol {
    margin: 10px 0 10px 25px;
}

.faq-answer li {
    margin: 8px 0;
}

.faq-answer strong {
    color: var(--gold);
}

/* Support Section */
.support-section {
    padding: 60px 0;
    background: var(--dark-light);
}

.support-box {
    background: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.support-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.support-box p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.support-option {
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.support-option:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.support-option i {
    margin-bottom: 15px;
}

.support-option h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.support-option p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.support-option .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
}

.support-note {
    color: var(--gold) !important;
    font-size: 1rem !important;
    margin-top: 30px;
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .support-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .support-box {
        padding: 40px 20px;
    }
    
    .support-box h2 {
        font-size: 2rem;
    }
}