.gradient-text {background: linear-gradient(to right, #4f46e5, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.hero-pattern {background-color: #ffffff; background-image: radial-gradient(#e0e7ff 1px, transparent 1px); background-size: 24px 24px;}

.check-icon { color: #10b981; } /* Green-500 */
.cross-icon { color: #cbd5e1; } /* Slate-300 */


#map { height: 100%; width: 100%; border-radius: 1rem; z-index: 0; }
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4f46e5;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

#mobile-menu {
    display: none;
}

/* Optional: smoother feel */
@media (max-width: 768px) {
    #mobile-menu {
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }
}