/**
 * WhatsApp Floating Button - Custom Styles
 * Large, prominent button for better visibility and engagement
 */

.whatsapp-float-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 45px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    animation: whatsappPulse 2s infinite !important;
    cursor: pointer !important;
}

.whatsapp-float-btn:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.8) !important;
    color: white !important;
    text-decoration: none !important;
    animation: none !important;
}

.whatsapp-float-btn:focus,
.whatsapp-float-btn:active {
    color: white !important;
    text-decoration: none !important;
    outline: none !important;
}

.whatsapp-float-btn i {
    line-height: 1 !important;
    display: block !important;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.15);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px !important;
        right: 20px !important;
        width: 65px !important;
        height: 65px !important;
        font-size: 36px !important;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .whatsapp-float-btn {
        width: 85px !important;
        height: 85px !important;
        font-size: 48px !important;
    }
}

/* Extra accessibility for touch devices */
@media (hover: none) and (pointer: coarse) {
    .whatsapp-float-btn {
        width: 80px !important;
        height: 80px !important;
        font-size: 45px !important;
    }
}