/* Custom Styles & Animations for Shine Car Wash Sweden */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0d12;
}
::-webkit-scrollbar-thumb {
    background: #38bdf8;
    border-radius: 4px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in-up { animation: fadeInUp 0.6s ease-out both; }
.animate-slide-in-left { animation: slideInLeft 0.6s ease-out both; }

/* Before/After Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
}
.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.img-before { z-index: 10; }
.img-after { z-index: 5; }
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0284c7;
    left: 50%;
    z-index: 20;
    cursor: ew-resize;
}
.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #38bdf8;
    border: 2px solid #0284c7;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.nav-active {
    color: #38bdf8 !important;
    border-bottom: 2px solid #0284c7;
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    border-radius: 12px;
    transform: translateY(150%);
    transition: transform 0.5s ease-out;
}
.cookie-banner.show { transform: translateY(0); }
