/*=========================================
            PREMIUM NAVBAR
=========================================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 9999;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    transition: 0.35s ease;
}


/*=========================================
            STICKY HEADER
=========================================*/

.header.sticky {
    background: #ffffff;

    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}


/*=========================================
                NAVBAR
=========================================*/

.navbar {
    height: 90px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
}


/*=========================================
                LOGO
=========================================*/

.logo {
    display: flex;
    align-items: center;

    cursor: pointer;
    user-select: none;
}

.logo a {
    display: flex;
    align-items: center;

    text-decoration: none;
}


/*=========================================
              LOGO IMAGE
=========================================*/

.logo img {
    width: 62px;
    height: 62px;

    object-fit: contain;
    display: block;

    transition: 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}


/*=========================================
              LOGO TEXT
=========================================*/

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1;
}

.logo-text h2 {
    margin: 0;

    color: #111111;

    font-size: 30px;
    font-weight: 800;

    letter-spacing: 1px;
}

.logo-text span {
    margin-top: 6px;

    color: #D4AF37;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 5px;
}


/*=========================================
            NAVIGATION
=========================================*/

.nav-menu {
    display: flex;
    align-items: center;

    gap: 38px;

    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    position: relative;

    color: #333333;

    font-size: 16px;
    font-weight: 500;

    text-decoration: none;

    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #D4AF37;
}


/*=========================================
          NAVIGATION UNDERLINE
=========================================*/

.nav-menu a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #D4AF37;

    transform: translateX(-50%);

    transition: 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}


/*=========================================
              GET QUOTE
=========================================*/

.quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 30px;

    border-radius: 50px;

    background: #D4AF37;

    color: #111111;

    font-weight: 600;

    text-decoration: none;

    transition: 0.35s ease;
}

.quote-btn:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}


/*=========================================
              MENU BUTTON
=========================================*/

/*
    IMPORTANT:
    HTML uses:

    <div class="menu-btn">
        <i class="fas fa-bars"></i>
    </div>
*/

.menu-btn {
    display: none;

    color: #111111;

    font-size: 28px;

    cursor: pointer;

    z-index: 10000;
}


/*=========================================
            MOBILE NAVBAR
=========================================*/

@media (max-width: 992px) {

    .header {
        height: 80px;
    }

    .navbar {
        height: 80px;

        position: relative;

        display: flex;
        align-items: center;

        justify-content: flex-start !important;
    }


    /*=====================================
            MOBILE MENU BUTTON
    =====================================*/

    .menu-btn {
        display: block !important;

        position: absolute !important;

        /*
            FORCE LEFT POSITION
        */

        left: 20px !important;
        right: auto !important;

        top: 50%;

        transform: translateY(-50%);

        /*
            FORCE BLACK
        */

        color: #111111 !important;

        font-size: 30px;

        z-index: 10000;

        cursor: pointer;
    }


    /*
        If Font Awesome is changing the icon color,
        force it here too.
    */

    .menu-btn i {
        color: #111111 !important;
    }


    /*=====================================
                MOBILE LOGO
    =====================================*/

    .logo {
        margin-left: 70px !important;

        order: 2;
    }


    /*=====================================
              HIDE GET QUOTE
    =====================================*/

    .quote-btn {
        display: none !important;
    }


    /*=====================================
              MOBILE NAV MENU
    =====================================*/

    .nav-menu {

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: #ffffff;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 28px;

        padding: 35px 0;

        border-top: 1px solid rgba(0, 0, 0, 0.05);

        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

        transform: translateY(-150%);

        opacity: 0;

        visibility: hidden;

        transition: 0.35s ease;

        z-index: 9998;
    }


    /*=====================================
              OPEN MOBILE MENU
    =====================================*/

    .nav-menu.active {

        transform: translateY(0);

        opacity: 1;

        visibility: visible;
    }


    .nav-menu li {

        width: 100%;

        text-align: center;
    }


    .nav-menu a {

        display: inline-block;

        font-size: 17px;

        color: #222222;

        padding: 8px 0;
    }


    .nav-menu a:hover {

        color: #D4AF37;
    }

}


/*=========================================
                768px
=========================================*/

@media (max-width: 768px) {

    .header {
        height: 75px;
    }


    .navbar {
        height: 75px;
    }


    /*=====================================
                MENU BUTTON
    =====================================*/

    .menu-btn {

        left: 18px !important;

        top: 50%;

        color: #111111 !important;

        font-size: 28px;
    }


    .menu-btn i {

        color: #111111 !important;
    }


    /*=====================================
                    LOGO
    =====================================*/

    .logo {

        margin-left: 65px !important;
    }


    .logo img {

        width: 48px;
        height: 48px;
    }


    .logo-text h2 {

        font-size: 22px;
    }


    .logo-text span {

        font-size: 10px;

        letter-spacing: 3px;
    }


    /*=====================================
              MOBILE MENU
    =====================================*/

    .nav-menu {

        top: 75px;
    }

}


/*=========================================
                480px
=========================================*/

@media (max-width: 480px) {

    .header {

        height: 70px;
    }


    .navbar {

        height: 70px;
    }


    /*=====================================
                MENU BUTTON
    =====================================*/

    .menu-btn {

        left: 15px !important;

        top: 50%;

        color: #111111 !important;

        font-size: 26px;
    }


    .menu-btn i {

        color: #111111 !important;
    }


    /*=====================================
                    LOGO
    =====================================*/

    .logo {

        margin-left: 60px !important;
    }


    .logo img {

        width: 48px;
        height: 48px;
    }


    .logo-text h2 {

        font-size: 21px;
    }


    .logo-text span {

        font-size: 9px;

        letter-spacing: 2px;
    }


    /*=====================================
              MOBILE MENU
    =====================================*/

    .nav-menu {

        top: 70px;

        gap: 22px;

        padding: 28px 0;
    }


    .nav-menu a {

        font-size: 16px;
    }

}