/* =========================================
   KURUMSAL TANITIM (REFERANS STİL)
   ========================================= */

.intro-modern-section {
    padding: 100px 0;
    background-color: var(--white);
}

/* Görsel Kutusu */
.intro-img-box {
    position: relative;
    border-radius: 20px; /* Referanstaki yumuşak köşe */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 23, 60, 0.15); /* Derin, yumuşak gölge */
    height: 100%;
    min-height: 500px; /* Görselin dik durması için */
}

.intro-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-img-box:hover img {
    transform: scale(1.05); /* Hafif zoom */
}

/* İçerik Alanı */
.intro-content-wrapper {
    padding-left: 40px; /* Masaüstünde görselden uzaklaşsın */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.intro-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-1000);
    margin-bottom: 20px;
    position: relative;
}

/* Başlık Altı Çizgi */
.intro-title-modern::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent); /* Sarı Çizgi */
    margin-top: 15px;
    border-radius: 2px;
}

.intro-text {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* --- POLİTİKA KARTLARI (SOLU ÇİZGİLİ) --- */
.policy-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Hafif gölge */
    border-left: 5px solid var(--primary); /* REFERANSTAKİ MAVİ ÇİZGİ */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-left-color: var(--accent); /* Hoverda sarıya dönsün */
}

.policy-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.policy-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-1000);
    margin-bottom: 10px;
}

.policy-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-content-wrapper { padding-left: 0; margin-top: 40px; }
    .intro-img-box { min-height: 300px; }
}