/* ========================================
   Modern FAQ Section Styles
   ======================================== */

.faq-section {
    padding: 60px 0 20px;
    background-color: var(--white-color);
}

.faq-img-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.faq-img-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.faq-img-main:hover img {
    transform: scale(1.05);
}

/* Modern Accordion Styles */
.accordion-style1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.accordion-style1 .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px !important;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.accordion-style1 .accordion-item:hover {
    border-color: rgba(245, 131, 69, 0.2);
    box-shadow: 0 10px 25px rgba(245, 131, 69, 0.05);
}

.accordion-style1 .accordion-button {
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color);
    background-color: transparent;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.accordion-style1 .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background-color: rgba(245, 131, 69, 0.03);
}

.accordion-style1 .accordion-button::after {
    display: none; /* Remove default arrow */
}

/* Custom Icon for Accordion using Multiple Font Fallbacks */
.accordion-style1 .accordion-button::before {
    content: "\e3e2" !important; /* Phosphor Plus fallback */
    font-family: "Phosphor", "Font Awesome 5 Pro", "Font Awesome 5 Free", sans-serif !important;
    font-weight: 900;
    font-size: 18px;
    order: 2;
    transition: all 0.4s ease;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(245, 131, 69, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* If FontAwesome is being used, use its plus code */
/* .accordion-style1 .accordion-button::before { content: "\f067"; } */

.accordion-style1 .accordion-button:not(.collapsed)::before {
    content: "\e30c" !important; /* Phosphor Minus fallback */
    transform: rotate(180deg);
    background: var(--theme-color);
    color: #fff;
}

.accordion-style1 .accordion-body {
    padding: 0 30px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--body-color);
}

/* Animations */
[data-ani="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-active [data-ani="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .accordion-style1 .accordion-button {
        padding: 20px 25px;
        font-size: 16px;
    }
    
    .accordion-style1 .accordion-body {
        padding: 0 25px 25px;
    }
}
