/* ==================== FAQ.CSS ==================== */

.faq-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    min-height: 100vh;
    margin-top: 70px;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 800;
}

.faq-header p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(31, 182, 232, 0.1);
    transition: all 0.35s ease;
    border: 1px solid rgba(31, 182, 232, 0.1);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(31, 182, 232, 0.15);
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(31, 182, 232, 0.05) 0%, rgba(142, 60, 247, 0.05) 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-blue);
}

.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(31, 182, 232, 0.1), rgba(142, 60, 247, 0.1));
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
    background: linear-gradient(135deg, rgba(31, 182, 232, 0.02) 0%, rgba(142, 60, 247, 0.02) 100%);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

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

    .faq-header h1 {
        font-size: 2.2rem;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-page {
        padding: 80px 0 50px;
    }

    .faq-header h1 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}