.floating-whatsapp {
    position: fixed !important;
    right: 25px !important;
    bottom: 25px !important;
    z-index: 999999 !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    padding: 10px 18px 10px 10px !important;

    background-color: #075E54 !important;
    color: #ffffff !important;

    border-radius: 50px !important;
    text-decoration: none !important;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #054C44 !important;
    color: #ffffff !important;
    text-decoration: none !important;

    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
}
.floating-whatsapp-icon {
    width: 42px !important;
    height: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background-color: #ffffff !important;
    color: #075E54 !important;

    border-radius: 50% !important;

    font-size: 22px !important;
    flex-shrink: 0;
}

.floating-whatsapp-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    white-space: nowrap;
}

@media (max-width: 768px) {

    .floating-whatsapp {
        right: 15px !important;
        bottom: 15px !important;
        padding: 8px 14px 8px 8px !important;
    }

    .floating-whatsapp-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 21px !important;
    }

    .floating-whatsapp-text {
        font-size: 13px !important;
        color: #ffffff !important;
    }
}