/* Footer Social Icons Styling */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social-icons a:active {
    transform: translateY(-1px);
}

/* Specific brand colors on hover */
.footer-social-icons a[aria-label="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-social-icons a[aria-label="X (Twitter)"]:hover {
    background: #000000;
    border-color: #ffffff;
}

.footer-social-icons a[aria-label="TikTok"]:hover {
    background: #000000;
    border-color: #69c9d0;
}

.footer-social-icons a[aria-label="YouTube"]:hover {
    background: #ff0000;
    border-color: #ff0000;
}
