/* --- INFO SECTION ANA YAPI --- */
.hero-section-info {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    /* Üstten ve alttan %1 sinematik şerit */
    padding: 1vh 0;
    box-sizing: border-box;
}

/* Karartma Overlay (Analiz ettiğimiz gradient) */
.hero-section-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 10, 10, 0.879) 0%, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ANA KONTEYNER (Sağa yaslı panel mantığı) */
.hero-section-info-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    /* İçeriği sağa iter */
    align-items: center;
    padding: 0 5%;
    /* Sağdan %5 mesafe */
}

/* SAĞ PANEL (Metinlerin olduğu kısım) */
.info-content-wrapper {
    width: 700px;
    /* Panel genişliği */
    padding: 60px 40px;
    border-left: 1.5px solid rgba(255, 255, 255, 0.42);
    /* O meşhur dikey çizgi */
    background: linear-gradient(to left, rgba(20, 19, 19, 0.642), transparent);
}

/* ALT BAŞLIK (Turuncu detay) */
.hero-section-info-subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #ff6b00;
    /* Pars Turuncusu */
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ANA BAŞLIK */
.hero-section-info-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Expletus Sans', cursive;
}

/* AYIRICI ÇİZGİ */
.hero-section-info-divider {
    width: 40px;
    height: 3px;
    background: #ff6b00;
    margin-bottom: 25px;
}

