/* Floating Messenger Button Styles */
.messenger-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0084FF, #44A3FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.messenger-float svg {
    color: white;
    transition: transform 0.3s ease;
}

.messenger-float:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0, 132, 255, 0.6);
}

.messenger-float:hover svg {
    transform: scale(1.1);
}

.messenger-float:focus {
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 132, 255, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .messenger-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .messenger-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Hide on very small screens if needed */
@media (max-width: 480px) {
    .messenger-float {
        bottom: 10px;
        right: 10px;
    }
}
