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

🌟 Unveiling Ultimate Luxury: Introducing Interior-Only RV Detailing! 🌟

Welcome to the RV Retreat Center 🚐✨ – Where Your Mobile Home Finds Renewal!

Are you ready to embark on a journey of pure opulence for your beloved RV's interior? Look no further! 🎉 Our Interior-Only RV Detailing is the epitome of lavish rejuvenation that your home on wheels deserves.

🛋️ Indulge in Interior Elegance 🛋️

Imagine stepping into your RV and being greeted by an oasis of comfort and luxury. With our interior-only package, every nook and cranny of your mobile haven will be meticulously pampered. Your journey to serenity begins here:

💨 Vacuum Interior: Bid farewell to dirt and debris as we leave no corner untouched.

🪟 Crystal-Clear Windows: Let natural light flood in through spotless windows for a breathtaking view.

🌪️ Dust-Off Magic: Banish dust bunnies with a magical touch, leaving surfaces gleaming.

🍽️ Table Bliss: Dine in style with clean tables ready to host your culinary delights.

🚽 Bathroom Elegance: Transform your bathroom into a personal spa retreat.

🍳 Kitchen Grandeur: Experience the joy of cooking in a sparkling, inviting kitchen.

☕ Cup Holders & Cubbies: Ensure every detail is impeccable, right down to the smallest spaces.

🌟 Deep Interior Clean: A thorough indulgence, deep-cleaning every nook, cranny, and crevice.

🛀 Bathroom Bliss: Elevate your bathroom to a realm of pure relaxation.

🍽️ Kitchen Heaven: Restore your kitchen's radiance for culinary adventures.

🧼 Seat & Carpet Revival: Rejuvenate with a refreshing shampoo and stain treatment.

💆‍♂️ Luxurious Upholstery Care: Pamper your seats with deep cleaning and conditioning.

🎵 Appliances' Symphony: Let your appliances shine, ready for their next masterpiece.

🚗 Driver's Cabin Magic: Transform your driver's cabin into a personal haven.

🌈 The Interior Glory Awaits! 🌈

Our award-winning Interior-Only RV Detailing package is your golden ticket to a world of pure opulence on the road. 🏆✨ Let your RV become the sanctuary you deserve – a retreat that pampers and spoils you every step of the way.

Are you ready to immerse yourself in the luxury your RV interior deserves? Don't miss out on this exclusive opportunity to indulge. Let us unlock a realm of relaxation and elegance for you. 🚀

Book Now! and experience the transformation firsthand!

Elevate your RV lifestyle with RV Retreat Center – Your Oasis on Wheels.

✨✨✨

RV Retreat Center is committed to delivering excellence beyond your expectations. Our luxurious interior detailing will redefine your RV experience. Book now and let the indulgence begin! 🚐💖

Book It.

Opening Hours

Mon - Fri

Saturday

​Sunday

8:00 am – 8:00 pm

9:00 am – 7:00 pm

9:00 am – 9:00 pm

bottom of page