
body {
    font-family: 'Montserrat', sans-serif!important;
}
/* ==========================================
   FAQ HERO
========================================== */

.faq-hero {
    position: relative;
    background: url('/img/FAQ/FAQ-header.jpg') center center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Dark Overlay */
.faq-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

/* Content */
.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* Main Title */
.faq-title {
    color: #fff;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 600 !important;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,.8);
    letter-spacing: 0 !important;
}

    .faq-title span {
        display: block;
    }

/* Subtitle */
.faq-subtitle {
    color: #fff;
    font-size: clamp(1.6rem, 2.5vw, 3rem);
    font-weight: 700 !important;
    margin-bottom: 18px;
    text-shadow: 0 4px 20px rgba(0,0,0,.8);
    letter-spacing: 0 !important;
    padding-inline:20px;
}

/* Description */
.faq-description {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(1rem, 1.2vw, 1.35rem);
    line-height: 1.35;
    font-weight: 400 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.9);
    padding-inline: 20px;
}

/* ==========================================
   OPTIONAL ORANGE CORNERS LIKE IMAGE
========================================== */

.faq-hero::before,
.faq-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: #f5b335;
    z-index: 2;
}

.faq-hero::before {
    left: -130px;
    bottom: -130px;
    transform: rotate(45deg);
}

.faq-hero::after {
    right: -130px;
    top: -130px;
    transform: rotate(45deg);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .faq-hero {
        min-height: 420px;
        padding: 60px 20px;
    }

    .faq-title {
        margin-bottom: 18px;
        line-height: 1.1;
        font-size:30px!important;
    }

    .faq-subtitle {
        margin-bottom: 12px;
    }

    .faq-description {
        line-height: 1.5;
    }

    .faq-hero::before,
    .faq-hero::after {
        width: 120px;
        height: 120px;
    }

    .faq-hero::before {
        left: -70px;
        bottom: -70px;
    }

    .faq-hero::after {
        right: -70px;
        top: -70px;
    }
}

@media (max-width: 576px) {

    .faq-hero {
        min-height: 380px;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-subtitle {
        font-size: 1.3rem;
    }

    .faq-description {
        font-size: .95rem;
        line-height: 1.55;
    }
}
/* ===== FAQ Search Bar ===== */
.faq-search {
    margin: 40px auto;
    max-width: 820px;
}

    .faq-search .input-group {
        border: 2px solid #807d7d;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
    }

    .faq-search .input-group-text {
        background: transparent;
        border: none;
        color: #999;
        padding-left: 18px;
    }

    .faq-search .form-control {
        border: none;
        box-shadow: none;
        padding: 16px 18px 16px 4px;
        font-size: 1.2rem;
    }

        .faq-search .form-control:focus {
            box-shadow: none;
            outline: none;
        }

/* ===== FAQ Accordion Wrapper ===== */
.faq-accordion-wrapper {
    max-width: 820px;
    margin: 0 auto 60px;
    border: 2px solid #807d7d; /* match .faq-search .input-group */
    border-radius: 10px;
    overflow: hidden;
}

/* ===== Accordion Items ===== */
.faq-accordion .accordion-item {
    border-bottom: 2px solid #807d7d;
    background: #fff;
}



/* ===== Accordion Button (Question) ===== */
.faq-accordion .accordion-button {
    background: transparent;
    color: #222;
    font-weight: 600 !important;
    font-size: 1.2rem;
    padding: 20px 24px;
    text-transform: uppercase !important;
    border: none;
    border-radius: 0 !important;
    box-shadow: none !important;
}

    .faq-accordion .accordion-button:focus {
        box-shadow: none !important;
    }

    /* Active / expanded state — orange text */
    .faq-accordion .accordion-button:not(.collapsed) {
        color: #f5a623;
        background: transparent;
        box-shadow: none !important;
    }

    /* Chevron icon override */
    .faq-accordion .accordion-button::after {
        flex-shrink: 0;
        width: 1.1rem;
        height: 1.1rem;
        background-size: 1.1rem;
        transition: transform 0.25s ease, color 0.2s ease;
        filter: grayscale(1) opacity(0.45);
    }

    .faq-accordion .accordion-button:not(.collapsed)::after {
        transform: rotate(180deg);
        filter: none;
        /* Use a custom chevron with orange color */
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f5a623'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

/* ===== Accordion Body (Answer) ===== */
.faq-accordion .accordion-body {
    padding: 0 24px 26px;
    color: #555;
    background: #fff;
    font-size: 1.2rem;
    line-height: 1.7;
}

    .faq-accordion .accordion-body p {
        margin-bottom: 14px;
        font-weight: normal !important;
    }

/* ===== FAQ Content Bullets ===== */
.faq-content ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

    .faq-content li {
        margin-bottom: 16px;
    }

        .faq-content li strong {
            font-weight: 700 !important;
            color: #222;
            display: block;
            margin-bottom: 4px;
        }

        .faq-content li span,
        .faq-content li p {
            font-weight: normal !important;
            color: #666;
            margin: 0;
        }

/* ===== CTA Section Below FAQ ===== */
.faq-cta-section {
    background: #f5a623;
    padding: 60px 0;
    text-align: center;
}

    .faq-cta-section h2 {
        color: #fff;
        font-weight: 800 !important;
        font-size: 2rem;
        margin-bottom: 10px;
        text-transform: uppercase !important;
        letter-spacing: 1px;
    }

    .faq-cta-section p {
        color: #fff;
        font-size: 1rem;
        margin-bottom: 28px;
        font-weight: normal !important;
    }

    .faq-cta-section .btn-cta {
        background: #fff;
        color: #f5a623;
        font-weight: 700 !important;
        font-size: 1rem;
        padding: 14px 40px;
        border-radius: 50px;
        border: none;
        text-transform: uppercase !important;
        letter-spacing: 1px;
        transition: background 0.2s, color 0.2s;
    }

        .faq-cta-section .btn-cta:hover {
            background: #222;
            color: #fff;
        }

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .faq-hero {
        padding: 30px 0 20px;
        min-height: 20vh; /* smaller height on mobile */
    }

        .faq-hero h1 {
            font-size: 42px;
            letter-spacing: 3px;
        }

    .faq-search {
        margin: 30px 16px;
    }

    .faq-accordion-wrapper {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 40px;
    }

    .faq-accordion .accordion-button {
        padding: 16px 16px;
        font-size: 0.85rem;
    }

    .faq-accordion .accordion-body {
        padding: 0 16px 20px;
        font-size: 0.88rem;
    }

    .faq-cta-section {
        padding: 40px 20px;
    }

        .faq-cta-section h2 {
            font-size: 1.5rem;
        }
}

.last-accordion-item {
    border-bottom: none !important;
}