/**

 * FAQs Block Styles

 *

 * @package UltraLite_BS_ACF

 * @since 1.0.0

 */





.testimonals + .faqs-section {
    padding-top: 0 !important;
}

.faqs-accordion {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.faq-item {

    box-shadow: var(--custom-shadow);

    border-radius: 64px;

    border: 1px solid #FCFCFC;

    overflow: hidden;

    transition: all 0.3s ease;

}



.faq-question-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 32px;

    cursor: pointer;

    transition: background-color 0.3s ease;

}



.faq-question {

    font-size: 24px;

    font-weight: 700;

    color: #000000;

    margin: 0;

    line-height: 1.3;

    flex: 1;

    text-align: left;

}



.faq-toggle-btn {

    background-color: #ffffff;

    border: 1px solid #000000;

    border-radius: 50%;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    flex-shrink: 0;

    margin-left: 24px;

    padding: 0;

    transition: all 0.3s ease;

    position: relative;

}



.faq-toggle-btn:hover {

    background-color: #f5f5f5;

}



.faq-icon {

    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #000000;

    width: 100%;

    height: 100%;

}



.faq-icon svg {

    width: 20px;

    height: 20px;

    display: block;

}



/* Show plus icon by default, hide close icon */

.faq-icon-close {

    display: none;

}



.faq-icon-plus {

    display: flex;

}



/* When expanded, hide plus and show close */

.faq-question-wrapper[aria-expanded="true"] .faq-icon-close {

    display: flex;

}



.faq-question-wrapper[aria-expanded="true"] .faq-icon-plus {

    display: none;

}



.faq-answer-wrapper {

    padding: 0 32px 24px 32px;

}



.faq-answer {

    padding-top: 0;

}



.faq-answer p {

    font-size: 16px;

    line-height: 1.6;

    color: #333333;

    margin: 0 0 16px 0;

}



.faq-answer p:last-child {

    margin-bottom: 0;

}



.faq-answer ul,

.faq-answer ol {

    margin: 16px 0;

    padding-left: 24px;

}



.faq-answer li {

    font-size: 16px;

    line-height: 1.6;

    color: #333333;

    margin-bottom: 8px;

}



.faq-answer li:last-child {

    margin-bottom: 0;

}

.faq-item:has(.collapse.show) {
    border-radius: 48px;
}



/* Responsive adjustments */

@media (max-width: 992px) {

    .faqs-section {

        padding: 60px 0;

    }
    

    .faq-question {

        font-size: 22px;

    }

    

    .faq-question-wrapper {

        padding: 20px 24px;

    }

    

    .faq-answer-wrapper {

        padding: 0 24px 20px 24px;

    }

}



@media (max-width: 768px) {

    .faqs-section {

        padding: 40px 0;

    }
    

    

    .faqs-accordion {

        gap: 16px;

    }

    

    .faq-item {

        border-radius: 16px;

    }

    

    .faq-question {

        font-size: 20px;

    }

    

    .faq-question-wrapper {

        padding: 16px 20px;

    }

    

    .faq-toggle-btn {

        width: 36px;

        height: 36px;

        margin-left: 16px;

    }

    

    .faq-icon svg {

        width: 18px;

        height: 18px;

    }

    

    .faq-answer-wrapper {

        padding: 0 20px 16px 20px;

    }

    

    .faq-answer p {

        font-size: 15px;

    }

}

@media (min-width:992) {

    .faq-question-wrapper[aria-expanded="true"] {

    padding: 32px 32px 24px !important;

}

}