/* ================= 1. DEĞİŞKENLER & KARANLIK MOD (SABİT) ================= */
:root {
    /* Ana Tema Renkleri */
    --bg-color: #f8f9fa;
    --text-color: #212529;
    --muted-yazi: #6c757d;
    --border-color: rgba(0, 0, 0, 0.1);

    /* Vurgu Renkleri */
    --primary-color: #e67e22;
    --primary-color-hover: #cf6c1a;
    --danger-color: #d32f2f;

    /* Bileşen Renkleri */
    --top-bar-bg: #1a1a1a;
    --nav-bg: #ffffff;
    --nav-link: #444444;
    --nav-shadow: rgba(0, 0, 0, 0.1);
    --dropdown-bg: #ffffff;
    --card-bg: #f2f2f2;
    --card-image-bg: #ffffff;
    
    /* MODAL ŞEFFAFLIK AYARI (YENİ) */
    --modal-bg: #f4f4f4;
    --modal-glass-bg: rgba(255, 255, 255, 0.15); /* Resim tarafı için şeffaflık */
    --modal-text-bg: rgba(255, 255, 255, 0.90); /* Yazı tarafı için şeffaflık */

    --form-input-bg: #ffffff;
    --form-input-border: #eee;
    --form-input-text: #333;
}

[data-theme="dark"] {
    /* Ana Tema Renkleri */
    --bg-color: #121212;
    --text-color: #f8f9fa;
    --muted-yazi: #adb5bd;
    --border-color: #333;

    /* Bileşen Renkleri */
    --top-bar-bg: #000000;
    --nav-bg: #1e1e1e;
    --nav-link: #ffffff;
    --nav-shadow: rgba(255, 255, 255, 0.08);
    --dropdown-bg: #1a1a1a;
    --card-bg: #242424;
    --card-image-bg: transparent;

    /* MODAL ŞEFFAFLIK AYARI - DARK (YENİ) */
    --modal-bg: #1e1e1e;
    --modal-glass-bg: rgba(0, 0, 0, 0.2); 
    --modal-text-bg: rgba(30, 30, 30, 0.95);

    --form-input-bg: #1e1e1e;
    --form-input-border: #333;
    --form-input-text: #f8f9fa;
}

/* ================= 2. GENEL AYARLAR & TOPBAR ================= */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    transition: 0.3s;
}

a { 
    text-decoration: none !important; 
}

.top-bar {
    background-color: var(--top-bar-bg);
    color: #fff; 
    font-size: 13px; 
    padding: 10px 0; 
    border-bottom: 1px solid var(--border-color);
    position: relative; 
    z-index: 1002; /* Logonun üstünde kalması için senin özel ayarın */
}

.top-info { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
}

.top-info a { 
    color: #ccc; 
    display: flex; 
    align-items: center; 
    transition: 0.3s; 
}

.top-info a i { 
    color: var(--primary-color); 
    margin-right: 8px; 
    font-size: 14px; 
}

.top-info a:hover { 
    color: var(--primary-color); 
}

.top-social span { 
    color: #888; 
    margin-right: 10px; 
    font-size: 12px; 
}

.top-social a { 
    color: #fff; 
    margin-left: 10px; 
    font-size: 16px; 
    transition: 0.3s; 
}

.top-social a:hover { 
    color: var(--primary-color); 
}

/* Mobil için top-bar responsive (767.98px ayarın) */
@media (max-width: 767.98px) {
    .top-bar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .top-bar .container.d-flex {
        flex-direction: column;
        align-items: stretch;
    }
    .top-bar .d-flex.align-items-center.gap-5 {
        gap: 5px !important;
        justify-content: center;
        margin-bottom: 5px;
    }
    .top-info {
        justify-content: center;
        margin-top: 0;
    }
    .top-info a {
        font-size: 12px;
    }
    .top-social a {
        font-size: 14px;
    }
}

