:root {
    --about-red: #d90429;
    --about-red-hover: #ef233c;
    --about-red-neon: rgba(217, 4, 41, 0.5);
    --about-text-dark: #111827;
    --about-text-muted: #4b5563;
}

.about-hero-section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    font-family: 'Poppins', sans-serif;
    color: var(--about-text-dark);
    overflow: hidden;

    /* Arka Plan Görsel Ayarları */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* İstersen 'fixed' yaparak parallax efekti verebilirsin */
}



.about-container {
    position: relative;
    z-index: 2; /* Content'in overlay üstünde kalmasını sağlar */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* -------------------------------------------
   LEFT CONTENT AREA
--------------------------------------------- */
.about-content {
    display: flex;
    flex-direction: column;
}

/* Tagline Header */
.about-tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.about-tagline-wrapper .tagline-line {
    width: 4px;
    height: 18px;
    background-color: var(--about-red);
    display: inline-block;
    border-radius: 2px;
}

.about-tagline-wrapper .tagline-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--about-text-dark);
    text-transform: uppercase;
}

/* Main Title */
.about-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--about-text-dark);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.about-title .highlight-red {
    color: var(--about-red);
}

/* Body Content + Counters Grid */
.about-body-wrapper {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 30px;
    align-items: center;
    margin-bottom: 35px;
}

.about-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--about-text-muted);
    font-weight: 400;
}

/* Counters List */
.about-stats-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px dashed rgba(217, 4, 41, 0.4);
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-red);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.stat-item:hover .stat-icon {
    border-style: solid;
    border-color: var(--about-red);
    background-color: var(--about-red);
    color: #ffffff;
    box-shadow: 0 0 15px var(--about-red-neon);
    transform: scale(1.05);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--about-text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #4b5563;
    margin-top: 3px;
    white-space: nowrap;
}

/* CTA Button */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--about-red);
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 12px 10px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.35);
    width: fit-content;
}

.about-cta-btn:hover {
    background-color: var(--about-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(217, 4, 41, 0.5);
}

.about-cta-btn .btn-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 11px;
}

/* -------------------------------------------
   RIGHT EĞİMLİ GÖRSEL TASARIMI (PARALLELOGRAM)
--------------------------------------------- */
.about-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
}

/* Kırmızı Arka Katman Çerçevesi */
.image-red-backdrop {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 92%;
    height: 90%;
    background-color: var(--about-red);
    border-radius: 24px;
    transform: skewX(-12deg);
    z-index: 1;
}

/* Beyaz Çerçeveli İç Görsel Kartı */
.image-card {
    position: relative;
    width: 94%;
    height: 380px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: skewX(-12deg);
    z-index: 2;
    overflow: hidden;
    margin-bottom: 25px;
    margin-right: 15px;
}

.image-card img {
    width: 118%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: skewX(12deg) scale(1.05);
    margin-left: -9%;
    border-radius: 14px;
}

/* -------------------------------------------
   RESPONSIVE (MOBİL & TABLET UYUMU)
--------------------------------------------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-body-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-stats-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-image-wrapper {
        justify-content: center;
    }

    .image-card {
        width: 88%;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0;
    }

    .about-bg-overlay {
        background: rgba(255, 255, 255, 0.94); /* Mobilde metin okunabilirliği için fona biraz daha beyazlık ekledik */
    }

    .about-container {
        padding: 0 20px;
    }

    .about-title {
        font-size: 30px;
    }

    .about-desc {
        font-size: 13px;
    }

    .about-stats-list {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .image-card {
        width: 90%;
        height: 250px;
        transform: skewX(-8deg);
        margin-right: 10px;
    }

    .image-red-backdrop {
        transform: skewX(-8deg);
    }

    .image-card img {
        transform: skewX(8deg) scale(1.08);
    }
}