/* --- Slider Temel Ayarları --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 850px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px; 
    margin-bottom: 50px; 
}

/* Arka Plan Resimleri Container'ı */
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Tekil Slayt Katmanları */
.slider-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; 
}

.slider-bg .slide.active {
    opacity: 1;
}

/* Resim Yerleşim ve Görünürlük Ayarları */
.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-desktop {
    display: block; 
}

.slide-mobile {
    display: none;  
}

/* Yazıların Okunması İçin Karartma Efekti */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 2;
}

/* --- Metin ve İçerik Alanı --- */
.hero-content-wrapper {
    position: relative;
    z-index: 5; 
}

.hero-text-box {
    max-width: 600px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 5px;
    display: block;
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Masaüstü Buton Tasarımı */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border: 1px solid var(--gold);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--gold);
}

/* Slider Noktaları */
.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.slider-dots .dot {
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--gold);
}

/* --- Özellikler Kutusu (Siyah Kutu) --- */
.features-container {
    position: absolute;
    bottom: 40px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.features-box {
    background-color: #1e1b18; 
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.feature-item .icon-box i {
    font-size: 35px;
    color: var(--gold);
}

.feature-item .text-box h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item .text-box p {
    color: #aaaaaa;
    font-size: 12px;
    line-height: 1.4;
}

.feature-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

/* Sadece Mobilde Görünecek İletişim Kutusu */
.mobile-quick-contact {
    display: none;
}

/* --- Mobil Uyumluluk (Burası Tamamen Gönderdiğin 2. Resme Göre Yenilendi Kankacım) --- */
@media (max-width: 1100px) {
    .slide-desktop { display: none; }
    .slide-mobile { display: block; }

    .hero-section {
        min-height: 700px; /* Mobilde de arka plan resminin kocaman görünmesi için yüksekliği sabitledik */
        padding-top: 60px;
        margin-bottom: 30px;
    }

    .hero-text-box {
        text-align: center;
        margin: 0 auto;
    }

    .slider-overlay {
        background: rgba(0,0,0,0.6); 
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-btn {
        background-color: var(--gold);
        border: none;
        padding: 12px 30px;
        font-size: 13px;
    }

    .slider-dots {
        justify-content: center;
        margin-bottom: 20px;
    }

    /* SİYAH KUTU - Mobilde 4'lü Yan Yana */
    .features-container {
        position: absolute;
        bottom: 120px; /* Beyaz kutunun hemen üstüne yerleştirdik */
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
    }

    .features-box {
        flex-wrap: nowrap; /* Asla alt alta düşmesinler diye sabitledik */
        padding: 15px 5px;
        gap: 5px;
    }

    .feature-divider {
        display: block; /* Aradaki çizgileri geri getirdik */
        margin: 0;
        height: 40px;
    }

    .feature-item {
        flex: 1; 
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .feature-item .icon-box i {
        font-size: 22px;
    }

    .feature-item .text-box h5 {
        font-size: 9px; /* Ekrana sığması için yazıları küçülttük */
        line-height: 1.2;
    }

    .feature-item .text-box p {
        font-size: 8px; /* Tam tasarımdaki gibi minik ve şık */
        line-height: 1.2;
    }

    /* BEYAZ KUTU - Mobilde 3'lü Yan Yana */
    .mobile-quick-contact {
        display: block;
        position: absolute;
        bottom: 15px; /* En alta yapıştırdık */
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .quick-contact-box {
        background-color: #f8f8f8;
        border-radius: 10px;
        display: flex;
        flex-direction: row; /* Yan yana dizilmelerini sağladık */
        flex-wrap: nowrap; /* Asla alta düşmez */
        justify-content: space-between;
        padding: 15px 5px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        flex: 1;
        text-align: center;
        border-right: 1px solid #e0e0e0;
        border-bottom: none; /* Alt çizgiyi iptal edip dik çizgi ekledik */
        padding-bottom: 0;
    }

    .contact-item:last-child {
        border-right: none;
    }

    .contact-item i {
        font-size: 18px;
        color: var(--gold);
        margin-bottom: 5px;
    }

    .contact-item .title {
        font-size: 9px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .contact-item .desc {
        font-size: 8px;
        color: var(--text-gray);
    }
}

/* Daha küçük telefon ekranları için ekstra ince ayar */
@media (max-width: 400px) {
    .hero-title {
        font-size: 32px;
    }
    
    .feature-item .text-box h5 {
        font-size: 8px;
    }

    .feature-item .text-box p {
        font-size: 7px; 
    }
    
    .contact-item .title {
        font-size: 8px;
    }
    
    .contact-item .desc {
        font-size: 7px;
    }
}