/* Footer Social Icons */
.footer-social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #fff;
    color: #333;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 1rem;
}

/* Platform specific colors on hover */
.footer-social a:hover i.fa-facebook-f {
    color: #1877f2;
}

.footer-social a:hover i.fa-twitter {
    color: #1da1f2;
}

.footer-social a:hover i.fa-instagram {
    color: #e1306c;
}

.footer-social a:hover i.fa-linkedin-in {
    color: #0077b5;
}

.footer-social a:hover i.fa-youtube {
    color: #ff0000;
}

.footer-social a:hover i.fa-whatsapp {
    color: #25d366;
}