 /* ================= VİZYON & MİSYON ÖZEL CSS ================= */

.vizyon-container {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Başlık Şeridi */
.page-header-bar {
    width: 100%;
    padding: 25px 0;
    background-color: #ffffff;
    border-bottom: 4px solid #000000;
    text-align: center;
}

.container-title h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: #000;
    text-transform: uppercase;
}

.container-title .sub-title {
    color: #ff6600;
    font-weight: 800;
}

/* Kapsayıcı */
.content-wrapper {
    max-width: 1240px;
    margin: 12px auto;
    padding: 0 20px;
}

/* Üst Büyük Kutu */
.full-width-card {
    margin-bottom: 15px;
}

.wide-card {
    border-top: 5px solid #000 !important;
}

.wide-card p {
    font-size: 17px !important;
    max-width: 1000px;
    margin: 0 auto !important;
}

/* Grid */
.vizyon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Kartlar */
.info-card {
    background: #ffffff;
    padding: 18px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 5px solid #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-card i {
    font-size: 34px;
    color: #222;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.info-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}

/* Hover */
.info-card:hover {
    transform: translateY(-5px);
    border-top: 5px solid #ff0000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-card:hover i {
    color: #ff0000;
}

/* Değerlerimiz */
.degerlerimiz-section {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

.degerler-content h2 {
    font-size: 28px;
    margin: 0 0 18px 0;
    letter-spacing: 2px;
}

.degerler-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.degerler-tags span {
    background: #555555;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid #666;
    transition: 0.3s;
    font-size: 14px;
}

.degerler-tags span:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.degerler-motto {
    margin-top: 15px;
    font-style: italic;
    color: #888;
    font-size: 16px;
}

/* Mobil */
@media (max-width: 992px) {
    .vizyon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .page-header-bar {
        padding: 20px 0;
    }

    .container-title h1 {
        font-size: 26px;
    }

    .content-wrapper {
        margin: 10px auto;
        padding: 0 12px;
    }

    .vizyon-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card {
        padding: 16px 14px;
    }

    .info-card i {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .wide-card p {
        font-size: 15px !important;
    }

    .degerlerimiz-section {
        padding: 25px 10px;
    }

    .degerler-content h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .degerler-tags span {
        padding: 8px 14px;
        font-size: 13px;
    }

    .degerler-motto {
        margin-top: 12px;
        font-size: 14px;
    }
}
