For Landscaping Businesses

Stop Answering
"How Much for Lawn Care?"
Let a Calculator Do It

Free quote calculator for your landscaping business website. Customers get instant lawn care prices. You get qualified leads. Setup in 5 minutes.

No credit card required
Free forever for calculators
Works on Wix, WordPress, any site
๐ŸŒฟ Get Your Lawn Care Quote ๐Ÿก
๐Ÿ  Property Details
๐ŸŒฑ Service Options
 
 
โž• Add-On Services
 
 
๐Ÿ’ฐ Your Quote
$ 47.00
/visit
๐ŸŽ‰ You save 15% with bi-weekly service!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
export function landscapingQuoteForm(form: FormTs) {
form.setTitle(() => '๐ŸŒฟ Get Your Lawn Care Quote ๐Ÿก');
 
form.configureCompletionScreen({
type: 'text',
title: () => '๐ŸŽ‰ Quote Ready!',
message: () => 'Your lawn care quote has been generated. Download your PDF to save the details.'
});
 
// Pricing data
const sizeRates: Record<string, number> = {
'small': 35, // up to 5,000 sq ft
'medium': 55, // 5,001-10,000 sq ft
'large': 85, // 10,001-20,000 sq ft
'xlarge': 120 // 20,000+ sq ft
};
 
const serviceMultipliers: Record<string, number> = {
'mowing': 1.0,
'full-care': 2.0,
'seasonal-cleanup': 1.5
};
 
const frequencyDiscounts: Record<string, number> = {
'one-time': 0,
'weekly': 20,
'bi-weekly': 15,
'monthly': 10
};
 
// Add-on prices
const addonPrices: Record<string, number> = {
'edging': 15,
'weedControl': 25,
'fertilizing': 40,
'leafRemoval': 50,
'hedgeTrimming': 45,
'mulching': 60,
'aeration': 75,
'overseeding': 55
};
 
// Property Details
const property = form.addSubform('property', {
title: () => '๐Ÿ  Property Details',
mobileBreakpoint: 0
});
 
property.addRow(row => {
row.addDropdown('size', {
label: 'Lawn Size',
defaultValue: 'medium',
isRequired: true,
options: [
{ id: 'small', name: '๐ŸŒฑ Small (up to 5,000 sq ft)' },
{ id: 'medium', name: '๐ŸŒฟ Medium (5,001-10,000 sq ft)' },
{ id: 'large', name: '๐ŸŒณ Large (10,001-20,000 sq ft)' },
{ id: 'xlarge', name: '๐Ÿž๏ธ Extra Large (20,000+ sq ft)' }
]
}, '1fr');
 
row.addDropdown('type', {
label: 'Property Type',
defaultValue: 'residential',
isRequired: true,
options: [
{ id: 'residential', name: '๐Ÿก Residential' },
{ id: 'commercial', name: '๐Ÿข Commercial' }
]
}, '1fr');
});
 
property.addRow(row => {
row.addDropdown('terrain', {
label: 'Terrain',
defaultValue: 'flat',
isRequired: true,
options: [
{ id: 'flat', name: 'โž– Flat' },
{ id: 'sloped', name: '๐Ÿ“ Sloped (+15%)' },
{ id: 'complex', name: '๐Ÿ”€ Complex (+25%)' }
]
}, '1fr');
 
row.addDropdown('condition', {
label: 'Current Condition',
defaultValue: 'maintained',
isRequired: true,
options: [
{ id: 'maintained', name: 'โœจ Well Maintained' },
{ id: 'overgrown', name: '๐ŸŒพ Overgrown (+20%)' },
{ id: 'neglected', name: '๐ŸŒฟ Neglected (+40%)' }
]
}, '1fr');
});
 
// Service Options
const options = form.addSubform('options', {
title: () => '๐ŸŒฑ Service Options',
mobileBreakpoint: 0
});
 
options.addRow(row => {
row.addRadioButton('serviceType', {
label: 'Service Type',
defaultValue: 'mowing',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'mowing', name: '๐Ÿšœ Mowing Only' },
{ id: 'full-care', name: '๐ŸŒŸ Full Lawn Care' },
{ id: 'seasonal-cleanup', name: '๐Ÿ‚ Seasonal Cleanup' }
]
});
 
row.addRadioButton('frequency', {
label: 'Frequency',
defaultValue: 'bi-weekly',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'one-time', name: '1๏ธโƒฃ One-Time' },
{ id: 'weekly', name: '๐Ÿ“† Weekly' },
{ id: 'bi-weekly', name: '๐Ÿ—“๏ธ Bi-Weekly' },
{ id: 'monthly', name: '๐Ÿ“… Monthly' }
]
});
});
 
