/* SA FAQ Accordion — Sabbir Ahmed */
.sa-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.sa-faq__item {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    overflow: hidden;
    box-sizing: border-box;
    text-decoration: none;
    width: 100%;
    display: block;
}

.sa-faq__item a,
.sa-faq__item button {
    text-decoration: none;
    border-bottom: none !important;
}

.sa-faq__header {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 20px 24px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    text-align: left !important;
    box-sizing: border-box !important;
    color: inherit !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    overflow: hidden !important;
    margin: 0 !important;
    flex-wrap: nowrap !important;
}

/* Remove ALL default browser + Elementor button states */
.sa-faq__header:hover,
.sa-faq__header:focus,
.sa-faq__header:active,
.sa-faq__header:focus-within {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    border-color: transparent !important;
    outline: none !important;
}

.sa-faq__header:focus-visible {
    outline: 2px solid rgba(255,255,255,0.3);
    outline-offset: -3px;
    border-radius: 18px;
}

.sa-faq__q {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.sa-faq__btn {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
}

.sa-faq__btn svg {
    width: 16px;
    height: 16px;
    position: absolute;
    transition: opacity 0.2s ease;
}

.sa-faq__plus  { opacity: 1; }
.sa-faq__minus { opacity: 0; }

.sa-faq__item.sa-open .sa-faq__plus  { opacity: 0; }
.sa-faq__item.sa-open .sa-faq__minus { opacity: 1; }
/* .sa-faq__item.sa-open .sa-faq__btn bg controlled by Elementor */

/* Body — hidden by default, opened via JS inline style */
.sa-faq__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sa-faq__a {
    margin: 0;
    padding: 4px 24px 22px;
    color: rgba(255,255,255,0.60);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .sa-faq__header {
        align-items: flex-start !important;
        gap: 10px !important;
    }
    .sa-faq__q {
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        line-height: 1.4 !important;
        font-size: 16px;
    }
    .sa-faq__btn {
        margin-top: 2px;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 600px) {
    .sa-faq__header { padding: 16px 18px !important; }
    .sa-faq__a { padding: 4px 18px 18px; }
    .sa-faq__q { font-size: 14px; }
}
