/* FAQ Page Styles */
.faq-main {
    margin-top: 80px;
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
    background: #0a0a0a;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.faq-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Box */
.faq-search {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.search-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.search-input {
    width: 100%;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 50px;
    padding: 1rem 1rem 1rem 3rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.search-input::placeholder {
    color: #888;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
}

/* Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.category-filter {
    background: transparent;
    border: 2px solid #333;
    color: #cccccc;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filter:hover {
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
}

.category-filter.active {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border-color: transparent;
    color: #000;
    font-weight: 600;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.faq-item.hidden {
    display: none;
}

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

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #ffd700;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.02);
}

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

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

.faq-answer ul,
.faq-answer ol {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #ffd700;
}

.faq-answer em {
    color: #888;
    font-style: italic;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.payment-category h4 {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-category ul {
    margin: 0;
    padding-left: 1rem;
}

/* Contact Support */
.faq-contact {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.contact-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border: none;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.contact-btn i {
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2.5rem;
    }
    
    .faq-header p {
        font-size: 1rem;
    }
    
    .faq-categories {
        gap: 0.5rem;
    }
    
    .category-filter {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-main {
        padding: 2rem 0;
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .search-input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }
    
    .search-icon {
        left: 0.75rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}