/* --- WHY PARS SECTION --- */
.why-pars-section {
    padding: 10px 0;
    background: linear-gradient(180deg, #fdfdfd 0%, #f4f7fa 100%);
    position: relative;
    overflow: hidden;
}

/* Başlık Grubu */
.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header h2 {
    font-size: 3rem;
    color: #103b7b;
    font-weight: 900;
    line-height: 1.2;
}

.why-header h2 small {
    display: block;
    font-size: 1.1rem;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 15px;
    font-weight: 700;
}

/* Benefit Row - Yüzdeli ve Esnek */
.benefits-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2%; /* Kartlar arası nefes payı */
    width: 90%;
    margin: 0 auto;
}

/* --- BENEFIT ITEM (Kartlar) --- */
.benefit-item {
    flex: 0 0 20%; /* 4 kart yan yana, aradaki gap ile tam %100 */
    background: #ffffff;
    padding: 4% 1%;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(16, 59, 123, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(16, 59, 123, 0.05);
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(16, 59, 123, 0.1);
    border-color: #ff6b00;
}

/* İkon Kutusu - Madalya Efekti */
.b-icon {
    width: 90px;
    height: 90px;
    background: #f8faff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: #103b7b;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

/* Hover'da ikonun arka planı parlasın */
.benefit-item:hover .b-icon {
    background: #ff6b00;
    color: #fff;
    transform: rotateY(360deg);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.benefit-item h4 {
    font-size: 1.4rem;
    color: #103b7b;
    margin-bottom: 15px;
    font-weight: 800;
}

.benefit-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* --- RESPONSIVE TOUCH --- */
@media (max-width: 1200px) {
    .benefit-item { flex: 0 0 48%; margin-bottom: 30px; } /* Tablette 2-2 dizilsin */
}

@media (max-width: 768px) {
    .benefit-item { flex: 0 0 100%; } /* Mobilde tekli aksın */
    .why-header h2 { font-size: 2.2rem; }
}