:root {
    --navy: #061326;
    --navy-light: #0b1d36;
    --gold: #e8b84b;
    --gold-light: #ffd978;
    --white: #ffffff;

    
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f8f8f8;
}

/* =========================================
   HEADER
========================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: var(--navy);
    border-bottom: 1px solid rgba(232, 184, 75, 0.15);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.18);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
}

/* =========================================
   LOGO
========================================= */

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 14px;
}

.brand-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    color: var(--gold);
}

.brand-icon::before {
    content: "";
    position: absolute;
    inset: 5px;

    border: 2px solid var(--gold);
    border-radius: 50%;

    opacity: .45;
}

.brand-icon i {
    font-size: 39px;
    position: relative;
    z-index: 2;

    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .4));
}

.brand-text {
    line-height: 1.1;
}

.brand-title {
    color: var(--gold-light);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin: 0;
}

.brand-subtitle {
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 500;
    margin-top: 7px;
    letter-spacing: .2px;
}

/* =========================================
   DESKTOP NAVIGATION
========================================= */

.main-nav {
    margin-left: auto;
}

.main-nav .nav-link {
    position: relative;

    color: rgba(255, 255, 255, .88);

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;

    padding: 12px 15px !important;

    transition: .3s ease;
    white-space: nowrap;
}

.main-nav .nav-link:hover {
    color: var(--gold-light);
}

.main-nav .nav-link::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    left: 15px;
    bottom: 4px;

    background: var(--gold);

    transition: .3s ease;
}

.main-nav .nav-link:hover::after {
    width: calc(100% - 30px);
}

/* =========================================
   NOMINATE BUTTON
========================================= */

.nominate-btn {
    margin-left: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 190px;
    min-height: 55px;

    padding: 13px 25px;

    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .2);

    background: linear-gradient(135deg,
            #f7d36b 0%,
            #e6ae38 100%);

    color: #071326;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    box-shadow:
        0 7px 20px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .4);

    transition: .3s ease;
}

.nominate-btn:hover {
    color: #071326;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .35),
        0 0 20px rgba(232, 184, 75, .2);
}

.nominate-btn i {
    font-size: 13px;
}

/* =========================================
   MOBILE TOGGLE
========================================= */

.mobile-toggle {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(232, 184, 75, .35);
    border-radius: 8px;

    background: transparent;
    color: var(--gold-light);

    font-size: 20px;

    transition: .3s ease;
}

.mobile-toggle:hover {
    background: rgba(232, 184, 75, .08);
}

/* =========================================
   MOBILE OFFCANVAS
========================================= */

.mobile-menu {
    width: 310px !important;

    background: var(--navy);
    color: white;

    border-left: 1px solid rgba(232, 184, 75, .2);
}

.mobile-menu .offcanvas-header {
    padding: 22px 20px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu .offcanvas-title {
    color: var(--gold-light);

    font-size: 16px;
    font-weight: 800;

    text-transform: uppercase;
}

.mobile-menu .btn-close {
    filter: invert(1);
    opacity: .8;
}

/* =========================================
   MOBILE NAV
========================================= */

.mobile-nav {
    padding: 15px 20px;
}

.mobile-nav a {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 5px;

    color: rgba(255, 255, 255, .85);

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;

    border-bottom: 1px solid rgba(255, 255, 255, .07);

    transition: .3s ease;
}

.mobile-nav a i {
    width: 20px;
    color: var(--gold);
}

.mobile-nav a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.mobile-nominate {
    margin: 25px 5px 0;
    width: calc(100% - 10px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .brand-title {
        font-size: 17px;
    }

    .brand-subtitle {
        font-size: 9px;
    }

    .brand-icon {
        width: 58px;
        height: 58px;
    }

    .brand-icon i {
        font-size: 32px;
    }

    .main-nav .nav-link {
        font-size: 11px;

        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .nominate-btn {
        min-width: 155px;

        margin-left: 10px;

        font-size: 11px;

        padding: 12px 15px;
    }
}

@media (max-width: 991.98px) {

    .header-inner {
        min-height: 78px;
    }

    .brand-title {
        font-size: 17px;
    }

    .brand-subtitle {
        margin-top: 5px;
    }
}

@media (max-width: 575.98px) {

    .header-inner {
        min-height: 72px;
    }

    .brand {
        gap: 9px;
    }

    .brand-icon {
        width: 48px;
        height: 48px;
    }

    .brand-icon::before {
        inset: 3px;
    }

    .brand-icon i {
        font-size: 27px;
    }

    .brand-title {
        font-size: 13px;
        line-height: 1.15;
        max-width: 205px;
    }

    .brand-subtitle {
        font-size: 7px;
        margin-top: 4px;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
    }
}







/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    position: relative;

    padding: 50px 0 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(232, 184, 75, .07),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(232, 184, 75, .04),
            transparent 25%
        ),
        var(--navy);

    color: var(--white);

    overflow: hidden;
}


/* Gold top line */

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.footer-main {
    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1.2fr;

    gap: 45px;

    padding-bottom: 35px;
}


/* =====================================================
   BRAND
===================================================== */

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--white);

    text-decoration: none;
}

.footer-logo-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--gold);

    font-size: 30px;

    border: 1px solid rgba(232, 184, 75, .2);

    border-radius: 50%;

    background:
        rgba(232, 184, 75, .06);
}

