/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 450px;
    padding: 0;
    overflow: hidden;
}

.hero-viewport {
    width: 100%;
    overflow: visible;
    /* Important: allow seeing peek slides */
}

.hero-track {
    display: flex;
    will-change: transform;
}

.hero-slider-section.is-ready .hero-track {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-slide {
    flex: 0 0 100%;
    height: 75vh;
    min-height: 450px;
    margin: 0;
    background-color: #000;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    filter: none;
    transform: none;
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-slider-section.is-ready .hero-slide {
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    /* Aktif kart tam boyutunda */
    z-index: 2;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    padding: 0 var(--container-padding);
    height: 100%;
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-left {
    flex: 1.2;
    /* Başlık alanı dengelendi */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* Boşluk daha da azaltıldı */
    z-index: 2;
}

.hero-right {
    flex: 0.8;
    /* Görsel alanı biraz daha genişletildi */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 480px;
    /* Görsel boyutu artırıldı */
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Typography */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.01em;
    max-width: 900px;
}

.hero-title .highlight {
    color: #88a888; /* Soft green from image */
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    max-width: 100%;
    line-height: 1.6;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-description .dot {
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-divider {
    width: 300px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0.75rem 0;
    /* Boşluk azaltıldı */
}

.btn-hero-white {
    background-color: #ffffff;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    width: fit-content;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.btn-hero-white:hover {
    background-color: #f0f0f0;
    transform: scale(1.03);
    /* Hafif scale eklendi */
}

.hero-nav-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--container-padding) !important;
    z-index: 10;
}

/* Controls */
.hero-controls {
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-prev,
.hero-next {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.hero-prev:hover,
.hero-next:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
}

/* Indicators */
.hero-indicators {
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    width: 20px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-slide {
        flex: 0 0 90%;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: auto;
        min-height: 520px;
    }

    .hero-slide {
        flex: 0 0 100%;
        height: auto;
        min-height: 520px;
        aspect-ratio: auto;
    }

    .hero-content-wrapper {
        text-align: left;
        padding: 2.5rem var(--container-padding);
        height: 100%;
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-left {
        align-items: flex-start;
        justify-content: center;
        margin-top: 15px;
        padding-left: 15px;
        gap: 0; /* Gap between title and description removed */
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 0px !important;
        line-height: 1.0 !important; /* Extremely tight line-height */
    }

    .title-line {
        margin: 0; /* Ensure no line margins */
        padding: 0;
    }

    .hero-description {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.3;
        margin: 15px 0 0 0 !important; /* Add space between title and description */
        padding: 0;
        gap: 0.5rem;
        display: block;
        white-space: pre-line;
    }

    .hero-divider {
        margin: 0.75rem 0;
    }

    .btn-hero-white {
        padding: 0.5rem 1.2rem;
        font-size: 1rem;
        margin: 0;
    }

    .hero-actions {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px !important;
    }

    .hero-right {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }

    .hero-image-placeholder {
        width: 240px;
        height: 240px;
    }

    .hero-indicators {
        position: static;
        transform: none;
        order: 1;
    }
    
    .hero-controls {
        order: 2;
    }

    .hero-nav-container {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        width: 100%;
        padding: 0 var(--container-padding) !important; /* Perfect alignment with content */
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 10;
    }
}

.hero-pause {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.hero-pause:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
}

.hero-pause i {
    font-size: 14px;
}