.top-contact-banner {
    background-color: var(--top-banner-bg, var(--primary-color, #007bff));
    color: #ffffff;
    padding: 0;
    font-size: 0.875rem;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1051 !important;
    height: var(--top-banner-height, 36px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-contact-banner .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.top-banner-left,
.top-banner-center,
.top-banner-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-banner-left {
    flex: 1;
    justify-content: flex-start;
}

.top-banner-center {
    flex: 2;
    justify-content: center;
    text-align: center;
}

.top-banner-right {
    flex: 1;
    justify-content: flex-end;
}

.contact-link,
.social-link {
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: opacity 0.2s ease;
    opacity: 0.9;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.contact-link:hover,
.social-link:hover {
    opacity: 1;
    text-decoration: none !important;
    background: none !important;
    background-color: transparent !important;
}

.banner-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-contact-banner .fa,
.top-contact-banner .fas,
.top-contact-banner .far,
.top-contact-banner .fab,
.top-contact-banner i {
    color: #ffffff !important;
    background: none !important;
    background-color: transparent !important;
}

.top-contact-banner a,
.top-contact-banner a:hover,
.top-contact-banner a:focus,
.top-contact-banner a:active {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

@media (max-width: 991.98px) {
    .top-banner-content {
        flex-wrap: nowrap;
        justify-content: center;
        text-align: center;
    }

    .top-banner-left,
    .top-banner-right {
        display: none !important;
    }

    .top-banner-center {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .top-contact-banner {
        font-size: 0.75rem;
    }

    .top-contact-banner .container {
        padding: 0 12px;
    }

    .top-banner-content {
        gap: 0.5rem;
        justify-content: center;
    }

    .top-banner-left,
    .top-banner-right {
        display: none !important;
    }

    .top-banner-center {
        width: 100%;
        flex: 1;
    }

    .banner-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .top-banner-center {
        font-size: 0.7rem;
    }

    .banner-text {
        font-size: 0.7rem;
    }
}
