/* --- CORPORATE PAGE STYLES --- */

/* 1. Hakkımızda Görseli */
.about-img-wrapper {
    position: relative;
    padding: 10px;
}

.tech-frame {
    position: absolute;
    width: 40px; height: 40px;
    border-color: var(--ces-blue-neon);
    border-style: solid;
    z-index: 2;
}
.tech-frame.top-left { top: 0; left: 0; border-width: 3px 0 0 3px; }
.tech-frame.bottom-right { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

.floating-stat {
    position: absolute;
    bottom: -20px; right: -20px;
    background: rgba(11, 18, 33, 0.95);
    border: 1px solid var(--ces-red);
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 4px;
    z-index: 3;
}

/* 2. TIMELINE (ZAMAN ÇİZELGESİ) */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Orta Çizgi */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--glass-border);
    top: 0; bottom: 0; left: 50%;
    margin-left: -1px;
}

/* Kutular */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

/* Noktalar */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    right: -10px; /* Sol kutular için */
    background-color: var(--bg-deep);
    border: 3px solid var(--ces-blue-neon);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px var(--ces-blue-neon);
}
.timeline-item.right::after {
    left: -10px; /* Sağ kutular için */
}

/* İçerik Kutusu */
.timeline-item .content {
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    position: relative;
    transition: 0.3s;
}
.timeline-item:hover .content {
    background-color: rgba(46, 117, 255, 0.1);
    border-color: var(--ces-blue-neon);
}

/* Yıl Rozeti */
.timeline-item .date {
    display: inline-block;
    background: var(--ces-red);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 10px;
}

/* --- MOBİL UYUMLULUK (Timeline) --- */
@media (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; }
    .timeline-item.right { left: 0%; }
    .timeline-item::after { left: 21px; }
    .timeline-item.left::after { left: 21px; }
    
    .floating-stat { position: relative; bottom: auto; right: auto; margin-top: 20px; }
}