/* Footer Social Links - Centered Icons */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.2);
    border: 2px solid rgba(79, 70, 229, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4F46E5;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4F46E5;
    border-color: #4F46E5;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.social-links a i {
    line-height: 1;
}