/* ================================
   HOME SLIDER – NETRASIS V4
   FULL WIDTH FIX
================================ */

/* FORCE FULL WIDTH */
#home-slider {
    position: relative;
    width: 100vw;
    height: 520px;
    overflow: hidden;

    /* container dışına taşır */
    margin-left: calc(-50vw + 50%);
}

/* SLIDER TRACK */
#home-slider .slider-track {
    display: flex;
    height: 100%;
    transition: transform .6s ease;
}

/* SLIDE */
#home-slider .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    position: relative;
}

/* DARK OVERLAY */
#home-slider .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.25) 40%,
        rgba(0,0,0,0) 70%
    );
}

/* TEXT */
#home-slider .slide-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 560px;
    color: #fff;
    z-index: 2;
}

#home-slider .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

/* DOTS */
#home-slider .slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 5;
}

#home-slider .slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .3s ease;
}

#home-slider .slider-dots span.active {
    transform: scale(1.6);
    background: #fff;
    box-shadow: 0 0 14px rgba(255,255,255,.9);
}

/* MOBILE */
@media (max-width: 768px) {
    #home-slider {
        height: 420px;
    }

    #home-slider .slide-content {
        left: 30px;
        right: 30px;
    }

    #home-slider .slide-content h2 {
        font-size: 28px;
    }
}
