/* Social Media Icons in Footer */
.footer-contact i {
    margin-left: 10px;
    color: var(--accent-secondary);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    align-items: center;
}

.footer-social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--social-color-1), var(--social-color-2));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-social a i {
    font-size: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Platform-specific colors */
.footer-social a[aria-label="Facebook"] {
    --social-color-1: #1877f2;
    --social-color-2: #0d5dbf;
}

.footer-social a[aria-label="Instagram"] {
    --social-color-1: #e4405f;
    --social-color-2: #f77737;
}

.footer-social a[aria-label="YouTube"] {
    --social-color-1: #ff0000;
    --social-color-2: #cc0000;
}

.footer-social a[aria-label="LinkedIn"] {
    --social-color-1: #0077b5;
    --social-color-2: #005885;
}

.footer-social a[aria-label="TikTok"] {
    --social-color-1: #000000;
    --social-color-2: #ff0050;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        gap: 10px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-social a i {
        font-size: 16px;
    }
}