﻿/*=========================================
            BREADCRUMB
=========================================*/

.breadcrumb-section {
    padding: 120px 0 90px;
    background: linear-gradient(rgba(7,15,35,.82),rgba(7,15,35,.82)), url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb-content {
    text-align: center;
}

    .breadcrumb-content h1 {
        color: #fff;
        font-size: 48px;
        font-weight: 700;
        margin: 20px 0;
    }

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .breadcrumb-list li {
        color: #ddd;
    }

        .breadcrumb-list li a {
            color: #D4AF37;
            text-decoration: none;
            transition: .3s;
        }

            .breadcrumb-list li a:hover {
                color: #fff;
            }

        .breadcrumb-list li.active::before {
            content: "/";
            color: #aaa;
            margin-right: 10px;
        }


/*=========================================
            COMMON
=========================================*/

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: #FFF6DB;
    color: #D4AF37;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 44px;
    color: #111827;
    margin: 20px 0;
    font-weight: 700;
}

.section-desc {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}


/*=========================================
            INTRO
=========================================*/

.faq-intro {
    padding: 100px 0;
    background: #fff;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

.intro-left h2 {
    color: #111827;
}

.intro-left p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.theme-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 38px;
    background: #D4AF37;
    color: #111827;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .theme-btn:hover {
        background: #111827;
        color: #fff;
    }


/*=========================================
            INTRO BOXES
=========================================*/

.intro-right {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.intro-box {
    background: #111827;
    color: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    transition: .35s;
}

    .intro-box:hover {
        background: #D4AF37;
        transform: translateY(-8px);
    }

    .intro-box h3 {
        color: #D4AF37;
        font-size: 42px;
        margin-bottom: 10px;
        transition: .35s;
    }

    .intro-box span {
        color: #fff;
        transition: .35s;
    }

    .intro-box:hover h3,
    .intro-box:hover span {
        color: #111827;
    }


/*=========================================
            FAQ SECTION
=========================================*/

.faq-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.faq-accordion {
    max-width: 950px;
    margin: auto;
}

    .faq-accordion .accordion-item {
        border: none;
        margin-bottom: 20px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

    .faq-accordion .accordion-button {
        background: #fff;
        color: #111827;
        font-size: 18px;
        font-weight: 600;
        padding: 22px 28px;
        box-shadow: none;
    }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: #111827;
            color: #D4AF37;
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: none;
        }

        .faq-accordion .accordion-button::after {
            filter: brightness(0);
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            filter: invert(1);
        }

    .faq-accordion .accordion-body {
        background: #fff;
        color: #666;
        line-height: 1.9;
        padding: 25px 30px;
    }
/*=========================================
            WHY CHOOSE US
=========================================*/

.why-faq {
    padding: 110px 0;
    background: linear-gradient(rgba(8,15,35,.94),rgba(8,15,35,.94)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

    .why-faq .section-title {
        color: #fff;
    }

    .why-faq .section-desc {
        color: #d7d7d7;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .35s;
}

    .why-card:hover {
        background: #D4AF37;
        transform: translateY(-10px);
    }

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #D4AF37;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: auto;
    margin-bottom: 25px;
    transition: .35s;
}

.why-card:hover .why-icon {
    background: #111827;
    color: #fff;
}

.why-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
    transition: .35s;
}

.why-card p {
    color: #ddd;
    line-height: 1.8;
    transition: .35s;
}

.why-card:hover h3 {
    color: #111827;
}

.why-card:hover p {
    color: #222;
}


/*=========================================
            COUNTER
=========================================*/

.faq-counter {
    padding: 100px 0;
    background: #111827;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.counter-card {
    background: #1b2435;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: .35s;
    border: 1px solid rgba(255,255,255,.05);
}

    .counter-card:hover {
        background: #D4AF37;
        transform: translateY(-10px);
    }

    .counter-card h2 {
        color: #D4AF37;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 12px;
        transition: .35s;
    }

    .counter-card span {
        color: #fff;
        font-size: 18px;
        transition: .35s;
    }

    .counter-card:hover h2,
    .counter-card:hover span {
        color: #111827;
    }


/*=========================================
            HELP SECTION
=========================================*/

.help-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.help-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    border-top: 4px solid transparent;
}

    .help-card:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.help-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #D4AF37;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: auto;
    margin-bottom: 25px;
    transition: .35s;
}

.help-card:hover .help-icon {
    background: #111827;
    color: #fff;
}

.help-card h3 {
    color: #111827;
    margin-bottom: 15px;
    font-size: 24px;
}

.help-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.help-card a {
    color: #D4AF37;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .help-card a:hover {
        color: #111827;
    }
/*=========================================
            CTA SECTION
=========================================*/

.faq-cta {
    padding: 120px 0;
    background: linear-gradient(rgba(7,15,35,.88),rgba(7,15,35,.88)), url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-content {
    max-width: 850px;
    margin: auto;
}

.faq-cta .section-tag {
    background: rgba(212,175,55,.15);
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,.4);
}

.cta-content h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
}

.cta-content p {
    color: #ddd;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 38px;
    background: #D4AF37;
    color: #111827;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: .35s;
}

    .cta-btn:hover {
        background: #fff;
        color: #111827;
        transform: translateY(-4px);
    }

.cta-btn-outline {
    display: inline-block;
    padding: 16px 38px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .cta-btn-outline:hover {
        background: #fff;
        color: #111827;
    }


/*=========================================
        TABLET RESPONSIVE
=========================================*/

@media (max-width:991px) {

    .breadcrumb-section {
        padding: 90px 0 70px;
    }

    .breadcrumb-content h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-right {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .help-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cta-content h2 {
        font-size: 38px;
    }
}


/*=========================================
        MOBILE RESPONSIVE
=========================================*/

@media (max-width:576px) {

    .breadcrumb-section {
        padding: 70px 0 50px;
    }

    .breadcrumb-content h1 {
        font-size: 30px;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        gap: 8px;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .section-desc {
        font-size: 15px;
    }

    .faq-intro,
    .faq-section,
    .why-faq,
    .faq-counter,
    .help-section,
    .faq-cta {
        padding: 70px 0;
    }

    .intro-right,
    .why-grid,
    .counter-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .intro-box,
    .why-card,
    .counter-card,
    .help-card {
        padding: 28px 22px;
    }

    .faq-accordion .accordion-button {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-accordion .accordion-body {
        padding: 20px;
        font-size: 15px;
    }

    .counter-card h2 {
        font-size: 38px;
    }

    .help-icon,
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn,
    .cta-btn-outline {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}


/*=========================================
        SMOOTH ANIMATION
=========================================*/

.why-card,
.help-card,
.counter-card,
.intro-box,
.cta-btn,
.cta-btn-outline,
.accordion-item {
    transition: all .35s ease;
}