// Add-ons as CheckboxList
const addons = form.addSubform('addons', {
title: () => 'โž• Add-On Services',
mobileBreakpoint: 500
});
 
addons.addRow(row => {
row.addCheckboxList('lawnExtras', {
label: 'Lawn Care Extras',
orientation: 'vertical',
options: [
{ id: 'edging', name: 'โœ‚๏ธ Edging' },
{ id: 'weedControl', name: '๐ŸŒฟ Weed Control' },
{ id: 'fertilizing', name: '๐Ÿงช Fertilizing' },
{ id: 'aeration', name: '๐Ÿ”จ Aeration' }
]
}, '1fr');
 
row.addCheckboxList('yardExtras', {
label: 'Yard Extras',
orientation: 'vertical',
options: [
{ id: 'leafRemoval', name: '๐Ÿ‚ Leaf Removal' },
{ id: 'hedgeTrimming', name: '๐ŸŒฒ Hedge Trimming' },
{ id: 'mulching', name: '๐Ÿชต Mulching' },
{ id: 'overseeding', name: '๐ŸŒพ Overseeding' }
]
}, '1fr');
});
 
// Quote Summary
const summary = form.addSubform('summary', {
title: () => '๐Ÿ’ฐ Your Quote',
isCollapsible: false,
});
 
// Calculate base price
const getBasePrice = () => {
const size = property.dropdown('size')?.value() || 'medium';
const terrain = property.dropdown('terrain')?.value() || 'flat';
const condition = property.dropdown('condition')?.value() || 'maintained';
const propertyType = property.dropdown('type')?.value() || 'residential';
 
let baseRate = sizeRates[size] || 55;
 
// Terrain multiplier
if (terrain === 'sloped') baseRate *= 1.15;
if (terrain === 'complex') baseRate *= 1.25;
 
// Condition multiplier
if (condition === 'overgrown') baseRate *= 1.20;
if (condition === 'neglected') baseRate *= 1.40;
 
// Commercial premium
if (propertyType === 'commercial') baseRate *= 1.25;
 
return Math.round(baseRate);
};
 
// Calculate add-ons total
const getAddonsTotal = () => {
let total = 0;
const lawnExtras = addons.checkboxList('lawnExtras')?.value() || [];
const yardExtras = addons.checkboxList('yardExtras')?.value() || [];
 
const allSelected = [...lawnExtras, ...yardExtras];
 
for (const addonId of allSelected) {
total += addonPrices[addonId] || 0;
}
 
return total;
};
 
// Get selected add-ons for display
const getSelectedAddons = () => {
const lawnExtras = addons.checkboxList('lawnExtras')?.value() || [];
const yardExtras = addons.checkboxList('yardExtras')?.value() || [];
return [...lawnExtras, ...yardExtras];
};
 
// Calculate final price
const getFinalPrice = () => {
const serviceType = options.radioButton('serviceType')?.value() || 'mowing';
const frequency = options.radioButton('frequency')?.value() || 'bi-weekly';
 
const basePrice = getBasePrice();
const multiplier = serviceMultipliers[serviceType] || 1.0;
const adjustedBase = basePrice * multiplier;
 
const addonsTotal = getAddonsTotal();
const subtotal = adjustedBase + addonsTotal;
 
const discountPercent = frequencyDiscounts[frequency] || 0;
const discount = subtotal * (discountPercent / 100);
 
return Math.round(subtotal - discount);
};
 
// Get discount amount
const getDiscountAmount = () => {
const serviceType = options.radioButton('serviceType')?.value() || 'mowing';
const frequency = options.radioButton('frequency')?.value() || 'bi-weekly';
 
const basePrice = getBasePrice();
const multiplier = serviceMultipliers[serviceType] || 1.0;
const adjustedBase = basePrice * multiplier;
 
const addonsTotal = getAddonsTotal();
const subtotal = adjustedBase + addonsTotal;
 
const discountPercent = frequencyDiscounts[frequency] || 0;
return Math.round(subtotal * (discountPercent / 100));
};
 
summary.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Estimated Price',
computedValue: () => getFinalPrice(),
alignment: 'center',
variant: 'large',
suffix: () => {
const frequency = options.radioButton('frequency')?.value();
if (frequency === 'weekly') return '/week';
if (frequency === 'bi-weekly') return '/visit';
if (frequency === 'monthly') return '/month';
return '';
}
});
});
 
