/* ===== FAQ Section ===== */
.faq {
    position: relative;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-padding {
    padding: 6rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: inline-block;
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #007bff;
    margin: 0.5rem auto 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.section-description {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.question-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 1rem;
    flex-shrink: 0;
}

.question-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.faq-question i {
    color: #007bff;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.faq-question[aria-expanded="true"] {
    background: #007bff;
}

.faq-question[aria-expanded="true"] .question-text,
.faq-question[aria-expanded="true"] i,
.faq-question[aria-expanded="true"] .question-icon {
    color: white;
}

.faq-question[aria-expanded="true"] .question-icon {
    background: rgba(255, 255, 255, 0.2);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

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

.faq-answer .answer-content {
    padding: 0 2rem 1.5rem;
}

.faq-answer p, .faq-answer ul {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
}

.faq-answer li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background: #007bff;
}

.faq-answer strong {
    color: #2c3e50;
}

/* FAQ Footer */
.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

.faq-footer p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .question-content {
        gap: 1rem;
    }
    
    .question-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .faq-answer .answer-content {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-footer p {
        font-size: 1rem;
    }
}