/* Han Slider - Genel yapı */
.han-slider {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

.han-slider__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.han-slider__slides {
    position: relative;
    width: 100%;
}

.han-slider__slide {
    display: none;
    width: 100%;
}

.han-slider__slide.is-active {
    display: flex;
    align-items: center;
    gap: 60px;
}

.han-slider__left,
.han-slider__right {
    flex: 1 1 50%;
    min-width: 0;
}

/* Badge */
.han-slider__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.han-slider__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.han-slider__subtitle {
    margin-top: 20px;
    font-size: 16px;
    color: #8d93a3;
}

/* Title & description */
.han-slider__title {
    margin: 18px 0 18px;
    font-size: clamp(32px, 3.4vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.han-slider__title-highlight {
    color: #bf0017;
}

.han-slider__description {
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
}

/* Buttons */
.han-slider__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.han-slider__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .2s ease;
    cursor: pointer;
}

.han-slider__button--primary {
    background-color: #bf0017;
    color: #ffffff;
    border-color: #bf0017;
}

.han-slider__button--primary:hover {
    transform: translateY(-1px);
    opacity: .96;
}

.han-slider__button--secondary {
    background-color: rgba(255,255,255,0);
    color: #bf0017;
    border-color: #f1c9cf;
}

.han-slider__button--secondary:hover {
    background-color: #ffe7e4;
}

/* Stat */
.han-slider__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.han-slider__stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #ffe7e4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.han-slider__stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.han-slider__stat-number {
    font-size: 18px;
    font-weight: 700;
}

.han-slider__stat-label {
    font-size: 14px;
    color: #8d93a3;
}

/* Right image card */
.han-slider__image-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.han-slider__image-card {
    position: relative;
    border-radius: 32px;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 24px 80px rgba(0,0,0,.06);
    max-width: 640px;
    width: 100%;
}

.han-slider__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.han-slider__image-placeholder {
    width: 100%;
    padding-top: 60%;
    border-radius: 24px;
    background: repeating-linear-gradient(
        -45deg,
        #f5d8dd,
        #f5d8dd 6px,
        #f9e6ea 6px,
        #f9e6ea 12px
    );
}

/* Navigation */
.han-slider__nav {
    position: absolute;
    left: 24px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.han-slider__arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    color: #bf0017;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.han-slider__arrow:hover {
    transform: translateY(-1px);
    background-color: #ffe7e4;
}

.han-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.han-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(0,0,0,.14);
    cursor: pointer;
    transition: all .18s ease;
}

.han-slider__dot.is-active {
    width: 20px;
    background: #bf0017;
}

/* Responsive */
@media (max-width: 991px) {
    .han-slider {
        padding: 60px 0 80px;
    }

    .han-slider__inner {
        gap: 40px;
    }

    .han-slider__slide.is-active {
        flex-direction: column;
        align-items: flex-start;
    }

    .han-slider__right {
        width: 100%;
    }

    .han-slider__image-wrap {
        justify-content: center;
    }

    .han-slider__image-card {
        max-width: 480px;
    }

    .han-slider__description {
        max-width: none;
    }

    .han-slider__nav {
        position: static;
        margin-top: 28px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .han-slider {
        padding: 40px 0 60px;
    }

    .han-slider__inner {
        padding: 0 16px;
    }

    .han-slider__slide.is-active {
        gap: 32px;
    }

    .han-slider__title {
        font-size: 30px;
    }

    .han-slider__buttons {
        justify-content: center;
    }

    .han-slider__left,
    .han-slider__right {
        width: 100%;
    }

}
