/* =========================
   FAQ SECTION
========================= */

.faq-section {
    width: 100%;
    padding: 90px 20px;
    background: #f8f9fc;
}

.faq-container {
    max-width: 950px;
    margin: auto;
}

/* =========================
   HEADING
========================= */

.faq-heading {
    text-align: center;
    margin-bottom: 45px;
}

.faq-heading span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d49b32;
}

.faq-heading h2 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.2;
    color: #172033;
    font-weight: 700;
}

.faq-heading p {
    max-width: 650px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    color: #697386;
}

/* =========================
   FAQ LIST
========================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e7e9ef;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active {
    border-color: #d49b32;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* =========================
   QUESTION
========================= */

.faq-question {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question span:first-child {
    font-size: 17px;
    font-weight: 600;
    color: #1c2638;
}

/* =========================
   ICON
========================= */

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f5f8;
    color: #172033;
    font-size: 22px;
    font-weight: 400;
    transition: 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #d49b32;
    color: #ffffff;
    transform: rotate(45deg);
}

/* =========================
   ANSWER
========================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 25px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #687285;
}

.faq-answer strong {
    color: #172033;
}

/* =========================
   CTA
========================= */

.faq-cta {
    margin-top: 40px;
    padding: 25px;
    border-radius: 12px;
    background: #172033;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.faq-cta p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.faq-cta a {
    display: inline-block;
    padding: 11px 23px;
    border-radius: 6px;
    background: #d49b32;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.faq-cta a:hover {
    background: #b98220;
    transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 65px 16px;
    }

    .faq-heading {
        margin-bottom: 32px;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-question {
        padding: 19px 18px;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 18px 20px;
        font-size: 14px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .faq-section {
        padding: 55px 12px;
    }

    .faq-heading h2 {
        font-size: 26px;
    }

    .faq-heading p {
        font-size: 14px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-question {
        padding: 17px 15px;
        gap: 12px;
    }

    .faq-question span:first-child {
        font-size: 15px;
        line-height: 1.5;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 19px;
    }

    .faq-answer p {
        padding: 0 15px 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-cta {
        margin-top: 30px;
        padding: 20px 15px;
    }

}
.faq-cta-text span {
    color: #f1f1f1;
    font-size: 14px;
}