.site-footer {
    background: linear-gradient(#FFFFFF, #ff2fd1);
    /*animation: footerGradientFlow 22s ease infinite;*/

    /*animation: footerGradientFlow 18s ease infinite;*/
    color: #000000;
    padding: 60px 5% 25px;
    margin-top: 80px;
    /*border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 30px rgba(176, 0, 181, 0.18);*/
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.footer-brand img {
    max-width: 150px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #000000;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.08em;

}

.footer-links,
.footer-info,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-info li,
.footer-social li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-social a {
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #000000;
    transform: translateX(3px);
}

.footer-info li {
    color: #000000;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-info i,
.footer-social i {
    color: #000000;
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #000000;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #000000;
}

/*
@keyframes footerGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
 */

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 45px 20px 20px;
        margin-top: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        gap: 12px;
        flex-direction: column;
    }
}