/* ── FAQ Accordion – faq-accordion.css ──────────────────────────────
   Side-by-side layout: numbered question list on the left, answer
   text on the right, rendered over a full-width background image.
   ------------------------------------------------------------------ */

.faq-accordion-section {
    position: relative;
    width: 100%;
    padding: 60px 40px;
    box-sizing: border-box;
    background-color: #1a1a1a9c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* Optional dark overlay so text stays readable on busy photos */
.faq-accordion-section.has-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.faq-accordion-section .faq-layout {
    position: relative;
    z-index: 1;
}

.faq-accordion__title {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

/* ── Layout ──────────────────────────────────────────────────────── */
.faq-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
}

.faq-left {
    width: 55%;
}

.faq-right {
    width: 45%;
    display: flex;
    align-items: center;
    min-height: 250px;
}

#faq-answer-content {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Geist Regular', Arial, sans-serif;
    font-weight: 300;
    transition: opacity 0.15s ease;
}

#faq-answer-content p {
    margin: 0;
}

.faq-left span {
    font-family: 'Geist Regular', Arial, sans-serif;
}

/* ── Question row ────────────────────────────────────────────────── */
.faq-question {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font: inherit;
}

.faq-question:last-child {
    border-bottom: none;
}

.faq-number {
    min-width: 45px;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff75;
}

.faq-title {
    font-size: 20px;
    font-weight: 400;
   color: #ffffff75;
    transition: all 0.3s ease;
}

.faq-question.active .faq-title {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.faq-question.active .faq-number {
    color: #ffffff;
}

.faq-question:hover .faq-title {
    color: #ffffff;
}

/* ── Empty state ─────────────────────────────────────────────────── */
.faq-empty {
    padding: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* ── Tablet ──────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .faq-layout {
        gap: 40px;
    }
    .faq-title {
        font-size: 16px;
    }
    #faq-answer-content {
        font-size: 18px;
    }
}

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .faq-accordion-section {
        padding: 40px 20px;
    }
    .faq-layout {
        flex-direction: column;
        gap: 30px;
    }
    .faq-left,
    .faq-right {
        width: 100%;
    }
    .faq-right {
        min-height: auto;
    }
    .faq-number {
        min-width: 35px;
        font-size: 16px;
    }
    .faq-title {
        font-size: 16px;
    }
    #faq-answer-content {
        font-size: 16px;
        line-height: 1.6;
    }
}
