/* --- QUOTE PAGE SPECIFIC STYLES --- */

/* 1. Sayfa Başlığı ve Navbar Boşluğu */
.quote-header {
    margin-top: -110px; /* Navbar arkasına girsin */
    padding-top: 150px; /* İçerik aşağı kaysın */
    padding-bottom: 60px;
    background: linear-gradient(to bottom, #020610, #0b1221);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

/* 2. Sol Panel (Form) Tasarımı */
.config-panel {
    background: rgba(11, 18, 33, 0.8);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--ces-red);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.section-title {
    color: var(--ces-blue-neon);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* 3. Taktiksel Checkbox (Buton Görünümlü) */
.tactical-option {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
}

.tactical-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-box {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* İkon */
.option-box i {
    color: var(--text-muted);
    width: 24px;
    transition: 0.3s;
}

/* Metin */
.option-box span {
    color: var(--text-main);
    font-weight: 500;
    font-size: 14px;
}

/* Checkbox Seçilince (Active State) */
.tactical-option input:checked ~ .option-box {
    background: rgba(227, 30, 36, 0.1); /* Kırmızımsı zemin */
    border-color: var(--ces-red);
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.2);
}

.tactical-option input:checked ~ .option-box i {
    color: var(--ces-red);
}

.tactical-option input:checked ~ .option-box::after {
    content: '\f00c'; /* FontAwesome Tick */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    color: var(--ces-red);
}

/* 4. Sağ Panel (Görselleştirici) */
.visualizer-area {
    background-color: #0f172a;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    position: relative;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Izgara Arkaplan */
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.9);
}

/* HUD Bilgi Kutusu */
.hud-status {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 220px;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--ces-blue-neon);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    z-index: 10;
}

/* --- 5. CSS ARAÇ ÇİZİMİ (TOP DOWN VIEW) --- */
.car-container {
    position: relative;
    width: 180px;
    height: 360px;
    transition: transform 0.5s ease;
}

.car-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
    border-radius: 30px 30px 50px 50px; /* Önü biraz daha küt */
    position: relative;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.8), /* Gölge */
        inset 0 0 30px rgba(255,255,255,0.05); /* Metalik Parlama */
    border: 1px solid #475569;
    z-index: 1;
}

