/* =========================================
   BATU EMLAK - PREMIUM STİL DOSYASI
========================================= */

/* 1. KÖK DEĞİŞKENLER (Renk Paleti & Temel Değerler) */
:root {
    --primary-dark: #0f172a;      /* Gece Mavisi */
    --primary-light: #1e293b;     /* Lacivert */
    --accent-gold: #d4af37;       /* Lüks Altın / Şampanya */
    --accent-hover: #b5952f;      /* Koyu Altın */
    --bg-light: #f8fafc;          /* Kırık Beyaz Arka Plan */
    --bg-white: #ffffff;          /* Saf Beyaz */
    --text-main: #334155;         /* Yumuşak Koyu Gri */
    --text-muted: #64748b;        /* Açık Gri */
    --border-light: #e2e8f0;      /* İnce Kenarlık Rengi */
    
    /* Gölgeler ve Köşeler */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 25px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 15px 35px rgba(212, 175, 55, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* 2. GENEL SIFIRLAMA & FONTLAR */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
}

/* 3. NAVBAR (ÜST MENÜ) */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 25px 20px; }
.logo { font-size: 28px; font-weight: 700; text-decoration: none; letter-spacing: 1px; }
.logo span { color: var(--accent-gold); font-style: italic; }
.nav-links { list-style: none; display: flex; gap: 35px; }
.nav-links li a { text-decoration: none; color: var(--primary-light); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s ease; position: relative; }
.nav-links li a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--accent-gold); transition: width 0.3s ease; }
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.nav-links li a:hover, .nav-links li a.active { color: var(--accent-gold); }

/* 4. ANA SAYFA - HERO SECTION */
.hero {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    height: 85vh; display: flex; align-items: center; padding: 0 10%;
}
.hero-content { max-width: 650px; color: var(--bg-white); }
.hero-subtitle { font-family: 'Montserrat', sans-serif; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 4px; font-size: 14px; font-weight: 600; margin-bottom: 20px; display: block; }
.hero h1 { font-size: 56px; color: var(--bg-white); line-height: 1.1; margin-bottom: 30px; }
.hero p { font-size: 18px; font-weight: 300; margin-bottom: 40px; color: #e2e8f0; line-height: 1.8; }

/* 5. GENEL YAPILAR VE BAŞLIKLAR */
.container { max-width: 1200px; margin: 60px auto; padding: 0 20px; flex: 1; width: 100%; }
.page-title { 
    font-size: 40px; 
    text-align: center; 
    margin-bottom: 50px; 
    position: relative; 
    display: block; /* inline-block ve left:50% sildik, tam ortaya oturacak */
    width: 100%;
}
.page-title::after { 
    content: ''; 
    display: block; 
    width: 60px; 
    height: 3px; 
    background: var(--accent-gold); 
    margin: 15px auto 0; 
}
.section-title { font-size: 28px; color: var(--primary-dark); margin-bottom: 25px; padding-left: 15px; border-left: 4px solid var(--accent-gold); }
.bolum-baslik { color: var(--primary-dark); margin: 30px 0 15px 0; border-bottom: 1px solid var(--border-light); padding-bottom: 10px; font-size: 22px; }
.loading-text { text-align: center; font-size: 18px; color: var(--text-muted); padding: 50px; grid-column: 1 / -1; font-style: italic; }

/* 6. BUTONLAR */
.btn-primary, .btn-detay, .btn-incele, .btn-submit, .btn-randevu {
    background-color: var(--accent-gold); color: var(--bg-white); padding: 14px 28px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: all 0.4s ease; display: inline-block; text-align: center; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); width: 100%;
}
.btn-primary { width: auto; padding: 16px 32px; }
.btn-incele { width: auto; background-color: var(--primary-dark); box-shadow: none; }
.btn-primary:hover, .btn-detay:hover, .btn-submit:hover, .btn-randevu:hover { background-color: var(--primary-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-incele:hover { background-color: var(--accent-gold); }
.btn-randevu:disabled, .btn-submit:disabled { background-color: var(--text-muted); cursor: not-allowed; transform: none; box-shadow: none; }

/* 7. KARTLAR (İLANLAR VE PROJELER) */
.grid, .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; margin-bottom: 50px; }
.card, .project-card { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.03); position: relative; display: flex; flex-direction: column; }
.card:hover, .project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.card img, .project-card img { width: 100%; height: 250px; object-fit: cover; border-bottom: 3px solid var(--accent-gold); }
.card-content, .project-info { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.card-title, .project-info h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.4; }
.card-price { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700; color: var(--accent-gold); margin-bottom: 15px; }
.project-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; flex: 1; }

