/* --- VİZYON MİSYON SPLIT + CARDS --- */

.vm-split-modern {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.vm-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol resim, sağ yazı alanı */
    gap: 50px;
    align-items: flex-start;
}

/* Sol Resim Stilleri */
.vm-image-wrapper {
    position: sticky; /* Sayfa kayarken resim sabit kalsın (opsiyonel) */
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.vm-image-wrapper img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
}

.vm-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--alfa-accent-yellow);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sağ İçerik & Kutular */
.breadcrumb-simple {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.section-header-left h2 {
    font-size: 2.5rem;
    color: var(--alfa-primary-blue);
    margin-bottom: 40px;
}

/* Seviğiniz Kutu Yapısı (Geliştirilmiş) */
.vm-card-modern {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    gap: 25px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.vm-card-modern.highlight {
    background: var(--alfa-primary-blue);
    color: #fff;
}

.vm-card-modern:hover {
    transform: translateX(10px); /* Hafif sağa kayma efekti */
}

.vm-card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-soft-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vm-card-icon i {
    font-size: 1.5rem;
    color: var(--alfa-primary-blue);
}

.vm-card-modern.highlight .vm-card-icon {
    background: var(--alfa-accent-yellow);
}

.vm-card-modern.highlight .vm-card-icon i {
    color: #fff;
}

.vm-card-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--alfa-primary-blue);
}

.vm-card-modern.highlight .vm-card-text h3 {
    color: #fff;
}

.vm-line {
    width: 40px;
    height: 3px;
    background: var(--alfa-accent-yellow);
    margin-bottom: 15px;
}

.vm-card-text p {
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.9;
}

/* RESPONSIVE */
/* Sol Resim Stilleri - Güncellenmiş */
.vm-image-wrapper img {
    width: 650px;     /* Bulunduğu alanın genişliğini tam kapla */
 height: 450px;
 Yükseklik, orijinal orana göre otomatik ayarlansın (KIRPMA OLMAZ) */
    display: block;   /* Resim altındaki istenmeyen boşlukları kaldırır */
    border-radius: 20px; /* Köşelerin yuvarlak kalmasını sağlar */
}
/* Ana Sayfa Düzeni - Resmi ve İçeriği Üst Üste Değil Yan Yana Tutar */
.vm-layout-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Resim alanı biraz daraltıldı */
    gap: 40px;
    align-items: start;
}

/* Kartları Yan Yana Getiren Kapsayıcı */
.vm-cards-row {
    display: flex;
    flex-direction: row; /* Yan yana dizilim */
    gap: 20px;
    margin-top: 20px;
}

/* Kartların Kendi Stili */
.vm-card-modern {
    flex: 1; /* Her iki kartın eşit genişlikte olmasını sağlar */
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column; /* İkon üste, yazı alta */
    align-items: flex-start;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

/* Vizyon (Mavi) Kartı */
.vm-card-modern.highlight {
    background: #063970; /* Koyu Mavi */
    color: #ffffff;
    border: none;
}

/* İkon Kutuları */
.vm-card-icon {
    width: 55px;
    height: 55px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vm-card-modern.highlight .vm-card-icon {
    background: #ff8a42; /* Turuncu vurgu */
}

.vm-card-modern.highlight .vm-card-icon i {
    color: #fff;
}

/* Yazı Stilleri */
.vm-card-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #063970;
}

.vm-card-modern.highlight .vm-card-text h3 {
    color: #ffffff;
}

.vm-line {
    width: 35px;
    height: 3px;
    background: #ff8a42;
    margin-bottom: 15px;
}

.vm-card-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* RESPONSIVE: Mobilde tekrar alt alta gelsinler */
@media (max-width: 992px) {
    .vm-layout-wrapper {
        grid-template-columns: 1fr;
    }
    .vm-cards-row {
        flex-direction: column;
    }
}