﻿/* ============================================================
   REFRESH GLOBAL — TOP CONTACT BAR (50px)
   Clean, modern, isolated, NEVER overrides the Logo
   ============================================================ */

/* WRAPPER */
.top-contact-bar {
    height: 50px;
    min-height: 50px;
    background: linear-gradient(to bottom, #5C6066 0%, #4f5a70 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    /* Stacking: BELOW the Logo */
    position: relative;
    z-index: 1; /* <— Critical fix */
}

    /* Hide scrollbar (WebKit) */
    .top-contact-bar::-webkit-scrollbar {
        display: none;
    }

/* Hide scrollbar (Firefox + Edge) */
.top-contact-bar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    /* INNER CONTAINER */
    .top-contact-bar .container-fluid {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    /* FLEX GROUP */
    .top-contact-bar .d-flex {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0;
        margin: 0;
    }

    /* CONTACT LINKS */
    .top-contact-bar a {
        color: #ffffff !important;
        text-decoration: none;
        font-size: 1.15rem;
        height: 50px;
        line-height: 50px;
        display: inline-block;
        padding: 0;
        margin: 0;
        transition: opacity 0.2s ease;
    }

        .top-contact-bar a:hover {
            opacity: 0.75;
        }

        /* WHATSAPP CTA — Premium spacing */
        .top-contact-bar a.whatsapp-link {
            margin-right: 120px;
        }

/* RESPONSIVE TUNING */
@media (max-width: 768px) {
    .top-contact-bar a {
        font-size: 1rem;
    }

        .top-contact-bar a.whatsapp-link {
            margin-right: 60px;
        }
}

@media (max-width: 480px) {
    .top-contact-bar a.whatsapp-link {
        margin-right: 32px;
    }
}