/* Proje Etiketleri */
.badge { position: absolute; top: 15px; right: 15px; padding: 6px 15px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--bg-white); box-shadow: var(--shadow-sm); }
.badge.active { background-color: #10b981; } /* Yeşil */
.badge.future { background-color: var(--accent-gold); }

/* 8. İLAN DETAY SAYFASI ÖZEL YAPISI */
.detay-container { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.sol-kolon { flex: 2; min-width: 320px; background: var(--bg-white); border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid rgba(0,0,0,0.03); }
.sag-kolon { flex: 1; min-width: 320px; position: sticky; top: 120px; }

/* Detay - Medya Galerisi */
.medya-galerisi { width: 100%; background: #000; position: relative; }
.ana-foto { width: 100%; height: 450px; object-fit: cover; display: block; }
.kucuk-fotolar { display: flex; gap: 10px; padding: 15px; background: var(--bg-white); overflow-x: auto; border-bottom: 1px solid var(--border-light); }
.kucuk-fotolar img { width: 100px; height: 70px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; opacity: 0.7; }
.kucuk-fotolar img:hover { opacity: 1; border-color: var(--accent-gold); transform: scale(1.05); }

/* Detay - İçerik */
.ilan-icerik { padding: 35px; }
.ilan-baslik-fiyat { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.ilan-baslik { font-size: 32px; color: var(--primary-dark); flex: 1; min-width: 100%; line-height: 1.3; }
.ilan-fiyat { font-size: 36px; font-weight: 700; color: var(--accent-gold); }
.ilan-tur { background: var(--primary-light); color: var(--accent-gold); padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.ilan-aciklama p { color: var(--text-main); line-height: 1.8; text-align: justify; font-size: 15px; }

/* Detay - Özellikler (Premium İkonlu Grid) */
.ozellikler-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.ozellik-item { display: flex; align-items: center; background: var(--bg-light); padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-light); transition: all 0.3s ease; }
.ozellik-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--accent-gold); background: var(--bg-white); }
.ozellik-ikon { background: var(--bg-white); color: var(--accent-gold); font-size: 22px; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); margin-right: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.04); transition: all 0.3s; }
.ozellik-item:hover .ozellik-ikon { background: var(--accent-gold); color: var(--bg-white); }
.ozellik-metin { display: flex; flex-direction: column; }
.ozellik-baslik { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ozellik-deger { font-size: 15px; font-weight: 700; color: var(--primary-dark); }

/* Detay - Harita */
.harita-container { width: 100%; height: 350px; border-radius: var(--radius-md); overflow: hidden; margin-top: 20px; border: 1px solid var(--border-light); }
.harita-container iframe { width: 100%; height: 100%; border: none; }

/* 9. FORMLAR VE İLETİŞİM / DETAY SAĞ KOLON */
/* 9. FORMLAR VE İLETİŞİM / DETAY SAĞ KOLON */
.form-kutusu { background: var(--primary-dark); color: var(--bg-white); padding: 40px 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border-top: 4px solid var(--accent-gold); }
.form-kutusu h3 { margin-bottom: 25px; font-size: 24px; text-align: center; color: var(--bg-white); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-dark); }

/* Genel Form Kutucukları (İletişim Sayfası Gibi Açık Arka Planlar İçin) */
.form-group input, .form-group textarea { 
    width: 100%; padding: 14px; border: 1px solid var(--border-light); 
    border-radius: var(--radius-sm); font-size: 15px; font-family: 'Montserrat', sans-serif; 
    background: #f8fafc; color: var(--text-main); transition: all 0.3s ease; 
}
.form-group input:focus, .form-group textarea:focus { 
    outline: none; border-color: var(--accent-gold); background: var(--bg-white); 
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1); 
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Sadece Koyu Kutudaki (İlan Detay) Form Elemanlarına Özel Renkler */
.form-kutusu .form-group label { color: #cbd5e1; }
.form-kutusu .form-group input, .form-kutusu .form-group textarea { 
    border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: var(--bg-white); 
}
.form-kutusu .form-group input:focus, .form-kutusu .form-group textarea:focus { 
    background: rgba(255,255,255,0.1); 
}
.form-kutusu .form-group input::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
/* İletişim / Hakkımızda Sayfası İçerikleri */
.content-box { background: var(--bg-white); padding: 50px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }
.content-box h2 { color: var(--primary-dark); margin: 30px 0 15px 0; font-size: 26px; }
.content-box p { color: var(--text-main); margin-bottom: 20px; text-align: justify; font-size: 16px; }
.contact-wrapper { display: flex; gap: 40px; flex-wrap: wrap; }
.contact-info { background: var(--bg-white); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); flex: 1; min-width: 320px; border: 1px solid var(--border-light); }
.contact-form-container { flex: 1; min-width: 320px; }
.contact-info h3 { margin-bottom: 25px; font-size: 24px; border-bottom: 2px solid var(--accent-gold); padding-bottom: 10px; display: inline-block; }
.contact-info p { margin-bottom: 15px; color: var(--text-main); display: flex; align-items: center; gap: 10px; font-size: 15px; }
.contact-info strong { color: var(--primary-dark); min-width: 120px; }

