/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--wfs-dark) 0%, #0f0f0f 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wfs-yellow), transparent);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Content */
.faq-content {
    padding: 80px 0;
    background: var(--wfs-dark);
}

.faq-category {
    margin-bottom: 60px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--wfs-yellow);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(229, 199, 56, 0.2);
}

.category-title svg {
    color: var(--wfs-yellow);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(229, 199, 56, 0.03);
    border: 1px solid rgba(229, 199, 56, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(229, 199, 56, 0.05);
    border-color: rgba(229, 199, 56, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--wfs-yellow);
}

.faq-question[aria-expanded="true"] {
    color: var(--wfs-yellow);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--wfs-yellow);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer a {
    color: var(--wfs-yellow);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(229, 199, 56, 0.05) 0%, rgba(229, 199, 56, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.2);
    margin-top: 40px;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.faq-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .faq-content {
        padding: 60px 0;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }

    .faq-cta {
        padding: 40px 25px;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }
}
