Landscaping Calculator

Help homeowners envision and budget their landscape transformation with this comprehensive calculator. Covers all aspects of landscaping: softscape (lawns, plantings, trees, mulch), hardscape (patios, walkways, retaining walls), water features (irrigation, ponds, fountains), and outdoor living features (lighting, fire pits, outdoor kitchens, pergolas). Factor in yard size, terrain difficulty, and site preparation needs. Perfect for landscape designers and contractors to qualify leads and set realistic expectations.

Home Services

Try the Calculator

Landscaping Project Estimate
📍 Project Location
Loading map...
 
📍 Enter address to check service area
📋 Project Overview
 
🌿 Softscape (Plants & Lawn)
500sq ft
500 sq ft
503000
🧱 Hardscape (Patios, Walkways, Walls)
💧 Water Features & Irrigation
🏡 Outdoor Living Features
🚜 Site Preparation

💰 Your Estimate
$ 7,500.00
+
$ 5,500.00
+
$ 0.00
+
$ 0.00
+
$ 0.00

$ 13,000.00
🧾 Summary
$ 13,000.00
Detailed proposal requires on-site consultation.
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
export function landscapingCalculator(form: FormTs) {
// Project type base costs
const projectBaseCosts: Record<string, number> = {
'design-only': 500,
'basic': 2500,
'standard': 7500,
'premium': 15000,
'luxury': 35000
};
 
// Yard size multipliers
const sizeMultipliers: Record<string, number> = {
'small': 0.7, // Under 1,000 sq ft
'medium': 1.0, // 1,000-5,000 sq ft
'large': 1.5, // 5,000-10,000 sq ft
'xlarge': 2.2, // 10,000+ sq ft
'acreage': 3.5 // 1+ acres
};
 
// Terrain difficulty multipliers
const terrainMultipliers: Record<string, number> = {
'flat': 1.0,
'slight': 1.15,
'moderate': 1.35,
'steep': 1.60,
'complex': 2.0
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Landscaping Project Estimate',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Service Location Section
const locationSection = form.addSubform('serviceLocation', { title: '📍 Project Location' });
 
locationSection.addRow(row => {
row.addAddress('projectAddress', {
label: 'Property Address',
placeholder: 'Enter the project address...',
showMap: true,
showDistance: true,
referenceAddress: {
formattedAddress: 'Service Center, Denver, CO',
coordinates: { lat: 39.7392, lng: -104.9903 }
},
restrictToCountries: ['US', 'CA'],
distanceUnit: 'miles',
isRequired: true
});
});
 
locationSection.addRow(row => {
row.addTextPanel('travelZoneInfo', {
computedValue: () => {
const addressField = locationSection.address('projectAddress');
const miles = addressField?.distance();
if (miles == null) return '📍 Enter address to check service area';
if (miles <= 20) return '📍 Within service area - Standard pricing';
if (miles <= 40) return '📍 Extended area - 5% distance surcharge';
if (miles <= 60) return '📍 Remote area - 10% distance surcharge';
return '📍 Long distance - 15%+ distance surcharge';
},
customStyles: { 'font-size': '0.9rem', 'color': '#15803d', 'background': '#dcfce7', 'padding': '10px', 'border-radius': '6px' }
});
});
 
// Project Overview Section
const projectSection = form.addSubform('projectOverview', { title: '📋 Project Overview' });
 
projectSection.addRow(row => {
row.addRadioButton('projectLevel', {
label: 'Project Scope',
options: [
{ id: 'design-only', name: 'Design Only ($500+) - Plans and consultation' },
{ id: 'basic', name: 'Basic ($2,500+) - Simple plantings, mulch, basic cleanup' },
{ id: 'standard', name: 'Standard ($7,500+) - New beds, plants, pathway, irrigation' },
{ id: 'premium', name: 'Premium ($15,000+) - Full front/back yard transformation' },
{ id: 'luxury', name: 'Luxury ($35,000+) - Complete outdoor living space' }
],
defaultValue: 'standard',
orientation: 'vertical',
isRequired: true
});
});
 
projectSection.addRow(row => {
row.addDropdown('yardSize', {
label: 'Yard/Project Size',
options: [
{ id: 'small', name: 'Small (under 1,000 sq ft)' },
{ id: 'medium', name: 'Medium (1,000-5,000 sq ft)' },
{ id: 'large', name: 'Large (5,000-10,000 sq ft)' },
{ id: 'xlarge', name: 'Extra Large (10,000+ sq ft)' },
{ id: 'acreage', name: 'Acreage (1+ acres)' }
],
defaultValue: 'medium',
isRequired: true
}, '1fr');
row.addDropdown('terrain', {
label: 'Terrain',
options: [
{ id: 'flat', name: 'Flat/Level' },
{ id: 'slight', name: 'Slight Slope (+15%)' },
{ id: 'moderate', name: 'Moderate Slope (+35%)' },
{ id: 'steep', name: 'Steep/Hillside (+60%)' },
{ id: 'complex', name: 'Complex/Multi-level (+100%)' }
],
defaultValue: 'flat'
}, '1fr');
});
 
// Softscape Section
const softscapeSection = form.addSubform('softscape', { title: '🌿 Softscape (Plants & Lawn)' });
 
softscapeSection.addRow(row => {
row.addCheckbox('newLawn', {
label: 'New Lawn Installation',
defaultValue: false
}, '1fr');
row.addDropdown('lawnType', {
label: 'Lawn Type',
options: [
{ id: 'seed', name: 'Seeding ($0.15-0.30/sq ft)' },
{ id: 'sod', name: 'Sod Installation ($1-2/sq ft)' },
{ id: 'artificial', name: 'Artificial Turf ($8-15/sq ft)' }
],
defaultValue: 'sod',
isVisible: () => softscapeSection.checkbox('newLawn')?.value() === true
}, '1fr');
});
 
softscapeSection.addRow(row => {
row.addSlider('lawnSqFt', {
label: 'Lawn Area',
min: 100,
max: 10000,
step: 100,
defaultValue: 2000,
showValue: true,
unit: 'sq ft',
isVisible: () => softscapeSection.checkbox('newLawn')?.value() === true
}, '1fr');
});
 
softscapeSection.addRow(row => {
row.addCheckbox('plantBeds', {
label: 'New Planting Beds',
defaultValue: true
}, '1fr');
row.addDropdown('plantingLevel', {
label: 'Planting Density',
options: [
{ id: 'sparse', name: 'Sparse - Basic foundation plants' },
{ id: 'moderate', name: 'Moderate - Full beds, good variety' },
{ id: 'lush', name: 'Lush - Dense, layered plantings' },
{ id: 'premium', name: 'Premium - Specimen plants, mature sizes' }
],
defaultValue: 'moderate',
isVisible: () => softscapeSection.checkbox('plantBeds')?.value() === true
}, '1fr');
});
 
softscapeSection.addRow(row => {
row.addCheckbox('trees', {
label: 'Tree Planting',
defaultValue: false
}, '1fr');
row.addInteger('treeCount', {
label: 'Number of Trees',
min: 1,
max: 20,
defaultValue: 3,
isVisible: () => softscapeSection.checkbox('trees')?.value() === true
}, '1fr');
});
 
softscapeSection.addRow(row => {
row.addDropdown('treeSize', {
label: 'Tree Size',
options: [
{ id: 'small', name: 'Small/Container ($150-400)' },
{ id: 'medium', name: 'Medium 2-3" caliper ($400-800)' },
{ id: 'large', name: 'Large 3-4" caliper ($800-1,500)' },
{ id: 'specimen', name: 'Specimen 4"+ ($1,500-5,000)' }
],
defaultValue: 'medium',
isVisible: () => softscapeSection.checkbox('trees')?.value() === true
}, '1fr');
});
 
softscapeSection.addRow(row => {
row.addCheckbox('mulch', {
label: 'Mulch Installation ($3-5/sq ft)',
defaultValue: true
}, '1fr');
row.addSlider('mulchSqFt', {
label: 'Mulch Area',
min: 50,
max: 3000,
step: 50,
defaultValue: 500,
showValue: true,
unit: 'sq ft',
isVisible: () => softscapeSection.checkbox('mulch')?.value() === true
}, '1fr');
});
 
// Hardscape Section
const hardscapeSection = form.addSubform('hardscape', { title: '🧱 Hardscape (Patios, Walkways, Walls)' });
 
hardscapeSection.addRow(row => {
row.addCheckbox('patio', {
label: 'Patio/Outdoor Living Area',
defaultValue: false
}, '1fr');
row.addDropdown('patioMaterial', {
label: 'Patio Material',
options: [
{ id: 'concrete', name: 'Stamped Concrete ($10-20/sq ft)' },
{ id: 'pavers', name: 'Pavers ($15-30/sq ft)' },
{ id: 'flagstone', name: 'Natural Flagstone ($20-40/sq ft)' },
{ id: 'composite', name: 'Composite Decking ($25-50/sq ft)' }
],
defaultValue: 'pavers',
isVisible: () => hardscapeSection.checkbox('patio')?.value() === true
}, '1fr');
});
 
hardscapeSection.addRow(row => {
row.addSlider('patioSqFt', {
label: 'Patio Area',
min: 50,
max: 1000,
step: 25,
defaultValue: 200,
showValue: true,
unit: 'sq ft',
isVisible: () => hardscapeSection.checkbox('patio')?.value() === true
}, '1fr');
});
 
hardscapeSection.addRow(row => {
row.addCheckbox('walkway', {
label: 'Walkways/Pathways',
defaultValue: false
}, '1fr');
row.addSlider('walkwayLength', {
label: 'Walkway Length',
min: 10,
max: 200,
step: 5,
defaultValue: 40,
showValue: true,
unit: 'linear ft',
isVisible: () => hardscapeSection.checkbox('walkway')?.value() === true
}, '1fr');
});
 
hardscapeSection.addRow(row => {
row.addCheckbox('retainingWall', {
label: 'Retaining Wall',
defaultValue: false
}, '1fr');
row.addSlider('wallLength', {
label: 'Wall Length',
min: 10,
max: 200,
step: 5,
defaultValue: 30,
showValue: true,
unit: 'linear ft',
isVisible: () => hardscapeSection.checkbox('retainingWall')?.value() === true
}, '1fr');
});
 
hardscapeSection.addRow(row => {
row.addDropdown('wallHeight', {
label: 'Wall Height',
options: [
{ id: 'low', name: 'Low (under 2 ft) - $20-40/linear ft' },
{ id: 'medium', name: 'Medium (2-4 ft) - $40-80/linear ft' },
{ id: 'high', name: 'High (4-6 ft) - $80-150/linear ft' },
{ id: 'tall', name: 'Tall (6+ ft) - $150-300/linear ft' }
],
defaultValue: 'medium',
isVisible: () => hardscapeSection.checkbox('retainingWall')?.value() === true
}, '1fr');
});
 
// Water Features Section
const waterSection = form.addSubform('waterFeatures', { title: '💧 Water Features & Irrigation' });
 
waterSection.addRow(row => {
row.addCheckbox('irrigation', {
label: 'Irrigation System',
defaultValue: false
}, '1fr');
row.addDropdown('irrigationType', {
label: 'Irrigation Type',
options: [
{ id: 'basic', name: 'Basic Drip ($1-2/sq ft)' },
{ id: 'sprinkler', name: 'Sprinkler System ($2-4/sq ft)' },
{ id: 'smart', name: 'Smart System ($3-6/sq ft)' }
],
defaultValue: 'sprinkler',
isVisible: () => waterSection.checkbox('irrigation')?.value() === true
}, '1fr');
});
 
waterSection.addRow(row => {
row.addCheckbox('waterFeature', {
label: 'Decorative Water Feature',
defaultValue: false
}, '1fr');
row.addDropdown('waterType', {
label: 'Feature Type',
options: [
{ id: 'fountain', name: 'Fountain ($500-3,000)' },
{ id: 'pond', name: 'Pond ($2,000-10,000)' },
{ id: 'waterfall', name: 'Waterfall ($3,000-15,000)' },
{ id: 'stream', name: 'Stream Feature ($5,000-20,000)' }
],
defaultValue: 'fountain',
isVisible: () => waterSection.checkbox('waterFeature')?.value() === true
}, '1fr');
});
 
// Outdoor Living Section
const outdoorSection = form.addSubform('outdoorLiving', { title: '🏡 Outdoor Living Features' });
 
outdoorSection.addRow(row => {
row.addCheckbox('lighting', {
label: 'Landscape Lighting (+$2,000-10,000)',
defaultValue: false
}, '1fr');
row.addCheckbox('fireFeature', {
label: 'Fire Pit/Fireplace (+$1,500-15,000)',
defaultValue: false
}, '1fr');
});
 
outdoorSection.addRow(row => {
row.addCheckbox('outdoorKitchen', {
label: 'Outdoor Kitchen (+$5,000-30,000)',
defaultValue: false
}, '1fr');
row.addCheckbox('pergola', {
label: 'Pergola/Shade Structure (+$3,000-20,000)',
defaultValue: false
}, '1fr');
});
 
outdoorSection.addRow(row => {
row.addCheckbox('fence', {
label: 'Fencing',
defaultValue: false
}, '1fr');
row.addSlider('fenceLength', {
label: 'Fence Length',
min: 20,
max: 500,
step: 10,
defaultValue: 100,
showValue: true,
unit: 'linear ft',
isVisible: () => outdoorSection.checkbox('fence')?.value() === true
}, '1fr');
});
 
// Site Prep Section
const prepSection = form.addSubform('sitePrep', { title: '🚜 Site Preparation' });
 
prepSection.addRow(row => {
row.addCheckbox('grading', {
label: 'Grading/Drainage Work (+$1,000-5,000)',
defaultValue: false
}, '1fr');
row.addCheckbox('demolition', {
label: 'Existing Landscape Removal (+$500-3,000)',
defaultValue: false
}, '1fr');
});
 
prepSection.addRow(row => {
row.addCheckbox('treeRemoval', {
label: 'Tree Removal',
defaultValue: false
}, '1fr');
row.addInteger('treesToRemove', {
label: 'Trees to Remove',
min: 1,
max: 10,
defaultValue: 2,
isVisible: () => prepSection.checkbox('treeRemoval')?.value() === true
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate distance surcharge multiplier
const getDistanceSurchargeMultiplier = () => {
const addressField = locationSection.address('projectAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 20) return 1.0;
if (miles <= 40) return 1.05;
if (miles <= 60) return 1.10;
return 1.15 + Math.floor((miles - 60) / 20) * 0.05;
};
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '💰 Your Estimate', isCollapsible: false });
 
const getBasePrice = () => {
const level = projectSection.radioButton('projectLevel')?.value() || 'standard';
const size = projectSection.dropdown('yardSize')?.value() || 'medium';
const terrain = projectSection.dropdown('terrain')?.value() || 'flat';
 
const base = projectBaseCosts[level] || 7500;
const sizeMult = sizeMultipliers[size] || 1;
const terrainMult = terrainMultipliers[terrain] || 1;
 
return base * sizeMult * terrainMult;
};
 
summarySection.addRow(row => {
row.addPriceDisplay('basePrice', {
label: 'Base Project Cost',
computedValue: () => Math.round(getBasePrice()),
variant: 'default'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('softscapeCost', {
label: 'Softscape',
computedValue: () => {
let total = 0;
 
// Lawn
if (softscapeSection.checkbox('newLawn')?.value()) {
const sqft = softscapeSection.slider('lawnSqFt')?.value() || 2000;
const type = softscapeSection.dropdown('lawnType')?.value() || 'sod';
const rates: Record<string, number> = { 'seed': 0.25, 'sod': 1.50, 'artificial': 11 };
total += sqft * (rates[type] || 1.50);
}
 
// Plant beds
if (softscapeSection.checkbox('plantBeds')?.value()) {
const density = softscapeSection.dropdown('plantingLevel')?.value() || 'moderate';
const costs: Record<string, number> = {
'sparse': 1500, 'moderate': 3500, 'lush': 6000, 'premium': 12000
};
total += costs[density] || 3500;
}
 
// Trees
if (softscapeSection.checkbox('trees')?.value()) {
const count = softscapeSection.integer('treeCount')?.value() || 3;
const size = softscapeSection.dropdown('treeSize')?.value() || 'medium';
const treeCosts: Record<string, number> = {
'small': 275, 'medium': 600, 'large': 1100, 'specimen': 3000
};
total += count * (treeCosts[size] || 600);
}
 
// Mulch
if (softscapeSection.checkbox('mulch')?.value()) {
const sqft = softscapeSection.slider('mulchSqFt')?.value() || 500;
total += sqft * 4;
}
 
return Math.round(total);
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('hardscapeCost', {
label: 'Hardscape',
computedValue: () => {
let total = 0;
 
// Patio
if (hardscapeSection.checkbox('patio')?.value()) {
const sqft = hardscapeSection.slider('patioSqFt')?.value() || 200;
const material = hardscapeSection.dropdown('patioMaterial')?.value() || 'pavers';
const rates: Record<string, number> = {
'concrete': 15, 'pavers': 22, 'flagstone': 30, 'composite': 38
};
total += sqft * (rates[material] || 22);
}
 
// Walkway
if (hardscapeSection.checkbox('walkway')?.value()) {
const length = hardscapeSection.slider('walkwayLength')?.value() || 40;
total += length * 35; // Average 3ft wide walkway
}
 
// Retaining wall
if (hardscapeSection.checkbox('retainingWall')?.value()) {
const length = hardscapeSection.slider('wallLength')?.value() || 30;
const height = hardscapeSection.dropdown('wallHeight')?.value() || 'medium';
const wallRates: Record<string, number> = {
'low': 30, 'medium': 60, 'high': 115, 'tall': 225
};
total += length * (wallRates[height] || 60);
}
 
return Math.round(total);
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('waterCost', {
label: 'Water Features & Irrigation',
computedValue: () => {
let total = 0;
 
// Irrigation
if (waterSection.checkbox('irrigation')?.value()) {
const size = projectSection.dropdown('yardSize')?.value() || 'medium';
const sqftEstimates: Record<string, number> = {
'small': 800, 'medium': 3000, 'large': 7500, 'xlarge': 12000, 'acreage': 25000
};
const sqft = sqftEstimates[size] || 3000;
const type = waterSection.dropdown('irrigationType')?.value() || 'sprinkler';
const rates: Record<string, number> = { 'basic': 1.5, 'sprinkler': 3, 'smart': 4.5 };
total += sqft * (rates[type] || 3);
}
 
// Water feature
if (waterSection.checkbox('waterFeature')?.value()) {
const type = waterSection.dropdown('waterType')?.value() || 'fountain';
const costs: Record<string, number> = {
'fountain': 1750, 'pond': 6000, 'waterfall': 9000, 'stream': 12500
};
total += costs[type] || 1750;
}
 
return Math.round(total);
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('outdoorCost', {
label: 'Outdoor Living Features',
computedValue: () => {
let total = 0;
 
if (outdoorSection.checkbox('lighting')?.value()) total += 5000;
if (outdoorSection.checkbox('fireFeature')?.value()) total += 6000;
if (outdoorSection.checkbox('outdoorKitchen')?.value()) total += 15000;
if (outdoorSection.checkbox('pergola')?.value()) total += 10000;
 
if (outdoorSection.checkbox('fence')?.value()) {
const length = outdoorSection.slider('fenceLength')?.value() || 100;
total += length * 35; // Average fence cost
}
 
return Math.round(total);
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('prepCost', {
label: 'Site Preparation',
computedValue: () => {
let total = 0;
 
if (prepSection.checkbox('grading')?.value()) total += 2500;
if (prepSection.checkbox('demolition')?.value()) total += 1500;
if (prepSection.checkbox('treeRemoval')?.value()) {
const trees = prepSection.integer('treesToRemove')?.value() || 2;
total += trees * 800;
}
 
return Math.round(total);
},
variant: 'default',
prefix: '+',
isVisible: () => {
return prepSection.checkbox('grading')?.value() ||
prepSection.checkbox('demolition')?.value() ||
prepSection.checkbox('treeRemoval')?.value();
}
});
});
 
summarySection.addRow(row => {
row.addPriceDisplay('distanceSurcharge', {
label: 'Distance Surcharge',
computedValue: () => {
const multiplier = getDistanceSurchargeMultiplier();
if (multiplier <= 1) return 0;
return Math.round((multiplier - 1) * 100);
},
variant: 'default',
prefix: '+',
suffix: '%',
isVisible: () => getDistanceSurchargeMultiplier() > 1
});
});
 
summarySection.addSpacer({ showLine: true, lineStyle: 'solid', lineColor: '#e2e8f0' });
 
summarySection.addRow(row => {
row.addPriceDisplay('totalEstimate', {
label: 'Total Estimated Investment',
computedValue: () => {
let total = getBasePrice();
 
// Softscape
if (softscapeSection.checkbox('newLawn')?.value()) {
const sqft = softscapeSection.slider('lawnSqFt')?.value() || 2000;
const type = softscapeSection.dropdown('lawnType')?.value() || 'sod';
const rates: Record<string, number> = { 'seed': 0.25, 'sod': 1.50, 'artificial': 11 };
total += sqft * (rates[type] || 1.50);
}
if (softscapeSection.checkbox('plantBeds')?.value()) {
const density = softscapeSection.dropdown('plantingLevel')?.value() || 'moderate';
const costs: Record<string, number> = {
'sparse': 1500, 'moderate': 3500, 'lush': 6000, 'premium': 12000
};
total += costs[density] || 3500;
}
if (softscapeSection.checkbox('trees')?.value()) {
const count = softscapeSection.integer('treeCount')?.value() || 3;
const size = softscapeSection.dropdown('treeSize')?.value() || 'medium';
const treeCosts: Record<string, number> = {
'small': 275, 'medium': 600, 'large': 1100, 'specimen': 3000
};
total += count * (treeCosts[size] || 600);
}
if (softscapeSection.checkbox('mulch')?.value()) {
const sqft = softscapeSection.slider('mulchSqFt')?.value() || 500;
total += sqft * 4;
}
 
// Hardscape
if (hardscapeSection.checkbox('patio')?.value()) {
const sqft = hardscapeSection.slider('patioSqFt')?.value() || 200;
const material = hardscapeSection.dropdown('patioMaterial')?.value() || 'pavers';
const rates: Record<string, number> = {
'concrete': 15, 'pavers': 22, 'flagstone': 30, 'composite': 38
};
total += sqft * (rates[material] || 22);
}
if (hardscapeSection.checkbox('walkway')?.value()) {
const length = hardscapeSection.slider('walkwayLength')?.value() || 40;
total += length * 35;
}
if (hardscapeSection.checkbox('retainingWall')?.value()) {
const length = hardscapeSection.slider('wallLength')?.value() || 30;
const height = hardscapeSection.dropdown('wallHeight')?.value() || 'medium';
const wallRates: Record<string, number> = {
'low': 30, 'medium': 60, 'high': 115, 'tall': 225
};
total += length * (wallRates[height] || 60);
}
 
// Water
if (waterSection.checkbox('irrigation')?.value()) {
const size = projectSection.dropdown('yardSize')?.value() || 'medium';
const sqftEstimates: Record<string, number> = {
'small': 800, 'medium': 3000, 'large': 7500, 'xlarge': 12000, 'acreage': 25000
};
const sqft = sqftEstimates[size] || 3000;
const type = waterSection.dropdown('irrigationType')?.value() || 'sprinkler';
const rates: Record<string, number> = { 'basic': 1.5, 'sprinkler': 3, 'smart': 4.5 };
total += sqft * (rates[type] || 3);
}
if (waterSection.checkbox('waterFeature')?.value()) {
const type = waterSection.dropdown('waterType')?.value() || 'fountain';
const costs: Record<string, number> = {
'fountain': 1750, 'pond': 6000, 'waterfall': 9000, 'stream': 12500
};
total += costs[type] || 1750;
}
 
// Outdoor
if (outdoorSection.checkbox('lighting')?.value()) total += 5000;
if (outdoorSection.checkbox('fireFeature')?.value()) total += 6000;
if (outdoorSection.checkbox('outdoorKitchen')?.value()) total += 15000;
if (outdoorSection.checkbox('pergola')?.value()) total += 10000;
if (outdoorSection.checkbox('fence')?.value()) {
const length = outdoorSection.slider('fenceLength')?.value() || 100;
total += length * 35;
}
 
// Prep
if (prepSection.checkbox('grading')?.value()) total += 2500;
if (prepSection.checkbox('demolition')?.value()) total += 1500;
if (prepSection.checkbox('treeRemoval')?.value()) {
const trees = prepSection.integer('treesToRemove')?.value() || 2;
total += trees * 800;
}
 
// Apply distance surcharge
total *= getDistanceSurchargeMultiplier();
 
return Math.round(total);
},
variant: 'large'
});
});
 
const finalSection = form.addSubform('final', {
title: '🧾 Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalEstimate', {
label: 'Total Estimated Investment',
computedValue: () => {
let total = getBasePrice();
 
if (softscapeSection.checkbox('newLawn')?.value()) {
const sqft = softscapeSection.slider('lawnSqFt')?.value() || 2000;
const type = softscapeSection.dropdown('lawnType')?.value() || 'sod';
const rates: Record<string, number> = { 'seed': 0.25, 'sod': 1.50, 'artificial': 11 };
total += sqft * (rates[type] || 1.50);
}
if (softscapeSection.checkbox('plantBeds')?.value()) {
const density = softscapeSection.dropdown('plantingLevel')?.value() || 'moderate';
const costs: Record<string, number> = {
'sparse': 1500, 'moderate': 3500, 'lush': 6000, 'premium': 12000
};
total += costs[density] || 3500;
}
if (softscapeSection.checkbox('trees')?.value()) {
const count = softscapeSection.integer('treeCount')?.value() || 3;
const size = softscapeSection.dropdown('treeSize')?.value() || 'medium';
const treeCosts: Record<string, number> = {
'small': 275, 'medium': 600, 'large': 1100, 'specimen': 3000
};
total += count * (treeCosts[size] || 600);
}
if (softscapeSection.checkbox('mulch')?.value()) {
const sqft = softscapeSection.slider('mulchSqFt')?.value() || 500;
total += sqft * 4;
}
 
if (hardscapeSection.checkbox('patio')?.value()) {
const sqft = hardscapeSection.slider('patioSqFt')?.value() || 200;
const material = hardscapeSection.dropdown('patioMaterial')?.value() || 'pavers';
const rates: Record<string, number> = {
'concrete': 15, 'pavers': 22, 'flagstone': 30, 'composite': 38
};
total += sqft * (rates[material] || 22);
}
if (hardscapeSection.checkbox('walkway')?.value()) {
const length = hardscapeSection.slider('walkwayLength')?.value() || 40;
total += length * 35;
}
if (hardscapeSection.checkbox('retainingWall')?.value()) {
const length = hardscapeSection.slider('wallLength')?.value() || 30;
const height = hardscapeSection.dropdown('wallHeight')?.value() || 'medium';
const wallRates: Record<string, number> = {
'low': 30, 'medium': 60, 'high': 115, 'tall': 225
};
total += length * (wallRates[height] || 60);
}
 
if (waterSection.checkbox('irrigation')?.value()) {
const size = projectSection.dropdown('yardSize')?.value() || 'medium';
const sqftEstimates: Record<string, number> = {
'small': 800, 'medium': 3000, 'large': 7500, 'xlarge': 12000, 'acreage': 25000
};
const sqft = sqftEstimates[size] || 3000;
const type = waterSection.dropdown('irrigationType')?.value() || 'sprinkler';
const rates: Record<string, number> = { 'basic': 1.5, 'sprinkler': 3, 'smart': 4.5 };
total += sqft * (rates[type] || 3);
}
if (waterSection.checkbox('waterFeature')?.value()) {
const type = waterSection.dropdown('waterType')?.value() || 'fountain';
const costs: Record<string, number> = {
'fountain': 1750, 'pond': 6000, 'waterfall': 9000, 'stream': 12500
};
total += costs[type] || 1750;
}
 
if (outdoorSection.checkbox('lighting')?.value()) total += 5000;
if (outdoorSection.checkbox('fireFeature')?.value()) total += 6000;
if (outdoorSection.checkbox('outdoorKitchen')?.value()) total += 15000;
if (outdoorSection.checkbox('pergola')?.value()) total += 10000;
if (outdoorSection.checkbox('fence')?.value()) {
const length = outdoorSection.slider('fenceLength')?.value() || 100;
total += length * 35;
}
 
if (prepSection.checkbox('grading')?.value()) total += 2500;
if (prepSection.checkbox('demolition')?.value()) total += 1500;
if (prepSection.checkbox('treeRemoval')?.value()) {
const trees = prepSection.integer('treesToRemove')?.value() || 2;
total += trees * 800;
}
 
// Apply distance surcharge
total *= getDistanceSurchargeMultiplier();
 
return Math.round(total);
},
variant: 'large'
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Detailed proposal requires on-site consultation.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Schedule Consultation'
});
}
 

Frequently Asked Questions

How do project levels affect pricing?

Project levels set the baseline: Design Only ($500+) is plans only, Basic ($2,500+) covers simple work, Standard ($7,500+) includes full beds and irrigation, Premium ($15,000+) transforms entire yards, and Luxury ($35,000+) creates complete outdoor living spaces.

Can I include both hardscape and softscape?

Yes. The calculator allows mixing and matching all elements - lawns, plantings, patios, walkways, water features, and outdoor living features - to build a comprehensive project estimate.

How does terrain affect cost?

Sloped or complex terrain requires more labor for grading, drainage, and installation. The calculator applies multipliers from flat (no adjustment) to complex/multi-level (+100%).

What outdoor living features are included?

The calculator includes landscape lighting, fire pits/fireplaces, outdoor kitchens, pergolas/shade structures, and fencing - each with customizable pricing ranges.

Does this include irrigation systems?

Yes. Optional irrigation includes basic drip systems, full sprinkler systems, and smart irrigation systems with pricing based on yard size and system type.