/* ================= 3. NAVBAR & MENÜ ================= */
/* 1. Navbar yüksekliğini sabitliyoruz */
.navbar {
    height: 70px; 
    position: relative;
    z-index: 1000;
    background-color: var(--nav-bg);
    box-shadow: 0 4px 15px var(--nav-shadow);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* 2. Logo kutusu ve bağımsız resim ayarı */
.logo-kutu {
    position: relative;
    width: 250px; 
}

.logo-kutu img {
    position: absolute;
    top: -80px;    /* Senin o meşhur yukarı kaydırma ayarın */
    left: -60px;
    width: 280px;  
    height: auto;
    z-index: 1001; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Mobil logo ayarları */
@media (max-width: 767.98px) {
    .logo-kutu {
        width: 150px;
    }
    .logo-kutu img {
        top: -50px;
        left: auto;
        right: -30px;
        width: 180px;
    }
}

/* 3. Menü Linkleri */
.nav-link {
    font-size: 14px; 
    font-weight: 700; 
    color: var(--nav-link);
    text-transform: uppercase; 
    position: relative; 
    transition: 0.3s; 
    margin: 0 8px;
}

/* Link altı çizgi efekti */
.nav-link:not(.dropdown-toggle)::after {
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: 0; 
    left: 0;
    background-color: var(--primary-color); 
    transition: width 0.3s;
}

.nav-link:not(.dropdown-toggle):hover::after, 
.nav-link:not(.dropdown-toggle).active::after { 
    width: 100%; 
}

.nav-link:hover, .nav-link.active { 
    color: var(--primary-color); 
}

/* 4. Mobil Menü ve Dropdown Düzenlemeleri */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--nav-bg); 
        margin-top: 10px;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }

    /* Toggler sola, Logo sağa (row-reverse) */
    .navbar > .container {
        flex-direction: row-reverse;
    }

    .logo-kutu img {
        left: auto;
        right: -60px;
    }

    .dropdown-menu {
        background-color: var(--dropdown-bg);
        border: none;
        padding-left: 15px;
    }

    .dropdown-item {
        color: var(--nav-link);
    }

    .navbar-nav {
        align-items: flex-start !important; 
        margin-left: 0 !important;       
    }
}

/* 5. Hamburger Menü İkonları */
.navbar-toggler {
    border-color: rgba(0,0,0,0.1); 
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
}

/* Işık modunda siyah ikon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Karanlık modda beyaz ikon */
[data-theme="dark"] .navbar-toggler {
    border-color: rgba(255,255,255,0.1); 
}

