/* Social Footer Icons Styles */
.social-footer-icons {
    padding: 20px 0;
    clear: both;
    width: 100%;
}

.social-footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.social-footer-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.social-footer-icons a:hover::before {
    left: 100%;
}

.social-footer-icons a i {
    font-size: inherit;
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* Platform-specific hover colors (optional) */
.social-footer-icons a.facebook:hover {
    color: #1877f2 !important;
}
.social-footer-icons a.twitter:hover {
    color: #000000 !important;
}
.social-footer-icons a.instagram:hover {
    color: #e4405f !important;
}
.social-footer-icons a.linkedin:hover {
    color: #0077b5 !important;
}
.social-footer-icons a.youtube:hover {
    color: #ff0000 !important;
}
.social-footer-icons a.github:hover {
    color: #333 !important;
}
.social-footer-icons a.pinterest:hover {
    color: #bd081c !important;
}
.social-footer-icons a.tiktok:hover {
    color: #000000 !important;
}
.social-footer-icons a.whatsapp:hover {
    color: #25d366 !important;
}
.social-footer-icons a.telegram:hover {
    color: #0088cc !important;
}

/* Animation effects */
.social-footer-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .social-footer-icons a {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .social-footer-icons a {
        margin: 0 5px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .social-footer-icons a {
        opacity: 0.9;
    }
    .social-footer-icons a:hover {
        opacity: 1;
    }
}