/* ===== ENBAMA SLIDER STYLES ===== */

#slider {
    position: relative;
    width: 100%;
    height: 480px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0px 1px 5px #999999;
}

#slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border: none;
}

#slider img.active {
    opacity: 1;
}

/* Link stilleri */
#slider a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Navigasyon butonları */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Bullet navigasyon */
.slider-bullets {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
    padding: 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.slider-bullets span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-bullets span:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-bullets span.active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    #slider {
        height: 300px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-bullets {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-bullets span {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    #slider {
        height: 200px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-bullets {
        bottom: 10px;
    }
}

/* Eski stilleri temizle */
.navBulletsWrapper,
.mc-caption-bg,
.mc-caption-bg2,
.mc-caption {
    display: none !important;
}