/* 10. FOOTER */
footer { background-color: var(--primary-dark); color: #cbd5e1; text-align: center; padding: 35px 20px; margin-top: auto; font-size: 14px; letter-spacing: 1px; border-top: 2px solid var(--accent-gold); }
footer p { opacity: 0.8; }

/* 11. MOBİL UYUM (RESPONSIVE) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
    transition: color 0.3s ease;
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle:hover {
    color: var(--accent-gold);
}

/* Filtre Elemanları Genel Stilleri */
.filtre-grup {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 150px;
}
.filtre-grup label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 2px;
}
.filtre-grup select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #fff;
    color: var(--text-main);
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}
.filtre-grup select:focus {
    border-color: var(--accent-gold);
}
.admin-login-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* Navbar ve Mobil Çekmece Menüsü */
    nav {
        padding: 15px 15px;
    }
    .logo {
        font-size: 22px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    nav > .btn-primary {
        display: none !important;
    }
    .admin-login-mobile {
        display: block !important;
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
        border-left: 1px solid rgba(212, 175, 55, 0.3);
        padding: 40px;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links li a {
        color: rgba(255, 255, 255, 0.85);
        font-size: 18px;
        letter-spacing: 2.5px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .nav-links li a::after {
        bottom: 0;
    }
    .nav-links li a:hover, .nav-links li a.active {
        color: var(--accent-gold);
    }

    /* Hero Bölümü */
    .hero {
        padding: 0 20px;
        height: 70vh;
    }
    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .hero p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    /* Genel Yapılar */
    .container {
        margin: 30px auto;
        padding: 0 15px;
    }
    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .bolum-baslik {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }

    /* Grids ve Kartlar */
    .grid, .projects-grid {
        gap: 20px;
        margin-bottom: 30px;
    }
    .card img, .project-card img {
        height: 200px;
    }

    /* Detay Sayfası */
    .detay-container {
        flex-direction: column;
        gap: 25px;
    }
    .sol-kolon, .sag-kolon {
        min-width: unset !important;
        width: 100%;
    }
    .sag-kolon {
        position: static;
    }
    .medya-galerisi .ana-foto {
        height: 250px;
    }
    .kucuk-fotolar {
        padding: 10px;
    }
    .kucuk-fotolar img {
        width: 80px;
        height: 55px;
    }
    .ilan-icerik {
        padding: 20px;
    }
    .ilan-baslik-fiyat {
        gap: 12px;
        margin-bottom: 20px;
    }
    .ilan-baslik {
        font-size: 22px;
    }
    .ilan-fiyat {
        font-size: 26px;
        width: 100%;
    }
    
    /* Özellikler Grid */
    .ozellikler-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
        margin-top: 15px;
    }
    .ozellik-item {
        padding: 12px;
    }
    .ozellik-ikon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 10px;
    }
    .ozellik-deger {
        font-size: 13px;
    }
    .ozellik-baslik {
        font-size: 10px;
    }
    .harita-container {
        height: 250px;
        margin-top: 15px;
    }

    /* Formlar ve Kutular */
    .form-kutusu {
        padding: 25px 20px;
    }
    .content-box {
        padding: 25px 15px;
    }
    .contact-wrapper {
        gap: 20px;
    }
    .contact-info, .contact-form-container {
        min-width: unset !important;
        width: 100%;
        padding: 25px 20px !important;
    }

    /* Lightbox */
    #lightbox-resim {
        max-width: 95%;
        max-height: 80%;
    }
    #lightbox-galeri span[onclick*="lightboxDegistir"] {
        font-size: 40px !important;
        padding: 10px !important;
    }
    #lightbox-galeri span[onclick="lightboxKapat()"] {
        font-size: 36px !important;
        right: 20px !important;
        top: 10px !important;
    }
}
/* ==========================================
   MODAL (POP-UP) TASARIMLARI
========================================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(5px);
    z-index: 2000; display: none; align-items: center; justify-content: center;
}
.modal-content {
    background: var(--bg-white); width: 90%; max-width: 600px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-hover);
    max-height: 90vh; overflow-y: auto; position: relative; padding: 30px;
}
.modal-close {
    position: absolute; top: 20px; right: 20px; font-size: 24px;
    color: var(--text-muted); cursor: pointer; transition: 0.3s;
}
.modal-close:hover { color: #dc2626; }
.modal-header { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--primary-dark); margin-bottom: 20px; border-bottom: 2px solid var(--accent-gold); padding-bottom: 10px; }

/* Mevcut Fotoğraflar Grid Yapısı */
.edit-photos-grid { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 15px; margin-bottom: 15px; }
.edit-photo-item { position: relative; min-width: 120px; height: 90px; }
.edit-photo-item img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.edit-photo-delete { position: absolute; top: 5px; right: 5px; background: #dc2626; color: white; width: 25px; height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 12px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
/* İlanlar Grid Düzeni (2 Sütun) */
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* İlanları 2 eşit sütuna böler */
    gap: 30px; /* İlanlar arası boşluk */
    align-items: start;
}

