/* ===== FAQ ===== */
.faq-section {
    background: transparent;
    padding: 0 0 12px;
}

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

.faq-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 22px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s ease;
    font-size: 15px;
    font-weight: 650;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover { background: #fafbfc; }

.faq-question.active {
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    color: #c2410c;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

.faq-text { flex: 1; line-height: 1.55; }

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    line-height: 1;
}

.faq-question.active .faq-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active { max-height: 600px; }

.faq-answer p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.85;
    margin: 0;
    padding: 4px 22px 22px 66px;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title { font-size: 21px; margin-bottom: 22px; }
    .faq-question { padding: 18px 18px; font-size: 14.5px; gap: 12px; }
    .faq-number { width: 28px; height: 28px; font-size: 11px; }
    .faq-icon { width: 28px; height: 28px; font-size: 16px; }
    .faq-answer p { font-size: 14px; padding: 4px 18px 18px 58px; }
}

@media (max-width: 480px) {
    .faq-list { gap: 10px; }
    .faq-question { padding: 16px; font-size: 14px; gap: 10px; }
    .faq-number { width: 26px; height: 26px; font-size: 11px; }
    .faq-icon { width: 26px; height: 26px; font-size: 14px; }
    .faq-answer p { font-size: 13.5px; padding: 4px 16px 16px 52px; }
}
