/* ============================================================
   Hero Slider (Swiper) — panelden yönetilen ana sayfa carousel
   Mevcut .hero görünümünü (overlay, padding, yükseklik) korur,
   her slide kendi arka planını gösterir.
   ============================================================ */

.hero-slider {
    position: relative;
    margin: 0px 0px 0;
    border-radius: 0px;
    overflow: hidden;
}

.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: auto;
}

.hero-slide {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
    align-content: center;
    padding: 230px 0 120px;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(8, 54, 59, 0.50) 0%, transparent 12.88%),
                linear-gradient(270deg, transparent 37.22%, rgba(8, 54, 59, 0.63) 58.83%, rgba(8, 54, 59, 0.90) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

/* Pagination noktaları */
.hero-slider .swiper-pagination {
    z-index: 3;
    bottom: 40px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
    transition: opacity .3s ease, width .3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .hero-slide {
        min-height: auto;
        padding: 160px 0 90px;
    }
    .hero-slider .swiper-pagination {
        bottom: 20px;
    }
}
