/* Floating Contact Buttons - Universal Styles */
.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.email-btn {
    background: linear-gradient(135deg, #EA4335, #D33B2C);
    animation: pulse-email 2s infinite 0.5s;
}

.email-btn:hover {
    background: linear-gradient(135deg, #D33B2C, #B23121);
}

/* Pulse animations */
@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@keyframes pulse-email {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(234, 67, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(234, 67, 53, 0.6), 0 0 0 10px rgba(234, 67, 53, 0.1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-contact {
        left: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .floating-contact {
        left: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Ensure buttons don't interfere with other elements */
@media (max-width: 1024px) {
    .floating-contact {
        z-index: 999;
    }
}

