/* Kankacım, Hakkımızda Sayfası (Detaylı) Stilleri - MAVİ & TURUNCU KONSEPT */

/* --- SAYFA BAŞLIĞI (BREADCRUMB) --- */
.page-header {
    background-color: #111;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../uploads/hakkimizda/anasayfa-hakkimizda.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 1.1rem;
    color: #ddd;
}

.breadcrumb a {
    /* Linkler TURUNCU (#e68f23) */
    color: #e68f23;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 10px;
    color: #888;
}

/* --- ANA İÇERİK ALANI --- */
.about-page-section {
    padding: 0 0 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hikaye Bölümü (Resim + Yazı) */
.story-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

/* RESİM KÜÇÜLTME AYARI (KORUNDU) */
.story-img {
    flex: 0 0 30%; /* Genişlik alanı %30 */
    max-width: 350px; /* Maksimum genişlik 350px */
    position: relative;
    margin: 0 auto;
}

/* Resme çerçeve efekti */
.story-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 2;
    position: relative;
    display: block;
}

/* Resmin arkasındaki dekoratif kutu - MAVİ (#317da8) */
.story-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid #317da8;
    border-radius: 10px;
    z-index: 1;
}

.story-content {
    flex: 1;
}

.story-subtitle {
    /* Alt başlık TURUNCU (#e68f23) */
    color: #e68f23;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.story-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.story-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Tikli Liste */
.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check-list li {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.check-list i {
    /* Tik ikonları MAVİ (#317da8) */
    color: #317da8;
    margin-right: 10px;
    font-size: 16px;
}

/* --- SAYAÇLAR (COUNTERS) --- */
.counters-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    margin-bottom: 80px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.counters-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.counter-item i {
    font-size: 35px;
    /* Sayaç İkonları MAVİ (#317da8) */
    color: #317da8;
    margin-bottom: 10px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-label {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* --- MİSYON VİZYON BÖLÜMÜ --- */
.mv-section {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mv-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mv-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mv-card:hover {
    transform: translateX(5px);
    /* Hover olunca sol çizgi MAVİ (#317da8) */
    border-left-color: #317da8;
}

.mv-icon {
    width: 60px;
    height: 60px;
    /* MAVİ tint arka plan */
    background-color: rgba(49, 125, 168, 0.1);
    /* İkon rengi MAVİ (#317da8) */
    color: #317da8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.mv-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .story-wrapper, .mv-section {
        flex-direction: column;
    }
    
    /* Mobilde de biraz daha küçültelim ki ekranı kaplamasın */
    .story-img {
        flex: auto;
        width: 100%;
        max-width: 300px; /* Mobilde 300px */
    }

    .story-img::before {
        top: 10px; left: 10px; right: -10px; bottom: -10px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        flex-direction: column;
        text-align: center;
    }
    
    .mv-icon {
        margin: 0 auto 15px;
    }
}