/* ================================================
   about-values.css — values.php için
   values.php'deki mevcut class isimleriyle tam uyumlu
   Ana sayfa CSS'leriyle çakışmaz (inner- prefix ile izole)
   ================================================ */

/* ===== HERO ===== */
.inner-hero {
    min-height: 420px;
    background: #111;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 40px 80px;
}

.values-hero-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #111 100%);
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.inner-hero-blob {
    position: absolute;
    top: -60px; right: -60px;
    width: 420px; height: 420px;
    z-index: 2; pointer-events: none;
}

.inner-hero-content {
    position: relative; z-index: 3;
    max-width: 1200px; margin: 0 auto; width: 100%;
    animation: ipFadeUp 0.7s ease both;
}

.inner-hero-tag {
    display: inline-block;
    background: rgba(226,6,19,0.15);
    border: 1px solid rgba(226,6,19,0.35);
    color: #e20613;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    padding: 6px 18px; border-radius: 20px;
    margin-bottom: 18px; text-transform: uppercase;
}

.inner-hero-content h1 {
    font-size: clamp(30px, 5vw, 58px);
    font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.inner-hero-content h1 span { color: #e20613; }

.inner-hero-content > p {
    color: rgba(255,255,255,0.6); font-size: 16px;
    max-width: 520px; line-height: 1.7; margin-bottom: 22px;
}

.inner-breadcrumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.inner-breadcrumb a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; transition: color .2s; }
.inner-breadcrumb a:hover { color: #e20613; }
.inner-breadcrumb i { color: rgba(255,255,255,0.2); font-size: 10px; }
.inner-breadcrumb span { color: #fff; font-size: 13px; font-weight: 500; }

/* ===== DEĞERLER BÖLÜMÜ ===== */
.values-section { padding: 90px 40px; }
.values-inner { max-width: 1280px; margin: 0 auto; }

.values-header {
    text-align: center; margin-bottom: 60px;
    max-width: 660px; margin-left: auto; margin-right: auto;
}

.section-tag-line {
    display: block; color: #e20613;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 12px;
}

.values-header h2 {
    font-size: clamp(26px, 3.5vw, 40px); font-weight: 700;
    margin-bottom: 14px; line-height: 1.2; color: #1a1a1a;
}
.values-header h2 span { color: #e20613; }
.values-header p { color: #777; font-size: 15px; line-height: 1.7; }

/* Değer Kartları */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff; border-radius: 20px; padding: 32px 26px;
    border: 1px solid #e8e8e8; transition: all .35s;
    position: relative; overflow: hidden;
    animation: ipFadeUp 0.6s calc(var(--delay, 0s)) ease both;
}

.value-card::before {
    content: ''; position: absolute;
    bottom: -55px; right: -35px;
    width: 110px; height: 110px;
    background: rgba(226,6,19,0.04); border-radius: 50%; transition: all .4s;
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.1);
    border-color: rgba(226,6,19,0.2);
}
.value-card:hover::before { width: 200px; height: 200px; background: rgba(226,6,19,0.06); }

.value-icon-wrap {
    width: 54px; height: 54px;
    background: rgba(226,6,19,0.1); border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    color: #e20613; font-size: 21px; margin-bottom: 18px; transition: all .3s;
}
.value-card:hover .value-icon-wrap { background: #e20613; color: #fff; transform: rotate(-5deg) scale(1.08); }

.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #1a1a1a; }
.value-card p { font-size: 13px; color: #777; line-height: 1.75; }

/* ===== MİSYON / VİZYON ===== */
.mission-vision-section { background: #111; padding: 80px 40px; }
.mv-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 50px; align-items: center;
}
.mv-divider { width: 1px; height: 220px; background: rgba(255,255,255,0.08); }

.mv-icon {
    width: 58px; height: 58px;
    background: rgba(226,6,19,0.15); border-radius: 17px;
    display: flex; align-items: center; justify-content: center;
    color: #e20613; font-size: 24px; margin-bottom: 16px;
}

.mv-tag {
    display: block; font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; color: #e20613; text-transform: uppercase; margin-bottom: 10px;
}

.mv-card h2 {
    font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
    color: #fff; margin-bottom: 14px; line-height: 1.2;
}
.mv-card h2 span { color: #e20613; }
.mv-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; }

/* ===== CTA ===== */
.inner-cta-section { padding: 50px 40px; background: #f8f8f8; border-top: 1px solid #e8e8e8; }
.inner-cta-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn-inner {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 28px; border-radius: 11px;
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: all .3s;
}
.primary-btn-inner { background: #e20613; color: #fff; border: 2px solid #e20613; }
.primary-btn-inner:hover { background: #b8000f; border-color: #b8000f; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(226,6,19,0.3); }
.outline-btn-inner { background: transparent; color: #1a1a1a; border: 2px solid #d0d0d0; }
.outline-btn-inner:hover { border-color: #e20613; color: #e20613; transform: translateY(-2px); }

/* ===== ANİMASYON ===== */
@keyframes ipFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSİVE ===== */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .mv-inner { grid-template-columns: 1fr; gap: 30px; }
    .mv-divider { width: 100%; height: 1px; }
}
@media (max-width: 768px) {
    .inner-hero { padding: 110px 20px 60px; min-height: 360px; }
    .values-section { padding: 50px 20px; }
    .mission-vision-section { padding: 50px 20px; }
    .inner-cta-section { padding: 36px 20px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 24px 20px; }
}
@media (max-width: 480px) {
    .inner-cta-inner { flex-direction: column; align-items: center; }
    .btn-inner { width: 100%; justify-content: center; }
}