Pressure Washing Quote Calculator

Give your pressure washing business a competitive edge with an instant quote calculator. This tool helps property owners understand cleaning costs based on surface type, area size, dirt level, and additional services. Convert more website visitors into qualified leads by providing transparent pricing upfront.

Home Services

Try the Calculator

Pressure Washing Quote
๐Ÿ  Property Details
Loading map...
 
๐Ÿ“ Enter address to calculate travel fee
๐Ÿงน Surface to Clean
 
 
โœจ Additional Services

๐Ÿ’ฐ Your Quote
$ 100.00
+
$ 0.00
+
$ 0.00
+
$ 0.00

$ 100.00
๐Ÿงพ Summary
$ 100.00
Final price may vary based on on-site inspection.
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
export function pressureWashingCalculator(form: FormTs) {
// Base prices per square foot by surface type
const surfacePrices: Record<string, number> = {
'concrete': 0.15,
'wood-deck': 0.25,
'brick': 0.20,
'vinyl-siding': 0.30,
'stucco': 0.35,
'pavers': 0.25
};
 
// Minimum charges by surface type
const minimumCharges: Record<string, number> = {
'concrete': 100,
'wood-deck': 150,
'brick': 150,
'vinyl-siding': 200,
'stucco': 200,
'pavers': 150
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Pressure Washing Quote',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Property Details Section
const propertySection = form.addSubform('propertyDetails', { title: '๐Ÿ  Property Details' });
 
propertySection.addRow(row => {
row.addAddress('serviceAddress', {
label: 'Service Address',
placeholder: 'Enter property 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
});
});
 
propertySection.addRow(row => {
row.addTextPanel('travelZoneInfo', {
computedValue: () => {
const addressField = propertySection.address('serviceAddress');
const miles = addressField?.distance();
if (miles == null) return '๐Ÿ“ Enter address to calculate travel fee';
if (miles <= 15) return '๐Ÿ“ Within service area - No travel fee';
if (miles <= 30) return '๐Ÿ“ Extended area - $40 travel fee';
if (miles <= 50) return '๐Ÿ“ Remote area - $75 travel fee';
return '๐Ÿ“ Long distance - $100+ travel fee';
},
customStyles: { 'font-size': '0.9rem', 'color': '#0369a1', 'background': '#e0f2fe', 'padding': '10px', 'border-radius': '6px' }
});
});
 
propertySection.addRow(row => {
row.addDropdown('propertyType', {
label: 'Property Type',
options: [
{ id: 'residential', name: 'Residential' },
{ id: 'commercial', name: 'Commercial (+20%)' }
],
defaultValue: 'residential',
isRequired: true
}, '1fr');
row.addDropdown('accessibility', {
label: 'Site Accessibility',
options: [
{ id: 'easy', name: 'Easy Access' },
{ id: 'moderate', name: 'Moderate Access (+10%)' },
{ id: 'difficult', name: 'Difficult Access (+25%)' }
],
defaultValue: 'easy'
}, '1fr');
});
 
// Surface Selection Section
const surfaceSection = form.addSubform('surfaceDetails', { title: '๐Ÿงน Surface to Clean' });
 
surfaceSection.addRow(row => {
row.addRadioButton('surfaceType', {
label: 'Surface Type',
options: [
{ id: 'concrete', name: 'Concrete (Driveway, Sidewalk, Patio) - $0.15/sq ft' },
{ id: 'wood-deck', name: 'Wood Deck - $0.25/sq ft' },
{ id: 'brick', name: 'Brick Surface - $0.20/sq ft' },
{ id: 'vinyl-siding', name: 'Vinyl Siding - $0.30/sq ft' },
{ id: 'stucco', name: 'Stucco - $0.35/sq ft' },
{ id: 'pavers', name: 'Pavers - $0.25/sq ft' }
],
defaultValue: 'concrete',
orientation: 'vertical',
isRequired: true
});
});
 
surfaceSection.addRow(row => {
row.addInteger('squareFootage', {
label: 'Area Size (sq ft)',
min: 50,
max: 50000,
defaultValue: 500,
placeholder: 'e.g. 500',
isRequired: true
}, '1fr');
row.addDropdown('dirtLevel', {
label: 'Dirt/Stain Level',
options: [
{ id: 'light', name: 'Light (Regular maintenance)' },
{ id: 'moderate', name: 'Moderate (+15%)' },
{ id: 'heavy', name: 'Heavy (Years of buildup, +30%)' },
{ id: 'extreme', name: 'Extreme (Oil stains, graffiti, +50%)' }
],
defaultValue: 'moderate'
}, '1fr');
});
 
// Additional Services Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('sealant', {
label: 'Apply Sealant (+$0.10/sq ft)',
defaultValue: false
}, '1fr');
row.addCheckbox('gutterCleaning', {
label: 'Include Gutter Exterior (+$75)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('moldTreatment', {
label: 'Mold/Mildew Treatment (+$50)',
defaultValue: false
}, '1fr');
row.addCheckbox('oilStainRemoval', {
label: 'Oil Stain Pre-Treatment (+$35)',
defaultValue: false,
isVisible: () => surfaceSection.radioButton('surfaceType')?.value() === 'concrete'
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('furnitureMoving', {
label: 'Move Outdoor Furniture (+$40)',
defaultValue: false,
isVisible: () => {
const surface = surfaceSection.radioButton('surfaceType')?.value();
return surface === 'wood-deck' || surface === 'concrete' || surface === 'pavers';
}
}, '1fr');
row.addCheckbox('rushService', {
label: 'Rush Service (within 48hrs, +25%)',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate travel fee
const getTravelFee = () => {
const addressField = propertySection.address('serviceAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 15) return 0;
if (miles <= 30) return 40;
if (miles <= 50) return 75;
return 100 + Math.floor((miles - 50) / 10) * 15;
};
 
// Quote Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Your Quote', isCollapsible: false });
 
const getPropertyMultiplier = () => {
const type = propertySection.dropdown('propertyType')?.value() || 'residential';
return type === 'commercial' ? 1.2 : 1.0;
};
 
const getAccessibilityMultiplier = () => {
const access = propertySection.dropdown('accessibility')?.value() || 'easy';
const multipliers: Record<string, number> = {
'easy': 1.0,
'moderate': 1.1,
'difficult': 1.25
};
return multipliers[access] || 1.0;
};
 
const getDirtMultiplier = () => {
const dirt = surfaceSection.dropdown('dirtLevel')?.value() || 'moderate';
const multipliers: Record<string, number> = {
'light': 1.0,
'moderate': 1.15,
'heavy': 1.3,
'extreme': 1.5
};
return multipliers[dirt] || 1.0;
};
 
summarySection.addRow(row => {
row.addPriceDisplay('baseCost', {
label: 'Base Cleaning Cost',
computedValue: () => {
const surface = surfaceSection.radioButton('surfaceType')?.value() || 'concrete';
const sqft = surfaceSection.integer('squareFootage')?.value() || 500;
const pricePerSqFt = surfacePrices[surface] || 0.15;
const minCharge = minimumCharges[surface] || 100;
 
const calculated = sqft * pricePerSqFt * getDirtMultiplier();
return Math.max(calculated, minCharge);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('adjustments', {
label: 'Property Adjustments',
computedValue: () => {
const surface = surfaceSection.radioButton('surfaceType')?.value() || 'concrete';
const sqft = surfaceSection.integer('squareFootage')?.value() || 500;
const pricePerSqFt = surfacePrices[surface] || 0.15;
const minCharge = minimumCharges[surface] || 100;
 
const baseCost = Math.max(sqft * pricePerSqFt * getDirtMultiplier(), minCharge);
const adjustedCost = baseCost * getPropertyMultiplier() * getAccessibilityMultiplier();
 
return adjustedCost - baseCost;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('addonsCost', {
label: 'Additional Services',
computedValue: () => {
const sqft = surfaceSection.integer('squareFootage')?.value() || 500;
let addons = 0;
 
if (addonsSection.checkbox('sealant')?.value()) addons += sqft * 0.10;
if (addonsSection.checkbox('gutterCleaning')?.value()) addons += 75;
if (addonsSection.checkbox('moldTreatment')?.value()) addons += 50;
if (addonsSection.checkbox('oilStainRemoval')?.value()) addons += 35;
if (addonsSection.checkbox('furnitureMoving')?.value()) addons += 40;
 
return addons;
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('travelFee', {
label: 'Travel Fee',
computedValue: () => getTravelFee(),
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addSpacer({ showLine: true, lineStyle: 'solid', lineColor: '#e2e8f0' });
 
summarySection.addRow(row => {
row.addPriceDisplay('totalEstimate', {
label: 'Total Estimated Cost',
computedValue: () => {
const surface = surfaceSection.radioButton('surfaceType')?.value() || 'concrete';
const sqft = surfaceSection.integer('squareFootage')?.value() || 500;
const pricePerSqFt = surfacePrices[surface] || 0.15;
const minCharge = minimumCharges[surface] || 100;
 
// Base cost with dirt level
let baseCost = Math.max(sqft * pricePerSqFt * getDirtMultiplier(), minCharge);
 
// Property and accessibility adjustments
baseCost *= getPropertyMultiplier() * getAccessibilityMultiplier();
 
// Add-ons
let addons = 0;
if (addonsSection.checkbox('sealant')?.value()) addons += sqft * 0.10;
if (addonsSection.checkbox('gutterCleaning')?.value()) addons += 75;
if (addonsSection.checkbox('moldTreatment')?.value()) addons += 50;
if (addonsSection.checkbox('oilStainRemoval')?.value()) addons += 35;
if (addonsSection.checkbox('furnitureMoving')?.value()) addons += 40;
 
let total = baseCost + addons;
 
// Rush service
if (addonsSection.checkbox('rushService')?.value()) {
total *= 1.25;
}
 
// Add travel fee
total += getTravelFee();
 
return Math.round(total);
},
variant: 'large'
});
});
 
// Sticky Summary Section
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalEstimate', {
label: 'Total Estimated Cost',
computedValue: () => {
const surface = surfaceSection.radioButton('surfaceType')?.value() || 'concrete';
const sqft = surfaceSection.integer('squareFootage')?.value() || 500;
const pricePerSqFt = surfacePrices[surface] || 0.15;
const minCharge = minimumCharges[surface] || 100;
 
let baseCost = Math.max(sqft * pricePerSqFt * getDirtMultiplier(), minCharge);
baseCost *= getPropertyMultiplier() * getAccessibilityMultiplier();
 
let addons = 0;
if (addonsSection.checkbox('sealant')?.value()) addons += sqft * 0.10;
if (addonsSection.checkbox('gutterCleaning')?.value()) addons += 75;
if (addonsSection.checkbox('moldTreatment')?.value()) addons += 50;
if (addonsSection.checkbox('oilStainRemoval')?.value()) addons += 35;
if (addonsSection.checkbox('furnitureMoving')?.value()) addons += 40;
 
let total = baseCost + addons;
 
if (addonsSection.checkbox('rushService')?.value()) {
total *= 1.25;
}
 
// Add travel fee
total += getTravelFee();
 
return Math.round(total);
},
variant: 'large'
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Final price may vary based on on-site inspection.',
customStyles: { 'font-size': '0.85rem', 'color': '#94a3b8', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Get Free Quote'
});
}
 

Frequently Asked Questions

Can I customize pricing for my service area?

Yes, all pricing per square foot, minimum charges, and add-on services are fully customizable to match your business rates and local market.

Does it work for both residential and commercial jobs?

Absolutely. The calculator includes options for both property types with appropriate pricing adjustments.

Can I add my own services and options?

Yes, you can fully customize surface types, additional services, and any other options to match your service offerings.

How do I collect customer contact information?

The calculator includes a submit button that can be configured to collect contact details and send them to your email or CRM system.