/* Top Bar Transition */
.top-bar {
    transition: transform 0.3s ease;
}

/* Responsive adjustments for top bar */
@media screen and (max-width: 1024px) {
    .top-left a,
    .contact-link {
        font-size: 0.8rem;
    }
    
    .top-right {
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar .container {
        padding: 0.6rem 15px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .contact-link span:not(.icon) {
        display: none;
    }
    
    .contact-link .icon {
        font-size: 1.2rem;
    }
}
