.about-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

/* Left Column: Image Card */
.about-image-column {
    position: relative;
    z-index: 1;
}

.about-image-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    /* Yükseklik kısaltıldı, kare yapıldı */
    background-color: #202020;
    border-radius: 8px;
    /* 8px yapıldı */
    overflow: visible;
    /* Allow badge to peek out */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder {
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    /* 8px yapıldı */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
    z-index: 2;
    min-width: 140px;
}

.about-experience-badge .count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.about-experience-badge .text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Column */
.about-content-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Kartlar ve metin arası boşluk biraz daraltıldı */
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* İç elemanlar (badge/title) zaten margin'e sahip */
}

.section-badge {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 kart yan yana */
    gap: 0.75rem;
}

.about-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--card-bg, #fafafa);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    position: relative;
    /* Parıltı için */
    overflow: hidden;
    /* Parıltının dışarı taşmasını engelle */
}

/* Next.js tarzı Shimmer (Işık Süpürme) Efekti */
.about-feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent);
    transform: skewX(-25deg);
    animation: shimmer 6s infinite ease-in-out;
}

@keyframes shimmer {
    0% {
        left: -150%;
    }

    70% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}







.feature-icon {
    width: 36px;
    /* İkon kutusu küçültüldü */
    height: 36px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 18px;
    /* İkon küçültüldü */
    height: 18px;
}



.feature-title {
    font-size: 1rem;
    /* Daha kompakt font */
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--text-color);
}

.feature-desc {
    font-size: 0.85rem;
    /* Açıklama küçültüldü */
    color: var(--text-muted);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Ara ekranlarda 2'li */
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        /* Tablet/Mobilde tekli */
    }

    .about-image-column {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: var(--section-padding);
    }

    .about-container {
        gap: 3rem;
    }

    .section-badge {
        font-size: 0.75rem;
        /* Mobilde küçültüldü */
        letter-spacing: 1px;
    }

    .about-experience-badge {
        right: -10px;
        bottom: -20px;
        padding: 1rem;
        min-width: 110px;
    }

    .about-experience-badge .count {
        font-size: 2rem;
    }
}