/* =======================
   FAQ SECTION STYLES
   ======================= */

.faq-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-title h2 {
    font-size: 42px;
    margin: 0 0 20px;
    color: var(--text-color);
}

.faq-section .section-title p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(227, 62, 16, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(227, 62, 16, 0.4);
}

.faq-content {
    flex: 1;
}

.faq-content h3 {
    font-size: 18px;
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    color: var(--text-white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--bg-light);
}

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

.faq-answer p {
    padding: 0 30px 30px 100px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.faq-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 30px 20px 100px;
}

.faq-tags .badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

    .faq-section .section-title h2 {
        font-size: 32px;
    }

    .faq-section .section-title p {
        font-size: 16px;
    }

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

    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .faq-content h3 {
        font-size: 16px;
    }

    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 20px 20px 80px;
        font-size: 14px;
    }

    .faq-tags {
        padding: 0 20px 15px 80px;
    }
}
