﻿/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 20px;
    margin-top: 80px;
}

    .site-footer h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: white;
    }

    .site-footer h5 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
    }

    .site-footer p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 10px;
        line-height: 1.6;
    }

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: var(--transition);
        display: inline-block;
        position: relative;
    }

        .footer-links a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transform: translateX(-10px);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 8px;
        }

            .footer-links a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        font-size: 1.2rem;
        transition: var(--transition);
        text-decoration: none;
    }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 120, 212, 0.4);
        }

/* Footer Divider */
.site-footer hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

/* Copyright */
.site-footer .text-center p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
        text-align: center;
    }

        .site-footer .row > div {
            margin-bottom: 30px;
        }

    .footer-links {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .site-footer h4,
    .site-footer h5 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding: 30px 0 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animation for footer links */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer .row > div {
    animation: fadeInUp 0.6s ease-out;
}

    .site-footer .row > div:nth-child(1) {
        animation-delay: 0.1s;
    }

    .site-footer .row > div:nth-child(2) {
        animation-delay: 0.2s;
    }

    .site-footer .row > div:nth-child(3) {
        animation-delay: 0.3s;
    }

    .site-footer .row > div:nth-child(4) {
        animation-delay: 0.4s;
    }
