 /* VİZYON & MİSYON STİLLERİ */
    .vizyon-misyon {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin: 40px 0;
    }

    .vizyon-kart {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 16px;
        padding: 30px 25px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .vizyon-kart::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #c9a84c, #f0d68a);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .vizyon-kart:hover::before {
        opacity: 1;
    }

    .vizyon-kart:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .vizyon-ikon {
        width: 70px;
        height: 70px;
        background: rgba(201, 168, 76, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        font-size: 1.8rem;
        color: #c9a84c;
        transition: all 0.3s ease;
    }

    .vizyon-kart:hover .vizyon-ikon {
        background: rgba(201, 168, 76, 0.25);
        transform: scale(1.05);
    }

    .vizyon-kart h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 12px;
    }

    .vizyon-kart p {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: 0.95rem;
        margin: 0;
    }

    /* KOORDİNATÖR MESAJI */
    .koordinator-mesaji {
        background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
        border: 1px solid rgba(201, 168, 76, 0.2);
        border-radius: 16px;
        padding: 40px;
        margin: 40px 0 30px;
        position: relative;
    }

    .koordinator-mesaji::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 25px;
        font-size: 6rem;
        color: rgba(201, 168, 76, 0.15);
        font-family: Georgia, serif;
        line-height: 1;
    }

    .mesaj-baslik {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mesaj-baslik i {
        font-size: 1.8rem;
        color: #c9a84c;
    }

    .mesaj-baslik h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--heading-color);
        margin: 0;
    }

    .mesaj-icerik p {
        color: var(--text-muted);
        line-height: 2;
        font-size: 1.05rem;
        padding-left: 10px;
        border-left: 3px solid #c9a84c;
        padding-left: 20px;
        margin-bottom: 25px;
    }

    .imza {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 20px;
    }

    .imza strong {
        font-size: 1.1rem;
        color: var(--heading-color);
    }

    .imza span {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

    /* RESPONSİVE */
    @media (max-width: 768px) {
        .vizyon-misyon {
            grid-template-columns: 1fr;
        }

        .koordinator-mesaji {
            padding: 25px 20px;
        }

        .koordinator-mesaji::before {
            font-size: 4rem;
            left: 15px;
        }

        .mesaj-icerik p {
            font-size: 0.95rem;
            padding-left: 12px;
        }

        .imza {
            align-items: flex-start;
            padding-right: 0;
        }
    }