/* --- DEĞERLERİMİZ SAYFASI ÖZEL STİLLERİ --- */

.values-section {
    padding: 80px 0 100px;
    background-color: #fcfdfe;
}

/* Başlık Alanı */
.values-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.main-title {
    font-size: 2.8rem;
    color: #063970;
    font-weight: 800;
    margin: 15px 0;
}

.main-title span {
    color: #ff8a42;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #ff8a42;
    margin-bottom: 25px;
    border-radius: 10px;
}

.values-lead {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
}

/* Grid Yapısı */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3'lü dizilim */
    gap: 30px;
}

/* Değer Kartları */
.value-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 25px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #063970;
    z-index: -1;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-12px);
}

.value-card:hover::before {
    height: 100%;
}

.value-card:hover h3, 
.value-card:hover p {
    color: #ffffff;
}

/* Kart İkonları */
.value-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(6, 57, 112, 0.06);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.value-icon-box i {
    font-size: 2rem;
    color: #063970;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-box {
    background: rgba(255, 255, 255, 0.2);
}

.value-card:hover .value-icon-box i {
    color: #ff8a42;
}

.value-number {
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 0.8rem;
    font-weight: 800;
    background: #ff8a42;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Kart Metinleri */
.value-body h3 {
    font-size: 1.4rem;
    color: #063970;
    margin-bottom: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.value-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    transition: 0.3s;
}

/* Breadcrumb */
.breadcrumb-simple {
    font-size: 0.9rem;
    color: #94a3b8;
}
.breadcrumb-simple a { color: #063970; text-decoration: none; font-weight: 600; }

/* Responsive */
@media (max-width: 992px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 2.2rem; }
}