/* ============================================
   FAQ SECTION CSS
   ============================================ */

.faq-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(242, 140, 40, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section > .container {
    position: relative;
    z-index: 1;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(242, 140, 40, 0.15);
    border: 1px solid rgba(242, 140, 40, 0.3);
    border-radius: 50px;
    color: #F28C28;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.faq-header-badge i {
    font-size: 0.875rem;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-title .title-accent {
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(242, 140, 40, 0.05);
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
    flex: 1;
    padding-right: 2rem;
    line-height: 1.5;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E5E7EB;
    background: #ffffff;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    border-color: #F28C28;
    background: #F28C28;
    color: #ffffff;
}

.faq-toggle i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    border-color: #F28C28;
    background: #F28C28;
    color: #ffffff;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4B5563;
    margin: 0;
    padding-top: 1rem;
}

/* FAQ Footer */
.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

.faq-footer-text {
    font-size: 1.0625rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-footer-text i {
    color: #F28C28;
    font-size: 1.125rem;
}

.faq-footer-text a {
    color: #F28C28;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-footer-text a:hover {
    color: #FF7A00;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-toggle {
        width: 36px;
        height: 36px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer-text {
        font-size: 1rem;
    }
}






