import React, { useState } from 'react'; import { PackageTier, VehicleType } from '../types'; const DetailRealityCheck: React.FC = () => { const [vehicleType, setVehicleType] = useState(VehicleType.CAR_4DR); const [dirtiness, setDirtiness] = useState(5); const [hasHair, setHasHair] = useState(false); const [hasStains, setHasStains] = useState(false); const [hasOdors, setHasOdors] = useState(false); const [year, setYear] = useState(new Date().getFullYear()); const [result, setResult] = useState<{ tier: PackageTier; price: string; reason: string } | null>(null); const calculate = () => { const isNew = (new Date().getFullYear() - year) <= 5; const isCar = vehicleType === VehicleType.CAR_2DR || vehicleType === VehicleType.CAR_4DR; let tier = PackageTier.MODERATE; let price = ""; let reason = ""; // VIP LIGHT CHECK ($250) if (isNew && isCar && !hasHair && !hasStains && !hasOdors && dirtiness <= 4) { tier = PackageTier.VIP_LIGHT; price = "$250"; reason = "Good news, this one behaves nicely, so you qualify for our VIP Light Detail at $250."; } // MINIVAN SPECIAL ($650+) else if (vehicleType === VehicleType.MINIVAN) { tier = PackageTier.MODERATE; price = dirtiness > 7 ? "$750+" : "$650+"; reason = "Minivans are large projects. " + (dirtiness > 7 ? "That level of cleaning" : "Standard care") + " starts around " + price + " to get it right."; } // EXTREME ($550+) else if (dirtiness >= 9 || (hasHair && hasStains && hasOdors)) { tier = PackageTier.EXTREME; price = vehicleType === VehicleType.SUV ? "$600+" : vehicleType === VehicleType.TRUCK ? "$650+" : "$550+"; reason = "That bumps it into our next tier so we can handle the heavy lifting. This requires a total restoration focus."; } // HEAVY (Fails 2+ VIP conditions) else if ([hasHair, hasStains, hasOdors, dirtiness > 5].filter(Boolean).length >= 2) { tier = PackageTier.HEAVY; price = vehicleType === VehicleType.SUV ? "$475-$525" : vehicleType === VehicleType.TRUCK ? "$500-$550" : "$425-$475"; reason = "Failing multiple VIP conditions moves this into our Heavy tier. We’ll need the extra time for pet hair or stains."; } // MODERATE (Fails 1 VIP condition) else { tier = PackageTier.MODERATE; price = vehicleType === VehicleType.SUV ? "$400-$425" : vehicleType === VehicleType.TRUCK ? "$425-$450" : "$350-$375"; reason = "That bumps it into our Moderate tier—our most common service for Knoxville daily drivers."; } setResult({ tier, price, reason }); }; return (

Screening Tool

🧠 The Reality Check

30 seconds. Zero judgment. Tell us what we're working with.

setYear(parseInt(e.target.value))} />
setDirtiness(parseInt(e.target.value))} />
1: Just Tidy Level: {dirtiness} 10: "No comment"
{[ { label: 'Hair', state: hasHair, set: setHasHair, icon: '🐶' }, { label: 'Stains', state: hasStains, set: setHasStains, icon: '🧃' }, { label: 'Odors', state: hasOdors, set: setHasOdors, icon: '👃' }, ].map(item => ( ))}
{result ? (

Professional Suggestion

{result.tier}

{result.price}

"{result.reason}"

) : (

Complete the quick screening
to reveal your tier

)}
); }; export default DetailRealityCheck;
top of page

You'll get an email with our booking schedule after you purchase your package. If you'll like to confirm your booking before you pay, please call 865 282-7806. (Current wait time usually three weeks) 

 

Same price no matter vehicle's size. 

 

This package normally takes 3 to 4.5 hours to complete in your driveway.

 

BronzePackage

*Hand-Wash

*Wheels/Tires/Wheel Wells
*Dry
*Double-Deep Vac
*Interior-Wipe Down 
*Glass

 

Silver Package

*Steam
*Wax
*Glove-Box Vacuum

  

Gold Package ( everything from the Bronze & Silver plus all below)

 

*Door-Jams
*Clay-Bar
*Fabric and Carpet Shampoo
*Leather/Vinyl Conditioner
*Trunk Vac
*Trunk Jams

 

Looking for a meticulous detail? Are you in the process of selling your vehicle? This Gold Package will make you smile. It takes every goodie from the Bronze and Silver package and adds so much more. Let's start with the door-jams. Your door jams are ugly. This package will address your dirty door-jams and trunk jams. We use delicate chemicals that won't leave any residue behind to produce nice shinny door jams.

 

We also add a clay bar service to remove environmental fallout (road tar, tree pollen). If your car has a rough feel to the surface, this service will remove it to be followed by a Wax. You're going to love the way your car feels with the Clay Bar service of the Gold Package.

The Gold Package adds a carpet shampoo to rejuvenate old worn fibers. We shampoo the fibers in the carpet as well as the mats. Our foamy shampoo has a pleasant smell. 

 

UV Rays are the #1 cause of leather deterioration. This Gold package adds leather/vinyl conditioner that helps repel future dust and gives your leather/vinyls added sheen that's supple not shiny

 

 

Gold Package Inside/Outside

$350.00 Regular Price
$301.00Sale Price
0/7
0/7
Quantity
  • After your purchase,  you'll receive our booking calender by email for you to choose a day for us to arrive.

bottom of page