:root {
    --sl-accent: #4a69bd;
    --sl-accent-glow: rgba(74, 105, 189, 0.4);
    --sl-white: #ffffff;
    --sl-black: #060b1b;
    --sl-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-slider-section {
    position: relative;
    height: 100svh;
    width: 100%;
    background: var(--sl-black);
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    contain: content;
}

.hero-slider-section .hero-swiper,
.hero-slider-section .hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slider-section .swiper-wrapper {
    z-index: 100 !important;
    pointer-events: auto;
}

.hero-slider-section .hero-slide {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

.hero-slider-section .swiper-slide-active.hero-slide {
    pointer-events: auto;
    z-index: 110 !important;
}

.hero-slider-section .hero-slide:not(.swiper-slide-active) {
    pointer-events: none !important;
    z-index: 1 !important;
}

.hero-slider-section .slide-bg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    z-index: 1;
    transform: scale(1.02) translateZ(0);
    transition: transform 8s ease-out;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.hero-slider-section .swiper-slide-active .slide-bg {
    transform: scale(1) translateZ(0);
}

.hero-slider-section .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 0%, rgba(6, 11, 27, 0.8) 100%);
    pointer-events: none;
}

.hero-slider-section .hero-container {
    padding: 0 8%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 120;
    pointer-events: auto;
}

.hero-slider-section .hero-content {
    max-width: 800px;
    z-index: 110;
    pointer-events: auto;
}

.hero-slider-section .hero-label,
.hero-slider-section .hero-title,
.hero-slider-section .hero-description,
.hero-slider-section .cta-buttons {
    opacity: 0;
    transform: translateY(40px) translateZ(0);
    transition: transform .8s ease, opacity .8s ease;
    will-change: transform, opacity;
}

.hero-slider-section .swiper-slide-active .hero-label,
.hero-slider-section .swiper-slide-active .hero-title,
.hero-slider-section .swiper-slide-active .hero-description,
.hero-slider-section .swiper-slide-active .cta-buttons {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: transform 1.4s var(--sl-ease), opacity 1.4s var(--sl-ease);
}

.hero-slider-section .swiper-slide-active .hero-label {
    transition-delay: .1s
}

.hero-slider-section .swiper-slide-active .hero-title {
    transition-delay: .28s
}

.hero-slider-section .swiper-slide-active .hero-description {
    transition-delay: .46s
}

.hero-slider-section .swiper-slide-active .cta-buttons {
    transition-delay: .64s
}

.hero-slider-section .hero-label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--sl-white);
    margin-bottom: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 2px;
}

.hero-slider-section .label-icon {
    font-style: normal;
    font-size: .7rem;
    opacity: .7;
}

.hero-slider-section .hero-label::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--sl-accent), transparent);
}

.hero-slider-section .hero-title {
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 900;
    color: var(--sl-white);
    line-height: .95;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-slider-section .title-line {
    display: block
}

.hero-slider-section .title-accent {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--sl-accent);
}

.hero-slider-section .hero-description {
    font-size: clamp(.9rem, 1.2vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    max-width: 440px;
    line-height: 1.9;
    margin-bottom: 3rem;
    letter-spacing: .5px;
}

.hero-slider-section .cta-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-slider-section .btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 42px;
    background: transparent;
    color: var(--sl-white);
    border: 1px solid rgba(255, 255, 255, .3);
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: all .5s var(--sl-ease);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-slider-section .btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sl-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .6s var(--sl-ease);
    z-index: -1;
}

.hero-slider-section .btn-premium:hover {
    color: var(--sl-white);
    border-color: var(--sl-accent);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px var(--sl-accent-glow);
    background: rgba(74, 105, 189, 0.2);
}

.hero-slider-section .btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(74, 105, 189, 0.6),
            transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: 1;
}

.hero-slider-section .btn-premium:hover::after {
    left: 200%;
    transition: left 0.8s var(--sl-ease);
}

.hero-slider-section .btn-icon {
    display: flex;
    align-items: center;
    transition: transform .4s var(--sl-ease);
}

.hero-slider-section .btn-premium:hover .btn-icon {
    animation: btnIconFloat 1.2s infinite ease-in-out;
}

@keyframes btnIconFloat {

    0%,
    100% {
        transform: translateX(8px);
    }

    50% {
        transform: translateX(14px);
    }
}

.hero-slider-section .btn-premium:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-slider-section .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color .3s;
    cursor: pointer;
}

.hero-slider-section .btn-ghost:hover {
    color: var(--sl-white)
}

.hero-slider-section .btn-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    font-size: .6rem;
    padding-left: 3px;
    transition: border-color .3s, background .3s;
}

.hero-slider-section .btn-ghost:hover .btn-play-icon {
    border-color: var(--sl-accent);
    background: rgba(74, 105, 189, .15);
}

/* Slider Navigasyon ve Kontroller */
.hero-slider-section .slider-controls {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
}

.hero-slider-section .hero-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    gap: 15px;
    padding: 12px 20px !important;
    background: rgba(20, 25, 40, .9) !important;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px !important;
    backdrop-filter: blur(10px);
    margin: 0 !important;
}

.hero-slider-section .pagination-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: var(--sl-white);
    background: rgba(20, 25, 40, .8);
    cursor: pointer;
    transition: all .3s ease;
    font-size: 14px;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-slider-section .pagination-arrow:hover {
    background: var(--sl-accent);
    border-color: var(--sl-accent);
    transform: scale(1.1);
}

