/* ==========================================
   KURUMSAL SAYFASI ÖZEL TASARIMI
   ========================================== */
.about-page-section {
    background: #ffffff;
    padding: 80px 0 100px 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.container-kurumsal {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- SAYFA ÜST BANNER'I (PAGE HEADER) --- */
.page-banner {
    background: linear-gradient(135deg, #09090b 0%, #1a1a24 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid var(--red);
}
.page-banner h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 8px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}
.breadcrumb a {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: #fff;
}
.breadcrumb i {
    color: var(--red);
    font-size: 11px;
}
.breadcrumb span {
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
}

/* --- BİZ KİMİZ IZGARA SİSTEMİ --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- SOL GÖRSEL ALANI --- */
.about-image-column {
    position: relative;
    padding-left: 20px; 
}
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.image-wrapper:hover img {
    transform: scale(1.03); 
}

/* Yüzen Rozet */
.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--red);
    color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(227, 6, 19, 0.3);
    z-index: 5;
    border: 3px solid #fff;
}
.experience-badge .year {
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
}
.experience-badge .text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

@keyframes float-badge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float-badge 3s ease-in-out infinite;
}

/* --- SAĞ İÇERİK ALANI --- */
.about-content-column {
    padding-right: 20px;
}
.badge-light {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #eaeaea; color: #333;
    padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 700;
    letter-spacing: 1px; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.red-dot {
    width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 8px var(--red);
}

.about-content-column h2 {
    font-size: 38px;
    color: #111;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.text-red { color: var(--red); }

.about-content-column p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-content-column p strong {
    color: #111;
}

/* Alt Özellikler */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 35px 0;
    background: #fdfdfd;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--red);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.a-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.a-feature-item i {
    font-size: 24px;
    color: var(--red);
    margin-top: 3px;
}
.a-feature-text { display: flex; flex-direction: column; }
.a-feature-text strong { font-size: 16px; color: #111; font-weight: 700; margin-bottom: 4px; }
.a-feature-text span { font-size: 13.5px; color: #666; line-height: 1.5; }

/* Koyu Renkli Buton */
.btn-about-dark {
    display: inline-flex;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    gap: 12px;
    transition: all 0.3s;
}
.btn-about-dark:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.2);
}

/* ==========================================
   MOBİL UYUMLULUK
   ========================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-content-column { padding-right: 0; }
    .about-image-column { padding-left: 0; padding-right: 20px; }
    .experience-badge { left: auto; right: -20px; bottom: 20px; }
}

@media (max-width: 768px) {
    .page-banner { padding: 40px 0; }
    .page-banner h1 { font-size: 32px; }
    .about-page-section { padding: 50px 0; }
    .about-content-column h2 { font-size: 28px; }
    .experience-badge { padding: 15px 20px; }
    .experience-badge .year { font-size: 32px; }
    .experience-badge .text { font-size: 12px; }
    .about-features { padding: 20px 15px; }
}

@media (max-width: 480px) {
    .experience-badge {
        bottom: 10px; right: 10px; transform: scale(0.9); border-width: 2px;
    }
    .about-content-column h2 { font-size: 24px; }
    .btn-about-dark { width: 100%; justify-content: center; }
}