/* =============== FOOTER SOCIAL ICONS CSS =============== */

.footer-social {
    position: relative;
    z-index: 10;
    margin: 2rem 0;
}

.social-links-enhanced {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link-enhanced {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
}

.social-link-enhanced:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link-enhanced:hover .social-icon-bg {
    opacity: 1;
    transform: scale(1.2);
}

.social-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

/* Platform-specific hover colors */
.social-link-enhanced.linkedin:hover {
    color: #0077b5;
    border-color: rgba(0, 119, 181, 0.3);
}

.social-link-enhanced.linkedin:hover .social-icon-bg {
    background: radial-gradient(circle at center, rgba(0, 119, 181, 0.1) 0%, transparent 70%);
}

.social-link-enhanced.github:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link-enhanced.email:hover {
    color: #ea4335;
    border-color: rgba(234, 67, 53, 0.3);
}

.social-link-enhanced.email:hover .social-icon-bg {
    background: radial-gradient(circle at center, rgba(234, 67, 53, 0.1) 0%, transparent 70%);
}

.social-link-enhanced.phone:hover {
    color: #34a853;
    border-color: rgba(52, 168, 83, 0.3);
}

.social-link-enhanced.phone:hover .social-icon-bg {
    background: radial-gradient(circle at center, rgba(52, 168, 83, 0.1) 0%, transparent 70%);
}

/* Tooltip styles */
.social-link-enhanced::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.social-link-enhanced:hover::after {
    opacity: 1;
    bottom: -40px;
}

/* Scroll to top button */
.footer-interactive {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.footer-scroll-top {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.footer-scroll-top:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.scroll-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.footer-scroll-top:hover .scroll-top-bg {
    opacity: 1;
    transform: scale(1.2);
}

.scroll-top-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(100, 255, 218, 0.3), rgba(255, 100, 255, 0.3));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -2;
    filter: blur(4px);
}

.footer-scroll-top:hover .scroll-top-glow {
    opacity: 1;
}

/* =============== INTERACTIVE LOVE MESSAGE ANIMATIONS =============== */

/* Sparkle Animation */
@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0);
    }
}

/* Heart Pulse Animation */
@keyframes heartPulse {
    0%, 100% {
        transform: scale(1.3) rotate(5deg);
    }
    50% {
        transform: scale(1.5) rotate(-5deg);
    }
}

/* Heart Beat Animation */
@keyframes heartBeat {
    0%, 50%, 100% {
        transform: scale(1);
    }
    25%, 75% {
        transform: scale(1.1);
    }
}

/* Love Ripple Effect */
.love-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, rgba(255, 107, 107, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.interactive-love-message.clicked .love-ripple {
    width: 200px;
    height: 200px;
    opacity: 1;
}

/* Mobile responsive */

