/* Social Floating Icons */
.social-floating {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.social-floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-floating a:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* Social Header Icons */
.social-header {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.social-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-header a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-buttons a.facebook {
    background-color: #3b5998;
}

.share-buttons a.linkedin {
    background-color: #0077b5;
}

.share-buttons a.twitter {
    background-color: #1da1f2;
}

.share-buttons a.whatsapp {
    background-color: #25d366;
}

.share-buttons a i {
    margin-right: 8px;
}

.share-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Enhanced Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .social-floating {
        display: none;
    }
    
    .social-header {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }
}