/* Ön Cam */
.windshield {
    position: absolute;
    top: 50px; left: 10px; right: 10px; height: 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 5px 5px 25px 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Arka Cam */
.rear-window {
    position: absolute;
    bottom: 40px; left: 15px; right: 15px; height: 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 15px 15px 5px 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Tavan */
.car-roof {
    position: absolute;
    top: 115px; left: 12px; right: 12px; bottom: 85px;
    background: #1e293b;
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    z-index: 2;
}

/* Aynalar */
.mirror {
    position: absolute;
    top: 70px; width: 18px; height: 30px;
    background: #334155; border-radius: 6px;
}
.mirror.left { left: -18px; transform: skewY(10deg); }
.mirror.right { right: -18px; transform: skewY(-10deg); }

/* --- 6. EKİPMANLAR (Animasyonlu) --- */
.equipment {
    position: absolute;
    opacity: 0; /* Varsayılan Gizli */
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.equipment.active {
    opacity: 1;
}

/* Tepe Lambası (Lightbar) */
.eq-lightbar {
    top: 140px; left: -5px; right: -5px; height: 24px;
    background: #000; border-radius: 4px;
    display: flex; box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.flash-l { width: 50%; height: 100%; border-radius: 4px 0 0 4px; }
.flash-r { width: 50%; height: 100%; border-radius: 0 4px 4px 0; }

.equipment.active .flash-l { animation: flashRed 0.5s infinite; }
.equipment.active .flash-r { animation: flashBlue 0.5s infinite 0.25s; }

/* Beacon (Yuvarlak) */
.eq-beacon {
    top: 140px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px; background: #222; border-radius: 50%;
    border: 2px solid #000;
}
.equipment.active .eq-beacon {
    background: radial-gradient(circle, orange 40%, #222 100%);
    animation: flashOrange 0.8s infinite;
    box-shadow: 0 0 15px orange;
}

/* Panjur Çakar */
.eq-grille {
    top: 0; left: 20px; right: 20px; height: 6px;
    display: flex; justify-content: space-between;
}
.g-light { width: 30px; height: 100%; background: #444; }
.equipment.active .g-light:first-child { animation: flashRed 0.3s infinite; box-shadow: 0 0 10px red; }
.equipment.active .g-light:last-child { animation: flashBlue 0.3s infinite 0.15s; box-shadow: 0 0 10px blue; }

/* Siren Hoparlör */
.eq-speaker {
    top: 30px; left: 50%; transform: translateX(-50%);
    font-size: 24px; color: rgba(255,255,255,0.3);
    z-index: 1;
}
.equipment.active.eq-speaker { color: #fff; text-shadow: 0 0 5px #fff; }

/* Anons (Mikrofon İkonu) */
.eq-mic {
    top: 50%; right: -60px; font-size: 30px;
    color: var(--ces-blue-neon);
}

/* Animasyonlar Keyframes */
@keyframes flashRed {
    0%, 50% { background-color: #300; box-shadow: none; }
    51%, 100% { background-color: #f00; box-shadow: 0 0 20px #f00; }
}
@keyframes flashBlue {
    0%, 50% { background-color: #003; box-shadow: none; }
    51%, 100% { background-color: #00f; box-shadow: 0 0 20px #00f; }
}
@keyframes flashOrange {
    0%, 50% { opacity: 0.3; }
    51%, 100% { opacity: 1; }
}
/* --- MEVCUT KODLARIN ALTINA EKLE VEYA GÜNCELLE --- */

/* Alt Kontrol Paneli (Boyut Seçimi vb.) */
.sub-controls {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    padding: 15px;
    margin-top: -10px;
    margin-bottom: 15px;
    border-radius: 0 0 4px 4px;
}
.sub-controls.show {
    display: block; /* Bootstrap collapse class'ı ile çalışır */
}

/* --- GÖRSEL PARÇA STİLLERİ --- */

/* 1. TEPE LAMBASI */
.eq-lightbar {
    top: 130px; 
    height: 20px;
    background: #111;
    border: 1px solid #000;
    border-radius: 4px;
    display: flex;
    /* Ortalamak için önemli: */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.eq-lightbar .flash-l, .eq-lightbar .flash-r {
    width: 50%; height: 100%;
}
.equipment.active .flash-l { animation: flashRed 0.5s infinite; background: rgba(255,0,0,0.5); }
.equipment.active .flash-r { animation: flashBlue 0.5s infinite 0.25s; background: rgba(0,0,255,0.5); }

/* 2. ÖN CAM / VANTUZLU */
.eq-windshield {
    top: 60px; /* Ön cam hizası */
    height: 6px;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    border-radius: 2px;
    overflow: hidden;
}

/* 3. ARKA CAM */
.eq-rear {
    bottom: 50px; /* Arka cam hizası */
    height: 6px;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    border-radius: 2px;
    overflow: hidden;
}

/* Ortak Yanıp Sönme Efekti (İç Çakarlar İçin) */
.flash-inner {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, red, blue);
    opacity: 0;
}
.equipment.active .flash-inner {
    animation: flashMix 0.4s infinite;
    opacity: 1;
}

/* --- BOYUT SINIFLARI (Genişlik Ayarları) --- */
/* Aracın tavan genişliği yaklaşık 110px */

.w-20  { width: 25px !important; }  /* Beacon / Mini */
.w-35  { width: 40px !important; }
.w-50  { width: 60px !important; }
.w-65  { width: 80px !important; }
.w-80  { width: 100px !important; }
.w-100 { width: 130px !important; } /* Araçtan hafif taşar, lightbar gibi */

/* Animasyon */
@keyframes flashMix {
    0% { background: red; box-shadow: 0 0 10px red; }
    50% { background: blue; box-shadow: 0 0 10px blue; }
    100% { background: red; box-shadow: 0 0 10px red; }
}
/* --- INPUT STİL DÜZELTMESİ --- */

/* İsim ve Telefon Inputları */
.config-panel input[type="text"],
.config-panel input[type="tel"] {
    background: rgba(255, 255, 255, 0.05) !important; /* Hafif şeffaf beyaz */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important; /* Yazı rengi beyaz */
    padding: 12px 15px;
    border-radius: 4px;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

/* Placeholder (İpucu yazısı) Rengi */
.config-panel input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important; /* Silik beyaz */
}

/* Tıklayınca (Focus) */
.config-panel input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--ces-blue-neon) !important;
    box-shadow: 0 0 10px rgba(46, 117, 255, 0.2);
    outline: none;
}

/* Select Kutuları (Boyut Seçimi) */
.config-panel select {
    background-color: #0f172a !important; /* Koyu lacivert zemin */
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    cursor: pointer;
}

.config-panel select:focus {
    border-color: var(--ces-red) !important;
    box-shadow: none;
}

/* --- CUSTOM SUCCESS MODAL (HUD STYLE) --- */

.ces-modal-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 6, 16, 0.9); /* Çok koyu arkaplan */
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.ces-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.ces-modal-box {
    background: rgba(11, 18, 33, 0.95);
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanma efekti */
    box-shadow: 0 0 50px rgba(46, 117, 255, 0.2);
}

.ces-modal-backdrop.show .ces-modal-box {
    transform: scale(1);
}

/* Süsleme Çizgileri */
.modal-line {
    position: absolute; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--ces-blue-neon), transparent);
}
.modal-line.top { top: 0; }
.modal-line.bottom { bottom: 0; }

/* İkon Animasyonu */
.modal-icon {
    position: relative;
    width: 80px; height: 80px;
    margin: 0 auto 25px auto;
    display: flex; align-items: center; justify-content: center;
}
.modal-icon i {
    font-size: 40px; color: #10b981; /* Yeşil */
    z-index: 2;
}
.icon-circle {
    position: absolute; inset: 0;
    border: 2px solid #10b981;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
}

/* Metinler */
.modal-title {
    color: #fff; font-size: 24px; font-weight: 700;
    letter-spacing: 2px; margin-bottom: 10px;
}
.modal-text {
    color: var(--text-muted); font-size: 15px; line-height: 1.6;
}

/* Bilgi Satırı */
.modal-info {
    display: flex; justify-content: space-between;
    background: rgba(255,255,255,0.03);
    padding: 10px 15px; border-radius: 4px;
    margin-top: 20px; font-family: 'Courier New', monospace;
    font-size: 12px; color: var(--text-main);
    border: 1px dashed rgba(255,255,255,0.1);
}

@keyframes pulseGreen {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.2); opacity: 0; box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); opacity: 0; }
}

/* --- GÖRSELLEŞTİRME ALANI --- */
.visualizer-area {
    background: radial-gradient(circle at center, #0f172a 0%, #020610 100%);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    height: 550px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

/* Izgara Deseni (Grid) */
.visualizer-area::before {
    content: ''; position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(46, 117, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 117, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
}

/* --- HUD BAŞLIKLARI --- */
.hud-header {
    width: 100%; padding: 20px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 10;
}
.hud-title { color: var(--ces-blue-neon); font-family: 'Courier New', monospace; font-weight: bold; letter-spacing: 1px; }
.hud-status { color: var(--text-muted); font-size: 12px; border: 1px solid var(--text-muted); padding: 2px 8px; border-radius: 4px; }
.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

/* --- SAHNE VE SVG --- */
.simulation-stage {
    flex: 1; width: 100%; position: relative;
    display: flex; justify-content: center; align-items: center;
    z-index: 5;
}

.car-svg {
    width: 80%; height: auto;
    max-height: 400px;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
    transition: opacity 0.5s ease;
}

.car-svg.active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* --- KONTROL BUTONLARI --- */
.view-controls {
    position: absolute; bottom: 20px; z-index: 20;
    display: flex; gap: 10px;
}
.btn-tech {
    background: rgba(0,0,0,0.6); border: 1px solid var(--ces-blue-neon);
    color: var(--ces-blue-neon); padding: 8px 20px; border-radius: 4px;
    font-family: 'Rajdhani', sans-serif; font-weight: bold; cursor: pointer;
    transition: all 0.3s;
}
.btn-tech:hover, .btn-tech.active {
    background: var(--ces-blue-neon); color: #fff;
    box-shadow: 0 0 15px var(--ces-blue-neon);
}

/* --- IŞIK ANİMASYONLARI (SVG İÇİ) --- */
.flash-red { animation: strobeRed 0.6s infinite; }
.flash-blue { animation: strobeBlue 0.6s infinite 0.3s; }
.flash-mix { animation: strobeMix 0.4s infinite; }
.flash-orange { animation: strobeOrange 1s infinite; }

@keyframes strobeRed {
    0%, 50% { fill: #500; } /* Sönük */
    51%, 100% { fill: #ff0000; filter: drop-shadow(0 0 10px red); } /* Parlak */
}
@keyframes strobeBlue {
    0%, 50% { fill: #005; }
    51%, 100% { fill: #0088ff; filter: drop-shadow(0 0 10px blue); }
}
@keyframes strobeMix {
    0% { fill: #ff0000; filter: drop-shadow(0 0 10px red); }
    50% { fill: #0088ff; filter: drop-shadow(0 0 10px blue); }
    100% { fill: #ff0000; filter: drop-shadow(0 0 10px red); }
}
@keyframes strobeOrange {
    0%, 50% { opacity: 0.3; }
    51%, 100% { opacity: 1; filter: drop-shadow(0 0 10px orange); }
}

/* --- YENİ TEPE LAMBASI STİLLERİ --- */

/* Animasyon Grupları (Varsayılan: Standart Çakar) */
.flash-red { animation: strobeRed 0.6s infinite; }
.flash-blue { animation: strobeBlue 0.6s infinite 0.3s; } /* Mavi gecikmeli yanar */
.flash-white { animation: strobeWhite 0.4s infinite; }
.flash-amber { animation: strobeAmber 0.8s infinite; }

/* --- ÖZEL MODLAR (JS ile eklenir) --- */

/* MOD: Kırmızı - Beyaz - Beyaz - Mavi (Çapraz) */
/* Sol Dış (Kırmızı) */
.mode-mix-cross .seg-1 { fill: #500; animation: strobeRed 0.8s infinite 0s !important; }
/* Sağ İç (Beyaz) - Çapraz olması için zamanlama aynı */
.mode-mix-cross .seg-3 { fill: #ccc; animation: strobeWhite 0.8s infinite 0s !important; }

/* Sol İç (Beyaz) - Gecikmeli */
.mode-mix-cross .seg-2 { fill: #ccc; animation: strobeWhite 0.8s infinite 0.4s !important; }
/* Sağ Dış (Mavi) - Gecikmeli */
.mode-mix-cross .seg-4 { fill: #005; animation: strobeBlue 0.8s infinite 0.4s !important; }


/* MOD: Tamamı Kırmızı */
.mode-all-red rect { fill: #500; animation: strobeRed 0.5s infinite !important; }

/* MOD: Tamamı Mavi */
.mode-all-blue rect { fill: #005; animation: strobeBlue 0.5s infinite !important; }

/* MOD: Amber (Sarı) */
.mode-amber rect { fill: #b40; animation: strobeAmber 0.8s infinite !important; }


/* --- ANİMASYON KEYFRAMES --- */
@keyframes strobeRed {
    0%, 40% { fill: #500; filter: none; }
    50%, 100% { fill: #ff0000; filter: drop-shadow(0 0 15px red); }
}
@keyframes strobeBlue {
    0%, 40% { fill: #005; filter: none; }
    50%, 100% { fill: #0088ff; filter: drop-shadow(0 0 15px blue); }
}
@keyframes strobeWhite {
    0%, 40% { fill: #444; filter: none; }
    50%, 100% { fill: #ffffff; filter: drop-shadow(0 0 15px white); }
}
@keyframes strobeAmber {
    0%, 40% { fill: #630; filter: none; }
    50%, 100% { fill: #ffaa00; filter: drop-shadow(0 0 15px orange); }
}

/* --- BOYUTLANDIRMA (SVG Transform ile) --- */
/* SVG Grubunu (<g>) merkezden ölçeklendiriyoruz */
.equip-group {
    transition: transform 0.3s ease;
    transform-origin: center 85px; /* Arabanın tavan merkezi */
}

/* SVG Scale Değerleri */
.size-20  { transform: scaleX(0.3); }
.size-35  { transform: scaleX(0.5); }
.size-50  { transform: scaleX(0.65); }
.size-80  { transform: scaleX(0.85); }
.size-100 { transform: scaleX(1); }   /* Standart */
.size-120 { transform: scaleX(1.2); } /* Geniş */

/* =========================================
   HIZLI SENKRONİZE ÇAPRAZ MOD (0.5s Döngü)
   ========================================= */

/* GRUP 1: Sağ Mavi + Sol Beyaz (BAŞLANGIÇ) */
.mode-mix-cross .seg-4 { 
    fill: #005;
    /* Süre 0.5s, Gecikme 0s */
    animation: syncBlue 0.5s infinite 0s !important; 
}
.mode-mix-cross .seg-2 { 
    fill: #444; 
    animation: syncWhite 0.5s infinite 0s !important; 
}

/* GRUP 2: Sol Kırmızı + Sağ Beyaz (TAM YARISINDA) */
.mode-mix-cross .seg-1 { 
    fill: #500; 
    /* Süre 0.5s, Gecikme 0.25s (Tam yarısı) */
    animation: syncRed 0.5s infinite 0.25s !important; 
}
.mode-mix-cross .seg-3 { 
    fill: #444; 
    animation: syncWhite 0.5s infinite 0.25s !important; 
}

/* --- ANAHTAR KARELER (AYNI KALIYOR) --- */
@keyframes syncRed {
    0%, 49% { fill: #500; filter: none; } 
    50%, 100% { fill: #ff0000; filter: drop-shadow(0 0 20px #ff0000); }
}
@keyframes syncBlue {
    0%, 49% { fill: #005; filter: none; } 
    50%, 100% { fill: #0088ff; filter: drop-shadow(0 0 20px #0088ff); }
}
@keyframes syncWhite {
    0%, 49% { fill: #444; filter: none; } 
    50%, 100% { fill: #ffffff; filter: drop-shadow(0 0 20px #ffffff); }
}

/* =========================================================
   YÖN DUYARLI ÇAPRAZ MOD (Yolcu Tarafı Mavi)
   ========================================================= */

/* --- 1. ÖN GÖRÜNÜM (Front View) --- */
/* Önden bakınca Yolcu tarafı SOLDA kalır -> MAVİ SOLDA */

/* Grup A: Sol Dış (Mavi) + Sağ İç (Beyaz) -> Başlangıç */
#svg-lightbar-f.mode-mix-cross .seg-1 { 
    fill: #005; 
    animation: syncBlue 0.5s infinite 0s !important; 
}
#svg-lightbar-f.mode-mix-cross .seg-3 { 
    fill: #444; 
    animation: syncWhite 0.5s infinite 0s !important; 
}

/* Grup B: Sağ Dış (Kırmızı) + Sol İç (Beyaz) -> Gecikmeli */
#svg-lightbar-f.mode-mix-cross .seg-4 { 
    fill: #500; 
    animation: syncRed 0.5s infinite 0.25s !important; 
}
#svg-lightbar-f.mode-mix-cross .seg-2 { 
    fill: #444; 
    animation: syncWhite 0.5s infinite 0.25s !important; 
}


/* --- 2. ARKA GÖRÜNÜM (Back View) --- */
/* Arkadan bakınca Yolcu tarafı SAĞDA kalır -> MAVİ SAĞDA */

/* Grup A: Sağ Dış (Mavi) + Sol İç (Beyaz) -> Başlangıç */
#svg-lightbar-b.mode-mix-cross .seg-4 { 
    fill: #005; 
    animation: syncBlue 0.5s infinite 0s !important; 
}
#svg-lightbar-b.mode-mix-cross .seg-2 { 
    fill: #444; 
    animation: syncWhite 0.5s infinite 0s !important; 
}

/* Grup B: Sol Dış (Kırmızı) + Sağ İç (Beyaz) -> Gecikmeli */
#svg-lightbar-b.mode-mix-cross .seg-1 { 
    fill: #500; 
    animation: syncRed 0.5s infinite 0.25s !important; 
}
#svg-lightbar-b.mode-mix-cross .seg-3 { 
    fill: #444; 
    animation: syncWhite 0.5s infinite 0.25s !important; 
}


