/* ==================== FAQ HERO ==================== */
.faq-hero {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 50%, #FFF7ED 100%);
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(222, 94, 9, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.faq-hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: rgba(230, 126, 34, 0.06);
    border-radius: 50%;
    filter: blur(60px);
}

.faq-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.faq-hero p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==================== FAQ ACCORDION ==================== */
.faq-page-section {
    padding: 4rem 1.5rem 6rem;
}

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

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: #de5e0930;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.faq-item.active {
    border-color: #de5e09;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: #de5e09;
}

.faq-icon {
    font-size: 1.5rem;
    color: #de5e09;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .faq-hero {
        padding: 7rem 1.25rem 3rem;
    }

    .faq-hero h1 {
        font-size: 2rem;
    }

    .faq-hero p {
        font-size: 1rem;
    }

    .faq-page-section {
        padding: 3rem 1.25rem 4rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 1.75rem;
    }
}
