.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.contact-link {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-link .icon-footer {
    font-size: 1.7rem;
    transition: all 0.4s ease-in-out;
}

.contact-link .contact-text {
    margin-left: 0.5rem;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.4s ease;
    white-space: nowrap;
    font-weight: 500;
}

.contact-link:hover .icon-footer {
    transform: scale(1.25) rotate(10deg);
    animation: pulseGlow 0.6s ease-in-out;
}

.contact-link:hover .contact-text {
    opacity: 1;
    transform: translateX(0);
    animation: bounceInLeft 0.5s ease;
}

@keyframes pulseGlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.25) rotate(10deg); }
    100% { transform: scale(1.1) rotate(0deg); }
}

@keyframes bounceInLeft {
    0% { opacity: 0; transform: translateX(-20px); }
    60% { opacity: 1; transform: translateX(5px); }
    100% { transform: translateX(0); }
}