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

HYDRA

knoxville auto detailing benz l.jpg

Major Credit Cards Accepted

We come to you!

  1. Vac interior plus glove-box 

  2. Complete interior wiped down including all door panels and  instrument panel. 

  3. Inside/Out Glass

Great package for cars that aren't overly dirty. Perfect choice if your car just needs a good spruce. A great choice if you have just purchased a new car. 

$45

HYDRA

auto detailing knoxville benz pp.jpg

Major Credit Cards Accepted

We come to you!

  1. Vac interior plus glove-box 

  2. Complete interior wiped down including all door panels and  instrument panel.

  3. Inside/Outside glass

  4. Vinyl, Leather, Rejuvenation 

  5. Fabric Protector

Great package for vehicles that need a little more than sprucing up.  Perfect choice if your looking to prevent stains/UV damage from occurring on your leather/fabrics. This package introduces Faggric protetion. Of course all panels will be cleaned and we spend time cleaning and conditioning the leather/vinyl/plastics. The Fabric protector we use is safe for all plastics/vinyl/leather, and will give 6 to 9 months of UV protection.

Enjoy a clean restored interior We use specialty formulated carpet/fabric shampoo to rid of stains and odors. You will feel feel like you're  driving a new car again with this detailing package.

$110

SANTORINI

IMG_1765.jpg

Major Credit Cards Accepted

We come to you!

  1. Vac inside plus glove-box 

  2. Complete interior cleaning including vents, all door panels, instrument panel, etc..

  3. Fabric Protector

  4. Inside/Out Glass

  5. Vinyl, Leather, Rejuvenation

  6. Fabric Protector 

  7. Shampoo Carpet

  8. Deep Stain Removal

  9. Steam Interior Bath

Great choice for vehicles that need a little more TLC. More time will be spent on tackling tough stains and odors. Selling your car soon? This package is for you.

This is the package that introduces steam cleaning--no other technique on the market can sanitize your interior like steam can. Our industrial strength steam penetrates deep into the nooks and crannies to deep clean your vehilces interior/venilation system. A steamed interior and a shampooed carpet will rejuvenate worn fibers to restore

 

This package will bring your vehicle's interior back. You will feel satisfied every time you close your door. A popular package for car dealers--find out why by booking now. 

$175

Interior Bronze

Interior Gold

Interior Platinum 

bottom of page