.footer-logo-text strong {
    display: block;

    color: var(--gold-light);

    font-size: 14px;

    line-height: 1.05;

    font-weight: 800;
}

.footer-logo-text span {
    display: block;

    margin-top: 5px;

    color: rgba(255, 255, 255, .65);

    font-size: 7px;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.footer-description {
    max-width: 310px;

    margin: 17px 0;

    color: rgba(255, 255, 255, .62);

    font-size: 8px;

    line-height: 1.7;
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {
    display: flex;

    gap: 7px;
}

.footer-social a {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(232, 184, 75, .2);

    border-radius: 50%;

    color: var(--gold);

    font-size: 10px;

    text-decoration: none;

    transition: .3s ease;
}

.footer-social a:hover {
    background: var(--gold);

    color: var(--navy);

    transform: translateY(-3px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3,
.footer-trust h3 {
    position: relative;

    margin: 5px 0 18px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* Small gold line */

.footer-column h3::after,
.footer-trust h3::after {
    content: "";

    display: block;

    width: 25px;
    height: 1px;

    margin-top: 6px;

    background: var(--gold);
}


/* =====================================================
   LINKS
===================================================== */

.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 9px;
}

.footer-column a {
    color: rgba(255, 255, 255, .65);

    font-size: 8px;

    text-decoration: none;

    transition: .25s ease;
}

.footer-column a:hover {
    color: var(--gold-light);

    padding-left: 4px;
}


/* =====================================================
   TRUST
===================================================== */

.footer-trust-items {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 7px;
}

.footer-trust-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 80px;

    padding: 8px 4px;

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 8px;

    background: rgba(255, 255, 255, .025);

    text-align: center;
}

.footer-trust-icon {
    margin-bottom: 7px;

    color: var(--gold);

    font-size: 19px;
}

.footer-trust-item span {
    color: rgba(255, 255, 255, .65);

    font-size: 6.5px;

    line-height: 1.4;
}


/* =====================================================
   CTA
===================================================== */

.footer-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 14px 18px;

    border-top: 1px solid rgba(232, 184, 75, .12);

    border-bottom: 1px solid rgba(232, 184, 75, .12);

    background:
        rgba(255, 255, 255, .025);
}

.footer-cta strong {
    display: block;

    color: var(--gold-light);

    font-size: 9px;
}

.footer-cta span {
    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, .55);

    font-size: 7px;
}

.footer-cta a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 32px;

    padding: 0 14px;

    border-radius: 5px;

    background: var(--gold);

    color: var(--navy);

    text-decoration: none;

    font-size: 7px;

    font-weight: 800;

    transition: .3s ease;
}

.footer-cta a:hover {
    background: var(--gold-light);

    transform: translateY(-2px);
}

.footer-cta a i {
    font-size: 7px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    min-height: 42px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, .4);

    font-size: 6.5px;
}

.footer-bottom i {
    color: #d92323;

    font-size: 6px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .site-footer {
        padding-top: 42px;
    }

    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        padding-bottom: 20px;

        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-description {
        max-width: 500px;
    }

    .footer-trust {
        grid-column: 1 / -1;

        padding-top: 15px;

        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-trust-items {
        max-width: 450px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .site-footer {
        padding-top: 38px;
    }


    /* Main */

    .footer-main {
        display: block;

        padding-bottom: 25px;
    }


    /* Brand */

    .footer-brand {
        padding-bottom: 22px;

        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-icon {
        width: 48px;
        height: 48px;

        font-size: 26px;
    }

    .footer-logo-text strong {
        font-size: 12px;
    }

    .footer-logo-text span {
        font-size: 6.5px;
    }

    .footer-description {
        max-width: 330px;

        margin: 14px auto;

        font-size: 7.5px;
    }

    .footer-social {
        justify-content: center;
    }


    /* Columns */

    .footer-column {
        padding: 20px 0;

        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-column h3,
    .footer-trust h3 {
        margin-bottom: 14px;

        font-size: 8px;
    }

    .footer-column ul {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 3px 15px;
    }

    .footer-column li {
        margin-bottom: 7px;
    }

    .footer-column a {
        font-size: 7.5px;
    }


    /* Trust */

    .footer-trust {
        padding-top: 22px;
    }

    .footer-trust h3 {
        text-align: center;
    }

    .footer-trust h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-trust-items {
        grid-template-columns: repeat(3, 1fr);

        max-width: none;

        gap: 7px;
    }

    .footer-trust-item {
        min-height: 72px;
    }

    .footer-trust-icon {
        font-size: 17px;
    }

    .footer-trust-item span {
        font-size: 6px;
    }


    /* CTA */

    .footer-cta {
        flex-direction: column;

        padding: 15px 10px;

        text-align: center;

        gap: 12px;
    }

    .footer-cta strong {
        font-size: 8px;
    }

    .footer-cta span {
        font-size: 6.5px;
    }

    .footer-cta a {
        width: 100%;

        min-height: 36px;

        font-size: 7px;
    }


    /* Bottom */

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        min-height: 60px;

        padding: 10px 0;

        text-align: center;
    }

    .footer-bottom p {
        font-size: 6px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .footer-logo-text strong {
        font-size: 10px;
    }

    .footer-description {
        font-size: 7px;
    }

    .footer-column a {
        font-size: 7px;
    }

    .footer-trust-items {
        gap: 5px;
    }

    .footer-trust-item {
        min-height: 67px;
    }

    .footer-trust-item span {
        font-size: 5.5px;
    }

}