/* AÇIKLAMA METNİ */
.hero-section-info-text {
    color: rgba(254, 254, 254, 0.842);
    font-size: 1rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* SOL ALT BUTON (Orijinal buton stilin) */
.info-footer-left {
    position: absolute;
    bottom: 80px;
    left: 5%;
}

/* --- GENEL BUTON AYARLARI --- */
.hero-buttons .btn-main {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff !important;
    /* Yazı her zaman beyaz */
    border-radius: 4px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

/* --- 1. SOL BUTON (BLUE OUTLINE -> BLUE SOLID) --- */
.hero-buttons .btn-blue-outline {
    background-color: transparent !important;
    /* BAŞLANGIÇTA ŞEFFAF */
    border: 2px solid #103b7b !important;
    /* LACİVERT ÇERÇEVE */
}

.hero-buttons .btn-blue-outline:hover {
    background-color: #103b7b !important;
    /* HOVERDA İÇİ DOLAR */
    box-shadow: 0 0 20px rgba(16, 59, 123, 0.5);
    transform: translateY(-3px);
}

/* --- 2. SAĞ BUTON (ORANGE OUTLINE -> ORANGE SOLID) --- */
.hero-buttons .btn-orange-outline {
    background-color: transparent !important;
    /* BAŞLANGIÇTA ŞEFFAF */
    border: 2px solid #ff6b00 !important;
    /* TURUNCU ÇERÇEVE */
}

.hero-buttons .btn-orange-outline:hover {
    background-color: #ff6b00 !important;
    /* HOVERDA İÇİ DOLAR */
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    transform: translateY(-3px);
}

/* Şık Alt Çizgi Efekti (İstersen) */
.hero-buttons .btn-main::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hero-buttons .btn-main:hover::after {
    transform: scaleX(1);
}


/* SAĞ NAVİGASYON OKLARI */

.hero-section-info .info-nav-right {
    position: absolute;
    right: 30px;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Oklar arası biraz daha nefes alsın */
    z-index: 100;
}

.hero-section-info .nav-arrow-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    /* Biraz daha belirgin olması için büyüttük */
    height: 50px;

    background-color: transparent !important;
    /* KALIN VE NET TURUNCU ÇERÇEVE */
    border: 3px solid #ff6b00 !important;
    /* OKUN KENDİ RENGİ: KAR BEYAZI */
    color: #ffffff !important;

    text-decoration: none;
    font-size: 1.5rem;
    /* Oku biraz daha kalınlaştırdık */
    font-weight: 900;
    /* Okun kendisi de tok dursun */
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER: İÇİ TURUNCU DOLAR, OK BEYAZ KALMAYA DEVAM EDER */
.hero-section-info .nav-arrow-link:hover {
    background-color: #ff6b00 !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.6);
    transform: scale(1.1);
}

/* Okların kutu içindeki merkezlemesi için milimetrik ayar */
.nav-arrow-link.up {
    padding-bottom: 4px;
}

.nav-arrow-link.down {
    padding-top: 4px;
}

/* ================================================================
   RESPONSIVE: MOBİL VE TABLET TAM UYUMU
   ================================================================ */

/* ================================================================
   RESPONSIVE: IPAD, SAMSUNG VE TÜM MOBİL CİHAZLAR
   ================================================================ */

/* --- 1. TABLET MODU (iPad Pro & iPad Air: 768px - 1024px) --- */
@media screen and (max-width: 1024px) {
    .info-content-wrapper {
        width: 600px;
        /* Paneli biraz daraltalım */
        padding: 50px 30px;
    }

    .hero-section-info-title {
        font-size: 2.5rem;
        /* Başlık iPad'de çok devasa kalmasın */
    }

    .info-footer-left {
        bottom: 50px;
        /* Butonları biraz yukarı çekelim */
    }
}

/* --- 2. KÜÇÜK TABLET VE YATAY MOBİL (768px Altı) --- */
@media screen and (max-width: 991px) {
    .hero-section-info-container {
        justify-content: center !important;
        /* Ortala */
        padding: 0 20px !important;
        flex-direction: column !important;
    }

    .info-content-wrapper {
        width: 100% !important;
        max-width: 600px;
        border-left: none !important;
        border-top: 4px solid #ff6b00 !important;
        /* Panel üstüne Pars turuncusu hat */
        text-align: center;
        padding: 40px 20px !important;
        background: rgba(0, 0, 0, 0.75) !important;
        /* Tablet/Mobilde okunurluk artsın */
        margin-top: -50px;
        /* Oklarla butonlar arasında denge kurar */
    }

    .hero-section-info-divider {
        margin: 20px auto !important;
    }

    .info-footer-left {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        margin-top: 30px !important;
        width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: row !important;
        /* Tablette butonlar yan yana kalsın */
        gap: 15px !important;
    }

    /* Okları alta al ve yan yana diz */
    .hero-section-info .info-nav-right {
        position: relative !important;
        top: 20px !important;
        right: 0 !important;
        transform: none !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 25px !important;
    }
}

/* --- 3. STANDART MOBİL (Samsung S20-S24, iPhone 13-15: 480px Altı) --- */
@media screen and (max-width: 480px) {
    .hero-section-info-title {
        font-size: 1.8rem !important;
        /* Başlık mobilde mermi gibi net olsun */
        letter-spacing: 1px;
    }

    .hero-section-info-subtitle {
        font-size: 1rem !important;
        letter-spacing: 2px;
    }

    .info-content-wrapper {
        padding: 30px 15px !important;
    }

    .hero-section-info-text {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    /* Mobilde Butonları ALT ALTA alalım (Samsung vb. dar ekranlar için) */
    .hero-buttons {
        flex-direction: column !important;
        width: 100%;
        max-width: 280px;
    }

    .hero-buttons .btn-main {
        width: 100% !important;
        padding: 14px 0 !important;
        font-size: 0.8rem !important;
    }

    /* Okları en alta, butonların altına sabitle */
    .hero-section-info .info-nav-right {
        margin-top: 30px !important;
        padding-bottom: 20px;
    }

    .hero-section-info .nav-arrow-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* --- 4. ÇOK KÜÇÜK CİHAZLAR (iPhone SE / Eski Nesil: 350px Altı) --- */
@media screen and (max-width: 350px) {
    .hero-section-info-title {
        font-size: 1.5rem !important;
    }
}