/* Slider Atas (3 Gambar) */
.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Slider Bawah (2 Gambar) */
.kwsp-slider-container {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #eee;
}

.kwsp-slider {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.kwsp-slide {
    min-width: 100%;
    height: 100%;
}

.kwsp-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f8f8;
}

.kwsp-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.kwsp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.kwsp-dot.active {
    background: #3498db;
    transform: scale(1.2);
}