.top-contact-bar {
    position: relative;
    background: linear-gradient(90deg, #800000, #a00000, #800000);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    border-radius: 12px 12px 0 0;
    flex-wrap: wrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.top-contact-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 80px;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.4) 0%, rgba(255, 255, 0, 0) 80%);
    animation: yellowLightMove 5s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes yellowLightMove {
    0% { left: -100px; }
    100% { left: 100%; }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-contact-bar a {
    color: #ffecec;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-contact-bar a:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .top-contact-bar {
        display: none;
    }
}
