
/* ===== FAQ Section ===== */
#faq {
    padding: 6rem 2rem;
     background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 100, 199, 0.1) 100%);
}

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

.faq-item {
    background: var(--background);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(var(--primary), 0.05);
}

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}

.arrow {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.faq-answer li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.package-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.package {
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.timeline-chart {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(var(--primary), 0.1);
    border-radius: var(--radius-sm);
}

.duration {
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .timeline-chart {
        flex-direction: column;
    }
}
