/* ==============================================
   FAQ SECTION - Light Theme
============================================== */

.section-faq {
    margin-top: 4rem;
    padding: 0;
}

.section-faq .section-header {
    margin-bottom: 2rem;
}

.faq-icon {
    color: hsl(356, 85%, 46%);
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}

.faq-item:hover {
    border-color: hsl(356, 85%, 46%);
    background: #fff;
}

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

.faq-question:hover {
    color: hsl(356, 85%, 46%);
}

.faq-question span {
    flex: 1;
}

.faq-icon-toggle {
    flex-shrink: 0;
    color: hsl(356, 85%, 46%);
    transition: transform 0.3s;
}

.faq-icon-toggle .faq-icon-vertical {
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.faq-question[aria-expanded="true"] .faq-icon-toggle .faq-icon-vertical {
    transform: rotate(90deg);
    opacity: 0;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
}

/* Active State */
.faq-question[aria-expanded="true"] {
    color: hsl(356, 85%, 46%);
}

/* Mobile */
@media (max-width: 768px) {
    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.95rem;
    }
}
