/* GENEL AYARLAR */
:root {
    --primary-dark: #1a1b1f; /* Wix temasındaki koyu zemin */
    --primary-blue: #0A2342; /* Yaşar Dağıtım Kurumsal */
    --theme-yellow: #FFC107; /* O temadaki ikonik sarı renk */
    --text-grey: #6c757d;
}

body {
    font-family: 'Oswald', sans-serif; /* Endüstriyel font */
    color: var(--primary-dark);
}

/* NAVBAR (Üst Menü) */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
    letter-spacing: -1px;
}

.navbar-transparent {
    position: absolute; /* Görselin üzerine binmesini sağlar */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Görselin önünde durması için */
    background: transparent !important; /* Arka planı sil */
    border: none !important;
    box-shadow: none !important;
    padding-top: 20px;
}

    .navbar-transparent .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 600;
        text-transform: uppercase;
    }

        .navbar-transparent .nav-link:hover {
            color: var(--theme-yellow) !important; /* Üzerine gelince sarı olsun */
        }

    /* Logo rengi beyaz olsun */
    .navbar-transparent .navbar-brand {
        color: #fff !important;
        font-weight: 900;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Okunurluk için gölge */
    }

.nav-link {
    font-weight: 600;
    color: var(--primary-dark) !important;
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-theme {
    background-color: var(--theme-yellow);
    color: #000;
    font-weight: 700;
    padding: 10px 25px;
    border: none;
    text-transform: uppercase;
    transition: 0.3s;
}

    .btn-theme:hover {
        background-color: #e0a800;
        color: #000;
    }

/* HERO SECTION (Wix Tarzı Tam Ekran Görsel) */
.hero-wrapper {
    position: relative;
    height: 85vh; /* Yüksekliği biraz artırdık */
    /* Resmin yolu: /img/hero-bg.jpg - Başına karartma ekledik */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/img/index.jpg');
    background-size: cover; /* Resmi ekrana sığdır */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Görselin üzerine hafif siyah perde */
.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    border-left: 5px solid var(--theme-yellow); /* Soldaki sarı çizgi */
    padding-left: 15px;
}

/* HESAPLAMA FORMU (Aşağıya inen şerit) */
.quote-strip {
    background-color: var(--theme-yellow);
    padding: 30px 0;
    margin-top: -50px; /* Görselin üzerine bindirme efekti */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-floating label {
    color: #666;
}

/* HİZMET KUTULARI (Grid) */
.service-card {
    border: 1px solid #eee;
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s;
    background: #fff;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-bottom: 5px solid var(--theme-yellow);
    }

.service-icon {
    font-size: 3rem;
    color: var(--theme-yellow);
    margin-bottom: 20px;
}

.service-title {
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary-blue);
}
.page-header {
    /* Arka plan resmi ve üzerine koyu lacivert filtre */
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.85)), url('/img/index.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Menünün arkasına denk gelmesi için yükseklik ayarları */
    padding-top: 160px; /* Üstten boşluk (Menü buraya gelecek) */
    padding-bottom: 60px;
    text-align: center;
    color: white;
    margin-bottom: 40px; /* İçerikle arasına boşluk */
}

    .page-header h1 {
        font-weight: 800;
        font-size: 3rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .page-header p {
        font-size: 1.1rem;
        opacity: 0.8;
    }
/* --- MOBİL MENÜ DÜZELTMESİ --- */

/* Ekran genişliği 991px'den küçükse (Tablet ve Mobil) bu kurallar çalışır */
@media (max-width: 991px) {

    .navbar-collapse {
        /* Menü açıldığında arka planı kurumsal lacivert yap */
        background-color: #0A2342;
        /* Biraz boşluk ve yumuşak kenarlar ekle */
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        /* Hafif gölge ver ki içerikten ayrışsın */
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* Mobilde linklerin arasını biraz açalım, daha rahat basılsın */
    .navbar-nav .nav-link {
        padding-left: 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* İnce çizgi */
        margin-bottom: 5px;
    }

    /* Son linkte çizgi olmasın */
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    .footer-dynamic {
        background: linear-gradient(135deg, #051529 0%, #0A2342 100%); /* Derinlikli Geçiş */
        position: relative;
        overflow: hidden;
        color: #b0b9c6; /* Göz yormayan gri-beyaz */
    }

        /* Arka plana lojistik haritası deseni (Silik) */
        .footer-dynamic::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Temsili dünya haritası deseni */
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
            background-size: cover;
            background-position: center;
            opacity: 0.05; /* Çok silik dursun, yazıların önüne geçmesin */
            pointer-events: none;
        }

    /* Linklerin üzerine gelince sağa kayma efekti */
    .footer-links li a {
        color: #b0b9c6;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-links li a:hover {
            color: #FFC107; /* Yaşar Dağıtım Sarısı */
            transform: translateX(10px); /* Sağa kaydır */
        }

    /* Sosyal Medya İkonları */
    .social-icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-right: 10px;
        transition: 0.3s;
        text-decoration: none;
    }

        .social-icon-btn:hover {
            background: #FFC107;
            color: #000;
            transform: translateY(-5px); /* Yukarı zıplama */
        }

    /* Footer Üstü Teklif Şeridi */
    .footer-cta {
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }
}