﻿.school-footer {
    margin-top: 100px;
    background: var(--dark);
    background-image: radial-gradient(circle at 10% 10%, rgba(37,71,244,.25), transparent 40%), radial-gradient(circle at 90% 30%, rgba(124,58,237,.2), transparent 40%);
    color: white;
    padding: 90px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    transition: .35s var(--ease);
}

    .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .footer-logo:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(37,71,244,.35);
    }

.footer-brand h4 {
    font-weight: 900;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 2;
}

.school-footer h5 {
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    color: white;
}

    .school-footer h5::after {
        content: "";
        display: block;
        width: 42px;
        height: 3px;
        border-radius: 3px;
        background: var(--gradient-warm);
        margin-top: 10px;
    }

.school-footer ul {
    list-style: none;
    padding: 0;
}

.school-footer li {
    margin-bottom: 14px;
    color: #94a3b8;
}

.school-footer a {
    text-decoration: none;
    color: #94a3b8;
    transition: .3s var(--ease);
}

    .school-footer a:hover {
        color: white;
        padding-right: 8px;
    }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.1);
        color: white;
        transition: .3s var(--ease);
    }

        .footer-social a:hover {
            background: var(--gradient-main);
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(37,71,244,.4);
        }

.footer-contact p {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    color: #64748b;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
}
