
/* Social Media & WhatsApp Button Styles */

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--white);
}

.social-facebook:hover { color: #1877F2; }
.social-instagram:hover { color: #E4405F; }
.social-tiktok:hover { color: #000000; }

/* Header Nav Social Icons */
.nav-social-item {
    margin-left: 15px;
}

.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-social-link {
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-social-link:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9998; /* Below cookie banner but above content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Adjustments for Social Icons */
@media (max-width: 1024px) {
    .nav-social-item {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .nav-social {
        gap: 30px;
        background: var(--bg-warm);
        padding: 15px 30px;
        border-radius: 50px;
        width: 100%;
        justify-content: center;
    }

    .nav-social-link {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile to avoid overlap/tap issues */
    }
}
