.social-links a {
    transition: all 0.3s ease;
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-links a.twitter:hover {
    color: #1DA1F2;
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

.social-links a.facebook:hover {
    color: #4267B2;
    box-shadow: 0 8px 20px rgba(66, 103, 178, 0.3);
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.social-links a.youtube:hover {
    color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.contact-info-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.contact-info-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background: white;
    margin-bottom: 15px;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4ECDC4;
}
