/* ===============================
   SITE FOOTER MODERN DESIGN
================================= */

/* Footer Main */
.site-footer {
    width: 100%;
    background: linear-gradient(135deg, #1a1054, #255ff1);
    color: var(--color-white);
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle decorative shapes */
.site-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Footer Container */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;

    /* Above decorative shapes */
}

/* Brand Section */
.footer-brand {

}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;

    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);

    animation: fadeInUp 1s ease forwards;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding-left: 0;
    background: none !important;

}

.footer-social a {
    border-radius: 8px;

}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);


}

.footer-links ul li a,
.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.85);

    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact ul li strong {

    color: var(--color-white);
}

.footer-links ul li a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 20px;


}

.footer-social a img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 5px;

    transition: all 0.3s ease;
}

.footer-social a img:hover {
    transform: scale(1.2) rotate(10deg);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul li,
    .footer-contact ul li {
        font-size: 0.95rem;
    }

    .footer-social {
        justify-content: center;
    }
}
