/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    padding: 8px 24px 8px 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
}

/* WhatsApp Icon Circle */
.whatsapp-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #25D366;
    border-radius: 50%;
    font-size: 28px;
    flex-shrink: 0;
}

.whatsapp-text {
    white-space: nowrap;
}


/* Tablet */
@media (max-width: 767.98px) {

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        height: 58px;
        padding: 6px 18px 6px 6px;
        gap: 9px;
        font-size: 16px;
    }

    .whatsapp-icon {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}


/* Mobile */
@media (max-width: 575.98px) {

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        height: 54px;
        padding: 5px 15px 5px 5px;
        gap: 8px;
        font-size: 15px;
    }

    .whatsapp-icon {
        width: 44px;
        height: 44px;
        font-size: 23px;
    }
}