/* Social Sharing Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white !important;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white !important;
}

/* Specific Colors */
.social-button.facebook {
    background-color: #3b5998;
}

.social-button.twitter {
    background-color: #1da1f2;
}

.social-button.linkedin {
    background-color: #0077b5;
}

.social-button.whatsapp {
    background-color: #25d366;
}

.social-button.email {
    background-color: #888888;
}

/* Responsive: Row on mobile/tablet */
@media (max-width: 991px) {
    .social-buttons {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 20px;
        margin-top: 20px;
        gap: 20px;
        /* More space when horizontal */
    }
}