/* =========================================================
TOP HEADER BAR
========================================================= */

.top-header-bar {
    background: #061f4a;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 1031;
}

.top-header-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* =========================================================
LEFT CONTACT SECTION
========================================================= */

.top-header-bar__contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-header-bar__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.top-header-bar__contact a:hover {
    color: #1d5cff;
}

.top-header-bar__contact i {
    font-size: 13px;
}

/* =========================================================
RIGHT SIDE
========================================================= */

.top-header-bar__right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* =========================================================
SOCIAL LINKS BLOCK
========================================================= */

.top-header-bar__social {
    display: flex;
    align-items: center;
}

.top-header-bar__social ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-header-bar__social li {
    margin: 0;
    padding: 0;
}

.top-header-bar__social a {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    transition: 0.3s ease;
}

.top-header-bar__social a:hover {
    color: #1d5cff;
    transform: translateY(-2px);
}

/* =========================================================
QUOTE BUTTON
========================================================= */

.top-header-bar__quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1d5cff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.top-header-bar__quote:hover {
    background: #ffffff;
    color: #061f4a;
    text-decoration: none;
}

/* =========================================================
NAVBAR SPACING FIX
========================================================= */

.ccm-block-top-navigation-bar .navbar {
    margin-top: 0;
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 991px) {

    .top-header-bar__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .top-header-bar__contact {
        flex-direction: column;
        gap: 10px;
    }

    .top-header-bar__right {
        flex-direction: column;
        gap: 12px;
    }

    .top-header-bar__social ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-header-bar__quote {
        width: 100%;
        max-width: 220px;
    }
}