/* FAQ Page Styles */
.main-content {
    padding-top: 0;
}

/* Container uses base.css definition - no override needed */

/* Hero Section */
.faq-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: transparent;
}

.faq-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.faq-hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-accent-light);
    margin-bottom: 20px;
}

.faq-hero-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Categories Section */
.faq-categories-section {
    padding: 40px 20px;
    background: transparent;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background: var(--gradient-blue-accent);
    border-color: rgba(74, 144, 226, 0.6);
    color: var(--white);
}

.faq-category-btn i {
    font-size: 18px;
}

/* FAQ Items Section */
.faq-items-section {
    padding: 60px 20px;
    background: transparent;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(74, 144, 226, 0.3);
}

.faq-item.active {
    border-color: rgba(74, 144, 226, 0.5);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--blue-accent-light);
}

.faq-question-text {
    flex: 1;
    margin-right: 20px;
}

.faq-chevron {
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
    animation: slideDown 0.3s ease;
}

.faq-answer-content {
    font-size: 16px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.faq-cta-section {
    padding: 80px 20px;
    background: transparent;
}

.faq-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}

.faq-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.faq-cta-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gradient-blue-accent);
    border: 1px solid rgba(74, 144, 226, 0.6);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.faq-cta-button:hover {
    background: var(--gradient-blue-4);
    border-color: rgba(74, 144, 226, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 36px;
    }

    .faq-hero-subtitle {
        font-size: 20px;
    }

    .faq-hero-description {
        font-size: 16px;
    }

    .faq-category-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer-content {
        font-size: 15px;
    }

    .faq-cta-card {
        padding: 40px 30px;
    }

    .faq-cta-title {
        font-size: 28px;
    }

    .faq-cta-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 100px 20px 40px;
    }

    .faq-hero-title {
        font-size: 28px;
    }

    .faq-hero-subtitle {
        font-size: 18px;
    }

    .faq-categories {
        gap: 10px;
    }

    .faq-category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .faq-items {
        gap: 15px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
    }

    .faq-cta-card {
        padding: 30px 20px;
    }
}
