/* ── ECA: Prominent Header Contact Bar ── */

/* Show on ALL screen sizes including mobile */
.header-top.hidden-xs,
.header-top {
    display: block !important;
    background: #0a5ed9 !important;
    padding: 12px 20px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* Link styling */
.header-top a {
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap;
    justify-content: center;
}

/* "Contact us" label */
.header-top a span:first-child {
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Phone number */
.header-top a span:last-child {
    font-size: 22px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px;
}

/* Mobile: slightly smaller but still visible */
@media (max-width: 767px) {
    .header-top a span:last-child {
        font-size: 18px !important;
    }
}
