/* Footer - Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    max-width: 250px;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 246, 254, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.3rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: #01061c;
    box-shadow: 0 5px 15px rgba(0, 246, 254, 0.4);
    background: #ffffff;
    border-color: #ffffff;
}

.social-link:hover .fa-facebook-f {
    color: #1877f2;
}

.social-link:hover .fa-whatsapp {
    color: #25D366;
}

.social-link:hover .fa-instagram {
    color: #E1306C;
}

.social-link:hover .fa-twitter {
    color: #14171A;
}

.social-link:hover .fa-youtube {
    color: #ff0000;
}

.social-link:hover .fa-linkedin-in {
    color: #0077b5;
}

.social-link:hover .fa-envelope {
    color: #EA4335;
}

.social-link:hover .fa-facebook-f {
    background: white;
    border-radius: 50%;
    padding: 2px;
}