/* FAQ Section/* FAQ Styles - Coral Theme */
.section-faq {
    padding: 80px 0;
    position: relative;
    background: transparent;
}

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

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.faq-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

/* Accordion */
.faq-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.faq-content.active {
    display: block;
}

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

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #667eea;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 14px;
    transition: all 0.3s ease-out;
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    /* max-height handled by JS */
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.faq-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.faq-cta-link:hover {
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}