/* ===================================
   Services Slider Section Styles
   =================================== */

.services-slider-section {
    padding: 100px 0;
    background: #1A1A1A;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .services-slider-section {
        padding: 80px 0;
    }
}

.services-slider-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Services Header */
.services-slider-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .services-slider-header {
        margin-bottom: 60px;
    }
}

.services-slider-title {
    font-size: 52px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-family-elegant);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .services-slider-title {
        font-size: 36px;
    }
}

.services-title-accent {
    color: var(--white);
}

/* Slider Wrapper */
.services-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Slider Container */
.services-slider {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: default;
    padding: 20px 40px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 768px) {
    .services-slider {
        padding: 20px 0;
    }
}

/* Hide scrollbar completely */
.services-slider::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.services-slider {
    scrollbar-width: none;
}

/* Hide scrollbar for IE, Edge */
.services-slider {
    -ms-overflow-style: none;
}

/* Services Track */
.services-track {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 768px) {
    .services-track {
        gap: 15px;
        padding: 0 10px;
    }
}

/* Service Slide */
.service-slide {
    flex-shrink: 0;
    width: 400px;
    height: 600px;  /* Taller on desktop */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;  /* Was pointer - nu default */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 1024px) {
    .service-slide {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .service-slide {
        width: 320px;
        height: 400px;
        margin: 0 10px;
    }
}

.service-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Service Slide Image */
.service-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-slide:hover .service-slide-image {
    transform: scale(1.1);
}

/* Service Slide Overlay */
.service-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
                transparent 0%,
                rgba(0,0,0,0.3) 50%,
                rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

/* Service Slide Content */
.service-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 2;
    color: var(--white);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .service-slide-content {
        padding: 30px 20px;
    }
}

.service-slide-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-family-base);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .service-slide-title {
        font-size: 24px;
    }
}

.service-slide-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-family: var(--font-family-base);
}

@media (max-width: 768px) {
    .service-slide-subtitle {
        font-size: 14px;
    }
}

/* Slider Navigation Dots */
.services-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .services-slider-dots {
        margin-top: 40px;
        gap: 8px;
    }
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    width: 30px;
    height: 10px;
    border-radius: 5px;
    background: var(--white);
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .service-slide {
        width: 380px;
        height: 550px;
    }
}

@media (max-width: 1200px) {
    .service-slide {
        width: 340px;
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .service-slide {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .service-slide {
        width: 280px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .service-slide {
        width: 90vw;
        height: 380px;
        margin: 0 5px;
    }
}

/* Smooth scroll behavior */
.services-slider {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}