/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

.footer-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* Social media brand colors on hover */
.footer-social .social-icon.twitter:hover {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.footer-social .social-icon.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: transparent;
}

.footer-social .social-icon.tiktok:hover {
    background: #000000;
    color: #00F2EA;
    text-shadow: 1px 1px 2px #FF0050;
    border-color: #000000;
}

.footer-social .social-icon.youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.footer-social .social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* WhatsApp button in contact info */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 211, 102, 0.2);
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-social .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
