﻿/* ========================================
               FAQ Section - Modern Professional Design
               ======================================== */
.section-faq-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 50%, #FFFBEB 100%);
    overflow: hidden;
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD500, #FFC400, #FFD500, transparent);
    border-radius: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Accordion Modern */
.accordion-modern {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Accordion Item */
.accordion-item-modern {
    background: #FFFFFF;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-modern:hover {
    border-color: #FFD500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Accordion Button */
.accordion-button-modern {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: start;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button-modern:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button-modern::after {
    display: none;
}

.accordion-button-modern:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 213, 0, 0.1) 0%, transparent 100%);
}

/* FAQ Number */
.faq-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFD500 0%, #FFC400 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-button-modern:not(.collapsed) .faq-number {
    transform: scale(1.1);
}

/* FAQ Question */
.faq-question {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.5;
    text-align: start;
}

/* FAQ Icon */
.faq-icon {
    color: #6B7280;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-button-modern:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
    color: #FFD500;
}

/* Accordion Body */
.accordion-body-modern {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.8;
    text-align: start;
}

/* Background Decorations */
.faq-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 213, 0, 0.15) 0%, transparent 70%);
}

.decoration-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.decoration-shape.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
}

/* Responsive Design */
@@media (max-width: 991px) {
    .section-faq-modern {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .accordion-button-modern {
        padding: 1.25rem 1.5rem;
    }

    .accordion-body-modern {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

@@media (max-width: 576px) {
    .section-faq-modern {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1.125rem;
    }

    .accordion-button-modern {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .faq-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1rem;
    }

    .accordion-body-modern {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.9375rem;
    }
}