/* ====== SUB HEADER TAM HİZALAMA ====== */
.sub-header {
    background: #1f2326 !important;
    padding: 12px 0 !important;
    font-size: 0.9rem;
}

/* Row'u tam hizaya sok */
.sub-header .container .row {
    display: flex !important;
    justify-content: space-between !important; /* Sol ve sağ ayrılacak */
    align-items: center !important;
    flex-wrap: nowrap !important; /* Asla aşağı kaymasın */
}

/* Sol blok (Konum – Telefon – Mail) */
.sub-header .col-md-8 {
    display: flex !important;
    align-items: center !important;
    gap: 35px !important; /* aralar açılacak */
    flex-wrap: nowrap !important;
}

/* Sağ blok (Bayraklar) */
.sub-header .col-md-4 {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 15px !important;
}

/* Buradaki tüm yazılar düzgün dursun */
.sub-header span,
.sub-header p,
.sub-header a {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    color: #fff !important;
    white-space: nowrap !important; /* hiçbir şey alt satıra düşmez */
}

/* İkonları hizala */
.sub-header i {
    color: #d4b58a !important;   /* Lotus altın tonu */
    margin-right: 6px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    position: relative;
    top: 1px;
}

/* Bayraklar düzgün hizalansın */
.sub-header img {
    width: 22px !important;
    height: auto !important;
    display: inline-block !important;
    position: relative;
    top: 0;
}

/* Mobil düzeltme */
@media(max-width: 768px){
    .sub-header .container .row {
        flex-direction: column !important;
        gap: 10px;
    }

    .sub-header .col-md-8,
    .sub-header .col-md-4 {
        justify-content: center !important;
    }
}
