/* ============================================ */
/* HAKKIMIZDA SAYFASI - CSS */
/* ============================================ */

/* HERO SECTION */
.hakkimizda-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .hakkimizda-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
        background-size: cover;
        opacity: 0.3;
    }

.hakkimizda-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);*/
}

/* İÇERİK SECTION */
.hakkimizda-content {
    background: #fff;
}

.hakkimizda-image-wrapper {
    position: relative;
}

    .hakkimizda-image-wrapper img {
        width: 100%;
        height: auto;
    }

.hakkimizda-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.badge-year {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hakkimizda-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
}

/* İSTATİSTİKLER */
.hakkimizda-stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* GALERİ SECTION */
.hakkimizda-gallery {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.9) 0%, rgba(118,75,162,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: #fff;
}

/* CTA SECTION */
.hakkimizda-cta {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

    .hakkimizda-cta .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        border-radius: 50px;
        font-weight: 600;
        box-shadow: 0 10px 30px rgba(102,126,234,0.3);
        transition: all 0.3s ease;
    }

        .hakkimizda-cta .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102,126,234,0.4);
        }

/* RESPONSIVE */
@media (max-width: 991px) {
    .hakkimizda-hero {
        height: 250px;
    }

        .hakkimizda-hero h1 {
            font-size: 2.5rem;
        }

    .hakkimizda-text h2 {
        font-size: 2rem;
    }

    .hakkimizda-badge {
        bottom: 10px;
        right: 10px;
        padding: 1rem 1.5rem;
    }

    .badge-year {
        font-size: 1.5rem;
    }

    .hakkimizda-stats-row {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hakkimizda-hero {
        height: 240px;
    }

        .hakkimizda-hero h1 {
            font-size: 2rem;
        }

    .stat-number {
        font-size: 2rem;
    }

    .hero-subtitle {
     
        margin-bottom: 1rem;
    }
}