/* Mobilde okları gizle */
@media (max-width: 768px) {
    .hero-slider-section .pagination-arrow {
        display: none;
    }
}

.hero-slider-section .hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--sl-white) !important;
    opacity: .2;
    margin: 0 !important;
    border-radius: 50%;
    transition: opacity .4s, transform .4s, background .4s, box-shadow .4s;
}

.hero-slider-section .hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--sl-accent) !important;
    transform: scale(1.3);
    box-shadow: 0 0 16px var(--sl-accent-glow);
}

.hero-slider-section .hero-pagination .swiper-pagination-bullet:hover:not(.swiper-pagination-bullet-active) {
    opacity: .5;
}

.hero-slider-section .hero-nav-zones {
    display: none;
}

.hero-slider-section .hero-slide-counter {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 60;
    pointer-events: none;
    background: rgba(20, 25, 40, 0.8);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-slider-section .counter-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sl-white);
    letter-spacing: 2px;
}

.hero-slider-section .counter-separator {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--sl-accent), rgba(74, 105, 189, .1));
    border-radius: 10px;
}

.hero-slider-section .counter-total {
    font-size: .85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .25);
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .hero-slider-section .hero-container {
        padding: 0 6%
    }

    .hero-slider-section .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        margin-bottom: 1.5rem
    }

    .hero-slider-section .hero-description {
        max-width: 380px;
        margin-bottom: 2.5rem
    }

    .hero-slider-section .btn-premium {
        padding: 16px 36px;
        letter-spacing: 3px
    }

    .hero-slider-section .hero-slide-counter {
        right: 3%
    }

    .hero-slider-section .zone-arrow {
        width: 46px;
        height: 46px
    }

    .hero-slider-section .zone-arrow-left {
        left: 20px
    }

    .hero-slider-section .zone-arrow-right {
        right: 20px
    }
}

@media (max-width: 768px) {
    .hero-slider-section .hero-container {
        padding: 0 24px;
        align-items: flex-end;
        padding-bottom: 130px
    }

    .hero-slider-section .hero-content {
        max-width: 100%
    }

    .hero-slider-section .hero-label {
        font-size: .8rem;
        margin-bottom: 1.2rem;
        gap: 10px
    }

    .hero-slider-section .hero-label::after {
        width: 40px
    }

    .hero-slider-section .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        margin-bottom: 1.2rem;
        letter-spacing: -1px
    }

    .hero-slider-section .title-accent {
        -webkit-text-stroke-width: 1px
    }

    .hero-slider-section .hero-description {
        font-size: .85rem;
        line-height: 1.7;
        max-width: 320px;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, .45)
    }

    .hero-slider-section .cta-buttons {
        gap: 16px
    }

    .hero-slider-section .btn-premium {
        padding: 14px 28px;
        font-size: .7rem;
        letter-spacing: 3px;
        gap: 10px
    }

    .hero-slider-section .btn-ghost {
        font-size: .7rem;
        gap: 8px
    }

    .hero-slider-section .btn-play-icon {
        width: 38px;
        height: 38px;
        font-size: .5rem
    }

    .hero-slider-section .hero-pagination {
        bottom: 30px !important;
        padding: 10px 16px !important;
        gap: 8px
    }

    .hero-slider-section .hero-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px
    }

    .hero-slider-section .hero-side-social {
        display: none;
    }

    .hero-slider-section .slider-controls {
        display: flex;
        gap: 0;
        bottom: 24px;
    }

    .hero-slider-section .hero-pagination {
        padding: 8px 14px !important;
    }

    .hero-slider-section .hero-slide::after {
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .3) 40%, rgba(0, 0, 0, .75) 70%, rgba(0, 0, 0, .95)),
            linear-gradient(to right, rgba(0, 0, 0, .3), transparent);
    }
}

@media (max-width: 480px) {
    .hero-slider-section .hero-container {
        padding: 0 20px;
        padding-bottom: 110px
    }

    .hero-slider-section .hero-label {
        font-size: .7rem;
        margin-bottom: 1rem
    }

    .hero-slider-section .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        margin-bottom: 1rem;
        line-height: 1
    }

    .hero-slider-section .hero-description {
        font-size: .8rem;
        max-width: 280px;
        margin-bottom: 1.5rem;
        line-height: 1.6
    }

    .hero-slider-section .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .hero-slider-section .btn-premium {
        padding: 13px 24px;
        font-size: .65rem;
        letter-spacing: 2px;
        width: 100%;
        justify-content: center
    }

    .hero-slider-section .btn-ghost {
        font-size: .65rem
    }

    .hero-slider-section .hero-pagination {
        bottom: 24px !important;
        padding: 8px 14px !important;
        gap: 6px
    }

    .hero-slider-section .hero-pagination .swiper-pagination-bullet {
        width: 5px;
        height: 5px
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider-section .hero-container {
        align-items: center;
        padding-bottom: 0
    }

    .hero-slider-section .hero-title {
        font-size: 2.2rem;
        margin-bottom: .8rem
    }

    .hero-slider-section .hero-label {
        margin-bottom: .6rem;
        font-size: .7rem
    }

    .hero-slider-section .hero-description {
        display: none
    }

    .hero-slider-section .btn-premium {
        padding: 12px 24px
    }

    .hero-slider-section .hero-pagination {
        bottom: 14px !important
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-slider-section *,
    .hero-slider-section *::before,
    .hero-slider-section *::after {
        animation-duration: 0.01ms !important;
        transition-duration: .2s !important;
    }

    .hero-slider-section .slide-bg {
        transform: scale(1) !important
    }
}
