@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.animate-marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

/* Custom transitions */
a { transition: all 0.3s ease; }

/* Focus styles for accessibility */
button:focus, a:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* Map placeholder height */
#map {
    height: 400px;
    width: 100%;
    border-radius: 1rem;
    z-index: 10;
}