Book Online

  • Schedule

    Book your appointment online or by calling us at 514-606-4030.

  • Contact

    Our pickup team will reach out to you 15–30 minutes before your booked appointment window to inform you of the time we will arrive.

  • Quote

    You point out the stuff to take, and we'll check it over and give you an affordable and fair price.

  • Remove

    When we're through, we'll remove your items, sweep up the area, collect the payment, and haul the junk away.

// Read quote details from URL and display them (function() { const params = new URLSearchParams(window.location.search); const city = params.get('city'); const date = params.get('date'); const items = params.get('items'); const price = params.get('price'); const load = params.get('load'); // If we have quote data, show it if (city || items || price) { // Auto-fill City field if it exists const cityField = document.querySelector('input[name*="city" i], input[id*="city" i]'); if (cityField && city) { cityField.value = city; } // Create a quote summary box const quoteBox = document.createElement('div'); quoteBox.style.cssText = 'background: #f0fdf4; border: 3px solid #3AA465; border-radius: 12px; padding: 20px; margin-bottom: 25px; font-family: Arial, sans-serif;'; let quoteHTML = '

📋 Your Quote Details

'; if (city) quoteHTML += `

City: ${city}

`; if (date) quoteHTML += `

Service Date: ${date}

`; if (items) quoteHTML += `

Items: ${items}

`; if (load) quoteHTML += `

Load Size: ${load}

`; if (price) quoteHTML += `

Estimated Price: $${price}

`; quoteHTML += '

💡 Copy the items list above and paste it into the form below!

'; quoteBox.innerHTML = quoteHTML; // Insert the quote box before the form const form = document.querySelector('form'); if (form) { form.parentNode.insertBefore(quoteBox, form); } } })();