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

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

nav.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.active-link {
    color: #92400e; /* amber-800 */
    border-bottom: 2px solid #92400e;
}

.mobile-link {
    @apply hover:text-amber-700 transition-colors;
}

/* Form Styling */
.form-input {
    @apply w-full px-4 py-3 rounded-lg border border-slate-300 focus:border-amber-600 focus:ring-2 focus:ring-amber-200 outline-none transition-all;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #78350f;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #92400e;
}

#map-container {
    height: 450px;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}