/* =========================================================
   FAQ SECTION
   Trisha Web - Website Development
   Premium Responsive Design
========================================================= */

.faq-section {
    position: relative;
    padding: 100px 0;
    background: #eef6ff;
    overflow: hidden;
}

/* Soft background effects */
.faq-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    left: -180px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -180px;
    bottom: -180px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section > .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FAQ ROW
========================================================= */

.faq-section .row {
    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.faq-section .faq-content {
    padding-right: 55px;
}

.faq-section .faq-eyebrow,
.faq-section .eyebrow,
.faq-section .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #087cff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-section .faq-eyebrow::before,
.faq-section .eyebrow::before,
.faq-section .section-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #087cff;
    border-radius: 10px;
}

.faq-section h2,
.faq-section .faq-heading,
.faq-section .section-title {
    margin: 0 0 20px;
    color: #092552;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.faq-section .faq-description,
.faq-section .section-description {
    max-width: 520px;
    margin: 0;
    color: #536987;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FAQ ACCORDION
========================================================= */

.faq-section .accordion {
    width: 100%;
}

.faq-section .accordion-item {
    position: relative;
    margin-bottom: 14px;
    border: 1px solid #e1eaf5 !important;
    border-radius: 10px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(16, 58, 104, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.faq-section .accordion-item:hover {
    transform: translateY(-2px);
    border-color: #cfe1f7 !important;
    box-shadow: 0 14px 32px rgba(16, 58, 104, 0.10);
}


/* =========================================================
   QUESTION BUTTON
========================================================= */

.faq-section .accordion-button {
    position: relative;
    min-height: 62px;
    padding: 18px 55px 18px 22px;
    border: 0;
    background: #ffffff;
    color: #092552;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: none !important;
}

.faq-section .accordion-button:hover {
    color: #087cff;
    background: #ffffff;
}

.faq-section .accordion-button:focus {
    border: 0;
    box-shadow: none !important;
}


/* Bootstrap arrow */

.faq-section .accordion-button::after {
    position: absolute;
    right: 22px;
    width: 10px;
    height: 10px;
    background-size: 10px;
    transition: transform 0.25s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #087cff;
    color: #ffffff;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


/* =========================================================
   ANSWER
========================================================= */

.faq-section .accordion-collapse {
    border: 0;
}

.faq-section .accordion-body {
    padding: 20px 24px 23px;
    border-top: 1px solid #edf2f8;
    background: #ffffff;
    color: #60728d;
    font-size: 15px;
    line-height: 1.8;
}

.faq-section .accordion-body p {
    margin: 0;
}

.faq-section .accordion-body strong {
    color: #092552;
}


/* =========================================================
   FAQ ICON
========================================================= */

.faq-section .faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #e4f0ff;
    color: #087cff;
    font-size: 17px;
}

.faq-section .accordion-button:not(.collapsed) .faq-icon {
    color: #ffffff;
}


/* =========================================================
   CTA
========================================================= */

.faq-section .faq-cta {
    margin-top: 30px;
}

.faq-section .faq-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 23px;
    border-radius: 8px;
    background: #087cff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(8, 124, 255, 0.20);
    transition: all 0.25s ease;
}

.faq-section .faq-cta a:hover {
    background: #0668d8;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(8, 124, 255, 0.28);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-section .faq-content {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .faq-section h2,
    .faq-section .faq-heading,
    .faq-section .section-title {
        font-size: 42px;
    }

    .faq-section .faq-description,
    .faq-section .section-description {
        max-width: 650px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .faq-section {
        padding: 65px 0;
    }

    .faq-section .faq-content {
        margin-bottom: 35px;
    }

    .faq-section .faq-eyebrow,
    .faq-section .eyebrow,
    .faq-section .section-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .faq-section h2,
    .faq-section .faq-heading,
    .faq-section .section-title {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .faq-section .faq-description,
    .faq-section .section-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .faq-section .accordion-item {
        margin-bottom: 11px;
        border-radius: 8px !important;
    }

    .faq-section .accordion-button {
        min-height: 58px;
        padding: 16px 45px 16px 17px;
        font-size: 14px;
    }

    .faq-section .accordion-button::after {
        right: 18px;
    }

    .faq-section .accordion-body {
        padding: 17px 18px 19px;
        font-size: 13px;
        line-height: 1.75;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .faq-section {
        padding: 55px 0;
    }

    .faq-section h2,
    .faq-section .faq-heading,
    .faq-section .section-title {
        font-size: 30px;
    }

    .faq-section .accordion-button {
        font-size: 13px;
        line-height: 1.5;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .faq-section .accordion-item,
    .faq-section .accordion-button,
    .faq-section .faq-cta a {
        transition: none;
    }
}