summary.addRow(row => {
row.addTextPanel('savings', {
computedValue: () => {
const frequency = options.radioButton('frequency')?.value() || 'one-time';
const discountPercent = frequencyDiscounts[frequency] || 0;
 
if (discountPercent > 0) {
return `๐ŸŽ‰ You save ${discountPercent}% with ${frequency} service!`;
}
return '๐Ÿ’ก Choose recurring service to save up to 20%';
},
customStyles: {
fontSize: '0.9rem',
color: '#059669',
fontWeight: '500',
textAlign: 'center'
}
});
});
 
form.configureSubmitButton({
label: () => 'Get My Quote'
});
 
// Configure PDF generation
form.configurePdf('quoteDocument', (pdf) => {
pdf.configure({
filename: 'lawn-care-quote.pdf',
pageSize: 'A4',
allowUserDownload: true,
downloadButtonLabel: 'Download Your Quote',
header: {
title: 'Lawn Care Service Quote',
subtitle: 'Professional Landscaping Services'
},
footer: {
text: 'Thank you for choosing our lawn care services!',
showPageNumbers: true
}
});
 
// Property Summary Section
pdf.addSection('Property Details', (section) => {
section.addRow((row) => {
const sizeMap: Record<string, string> = {
'small': 'Small (up to 5,000 sq ft)',
'medium': 'Medium (5,001-10,000 sq ft)',
'large': 'Large (10,001-20,000 sq ft)',
'xlarge': 'Extra Large (20,000+ sq ft)'
};
const size = property.dropdown('size')?.value() || 'medium';
row.addField('Lawn Size', sizeMap[size] || size);
 
const typeMap: Record<string, string> = {
'residential': 'Residential',
'commercial': 'Commercial'
};
const type = property.dropdown('type')?.value() || 'residential';
row.addField('Property Type', typeMap[type] || type);
});
section.addRow((row) => {
const terrainMap: Record<string, string> = {
'flat': 'Flat',
'sloped': 'Sloped',
'complex': 'Complex'
};
const terrain = property.dropdown('terrain')?.value() || 'flat';
row.addField('Terrain', terrainMap[terrain] || terrain);
 
const conditionMap: Record<string, string> = {
'maintained': 'Well Maintained',
'overgrown': 'Overgrown',
'neglected': 'Neglected'
};
const condition = property.dropdown('condition')?.value() || 'maintained';
row.addField('Condition', conditionMap[condition] || condition);
});
});
 
// Service Options Section
pdf.addSection('Service Details', (section) => {
section.addRow((row) => {
const serviceTypeMap: Record<string, string> = {
'mowing': 'Mowing Only',
'full-care': 'Full Lawn Care',
'seasonal-cleanup': 'Seasonal Cleanup'
};
const type = options.radioButton('serviceType')?.value() || 'mowing';
row.addField('Service Type', serviceTypeMap[type] || type);
});
section.addRow((row) => {
const frequencyMap: Record<string, string> = {
'one-time': 'One-Time Service',
'weekly': 'Weekly',
'bi-weekly': 'Bi-Weekly',
'monthly': 'Monthly'
};
const freq = options.radioButton('frequency')?.value() || 'bi-weekly';
row.addField('Frequency', frequencyMap[freq] || freq);
});
});
 
// Add-ons Section (only if any selected)
const selectedAddons = getSelectedAddons();
if (selectedAddons.length > 0) {
pdf.addSection('Add-On Services', (section) => {
const addonLabels: Record<string, string> = {
'edging': 'Edging',
'weedControl': 'Weed Control',
'fertilizing': 'Fertilizing',
'aeration': 'Aeration',
'leafRemoval': 'Leaf Removal',
'hedgeTrimming': 'Hedge Trimming',
'mulching': 'Mulching',
'overseeding': 'Overseeding'
};
 
const tableRows = selectedAddons.map(addonId => [
addonLabels[addonId] || addonId,
`$${addonPrices[addonId] || 0}`
]);
 
section.addTable(['Service', 'Price'], tableRows);
section.addSpacer(10);
section.addRow((row) => {
row.addField('Add-ons Subtotal', `$${getAddonsTotal()}`);
});
});
}
 
// Pricing Summary Section
pdf.addSection('Quote Summary', (section) => {
const serviceType = options.radioButton('serviceType')?.value() || 'mowing';
const frequency = options.radioButton('frequency')?.value() || 'bi-weekly';
const multiplier = serviceMultipliers[serviceType] || 1.0;
const basePrice = getBasePrice();
const adjustedBase = Math.round(basePrice * multiplier);
 
section.addRow((row) => {
row.addField('Base Service Price', `$${adjustedBase}`);
});
 
if (selectedAddons.length > 0) {
section.addRow((row) => {
row.addField('Add-ons Total', `$${getAddonsTotal()}`);
});
}
 
const discountAmount = getDiscountAmount();
if (discountAmount > 0) {
const discountPercent = frequencyDiscounts[frequency] || 0;
section.addRow((row) => {
row.addField(`Discount (${discountPercent}% ${frequency})`, `-$${discountAmount}`);
});
}
 
section.addDivider();
section.addSpacer(10);
 
const suffix = frequency === 'weekly' ? '/week'
: frequency === 'bi-weekly' ? '/visit'
: frequency === 'monthly' ? '/month'
: '';
 
section.addRow((row) => {
row.addField('TOTAL', `$${getFinalPrice()}${suffix}`);
});
 
if (discountAmount > 0) {
section.addSpacer(10);
section.addText(`You're saving $${discountAmount} with your ${frequency} service!`);
}
});
 
// Terms Section
pdf.addSection('Terms & Conditions', (section) => {
section.addText('โ€ข This quote is valid for 30 days from the date of generation.');
section.addText('โ€ข Prices may vary based on actual property condition upon inspection.');
section.addText('โ€ข Cancellations require 24-hour advance notice.');
section.addText('โ€ข Recurring service discounts apply to the total including add-ons.');
section.addSpacer(10);
section.addText('Questions? Contact us at support@lawnservice.com');
});
});
}
 

