/* ==========================================
   SLIDER ANA ALANI
   ========================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 800px; 
    background: #000;
    overflow: hidden;
    padding-bottom: 60px;
}

.slider-bg-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.slide-item {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; visibility: hidden; transition: opacity 1s ease-in-out, visibility 1s;
}
.slide-item.active { opacity: 1; visibility: visible; }
.slide-item img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.1) 100%);
}

.slider-content-wrapper {
    position: relative; z-index: 10; width: 100%; height: 100%;
    display: flex; align-items: center;
}
.slider-container {
    max-width: 1440px; margin: 0 auto; padding: 0 20px; width: 100%; position: relative;
}

.hero-text-box { max-width: 650px; }

.badge-small {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 6px 16px;
    border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 1px; margin-bottom: 25px;
}
.red-dot {
    width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 8px var(--red);
}

.hero-text-box h1 {
    font-size: 55px; color: #fff; line-height: 1.1; font-weight: 900; margin-bottom: 20px; font-family: 'Poppins', sans-serif;
}
.hero-text-box h1 .red-text { color: var(--red); text-shadow: 0 0 20px rgba(227, 6, 19, 0.4); }
.hero-text-box p { color: #ccc; font-size: 16px; line-height: 1.6; margin-bottom: 40px; max-width: 90%; }

/* --- TEK PARÇA SİYAH CAM KUTU (YAN YANA 4'LÜ) --- */
.glass-box-wrapper {
    display: flex;
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 40px;
    padding: 20px 0;
}
.g-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 10px;
}
.g-item:last-child { border-right: none; }
.g-item i { color: var(--red); font-size: 26px; margin-bottom: 12px; }
.g-item span { color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; line-height: 1.4; }

/* Kırmızı Buton */
.btn-hero-red {
    display: inline-flex; align-items: center; background: var(--red); color: #fff;
    padding: 16px 35px; font-size: 16px; font-weight: 700; border-radius: 8px; gap: 12px; transition: var(--transition);
}
.btn-hero-red:hover { background: #b3000a; }

/* Slider Okları */
.slider-controls {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 20px; z-index: 20;
}
.control-btn {
    width: 50px; height: 50px; border-radius: 50%; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 18px; cursor: pointer; backdrop-filter: blur(5px); transition: all 0.3s;
}
.control-btn:hover { background: var(--red); border-color: var(--red); }
.slider-dots { display: flex; gap: 8px; }
.slider-dots .dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; cursor: pointer; }
.slider-dots .dot.active { background: var(--red); border-color: var(--red); }

/* --- BEYAZ BİLGİ BANDI (YAN YANA 4'LÜ) --- */
.bottom-info-bar {
    position: absolute; bottom: -5px; left: 0; width: 100%; z-index: 30; display: flex; justify-content: center; padding: 0 20px;
}
.info-bar-container {
    background: #fff; max-width: 1400px; width: 100%; border-radius: 15px 15px 0 0;
    display: flex; justify-content: space-between; padding: 25px 40px; box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}
.info-item {
    display: flex; align-items: center; gap: 15px; flex: 1; border-right: 1px solid #eee; padding: 0 15px;
}
.info-item:last-child { border-right: none; }
.info-item:first-child { padding-left: 0; }
.info-icon {
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 24px;
}
.info-text { display: flex; flex-direction: column; }
.info-text strong { font-size: 14px; color: #111; font-weight: 800; }
.info-text span { font-size: 12px; color: #666; font-weight: 500; }

/* ==========================================
   MOBİL UYUMLULUK (BOŞLUK SIFIRLANDI)
   ========================================== */
@media (max-width: 1100px) {
    .hero-slider-section { 
        height: auto; 
        min-height: auto; /* Alttaki gereksiz siyah boşluğu yapan kodu auto'ya çektik */
        padding-bottom: 25px; /* Beyaz kutunun altında minik hoş bir esneme payı */
    }
    .slide-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.95) 70%, #000 100%); }

    .slider-content-wrapper { align-items: flex-end; padding-bottom: 0px; padding-top: 130px; }
    
    .hero-text-box { text-align: center; margin: 0 auto; max-width: 100%; padding: 0 10px; }
    .hero-text-box h1 { font-size: 34px; margin-bottom: 15px; }
    .hero-text-box p { margin: 0 auto 25px auto; font-size: 14px; }
    
    .glass-box-wrapper {
        padding: 15px 5px;
        margin-bottom: 25px;
        border-radius: 10px;
    }
    .g-item { padding: 0 4px; }
    .g-item i { font-size: 20px; margin-bottom: 8px; }
    .g-item span { font-size: 9.5px; letter-spacing: 0; line-height: 1.2; }

    .slider-controls { width: 100%; right: 0; top: 35%; justify-content: space-between; padding: 0 10px; }
    .slider-dots { display: none; } 
    .control-btn { width: 40px; height: 40px; font-size: 14px; }

    /* Beyaz Kutu Mobilde Alt Boşluğu Kapattı */
    .bottom-info-bar { position: relative; bottom: 0; padding: 0 10px; margin-top: 25px; }
    .info-bar-container { 
        flex-direction: row; 
        gap: 0; 
        padding: 20px 5px; 
        border-radius: 15px; /* Alt köşeleri de yuvarlattık ki şık dursun */
    }
    .info-item { 
        flex-direction: column; 
        border-right: 1px solid #eee; 
        padding: 0 5px; 
        text-align: center;
        gap: 8px;
    }
    .info-item:last-child { border-right: none; }
    .info-icon { width: 30px; height: 30px; font-size: 20px; margin: 0 auto; }
    
    .info-text strong { font-size: 10px; line-height: 1.2; margin-bottom: 4px; }
    .info-text span { font-size: 9px; line-height: 1.1; }
}

@media (max-width: 480px) {
    .hero-text-box h1 { font-size: 28px; }
    .g-item span { font-size: 8px; }
    .g-item i { font-size: 16px; }
    .info-text strong { font-size: 9px; }
    .info-text span { font-size: 8px; }
    .btn-hero-red { width: 100%; justify-content: center; font-size: 14px; padding: 14px 20px; }
}