/* Mobilde (Telefonlarda) tek sütuna düşürür */
@media (max-width: 900px) {
    .ilanlar-grid { grid-template-columns: 1fr; } 
}

/* Fotoğrafların esnemesini (çirkinleşmesini) engeller */
.card img {
    width: 100%;
    height: 280px; /* Sabit bir yükseklik */
    object-fit: cover; /* Resmi ezmeden, kaliteli şekilde kırparak oturtur */
    border-radius: 12px 12px 0 0;
}
/* TAM EKRAN GALERİ (LIGHTBOX) STİLLERİ */
.lightbox {
    display: none; position: fixed; z-index: 9999; top: 0; left: 0; 
    width: 100%; height: 100%; background: rgba(0,0,0,0.9); 
    align-items: center; justify-content: center;
}
.lightbox-icerik { max-width: 90%; max-height: 90%; border-radius: 8px; object-fit: contain; }
.lightbox-kapat { position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; cursor: pointer; transition: 0.3s; }
.lightbox-kapat:hover { color: #d4af37; }
.lightbox-onceki, .lightbox-sonraki { 
    cursor: pointer; position: absolute; top: 50%; width: auto; padding: 20px; 
    margin-top: -30px; color: white; font-weight: bold; font-size: 30px; 
    transition: 0.3s ease; user-select: none; background: rgba(0,0,0,0.5); border-radius: 5px;
}
.lightbox-onceki { left: 20px; }
.lightbox-sonraki { right: 20px; }
.lightbox-onceki:hover, .lightbox-sonraki:hover { background-color: rgba(212, 175, 55, 0.8); }
/* ==========================================
   GOOGLE TRANSLATE KESİN YOK ETME ZIRHI V3
========================================== */
body { top: 0px !important; position: static !important; }
html { top: 0px !important; position: static !important; }
iframe.goog-te-banner-frame { display: none !important; visibility: hidden !important; }
.skiptranslate > iframe { display: none !important; }
.goog-logo-link { display: none !important; }
.goog-te-gadget { color: transparent !important; font-size: 0px !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }
/* ==========================================
   BACOS BEYAZ VIP DİL MENÜSÜ TASARIMI
========================================== */
.bacos-lang-menu { position: relative; margin-left: 10px; display: inline-block; padding-bottom: 15px; /* Fare kaymasını engeller */ margin-bottom: -15px; }
.bacos-lang-btn { background: #ffffff; border: 1px solid #cbd5e1; color: #334155; padding: 8px 15px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 13px; display: flex; align-items: center; gap: 8px; transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.bacos-lang-btn:hover { border-color: #d4af37; color: #0f172a; box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.bacos-lang-dropdown { display: none; position: absolute; top: 100%; right: 0; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); min-width: 160px; z-index: 1000; padding: 8px 0; margin-top: 0px; opacity: 0; transform: translateY(-10px); transition: all 0.3s ease; }
.bacos-lang-menu:hover .bacos-lang-dropdown { display: block; opacity: 1; transform: translateY(0); }
.bacos-lang-item { padding: 10px 15px; color: #334155; cursor: pointer; display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; transition: 0.2s; }
.bacos-lang-item img { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; border: 1px solid #eee; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.bacos-lang-item:hover { background: #f8fafc; color: #b45309; padding-left: 20px; border-left: 3px solid #d4af37; }