/* ── Banner Slider ─────────────────────────────────────────── */
.cs-banner-swiper {
    width: 100%;
    position: relative;
            margin-bottom: 120px !important;
    }
}

.cs-banner-swiper .swiper-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: rgb(91, 123, 251);
}



.cs-banner-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5, 18, 40, 0.82) 0%,
        rgba(5, 18, 40, 0.65) 45%,
        rgba(5, 18, 40, 0.30) 100%
    );
    z-index: 1;
}

.cs-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Sol: video play butonu alanı */
.cs-banner-left {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 80px;
}

/* Sağ: içerik alanı */
.cs-banner-right {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tag / Rozet */
.cs-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 123, 251, 0.18);
    border: 1px solid rgba(91, 123, 251, 0.45);
    color: #5b7bfb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
    width: fit-content;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease .1s, transform .5s ease .1s;
}

/* Başlık */
.cs-slide-title {
    font-size: clamp(28px, 3.2vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease .2s, transform .55s ease .2s;
}

.cs-slide-title em {
    font-style: normal;
    color: #5b7bfb;
}

/* Açıklama */
.cs-slide-desc {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255,255,255,.78);
    margin-bottom: 36px;
    max-width: 520px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease .32s, transform .55s ease .32s;
}

/* Buton */
.cs-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5b7bfb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    width: fit-content;
    transition: background .22s, color .22s, transform .22s;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease .42s, transform .5s ease .42s,
                background .22s, color .22s;
}

.cs-slide-btn:hover {
    background: #ffffff;
    color: #0a1628;
    transform: translateX(4px);
}

.cs-slide-btn i {
    font-size: 1.1em;
    transition: transform .2s;
}

.cs-slide-btn:hover i {
    transform: translateX(3px);
}

/* Aktif slide animasyon tetikleme */
.swiper-slide-active .cs-slide-tag,
.swiper-slide-active .cs-slide-title,
.swiper-slide-active .cs-slide-desc,
.swiper-slide-active .cs-slide-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Slide sayacı */
.cs-banner-counter {
    position: absolute;
    bottom: 48px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cs-banner-counter .cs-count-current {
    font-size: 42px;
    font-weight: 800;
    color: #5b7bfb;
    line-height: 1;
}

.cs-banner-counter .cs-count-sep {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,.35);
}

.cs-banner-counter .cs-count-total {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
}

/* Progress bar */
.cs-progress-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,.12);
    z-index: 10;
}

.cs-progress-bar {
    height: 100%;
    background: #5b7bfb;
    width: 0%;
    transition: width linear;
}

/* Navigation okları */
.cs-banner-nav {
    position: absolute;
    bottom: 44px;
    left: 160px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.cs-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    font-size: 14px;
}

.cs-nav-btn:hover {
    background: #5b7bfb;
    border-color: #5b7bfb;
    color: #ffffff;
}

/* Play button (sol) */
.cs-play-btn {
    width: 95px;
    height: 95px;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: background .25s, border-color .25s;
    position: relative;
}

.cs-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
    0%   { transform: scale(.92); opacity: .7; }
    70%  { transform: scale(1.15); opacity: 0; }
    100% { opacity: 0; }
}

.cs-play-btn:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .cs-banner-inner {
        padding: 0 32px;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
    }
    .cs-banner-left {
        flex: none;
        justify-content: flex-start;
        padding-right: 0;
        margin-bottom: 32px;
        padding-top: 80px;
    }
    .cs-banner-right {
        flex: none;
        width: 100%;
    }
    .cs-slide-desc { max-width: 100%; }
    .cs-banner-nav { left: 130px; }
    .cs-banner-counter { right: 32px; }
}

@media (max-width: 768px) {
    .cs-banner-swiper .swiper-slide { min-height: 100svh; }
    .cs-banner-inner {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 100px;
        padding-top: 100px;
        min-height: 100svh;
        gap: 0;
    }
    .cs-banner-left {
        display: none; /* play butonunu mobilde gizle — alan kazanımı */
    }
    .cs-banner-right {
        width: 100%;
    }
    .cs-slide-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 5px 12px;
        margin-bottom: 14px;
    }
    .cs-slide-title {
        font-size: clamp(24px, 6.5vw, 32px);
        margin-bottom: 14px;
    }
    .cs-slide-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 100%;
    }
    .cs-slide-btn {
        font-size: 13px;
        padding: 12px 22px;
    }
    .cs-banner-nav { display: none; }
    .cs-banner-counter {
        bottom: 20px;
        right: 20px;
    }
    .cs-banner-counter .cs-count-current { font-size: 28px; }
    .cs-banner-counter .cs-count-total   { font-size: 13px; }
    .cs-banner-counter .cs-count-sep     { width: 24px; }
}

@media (max-width: 400px) {
    .cs-slide-title { font-size: 22px; }
    .cs-slide-desc  { font-size: 13px; }
}


@media (max-width: 768px) {
    #banner,
    #banner + *,
    #lqd-contents-wrap > .lqd-section.banner,
    body > #wrap > #lqd-site-content #banner {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
 