/* =========================================================
   Misyon & Vizyon — mission-vision.css
   Scope: .mv-page
   Tüm renkler tx-theme.css, tüm fontlar tx-typography.css
   token'larından çekilir.
   ========================================================= */

.mv-page {
    background: var(--tx-white);
    overflow-x: clip;
}

/* ---------- HERO ---------- */
.mv-hero {
    padding: 50px 0 30px;
    background: var(--tx-white);
}

.mv-hero-inner {
    max-width: 980px;
}

.mv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--tx-navy-500), transparent 92%);
    color: var(--tx-navy-700);
    font-family: var(--tx-font-sans);
    font-size: var(--tx-text-xs);
    font-weight: var(--tx-font-semibold);
    letter-spacing: var(--tx-tracking-wide);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.mv-hero-badge i {
    color: var(--tx-navy-500);
}

.mv-hero-title {
    color: var(--tx-navy-900);
    margin: 0 0 16px;
}

.mv-hero-title-accent {
    color: var(--tx-navy-500);
}

.mv-hero-desc {
    color: var(--tx-text-muted);
    margin: 0;
    max-width: 820px;
    font-size: var(--tx-text-base);
    line-height: var(--tx-leading-relaxed);
}

/* ---------- BÖLÜM ---------- */
.mv-section {
    padding: 60px 0;
    background: var(--tx-white);
}

.mv-section--alt {
    background: var(--tx-cream);
}

/* ---------- BADGE (Misyonumuz, Vizyonumuz vs.) ---------- */
.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tx-navy-500);
    color: var(--tx-white);
    padding: 7px 18px;
    border-radius: 999px;
    font-family: var(--tx-font-sans);
    font-size: var(--tx-text-sm);
    font-weight: var(--tx-font-semibold);
    margin-bottom: 18px;
}

.mv-badge i {
    font-size: var(--tx-text-base);
}

.mv-badge-center {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- GÖRSEL ---------- */
.mv-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow-x: clip;
    box-shadow: var(--tx-shadow-md);
    display: block;
}

.mv-img-wrap > .ts-media-lazy,
.mv-img-wrap > .ts-media-lazy > img,
.mv-detail-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.mv-img-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--tx-navy-500);
    color: var(--tx-white);
    font-family: var(--tx-font-sans);
    font-size: var(--tx-text-sm);
    font-weight: var(--tx-font-semibold);
    box-shadow: 0 6px 20px rgba(4, 65, 95, 0.35);
    white-space: nowrap;
    z-index: 2;
}

.mv-img-chip-bottom-left {
    bottom: -14px;
    left: 20px;
}

.mv-img-chip-bottom-right {
    bottom: -14px;
    right: 20px;
}

/* ---------- FEATURE LİSTESİ ---------- */
.mv-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--tx-white);
    border: 1px solid var(--tx-cream-soft);
    border-radius: 14px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.mv-feature-item:hover {
    background: var(--tx-cream);
    border-color: var(--tx-navy-100);
    transform: translateX(4px);
}

.mv-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--tx-navy-500), transparent 88%);
    color: var(--tx-navy-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--tx-text-lg);
}

.mv-feature-body {
    flex: 1;
    min-width: 0;
}

.mv-feature-body strong {
    display: block;
    color: var(--tx-navy-900);
    font-family: var(--tx-font-sans);
    font-size: var(--tx-text-base);
    font-weight: var(--tx-font-bold);
    margin-bottom: 2px;
}

.mv-feature-body span {
    display: block;
    color: var(--tx-text-muted);
    font-size: var(--tx-text-sm);
    line-height: var(--tx-leading-relaxed);
}

/* ---------- DEĞER KARTLARI ---------- */
.mv-value-card {
    background: var(--tx-white);
    border: 1px solid var(--tx-cream-soft);
    border-radius: 20px;
    padding: 26px;
    text-align: center;
    box-shadow: var(--tx-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.mv-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tx-shadow-md);
    border-color: var(--tx-navy-100);
}

.mv-value-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--tx-navy-500), transparent 88%);
    color: var(--tx-navy-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--tx-text-2xl);
    margin: 0 auto 16px;
}

.mv-value-card h4 {
    color: var(--tx-navy-900);
    font-family: var(--tx-font-display);
    font-size: var(--tx-text-lg);
    font-weight: var(--tx-font-bold);
    margin: 0 0 8px;
}

.mv-value-card p {
    color: var(--tx-text-muted);
    font-size: var(--tx-text-sm);
    line-height: var(--tx-leading-relaxed);
    margin: 0;
}

.mv-values-img-wrap {
    border-radius: 22px;
    overflow-x: clip;
    box-shadow: var(--tx-shadow-md);
}

.mv-values-img-wrap > .ts-media-lazy,
.mv-values-img-wrap > .ts-media-lazy > img,
.mv-values-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .mv-section {
        padding: 44px 0;
    }
}

@media (max-width: 767.98px) {
    .mv-hero {
        padding: 36px 0 24px;
    }
}
