/* Contact page specific styles */

@media (max-width: 768px) {
    #app {
        padding-top: 94px !important;
    }
}

/* Regional Presence Section */
.regional-presence-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.city-marquee-container {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Gradient masks for smooth edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.city-marquee-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    animation: marathon 35s linear infinite;
}

.city-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marathon {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.city-pill {
    flex-shrink: 0;
    background-color: #4352c4;
    /* Deep Teal background per reference image */
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(13, 122, 124, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.01em;
}

.city-pill:hover {
    transform: translateY(-6px) scale(1.03);
    background-color: #0a6566;
    box-shadow: 0 15px 30px rgba(13, 122, 124, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

