/* FAQ Hero Section */
.faq-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    overflow: hidden;
    border-bottom: 2px solid #ff6b35;
}

.faq-hero .hero-title {
    font-size: 3.5rem;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
}

.faq-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.faq-hero .search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.faq-hero #faq-search {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 50px;
    border: 2px solid rgba(255, 107, 53, 0.5);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-hero #faq-search:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #10101a;
}

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

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-btn:hover, .category-btn.active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
    margin-bottom: 1rem;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
}

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