For Auto Detailers

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

Free pricing calculator for your auto detailing website. Customers build custom packages instantly. You get qualified leads. Setup in 5 minutes.

No credit card required
Free forever for calculators
Works on Squarespace, WordPress, any site
โœจ Auto Detailing Quote Calculator
๐Ÿš— Vehicle Details
๐Ÿ“ฆ Detailing Package
 
โœจ Premium Add-Ons
 
 
๐Ÿ’ฐ Your Detailing Quote
$ 150.00
โœจ Includes: Full Detail package with professional care
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
export function autoDetailingForm(form: FormTs) {
form.setTitle(() => 'โœจ Auto Detailing Quote Calculator');
 
form.configureCompletionScreen({
type: 'text',
title: () => '๐ŸŽ‰ Quote Ready!',
message: () => 'Your custom detailing quote has been generated. Download your PDF to save the details.'
});
 
// Pricing data
const vehicleSizePrices: Record<string, number> = {
'sedan': 0,
'coupe': 0,
'suv': 40,
'truck': 50,
'van': 60,
'xl': 80
};
 
const packagePrices: Record<string, number> = {
'exterior': 80,
'interior': 90,
'full': 150,
'premium': 250
};
 
const addonPrices: Record<string, number> = {
'clayBar': 50,
'paintCorrection': 150,
'ceramicSpray': 80,
'headlightRestore': 60,
'engineBay': 45,
'ozoneTreatment': 75,
'leatherCondition': 40,
'fabricProtect': 35,
'petHairRemoval': 50,
'wheelPolish': 40
};
 
// Vehicle Details
const vehicleDetails = form.addSubform('vehicleDetails', {
title: () => '๐Ÿš— Vehicle Details',
mobileBreakpoint: 0
});
 
vehicleDetails.addRow(row => {
row.addDropdown('vehicleSize', {
label: 'Vehicle Size',
defaultValue: 'sedan',
isRequired: true,
options: [
{ id: 'sedan', name: '๐Ÿš— Sedan/Compact (no extra)' },
{ id: 'coupe', name: '๐ŸŽ๏ธ Coupe/Sports Car (no extra)' },
{ id: 'suv', name: '๐Ÿš™ SUV/Crossover (+$40)' },
{ id: 'truck', name: '๐Ÿ›ป Truck (+$50)' },
{ id: 'van', name: '๐Ÿš Van/Minivan (+$60)' },
{ id: 'xl', name: '๐ŸšŒ XL Vehicle (+$80)' }
]
}, '1fr');
});
 
vehicleDetails.addRow(row => {
row.addDropdown('condition', {
label: 'Current Condition',
defaultValue: 'normal',
isRequired: true,
options: [
{ id: 'good', name: 'โœจ Good - Regular maintenance' },
{ id: 'normal', name: '๐Ÿ‘ Normal - Some dirt/dust' },
{ id: 'dirty', name: '๐Ÿ˜… Dirty - Needs attention' },
{ id: 'veryDirty', name: '๐Ÿ˜ฌ Very Dirty - Heavy cleaning needed' }
]
}, '1fr');
});
 
// Detailing Package
const packageSection = form.addSubform('package', {
title: () => '๐Ÿ“ฆ Detailing Package',
mobileBreakpoint: 0
});
 
packageSection.addRow(row => {
row.addRadioButton('detailPackage', {
label: 'Select Package',
defaultValue: 'full',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'exterior', name: '๐Ÿšฟ Exterior Only ($80) - Wash, clay, wax, tires, windows' },
{ id: 'interior', name: '๐Ÿงน Interior Only ($90) - Vacuum, wipe, glass, air freshener' },
{ id: 'full', name: 'โญ Full Detail ($150) - Complete interior + exterior' },
{ id: 'premium', name: '๐Ÿ‘‘ Premium Detail ($250) - Full detail + paint correction + ceramic spray' }
]
});
});
 
// Add-ons
const addonsSection = form.addSubform('addons', {
title: () => 'โœจ Premium Add-Ons',
mobileBreakpoint: 500
});
 
addonsSection.addRow(row => {
row.addCheckboxList('exteriorAddons', {
label: 'Exterior Add-Ons',
orientation: 'vertical',
options: [
{ id: 'clayBar', name: '๐Ÿงฑ Clay Bar Treatment (+$50)' },
{ id: 'paintCorrection', name: '๐Ÿ”ง Paint Correction (+$150)' },
{ id: 'ceramicSpray', name: '๐Ÿ›ก๏ธ Ceramic Spray Coating (+$80)' },
{ id: 'headlightRestore', name: '๐Ÿ’ก Headlight Restoration (+$60)' },
{ id: 'wheelPolish', name: '๐Ÿ”˜ Wheel Polish & Seal (+$40)' }
]
}, '1fr');
 
row.addCheckboxList('interiorAddons', {
label: 'Interior Add-Ons',
orientation: 'vertical',
options: [
{ id: 'engineBay', name: '๐Ÿ”ง Engine Bay Cleaning (+$45)' },
{ id: 'ozoneTreatment', name: '๐Ÿ’จ Ozone Odor Treatment (+$75)' },
{ id: 'leatherCondition', name: '๐Ÿ›‹๏ธ Leather Conditioning (+$40)' },
{ id: 'fabricProtect', name: '๐Ÿงด Fabric Protection (+$35)' },
{ id: 'petHairRemoval', name: '๐Ÿ• Pet Hair Removal (+$50)' }
]
}, '1fr');
});
 
