/* ========================================================= */
/* ARALİS GLOBAL – DEĞERLERİMİZ (PREMIUM REVISE)            */
/* ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

.values-page {
    /* Kurumsal Renkler */
    --aralis-navy: #00152e;
    --aralis-orange: #FF8C3E;
    --aralis-orange-glow: rgba(255, 140, 62, 0.4);
    
    background: radial-gradient(circle at top right, #ffffff, #f1f5f9);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--aralis-navy);
    padding: 120px 24px;
    -webkit-font-smoothing: antialiased;
}

/* HEADER - Daha otoriter ve temiz */
.values-header {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.values-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--aralis-orange);
    background: rgba(255, 140, 62, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(255, 140, 62, 0.2);
}

.values-header h1 {
    font-size: clamp(36px, 6vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--aralis-navy);
}

/* GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* KART - Premium Derinlik */
.value-card {
    position: relative;
    height: 420px;
    border-radius: 32px; /* Daha lüks, yuvarlak köşeler */
    background: var(--bg) center / cover no-repeat;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 21, 46, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Overlay Katmanları */
.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Alttan yukarıya kurumsal lacivert geçiş */
    background: linear-gradient(180deg, 
        rgba(0, 21, 46, 0) 0%, 
        rgba(0, 21, 46, 0.4) 50%, 
        rgba(0, 21, 46, 0.95) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

/* Hover'da Renk Değişimi */
.value-card:hover::before {
    background: linear-gradient(180deg, 
        rgba(255, 140, 62, 0.1) 0%, 
        rgba(0, 21, 46, 0.9) 100%);
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px -20px var(--aralis-orange-glow);
}

/* İÇERİK KONUMLANDIRMA */
.value-overlay {
    position: absolute;
    inset: 0;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    z-index: 2;
}

/* İCON - Kurumsal Turuncu Parlama */
.value-overlay i {
    font-size: 44px;
    color: var(--aralis-orange);
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 140, 62, 0.4));
}

.value-card:hover i {
    transform: scale(1.2) translateY(-10px);
    color: #ffffff;
}

/* TEXT İYİLEŞTİRMELERİ */
.value-overlay h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.value-overlay p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    max-height: 0; /* Normalde gizli */
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Hover'da yazının açılması (Slide-up etkisi) */
.value-card:hover p {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

/* Dekoratif Turuncu Çizgi */
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 6px;
    background: var(--aralis-orange);
    z-index: 3;
    transition: width 0.6s ease;
}

.value-card:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .values-header { margin-bottom: 50px; }
    .values-grid { gap: 24px; }
    .value-card { height: 380px; }
    .value-overlay p { opacity: 1; max-height: 100px; } /* Mobilde hep açık kalsın */
}