Why Landscaping Businesses Love It

Stop playing phone tag. Let customers quote themselves while you focus on the job.

Save 2+ Hours Daily

No more back-and-forth phone calls. Customers get instant lawn care prices 24/7.

More Bookings

Instant pricing means less friction. Visitors convert while they're interested.

Look Professional

Match the big landscaping companies. Interactive quotes build trust instantly.

No Coding Required

Describe what you need. Our AI builds your calculator in minutes.

Add a Quote Calculator in 3 Steps

1

Build Your Calculator

Use our AI assistant or pick a template. Set your lawn care rates, add-ons, and frequency discounts.

2

Customize Your Look

Match your brand colors and add your logo. Mobile-friendly by default. Looks great everywhere.

3

Embed Anywhere

Copy 2 lines of code. Works on WordPress, Wix, Squarespace, Shopify, or any custom site.

Add to your website
<script src="https://formts.com/widget.js"></script>
<formts-widget link-id="your-calculator"></formts-widget>

Everything You Need to Automate Quotes

Real-Time Calculations

Prices update instantly as customers fill the form. No page reloads, no waiting.

Email Notifications

Get notified the moment someone requests a quote. Never miss a lead.

PDF Quotes

Auto-generate professional quote PDFs with your branding. Send instantly.

Conditional Logic

Show or hide options based on customer choices. Smart forms that adapt.

Works Everywhere

Embed on any website with 2 lines of code. WordPress, Wix, Squarespace, custom sites.

Mobile Optimized

Looks great on phones and tablets. Most of your customers browse on mobile.

Frequently Asked Questions

Do I need to know how to code?

No. Our AI assistant builds the calculator from your description. Just tell it what lawn care services you offer and your prices. You can also start from a template and customize it - no coding required.

Will it work on my Wix/WordPress/Squarespace site?

Yes. FormTs works on any website that allows custom HTML. You just paste 2 lines of code where you want the calculator to appear. Works on WordPress, Wix, Squarespace, Shopify, and any custom site.

Is the calculator really free?

Yes. Calculators that don't collect submissions are completely free - no limits, no credit card. If you want to collect customer details, the Free plan includes 100 submissions/month. Need more? Pro gives you 1,000/month.

Can I customize the prices and services?

Absolutely. You control everything - base rates by lawn size, service packages, frequency discounts, add-ons like fertilizing or aeration. The calculator uses YOUR pricing formulas exactly as you define them.

How do I get notified when someone requests a quote?

All submissions appear in your dashboard instantly. Pro plan includes email notifications and webhooks to connect with Zapier, n8n, Make, or send data directly to your CRM.

What if I want to change the calculator later?

Edit anytime from your dashboard. Changes go live instantly - no need to touch your website code again. Update prices for the season, add new services, or change the design whenever you want.

Ready to Stop Wasting Time on Quotes?

Join hundreds of landscaping business owners who automated their pricing. Start with a free template or let AI build your custom calculator.

No credit card required. Free plan available. Setup in under 10 minutes.