// Calculate functions
const getVehicleSizePrice = () => {
const size = vehicleDetails.dropdown('vehicleSize')?.value() || 'sedan';
return vehicleSizePrices[size] ?? 0;
};
 
const getConditionMultiplier = () => {
const condition = vehicleDetails.dropdown('condition')?.value() || 'normal';
const multipliers: Record<string, number> = {
'good': 1.0,
'normal': 1.0,
'dirty': 1.15,
'veryDirty': 1.3
};
return multipliers[condition] ?? 1.0;
};
 
const getPackagePrice = () => {
const pkg = packageSection.radioButton('detailPackage')?.value() || 'full';
return packagePrices[pkg] ?? 150;
};
 
const getAddonsTotal = () => {
let total = 0;
const exteriorAddons = addonsSection.checkboxList('exteriorAddons')?.value() || [];
const interiorAddons = addonsSection.checkboxList('interiorAddons')?.value() || [];
 
const allSelected = [...exteriorAddons, ...interiorAddons];
 
for (const addonId of allSelected) {
total += addonPrices[addonId] ?? 0;
}
 
return total;
};
 
const getSelectedAddons = () => {
const exteriorAddons = addonsSection.checkboxList('exteriorAddons')?.value() || [];
const interiorAddons = addonsSection.checkboxList('interiorAddons')?.value() || [];
return [...exteriorAddons, ...interiorAddons];
};
 
const getTotalPrice = () => {
const basePackage = getPackagePrice();
const vehicleSize = getVehicleSizePrice();
const conditionMultiplier = getConditionMultiplier();
const addons = getAddonsTotal();
 
return Math.round((basePackage + vehicleSize) * conditionMultiplier) + addons;
};
 
// Quote Summary
const summary = form.addSubform('summary', {
title: () => '๐Ÿ’ฐ Your Detailing Quote',
isCollapsible: false,
});
 
summary.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Price',
computedValue: () => getTotalPrice(),
alignment: 'center',
variant: 'large'
});
});
 
summary.addRow(row => {
row.addTextPanel('includes', {
computedValue: () => {
const pkg = packageSection.radioButton('detailPackage')?.value() || 'full';
const packageNames: Record<string, string> = {
'exterior': 'Exterior Detail package',
'interior': 'Interior Detail package',
'full': 'Full Detail package',
'premium': 'Premium Detail package'
};
return `โœจ Includes: ${packageNames[pkg] ?? 'Full Detail package'} with professional care`;
},
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
textAlign: 'center'
}
});
});
 
form.configureSubmitButton({
label: () => 'Book This Detail'
});
 
