/* ==========================================
   BİZ KİMİZ (HAKKIMIZDA) BÖLÜMÜ
   ========================================== */
.about-section {
    background: #ffffff; /* Temiz bir sayfa hissi için tam beyaz */
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.container-about {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.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; /* Rozet taşma payı */
}

.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); /* Üzerine gelince resim hafif büyür */
}

/* Yüzen 40 Yıllık Tecrübe Rozeti */
.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;
}

/* Havada Süzülme Animasyonu (Rozet için) */
@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;
}

.about-content-column h2 {
    font-size: 38px;
    color: #111;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content-column p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-content-column p strong {
    color: #111;
}

/* İkonlu 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);
}
.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;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.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) {
    .about-section { padding: 60px 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; }
}