:root {
    --navy: #001b45;
    --dark: #071a3d;
    --gold: #d99500;
    --text: #081735;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    text-decoration: none;
}

.top-bar {
    background: linear-gradient(90deg, #061b42, #00142f);
    color: #fff;
    font-size: 14px;
    padding: 9px 0;
}

.top-left {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.top-left i,
.top-social i {
    margin-right: 7px;
}

.top-social {
    display: flex;
    gap: 20px;
}

.main-header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 99;
}

.logo {
    width: 185px;
}

.navbar {
    padding: 18px 0;
}

.navbar-nav {
    gap: 24px;
}

.nav-link {
    color: #081735;
    font-weight: 700;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--gold);
}

.btn-gold {
    background: linear-gradient(135deg, #edae16, #d89500);
    color: #fff;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 6px;
}

.btn-gold:hover {
    color: #fff;
}

/* Hero */
.faq-hero {
    background: linear-gradient(135deg, #001b45, #00102d);
    color: #fff;
    padding: 65px 0 60px;
    position: relative;
}

.section-label {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
}

.faq-hero h1 {
    font-size: 43px;
    font-weight: 900;
    margin-bottom: 18px;
}

.faq-hero p {
    font-size: 18px;
    line-height: 1.7;
}

.faq-hero a {
    color: var(--gold);
    font-weight: 800;
}

/* FAQ */
.faq-section {
    padding: 40px 0 25px;
}

.faq-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 38px;
}

.faq-tabs button {
    background: #fff;
    border: 1px solid #dce3ee;
    color: var(--dark);
    padding: 22px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.faq-tabs button i {
    margin-right: 8px;
    font-size: 22px;
}

.faq-tabs button.active {
    background: var(--navy);
    color: #fff;
    border-bottom: 5px solid var(--gold);
}

.faq-accordion .accordion-item {
    border: 1px solid #dce3ee;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 27, 69, .04);
}

.faq-accordion .accordion-button {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    padding: 25px 28px;
    box-shadow: none;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--dark);
}

.faq-accordion .accordion-button::after {
    filter: sepia(1) saturate(5);
}

.q-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #edf2f8;
    color: var(--dark);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    margin-right: 24px;
    font-weight: 900;
}

.accordion-body {
    font-size: 17px;
    line-height: 1.8;
    color: #26324c;
    padding: 24px 60px;
    border-left: 3px solid var(--gold);
    margin-left: 30px;
}

/* CTA */
.question-cta {
    margin-top: 25px;
    background: linear-gradient(135deg, #001b45, #00102d);
    color: #fff;
    border-radius: 10px;
    padding: 30px 55px;
    display: grid;
    grid-template-columns: 90px 1fr 250px;
    gap: 25px;
    align-items: center;
}

.cta-icon {
    width: 90px;
    height: 90px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 40px;
    color: var(--gold);
}

.question-cta h3 {
    font-size: 28px;
    font-weight: 900;
}

.question-cta p {
    margin: 0;
    line-height: 1.7;
}

/* Trust Strip */
.trust-strip {
    padding: 24px 0;
    border-top: 1px solid #e4e9f0;
}

.trust-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid #ccd5e1;
    padding: 0 30px;
}

.trust-item i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #edf2f8;
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 28px;
}

.trust-item h6 {
    font-weight: 900;
    margin-bottom: 4px;
}

.trust-item p {
    margin: 0;
    font-size: 14px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #001b45, #00102d);
    color: #fff;
    padding: 35px 0 0;
}

.footer-logo {
    width: 170px;
    margin-bottom: 15px;
}

.footer p,
.footer li {
    font-size: 14px;
    line-height: 1.8;
    color: #eef4ff;
}

.footer h5 {
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
}

.footer h5::after {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--gold);
    display: block;
    margin-top: 8px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social i {
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.footer input {
    width: 100%;
    padding: 13px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 12px;
}

.footer button {
    background: linear-gradient(135deg, #edae16, #d89500);
    color: #fff;
    border: 0;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 6px;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 5px;
        margin-top: 20px;
    }

    .btn-gold {
        margin-top: 15px;
    }

    .faq-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .question-cta {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 30px 20px;
    }

    .trust-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid #ccd5e1;
        padding-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-left {
        justify-content: center;
        gap: 12px;
        font-size: 12px;
    }

    .logo {
        width: 150px;
    }

    .faq-hero {
        padding: 45px 0;
    }

    .faq-hero h1 {
        font-size: 30px;
    }

    .faq-hero p {
        font-size: 15px;
    }

    .faq-tabs {
        grid-template-columns: 1fr;
    }

    .faq-accordion .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .q-icon {
        margin-right: 12px;
    }

    .accordion-body {
        padding: 20px;
        margin-left: 20px;
        font-size: 15px;
    }

    .trust-wrap {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}