.hover-up { transition: transform 0.3s ease; }
.hover-up:hover { transform: translateY(-5px); }


.floating-anim { animation: floating 4s ease-in-out infinite; }
        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

.drop-shadow {
        filter: drop-shadow(15px 20px 15px rgba(0,0,0,0.15));
    }

.bg-circle-deco {
        width: 800px;
        height: 800px;
        z-index: 0;
    }

@media (max-width: 791px) {
    .fs-mobile-title {
         font-size: 1.3rem !important;
         line-height: 1.2;
    }
    .drop-shadow {
        filter: drop-shadow(5px 8px 5px rgba(0,0,0,0.1));
    }
    .map {
        height: 548px;
    }
}