Move Right Removals | Stress-Free House & Office Moves
:root{
–brand-blue:#0D3B66;
–brand-red:#C62828;
–ink:#1E1E1E;
–ink-muted:#4A4A4A;
–bg:#FFFFFF;
–soft:#F5F7FB;
–ring:#E3E8F2;
–white:#FFFFFF;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(–bg);color:var(–ink);font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;line-height:1.45}
img{max-width:100%;height:auto}
.container{max-width:1120px;margin:0 auto;padding:0 20px}
header{position:sticky;top:0;background:var(–white);border-bottom:1px solid var(–ring);z-index:50}
.topbar{display:flex;align-items:center;gap:16px;justify-content:space-between;padding:14px 0}
.brand h1{margin:0;font-size:1.125rem;color:var(–brand-blue);letter-spacing:.3px}
.logo{margin-left:auto}
.cta-call{display:inline-block;background:var(–brand-red);color:#fff;text-decoration:none;padding:12px 18px;border-radius:10px;font-weight:700;transition:transform .06s ease, opacity .2s}
.cta-call:hover{opacity:.92;transform:translateY(-1px)}
.hero{background:linear-gradient(180deg,#ffffff 0%, #f7f9ff 100%);padding:56px 0 36px;border-bottom:1px solid var(–ring)}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center}
.hero h2{font-size:2.1rem;line-height:1.15;margin:0 0 10px;color:var(–brand-blue)}
.hero p{margin:0 0 18px;color:var(–ink-muted);font-size:1.05rem}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.badge{border:1px solid var(–ring);background:var(–white);padding:8px 10px;border-radius:8px;font-size:.88rem}
section{padding:42px 0}
.cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.card{background:var(–white);border:1px solid var(–ring);border-radius:14px;padding:18px}
.card h3{margin:0 0 6px;color:var(–brand-blue);font-size:1.05rem}
.card p{margin:0;color:var(–ink-muted);font-size:.98rem}
.quote{background:var(–soft);border-top:1px solid var(–ring);border-bottom:1px solid var(–ring)}
.form-wrap{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.form{background:var(–white);border:1px solid var(–ring);border-radius:16px;padding:20px}
.form h3{margin:0 0 10px;color:var(–brand-blue)}
.field{display:flex;flex-direction:column;gap:6px}
.field input,.field textarea{padding:12px 12px;border:1px solid #d7dcea;border-radius:10px;font-size:1rem}
.field textarea{min-height:110px;resize:vertical}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.submit{display:flex;gap:12px;align-items:center;flex-wrap:wrap}
.btn{appearance:none;border:none;border-radius:12px;padding:13px 18px;font-weight:800;cursor:pointer}
.btn-primary{background:var(–brand-blue);color:#fff}
.btn-outline{background:#fff;color:var(–brand-red);border:2px solid var(–brand-red);text-decoration:none}
.legal{font-size:.86rem;color:var(–ink-muted)}
.note{font-size:.9rem;color:var(–ink-muted)}
footer{background:#0f1b2d;color:#e8eefb}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px;padding:28px 0}
.footer-grid a{color:#e8eefb;text-decoration:none}
.mini{font-size:.9rem;color:#b7c3de}
Move the Right Way — Fast, Careful, and Affordable.
House moves, student moves, and office relocations — across town or across the country. We pack, protect, and deliver with care so you can settle in sooner.
✅ Fully insured
🚚 Home & office moves
📦 Packing service
💷 Fair, transparent pricing
What We Do
From single rooms to full offices — we plan, lift, and transport with the right kit and the right attitude.
Home Moves
Safe, tidy, and on time. We protect floors, wrap furniture, and place items where you want them.
Student Moves
Budget-friendly moves between halls, flats, and storage — perfect for term starts and ends.
Office Relocations
Minimal downtime. Desk mapping, IT-safe handling, and weekend moves available.
document.getElementById(‘y’).textContent = new Date().getFullYear();
function validateAndSend(){
const f = document.getElementById(‘quoteForm’);
const name = document.getElementById(‘name’).value.trim();
const phone = document.getElementById(‘phone’).value.trim();
const email = document.getElementById(’email’).value.trim();
const fromA = document.getElementById(‘from’).value.trim();
const toA = document.getElementById(‘to’).value.trim();
if(!name || !phone || !email || !fromA || !toA){
alert(‘Please complete all required fields.’);
return false;
}
const subject = encodeURIComponent(‘New Quote Request — Move Right Removals’);
const body =
`Name: ${name}
Contact Number: ${phone}
Email: ${email}
Moving Date: ${document.getElementById(‘date’).value}
Moving From:
${fromA}
Moving To:
${toA}
Notes:
${document.getElementById(‘notes’).value}`.replace(/\n/g, ‘%0D%0A’);
f.action = `mailto:r.wisdom777@gmail.com?subject=${subject}&body=${body}`;
return true;
}