[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* 6. Dropdown Modernize */
.dropdown-menu {
    margin-top: 0 !important; 
    border: none;
    background-color: var(--dropdown-bg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
    border-radius: 12px; 
    padding: 10px 0;
    min-width: 220px;
    overflow: hidden; 
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    pointer-events: all !important; 
}

.dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

/* Tema anahtarı yuvarlağı */
.slider.round {
    background-color: #444;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 20px;
    transition: 0.4s;
}

/* ================= 4. SLIDER ================= */
.slider-img { 
    height: 850px; 
    width: 60%; 
    object-fit: cover; 
    object-position: center; 
}

/* Zorunlu tam sığdırma sınıfı */
.tam-sigdir { 
    object-fit: fill !important; 
}

/* Mobil için slider responsive (768px ayarın) */
@media (max-width: 768px) { 
    .slider-img { 
        height: 150px; 
        width: 100% !important;
    } 
}
/* ================= 5. ÜRÜN VİTRİNİ & KARTLAR (RESİM 1 DÜZELTİLDİ) ================= */
.urun-karti {
    background: var(--card-bg);
    border: 1px solid #eee; 
    border-radius: 10px; 
    overflow: hidden;
    transition: all 0.3s ease; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    cursor: pointer;
}

[data-theme="dark"] .urun-karti { 
    border-color: var(--border-color); 
}

.urun-karti:hover { 
    transform: translateY(-7px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
    border-color: var(--primary-color); 
}

.card-img-wrapper {
    padding: 30px; 
    background: var(--card-image-bg); 
    text-align: center; 
    height: 220px;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.card-img-wrapper img { 
    max-height: 100%; 
    max-width: 100%; 
    object-fit: contain; 
    transition: transform 0.3s; 
}

.card-body {
    padding: 30px; 
    text-align: center; 
    flex-grow: 1;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}

.card-title {
    font-weight: 700; 
    font-size: 16px; 
    color: var(--text-color); 
    margin-bottom: 15px;
}

.fiyat-etiketi { 
    color: var(--danger-color); 
    font-weight: 800; 
    font-size: 18px; 
    margin-top: auto; 
}

/* "İncele" Yazısı Karanlık Mod Düzeltmesi */
.card-body a { 
    color: var(--primary-color); 
    font-weight: 700; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

[data-theme="dark"] .card-body a { 
    color: var(--text-color); 
}

/* Hizmetler bölümü responsive */
.hizmetler-bolumu .hizmet-karti {
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .hizmetler-bolumu .hizmet-karti .ikon-kutusu {
        font-size: 2.5rem; /* 2.5x düzeltildi */
    }
    .hizmetler-bolumu .hizmet-karti h4 {
        font-size: 18px;
    }
    .hizmetler-bolumu .hizmet-karti p {
        font-size: 14px;
    }
}

/* 5'li Yan Yana Görünüm (Large Ekranlar) */
@media (min-width: 992px) {
    .row-cols-lg-5 > .col { 
        flex: 0 0 auto; 
        width: 20% !important; 
    }
}

/* ================= DROPDOWN HOVER & ANİMASYON (AÇILMA/KAPANMA) ================= */

/* 1. Mobil ve Genel Ayarlar (Animasyonlu Geçiş) */
.dropdown-menu {
    display: block !important; /* Menüyü DOM'da tut ama gizle */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    padding: 0 !important; 
    border-width: 0;
}

/* Açık Durum */
.dropdown-menu.show {
    max-height: 500px; 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 10px 0 !important; 
    border-width: 1px;
}

/* 2. Masaüstü (992px+) Özel Hover Köprüsü */
@media (min-width: 992px) {
    .nav-item.dropdown {
        position: relative; 
    }

    /* Menü ile link arasındaki boşluğu kapatan köprü */
    .nav-item.dropdown::after {
        content: '';
        position: absolute;
        top: 100%; 
        left: 0;
        right: 0;
        height: 10px; 
        background-color: transparent; 
    }

    .nav-item .dropdown-menu {
        max-height: none;
        overflow: visible;
    }

    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 10px 0 !important;
        border-width: 1px;
    }
}

/* Dropdown Elemanları */
.dropdown-item {
    position: relative;
    z-index: 1000;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(230, 126, 34, 0.08);
    color: var(--primary-color);
    padding-left: 28px; /* Sağa kayma efekti */
}

/* ================= 6. MODAL / POP-UP (CAROUSEL FİX) ================= */

/* --- GENEL MODAL VE ŞEFFAFLIK --- */
.modal-content {
    background-color: var(--modal-bg);
    color: var(--text-color); /* modal-text yerine değişkenle tam uyum sağladık */
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

/* HTML'deki o inatçı bg-light beyazlığını siliyoruz */
.modal .bg-light, 
.modal .col-lg-6 {
    background-color: transparent !important;
}

/* --- CAROUSEL MANTIĞI (DÜZELTİLEN KISIM) --- */
.modal .carousel-item {
    /* Bootstrap'in gizlemesine izin vermek için !important yok */
    align-items: center;
    justify-content: center;
    min-height: 450px; 
}

/* Sadece aktif olan resim flex olsun ve görünsün (Senin özel çözümün) */
.modal .carousel-item.active {
    display: flex !important;
}

.modal .carousel-item img {
    max-width: 90%;
    max-height: 420px;
    object-fit: contain;
    background: transparent;
}

/* --- KARANLIK MOD AYARLARI --- */
[data-theme="dark"] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* --- OKLAR VE DİĞER DETAYLAR --- */
.custom-carousel-btn {
    width: 10%;
    opacity: 0;
    transition: 0.3s;
}

#modalCarousel:hover .custom-carousel-btn {
    opacity: 1;
}

.nav-icon-kutu {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ================= ÜRÜN KARTLARI GÖRSEL ARKA PLANI ================= */

/* Aydınlık Mod (Varsayılan) İçin Ayar */
.card-img-wrapper {
    /* Resim alanına beyaz bir arka plan eklenir */
    background-color: var(--card-image-bg); 
    
    /* Mevcut stil ayarlarının korunması */
    padding: 30px;
    text-align: center;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Kartın kenar yuvarlaklığına uyum sağlaması için */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Görselin kendisine ait ayarlar */
.card-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; 
    transition: transform 0.3s;
}

/* ================= MODAL PNG ŞEFFAFLIK FİX ================= */

/* Modal içindeki resim kolonunun arka planını zorla şeffaf yapıyoruz */
.modal .modal-img-col, 
.modal .bg-light, 
.modal .bg-white {
    background-color: transparent !important;
}

/* ================= 7. HAKKIMIZDA & TECRÜBE KUTUSU ================= */
.resim-cerceve {
    position: relative; 
    padding: 10px; 
    border: 2px dashed var(--primary-color);
    border-radius: 20px; 
    background-color: #fff; 
    display: inline-block;
}

.resim-cerceve img { 
    max-width: 650px; 
    width: 100%; 
    margin-top: 20px; 
}

/* Resmin köşesinde asılı duran tecrübe kartı */
.tecrube-kutusu {
    position: absolute; 
    bottom: -10px; 
    left: -10px; 
    background-color: #fff;
    padding: 15px 25px; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 6px solid var(--primary-color); 
    text-align: center; 
    z-index: 10; 
    min-width: 130px;
}

.tecrube-kutusu .yil { 
    display: block; 
    font-size: 45px; 
    font-weight: 900; 
    color: var(--primary-color); 
    line-height: 0.9; 
    margin-bottom: 5px; 
}

.tecrube-kutusu .yazi { 
    font-size: 13px; 
    text-transform: uppercase; 
    font-weight: 700; 
    color: #444; 
    letter-spacing: 1px; 
}

/* Tablet ve Küçük Ekran Ayarları */
@media (max-width: 991px) {
    .resim-cerceve { 
        margin-top: 50px; 
    }
    .tecrube-kutusu { 
        left: 0; 
        bottom: -25px; /* Kutuyu mobilde biraz daha aşağı çektik */
    }
}
/* ================= 8. FOOTER & ALT BANT ================= */
.footer-endustriyel {
    background-color: var(--top-bar-bg); 
    color: #b0b0b0; 
    padding-top: 60px;
    border-top: 4px solid var(--primary-color); 
    margin-top: 50px;
}

.footer-baslik {
    color: #fff; 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 25px;
    position: relative; 
    padding-bottom: 10px; 
    text-transform: uppercase;
}

/* Başlık altındaki turuncu kısa çizgi */
.footer-baslik::after { 
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    width: 40px; 
    height: 3px; 
    background-color: var(--primary-color); 
}

.footer-linkleri, .iletisim-bilgileri { 
    list-style: none; 
    padding-left: 0 !important; 
    margin: 0; 
}

.footer-linkleri li { 
    margin-bottom: 12px; 
}

.footer-linkleri a, .iletisim-bilgileri li, .iletisim-bilgileri a { 
    color: #b0b0b0; 
    transition: 0.3s; 
}

/* Linklerin üzerine gelince sağa kayma efekti */
.footer-linkleri a:hover { 
    color: var(--primary-color); 
    padding-left: 5px; 
}

.iletisim-bilgileri i { 
    color: var(--primary-color); 
    min-width: 25px; 
    margin-top: 4px; 
}

/* Sosyal Medya İkonları (Yuvarlak Yapı) */
.sosyal-medya a {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    width: 45px; 
    height: 45px; 
    background-color: var(--primary-color); 
    color: #fff;
    border-radius: 50%; 
    margin-right: 10px; 
    transition: 0.3s; 
    font-size: 20px;
}

.sosyal-medya a:hover { 
    background-color: #fff; 
    color: var(--primary-color); 
    transform: translateY(-3px); 
}

/* En alt siyah bant */
.alt-bant { 
    background-color: #111; 
    padding: 20px 0; 
    margin-top: 40px; 
    border-top: 1px solid #222; 
    font-size: 13px; 
    color: #666; 
}

/* Footer Mobil Uyumluluk */
@media (max-width: 767.98px) {
    .footer-endustriyel {
        padding-top: 40px;
    }
    .footer-baslik {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .sosyal-medya a {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 8px;
    }
    .iletisim-bilgileri li {
        font-size: 14px;
    }
}
/* ================= 9. WHATSAPP & THEME SWITCH ================= */
/* Yüzen WhatsApp Butonu */
.float-wa {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 30px; 
    right: 30px;
    background-color: #25d366; 
    color: #FFF; 
    border-radius: 50%; 
    text-align: center;
    line-height: 60px; 
    font-size: 32px; 
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; 
    transition: all 0.3s;
}

.float-wa:hover { 
    background-color: #128C7E; 
    transform: scale(1.1); 
    color: #fff; 
}

/* İstatistikler Bölümü Rengi */
.istatistikler { 
    background-color: var(--primary-color); 
    color: #fff; 
}

/* Karanlık/Aydınlık Mod Anahtarı (Theme Switch) */
.theme-switch-wrapper { 
    display: flex; 
    align-items: center; 
}

.theme-switch { 
    position: relative; 
    width: 50px; 
    height: 26px; 
    display: inline-block; 
    margin-bottom: 0; 
}

.theme-switch input { 
    opacity: 0; 
    width: 0; 
    height: 0; 
}

.slider {
    position: absolute; 
    cursor: pointer; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-color: #ccc; 
    transition: .4s; 
    border-radius: 34px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.slider:before {
    position: absolute; 
    content: ""; 
    height: 18px; 
    width: 18px; 
    left: 4px; 
    bottom: 4px;
    background-color: white; 
    transition: .4s; 
    border-radius: 50%; 
    z-index: 2;
}

/* Anahtar açıldığında (Karanlık Mod) */
input:checked + .slider { 
    background-color: var(--primary-color); 
}

input:checked + .slider:before { 
    transform: translateX(24px); 
}

/* Anahtar içindeki güneş/ay ikonları */
.slider .icon { 
    font-size: 12px; 
    position: absolute; 
    right: 8px; 
    top: 4px; 
}

[data-theme="dark"] .slider .icon { 
    left: 8px; 
    right: auto; 
}

/* =========================================
   10. İLETİŞİM BÖLÜMÜ STİLLERİ
   ========================================= */

/* --- GENEL YAPI --- */
.iletisim-section {
    background-color: var(--bg-color);
    padding: 80px 0;
    transition: all 0.3s ease-in-out;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    color: var(--text-color);
    font-weight: 800;
}

.vurgu-renk {
    color: var(--primary-color);
}

/* --- İLETİŞİM KARTLARI --- */
.iletisim-kart {
    background-color: var(--form-input-bg);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    /* FIX: #eee yerine değişken kullandık ki koyu modda kararsın */
    border: 1px solid var(--form-input-border); 
    text-align: center;
}

.iletisim-kart h4 {
    color: var(--text-color);
}

.iletisim-kart p, .iletisim-kart a {
    color: var(--muted-yazi);
}

.ikon-daire {
    width: 50px;
    height: 50px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

/* --- FORM ALANI --- */
.form-container {
    background-color: var(--form-input-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--form-input-border);
    margin-top: 30px;
}

.custom-input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--form-input-border);
    border-radius: 8px;
    background-color: var(--form-input-bg);
    color: var(--form-input-text);
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.btn-turuncu {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    border: none;
    transition: 0.3s;
    padding: 12px 25px;
    border-radius: 8px;
}

.btn-turuncu:hover {
    background-color: var(--primary-color-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* --- HARİTA KONTEYNIRI --- */
.map-container {
    background-color: var(--form-input-bg);
    padding: 15px;             
    border-radius: 20px;       
    border: 1px solid var(--form-input-border);
    transition: all 0.3s ease;
}

.map-container iframe {
    border-radius: 15px; 
    display: block;
    width: 100%;
}

/* --- KOYU MOD ÖZEL AYARLAR --- */
[data-theme="dark"] .custom-input::placeholder {
    color: #777;
}

/* Harita Filtresi (Senin istediğin spesifik ayar) */
[data-theme="dark"] .map-container iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* ================= 11. BEKLEYİNİZ SAYFASI ================= */
.bekleyiniz-kutu {
    background-color: var(--card-bg);
    padding: 100px; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 450px; 
    text-align: center;
    /* İçeriği dikeyde ve yatayda tam ortalamak için flex ekledik */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.bekleyiniz-baslik {
    font-size: 32px; 
    font-weight: 800; 
    margin-bottom: 20px; 
    color: var(--text-color);
}   

.bekleyiniz-mesaj {
    font-size: 18px; 
    color: var(--muted-yazi); 
    margin-bottom: 30px;
}   

.bekleyiniz-spinner {
    width: 4rem; 
    height: 4rem; 
    color: var(--primary-color) !important; 
}
/* ================= 12. DİĞER KÜÇÜK DÜZELTMELER (BUTONLAR) ================= */
.btn-primary {
    background-color: var(--primary-color) !important; 
    border-color: var(--primary-color) !important; 
    color: #fff !important; 
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color-hover) !important; 
    border-color: var(--primary-color-hover) !important;
    color: #fff !important;
}

.btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-color-hover) !important; 
    border-color: var(--primary-color-hover) !important; 
    box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25) !important; 
    color: #fff !important;
}

.btn-primary:disabled {
    background-color: var(--primary-color) !important; 
    border-color: var(--primary-color) !important; 
    opacity: 0.6; 
    color: #fff !important;
}

/* Buton Boyutları */
.btn-primary.btn-lg { padding: 12px 30px; font-size: 16px; border-radius: 8px; }
.btn-primary.btn-sm { padding: 6px 15px; font-size: 14px; border-radius: 6px; }

/* --- GENEL MODAL TRANSPARANLIK VE GLASSMORPHISM --- */
.modal-content {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Sol Taraf (Resim Alanı) - Buzlu Cam Etkisi */
.modal-body .col-lg-6.bg-light {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px 0 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sağ Taraf (Yazı Alanı) - Aydınlık Mod */
.modal-body .col-lg-6.p-4, 
.modal-body .col-lg-6.p-md-5 {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 20px 20px 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #212529; /* Yazı netliği için */
}

/* --- KOYU MOD MODAL UYUMU --- */
[data-theme="dark"] .modal-body .col-lg-6.p-4,
body.dark .modal-body .col-lg-6.p-4,
body.dark-mode .modal-body .col-lg-6.p-4 {
    background: rgba(30, 30, 30, 0.9) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .modal-body h2, body.dark .modal-body h2 { color: #fff !important; }
[data-theme="dark"] .modal-body p, body.dark .modal-body p { color: #ddd !important; }

/* Kapatma Butonu (Floating) */
.modal-header .btn-close {
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    padding: 0.7rem;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Modal Carousel Resim Ayarları */
#modalResimAlani img {
    height: 450px;
    object-fit: contain;
    padding: 20px;
}

/* Mobil Ekran Düzeltmesi (Tablet & Telefon) */
@media (max-width: 991.98px) {
    .modal-body .col-lg-6.bg-light { border-radius: 20px 20px 0 0; }
    .modal-body .col-lg-6.p-4 { border-radius: 0 0 20px 20px; }
    #modalResimAlani img { height: 300px; }
}
