/* Enhanced Social Media Links Styles */
.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-account.enhanced {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-account.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.social-account.enhanced:hover::before {
    left: 100%;
}

.social-account.enhanced:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-account.enhanced:hover .social-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon-wrapper i {
    font-size: 1.3rem;
    color: white;
}

.social-content {
    flex: 1;
}

.social-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.social-content p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.social-handle {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}

.social-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-account.enhanced:hover .social-arrow {
    color: white;
    transform: translateX(3px);
}

/* Animation for social links */
@keyframes socialPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.social-account.enhanced {
    animation: socialPulse 2s ease-in-out infinite;
}

.social-account.enhanced:nth-child(1) { animation-delay: 0s; }
.social-account.enhanced:nth-child(2) { animation-delay: 0.5s; }
.social-account.enhanced:nth-child(3) { animation-delay: 1s; }

/* Mobile responsiveness for enhanced social links */
@media (max-width: 768px) {
    .social-account.enhanced {
        padding: 0.8rem;
    }
    
    .social-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-right: 0.8rem;
    }
    
    .social-icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .social-content strong {
        font-size: 1rem;
    }
    
    .social-content p {
        font-size: 0.8rem;
    }
    
    .social-handle {
        font-size: 0.75rem;
    }
}

/* Additional footer enhancements */
.footer-column h3 {
    font-size: 1.4rem;
}

.contact-info p {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 0.5rem;
    border-radius: 4px;
}

.contact-info p:last-child {
    border-bottom: none;
}

/* Enhanced copyright section */
.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-color);
}