/* ============================================
   LANGUAGE SWITCHER - RESPONSIVE
   ============================================ */

.company_info {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---- LANGUAGE SWITCHER CONTAINER ---- */
.language-switcher {
    position: relative;
    display: inline-block;
}

/* 🔥 BAYRAKLAR YAN YANA CONTAINER */
.lang-flags-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.lang-flags-container:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* FLAG BUTTON - DAHA BÜYÜK */
.lang-flag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    padding: 3px;
    outline: none;
    text-decoration: none;
}

.lang-flag-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.lang-flag-btn:hover img {
    filter: brightness(1.3);
    transform: scale(1.15);
}

/* AKTIF FLAG */
.lang-flag-btn.active {
    border-color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.lang-flag-btn.active img {
    filter: brightness(1.4);
}

/* ---- CONTACT ITEMS ---- */
.contact-item {
    list-style: none;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 10px;
    border-radius: 4px;
}

.contact-item a:hover {
    opacity: 0.85;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 18px;
    color: #ffffff;
}

.whatsapp-item i {
    color: #25D366;
}

.contact-text {
    display: inline;
    font-size: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Desktop (1200px+) - BÜYÜK BAYRAKLAR */
@media (min-width: 1200px) {
    .company_info {
        gap: 20px;
    }

    .lang-flags-container {
        padding: 8px 10px;
        gap: 10px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .lang-flag-btn {
        width: 48px;
        height: 32px;
    }

    .lang-flag-btn:hover {
        transform: scale(1.15);
    }

    .lang-flag-btn.active {
        transform: scale(1.1);
    }

    .contact-text {
        display: inline;
    }

    .phone-item-desktop {
        display: list-item !important;
    }

    .phone-item-mobile {
        display: none !important;
    }

    .contact-item a {
        font-size: 13px;
        gap: 8px;
        padding: 8px 12px;
    }

    .contact-item i {
        font-size: 20px;
    }
}

/* Tablet (768px - 1199px) - ORTA BAYRAKLAR */
@media (768px <= width < 1200px) {
    .company_info {
        gap: 14px;
    }

    .lang-flags-container {
        padding: 7px 8px;
        gap: 8px;
        background: rgba(255, 255, 255, 0.11);
        border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .lang-flag-btn {
        width: 42px;
        height: 29px;
    }

    .lang-flag-btn:hover {
        transform: scale(1.12);
    }

    .lang-flag-btn.active {
        transform: scale(1.08);
    }

    .contact-text {
        display: inline;
    }

    .phone-item-desktop {
        display: list-item !important;
    }

    .phone-item-mobile {
        display: none !important;
    }

    .contact-item a {
        font-size: 12px;
        gap: 6px;
        padding: 7px 10px;
    }

    .contact-item i {
        font-size: 18px;
    }
}

/* Mobile (< 768px) - BÜYÜTEREK TAŞAN BAYRAKLAR */
@media (max-width: 767px) {
    .company_info {
        gap: 10px;
        padding: 8px 0;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .lang-flags-container {
        padding: 6px 6px;
        gap: 6px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        min-width: fit-content;
        flex-shrink: 0;
    }

    .lang-flag-btn {
        width: 38px;
        height: 26px;
        flex-shrink: 0;
    }

    .lang-flag-btn:hover {
        transform: scale(1.18);
    }

    .lang-flag-btn.active {
        transform: scale(1.12);
    }

    .contact-text {
        display: none;
    }

    .phone-item-desktop {
        display: none !important;
    }

    .phone-item-mobile {
        display: list-item !important;
    }

    .contact-item a {
        font-size: 11px;
        gap: 4px;
        padding: 6px 8px;
    }

    .contact-item i {
        font-size: 16px;
    }
}

/* ============================================
   🔥 GOOGLE VISIBILITY OVERRIDE
   ============================================ */

.language-switcher,
.lang-flags-container,
.lang-flag-btn {
    visibility: visible !important;
    opacity: 1 !important;
}
