/* Social Sharing Styles */
.social-sharing {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.social-sharing h5 {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-icons-facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
    color: white;
}

.social-icons-facebook:hover {
    background: linear-gradient(135deg, #2d4373, #1e2f5a);
    color: white;
}

.social-icons-twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-icons-twitter:hover {
    background: linear-gradient(135deg, #0d8bd9, #0a6bb3);
    color: white;
}

.social-icons-linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.social-icons-linkedin:hover {
    background: linear-gradient(135deg, #005885, #003d5c);
    color: white;
}

.social-icons-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: white;
}

.social-icons-whatsapp:hover {
    background: linear-gradient(135deg, #1da851, #128c7e);
    color: white;
}

.social-icons-email {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
}

.social-icons-email:hover {
    background: linear-gradient(135deg, #545b62, #3d4449);
    color: white;
}

.social-icons i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .social-icons i {
        font-size: 1rem;
    }
}

/* Animation for tooltips */
[data-bs-toggle="tooltip"] {
    cursor: pointer;
}

/* Loading state */
.social-icons a.loading {
    opacity: 0.6;
    pointer-events: none;
}

.social-icons a.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
