.modern-footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.social-item {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.social-item svg {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-item:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modern-footer-social {
        justify-content: center;
    }
}