/* Base configuration & smooth transitions */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom premium scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #2c2c2c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4a373;
}

/* Dark mode Leaflet adjustments */
.leaflet-container {
    background-color: #121212 !important;
}
.leaflet-tile-pane {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Image comparison Slider Container configuration */
.before-after-container {
    touch-action: none;
}

/* Animations classes for interactive wizard dynamic navigation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Modal interaction state */
#serviceModal {
    transition: opacity 0.3s ease;
}