// Configure PDF
form.configurePdf('quoteDocument', (pdf) => {
pdf.configure({
filename: 'auto-detailing-quote.pdf',
pageSize: 'A4',
allowUserDownload: true,
downloadButtonLabel: 'Download Your Quote',
header: {
title: 'Auto Detailing Quote',
subtitle: 'Custom Service Package'
},
footer: {
text: 'Thank you for choosing us for your auto detailing needs!',
showPageNumbers: true
}
});
 
pdf.addSection('Vehicle Details', (section) => {
section.addRow((row) => {
const size = vehicleDetails.dropdown('vehicleSize')?.value() || 'sedan';
const sizeLabels: Record<string, string> = {
'sedan': 'Sedan/Compact',
'coupe': 'Coupe/Sports Car',
'suv': 'SUV/Crossover',
'truck': 'Truck',
'van': 'Van/Minivan',
'xl': 'XL Vehicle'
};
row.addField('Vehicle Size', sizeLabels[size] ?? size);
 
const condition = vehicleDetails.dropdown('condition')?.value() || 'normal';
const conditionLabels: Record<string, string> = {
'good': 'Good - Regular maintenance',
'normal': 'Normal - Some dirt/dust',
'dirty': 'Dirty - Needs attention',
'veryDirty': 'Very Dirty - Heavy cleaning'
};
row.addField('Condition', conditionLabels[condition] ?? condition);
});
});
 
pdf.addSection('Detailing Package', (section) => {
section.addRow((row) => {
const pkg = packageSection.radioButton('detailPackage')?.value() || 'full';
const packageLabels: Record<string, string> = {
'exterior': 'Exterior Only',
'interior': 'Interior Only',
'full': 'Full Detail',
'premium': 'Premium Detail'
};
row.addField('Package', packageLabels[pkg] ?? pkg);
row.addField('Package Price', `$${getPackagePrice()}`);
});
});
 
const selectedAddons = getSelectedAddons();
if (selectedAddons.length > 0) {
pdf.addSection('Premium Add-Ons', (section) => {
const addonLabels: Record<string, string> = {
'clayBar': 'Clay Bar Treatment',
'paintCorrection': 'Paint Correction',
'ceramicSpray': 'Ceramic Spray Coating',
'headlightRestore': 'Headlight Restoration',
'engineBay': 'Engine Bay Cleaning',
'ozoneTreatment': 'Ozone Odor Treatment',
'leatherCondition': 'Leather Conditioning',
'fabricProtect': 'Fabric Protection',
'petHairRemoval': 'Pet Hair Removal',
'wheelPolish': 'Wheel Polish & Seal'
};
 
const tableRows = selectedAddons.map(addonId => [
addonLabels[addonId] ?? addonId,
`$${addonPrices[addonId] ?? 0}`
]);
 
section.addTable(['Service', 'Price'], tableRows);
});
}
 
pdf.addSection('Quote Summary', (section) => {
section.addRow((row) => {
row.addField('Base Package', `$${getPackagePrice()}`);
});
 
const vehicleSizePrice = getVehicleSizePrice();
if (vehicleSizePrice > 0) {
section.addRow((row) => {
row.addField('Vehicle Size Adjustment', `$${vehicleSizePrice}`);
});
}
 
const conditionMultiplier = getConditionMultiplier();
if (conditionMultiplier > 1) {
section.addRow((row) => {
const extraPercent = Math.round((conditionMultiplier - 1) * 100);
row.addField('Condition Adjustment', `+${extraPercent}%`);
});
}
 
if (selectedAddons.length > 0) {
section.addRow((row) => {
row.addField('Add-ons', `$${getAddonsTotal()}`);
});
}
 
section.addDivider();
section.addSpacer(10);
section.addRow((row) => {
row.addField('TOTAL', `$${getTotalPrice()}`);
});
});
 
pdf.addSection('What\'s Included', (section) => {
const pkg = packageSection.radioButton('detailPackage')?.value() || 'full';
const includes: Record<string, string[]> = {
'exterior': ['Hand wash & dry', 'Clay bar decontamination', 'Wax/sealant application', 'Tire & wheel cleaning', 'Window cleaning', 'Trim dressing'],
'interior': ['Full vacuum', 'Dashboard & console wipe', 'Door panels cleaning', 'Glass cleaning', 'Air freshener', 'Floor mat cleaning'],
'full': ['Complete exterior detail', 'Complete interior detail', 'Trunk cleaning', 'Door jambs', 'Cup holder cleaning', 'Vent cleaning'],
'premium': ['Everything in Full Detail', 'One-step paint correction', 'Ceramic spray coating', 'Leather/vinyl conditioning', 'Engine bay cleaning', '30-day protection guarantee']
};
 
const items = includes[pkg] ?? includes['full'] ?? [];
items.forEach(item => {
section.addText(`โ€ข ${item}`);
});
});
 
pdf.addSection('Important Information', (section) => {
section.addText('โ€ข This quote is valid for 14 days from the date of generation.');
section.addText('โ€ข Appointment required - walk-ins subject to availability.');
section.addText('โ€ข Please remove personal items before your appointment.');
section.addText('โ€ข Additional charges may apply for excessive pet hair or stains.');
section.addSpacer(10);
section.addText('Questions? Contact us at hello@autodetailing.com');
});
});
}
 

Why Auto Detailers Love It

Stop losing customers to "I'll get back to you." Let them see prices and book while they're excited about a fresh detail.

Save Hours Daily

No more "how much for my SUV?" texts. Customers see prices upfront 24/7.

More Bookings

Customers who build their own package are ready to book. Less back-and-forth, more detailing.

Look Professional

Interactive pricing builds trust. Stand out from competitors with basic price lists.

No Coding Required

Describe your services. Our AI builds your calculator in minutes.

Add a Pricing Calculator in 3 Steps

1

Build Your Calculator

Use our AI assistant or pick a template. Set your detailing rates, packages, and add-ons.

2

Customize Your Look

Match your brand aesthetic. Mobile-friendly by default. Looks beautiful everywhere.

3

Embed Anywhere

Copy 2 lines of code. Works on Squarespace, WordPress, Wix, 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 Pricing

Real-Time Calculations

Prices update instantly as customers select vehicle size and services. No page reloads.

Email Notifications

Get notified the moment someone requests a quote. Never miss a potential booking.

PDF Quotes

Auto-generate beautiful quote PDFs with your branding. Customers can save and share.

Conditional Logic

Show ceramic coating options only for eligible packages. Smart forms that adapt.

Works Everywhere

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

Mobile Optimized

Looks stunning on phones and tablets. Most 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 about your services and pricing. You can also start from a template and customize it - no coding required.

Will it work on my Squarespace/WordPress/Wix 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 Squarespace, WordPress, Wix, 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 set different prices for different vehicle sizes?

Absolutely. You control everything - vehicle sizes (sedan, SUV, truck), service packages, add-ons like ceramic coating or engine cleaning. The calculator uses YOUR pricing exactly as you define it.

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, Urable, or your scheduling software.

What if I want to change my pricing later?

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

Ready to Stop Chasing Quotes and Start Detailing?

Join auto detailers who automated their pricing and started booking more clients. Start with a free template or let AI build your custom calculator.

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