/* Footer Social Icons Styling */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.footer-social .social-icon i {
    line-height: 1;
    vertical-align: middle;
}

.footer-social .social-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Social Media Colors */
.footer-social .social-icon.facebook  { background-color: #1877F2; }
.footer-social .social-icon.youtube   { background-color: #FF0000; }
.footer-social .social-icon.twitter   { background-color: #1DA1F2; }
.footer-social .social-icon.instagram { background-color: #E1306C; }
.footer-social .social-icon.linkedin  { background-color: #0077B5; }
.footer-social .social-icon.whatsapp  { background-color: #25D366; }
.footer-social .social-icon.email     { background-color: #EA4335; }

/* Responsive */
@media (max-width: 576px) {
    .footer-social .social-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        margin: 8 10px;
    }
}
