/* Contact Section Social Media Styles */
.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-social .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-social .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-social .social-links a.facebook:hover {
    background: #1877f2;
    color: white;
}

.contact-social .social-links a.twitter:hover {
    background: #1da1f2;
    color: white;
}

.contact-social .social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.contact-social .social-links a.youtube:hover {
    background: #ff0000;
    color: white;
}

.contact-social .social-links a.linkedin:hover {
    background: #0077b5;
    color: white;
}

/* Footer Social Links Enhancement */
.footer .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer .social-links a.facebook:hover {
    background: #1877f2;
}

.footer .social-links a.twitter:hover {
    background: #1da1f2;
}

.footer .social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer .social-links a.youtube:hover {
    background: #ff0000;
}

.footer .social-links a.linkedin:hover {
    background: #0077b5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-social .social-links {
        justify-content: center;
    }
    
    .contact-social .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer .social-links {
        flex-wrap: wrap;
    }
    
    .footer .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Animation for social links */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-social {
    animation: fadeInUp 0.6s ease;
}

/* No social media message */
.no-social-message {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}
