<?php
// Get the vehicle make from URL parameter
$make = isset($_GET['make']) ? htmlspecialchars($_GET['make']) : 'Vehicle';

// Convert make to display format (capitalize first letter of each word)
$makeDisplay = ucwords(str_replace('-', ' ', $make));

// Define image mapping (you can customize these later)
$makeImages = [
    'chevrolet' => 'images/service/chevy-1.jpg',
    'ford' => 'images/service/ford-1.jpg',
    'gmc' => 'images/service/gmc-1.jpg',
    'dodge' => 'images/service/dodge.jpg',
    'ram' => 'images/service/ram.jpg',
    'jeep' => 'images/service/jeep.jpg',
    'chrysler' => 'images/service/chrysler.jpg',
    'cadillac' => 'images/service/cadillac.jpg',
    'buick' => 'images/service/buick.jpg',
    'lincoln' => 'images/service/lincoln.jpg',
    'mercury' => 'images/service/mercury.jpg',
    'pontiac' => 'images/service/pontiac.jpg',
    'oldsmobile' => 'images/service/oldsmobile.jpg',
    'saturn' => 'images/service/saturn.jpg',
    'plymouth' => 'images/service/plymouth.jpg',
    // European
    'volkswagen' => 'images/service/volkswagen.jpg',
    'audi' => 'images/service/audi.jpg',
    'range-rover' => 'images/service/range-rover.jpg',
    'bmw' => 'images/service/bmw.jpg',
    'mercedes-benz' => 'images/service/mercedes-benz.jpg',
    'jaguar' => 'images/service/jaguar.jpg',
    'mini' => 'images/service/mini.jpg',
    // Foreign
    'acura' => 'images/service/acura.jpg',
    'honda' => 'images/service/honda.jpg',
    'toyota' => 'images/service/toyota.jpg',
    'lexus' => 'images/service/lexus.jpg',
    'scion' => 'images/service/scion.jpg',
    'nissan' => 'images/service/nissan.jpg',
    'infiniti' => 'images/service/infiniti.jpg',
    'hyundai' => 'images/service/hyundai.jpg',
    'kia' => 'images/service/kia.jpg',
    'subaru' => 'images/service/subaru.jpg',
];

// Get the background image, fallback to default
$backgroundImage = isset($makeImages[$make]) ? $makeImages[$make] : 'images/service/ford-1.jpg';
?>
<!DOCTYPE html> 
<html lang="en"> 
    <head> 
        <meta charset="UTF-8"> 
        <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
        <title>
            <?php echo $makeDisplay; ?> Service Details - Automan Ed
        </title>         
        <link rel="icon" href="favicon.ico" type="image/x-icon"> 
        <!-- Animation On Scroll (AOS) -->         
        <link rel="stylesheet" href="css/vendor/aos.css"> 
        <!-- Bootstrap Icons CSS -->         
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"> 
        <!-- Slick CSS -->         
        <link rel="stylesheet" href="css/vendor/slick.css"> 
        <!-- FANCYBOX CSS  -->         
        <link rel="stylesheet" href="css/vendor/fancybox.css"> 
        <!-- Custom CSS -->         
        <link rel="stylesheet" href="css/style.css"> 
        <style>/* Service Navigation Styles */.service-nav-item { color: var(--text-color); transition: all 0.3s ease; border: 1px solid transparent; } .service-nav-item:hover { background-color: var(--primary-color) !important; color: white !important; border-color: var(--primary-color); transform: translateX(5px); } .service-nav-item.active { background-color: var(--primary-color); color: white; border-color: var(--primary-color); } .service-nav-item:hover i, .service-nav-item.active i { color: white !important; } .service-category h5 { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; } .service-content-section { display: none; } .service-content-section.active { display: block; } /* Scrollbar styles for navigation - hidden by default, shows on hover */.service-nav-container { max-height: 600px; overflow-y: auto; scrollbar-width: none;  /* Firefox */ -ms-overflow-style: none;  /* Internet Explorer 10+ */ } /* Hide scrollbar for WebKit browsers */.service-nav-container::-webkit-scrollbar { width: 0px; background: transparent; } /* Show scrollbar on hover */.service-nav-container:hover::-webkit-scrollbar { width: 4px; } .service-nav-container:hover::-webkit-scrollbar-track { background: var(--background-alt-color); } .service-nav-container:hover::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 2px; }</style>         
    </head>     
    <body> 
        <!-- Header -->         
        <!-- #header end -->         
        <!-- Main Content -->         
        <?php include("nav.php"); ?>
        <main> 
            <!-- Banner -->             
            <section class="section position-relative" style="background-image: url('<?php echo $backgroundImage; ?>');"> 
                <div class="bg-overlay-4"></div>                 
                <div class="b-container h-100 position-relative z-2"> 
                    <div class="d-flex flex-column justify-content-center align-items-center mx-auto text-center text-white gap-4" style="max-width: 895px;"> 
                        <h1 class="heading fw-bold" data-aos="fade-down" data-aos-delay="300" data-aos-duration="1000"><?php echo strtoupper($makeDisplay); ?> SERVICE RECOMMENDATIONS</h1> 
                        <nav aria-label="breadcrumb"> 
                            <ol class="breadcrumb" data-aos="fade-down" data-aos-delay="600" data-aos-duration="1000"> 
                                <li class="breadcrumb-item">
                                    <a href="index.php">Home</a>
                                </li>                                 
                                <li class="breadcrumb-item active" aria-current="page">
                                    <?php echo $makeDisplay; ?> Service Details
                                </li>                                 
                            </ol>                             
                        </nav>                         
                    </div>                     
                </div>                 
            </section>             
            <!-- #banner -->             
            <!-- Service Content -->             
            <section class="section bg-color"> 
                <div class="b-container"> 
                    <div class="row"> 
                        <div class="col-12 col-lg-4 col-md-4 col-xl-4 order-1 order-xl-1 pe-xl-4"> 
                            <div class="bg-accent-color-2 p-4 rounded-4 h-100"> 
                                <h3 class="mb-4 text-center">Service Recommendations</h3> 
                                <hr class="border-1 text-primary-color opacity-100 mb-4"> 
                                <div class="service-nav-container"> 
                                    <!-- Did You Know -->                                     
                                    <div class="service-category mb-4"> 
                                        <h5 class="mb-3 text-primary-color"> <i class="bi bi-lightbulb-fill me-2"></i>Did You Know </h5> 
                                        <div class="service-nav-items"> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="did-you-know"> <i class="bi bi-info-circle-fill text-primary-color me-2"></i>Did You Know </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="automotive-education"> <i class="bi bi-book-fill text-primary-color me-2"></i>Automotive Maintenance Education </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="car-could-talk"> <i class="bi bi-chat-square-text-fill text-primary-color me-2"></i>If Your Car Could Talk </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="normal-driving"> <i class="bi bi-car-front-fill text-primary-color me-2"></i>Normal Driving in the USA </a> 
                                        </div>                                         
                                    </div>                                     
                                    <!-- Engine & Performance -->                                     
                                    <div class="service-category mb-4"> 
                                        <h5 class="mb-3 text-primary-color"> <i class="bi bi-gear-fill me-2"></i>Engine & Performance </h5> 
                                        <div class="service-nav-items"> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none active" data-service="oil-changes"> <i class="bi bi-droplet-fill text-primary-color me-2"></i>Oil Changes </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="spark-plugs"> <i class="bi bi-lightning-fill text-primary-color me-2"></i>Spark Plugs </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="fuel-system"> <i class="bi bi-fuel-pump-fill text-primary-color me-2"></i>Fuel System Cleaning </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="fuel-filter"> <i class="bi bi-funnel-fill text-primary-color me-2"></i>Fuel Filter </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="timing-belt"> <i class="bi bi-arrow-repeat text-primary-color me-2"></i>Timing Belt </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="valve-adjustment"> <i class="bi bi-tools text-primary-color me-2"></i>Valve Adjustment </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="pcv-valve"> <i class="bi bi-funnel text-primary-color me-2"></i>PCV Valve </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="diesel-filter"> <i class="bi bi-filter-circle-fill text-primary-color me-2"></i>Diesel Particulate Filter </a> 
                                        </div>                                         
                                    </div>                                     
                                    <!-- Fluids & Filters -->                                     
                                    <div class="service-category mb-4"> 
                                        <h5 class="mb-3 text-primary-color"> <i class="bi bi-droplet-half me-2"></i>Fluids & Filters </h5> 
                                        <div class="service-nav-items"> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="transmission-fluid"> <i class="bi bi-droplet text-primary-color me-2"></i>Transmission Fluid </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="transmission-filter"> <i class="bi bi-funnel text-primary-color me-2"></i>Transmission Filter </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="brake-fluid"> <i class="bi bi-stopwatch text-primary-color me-2"></i>Brake Fluid </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="power-steering"> <i class="bi bi-steering-wheel text-primary-color me-2"></i>Power Steering Fluid </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="radiator-fluid"> <i class="bi bi-thermometer-half text-primary-color me-2"></i>Radiator Fluid </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="air-cabin-filters"> <i class="bi bi-wind text-primary-color me-2"></i>Air & Cabin Filters </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="lifetime-fluids"> <i class="bi bi-infinity text-primary-color me-2"></i>Lifetime Fluids </a> 
                                        </div>                                         
                                    </div>                                     
                                    <!-- Tires & Wheels -->                                     
                                    <div class="service-category mb-4"> 
                                        <h5 class="mb-3 text-primary-color"> <i class="bi bi-circle me-2"></i>Tires & Wheels </h5> 
                                        <div class="service-nav-items"> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="tire-rotation"> <i class="bi bi-arrow-clockwise text-primary-color me-2"></i>Tire Rotation </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="tire-pressure"> <i class="bi bi-speedometer2 text-primary-color me-2"></i>Tire Pressure & Fuel Economy </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="alignments"> <i class="bi bi-arrows-angle-expand text-primary-color me-2"></i>Alignments </a> 
                                        </div>                                         
                                    </div>                                     
                                    <!-- Electrical & Hybrid -->                                     
                                    <div class="service-category mb-4"> 
                                        <h5 class="mb-3 text-primary-color"> <i class="bi bi-lightning me-2"></i>Electrical & Hybrid </h5> 
                                        <div class="service-nav-items"> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="battery-maintenance"> <i class="bi bi-battery-charging text-primary-color me-2"></i>Battery Maintenance </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="hybrid-battery"> <i class="bi bi-fan text-primary-color me-2"></i>Hybrid Battery Fan Cleaning </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="inverter-fluid"> <i class="bi bi-droplet-half text-primary-color me-2"></i>Inverter Fluid (Hybrid) </a> 
                                        </div>                                         
                                    </div>                                     
                                    <!-- Other Services -->                                     
                                    <div class="service-category"> 
                                        <h5 class="mb-3 text-primary-color"> <i class="bi bi-wrench me-2"></i>Other Services </h5> 
                                        <div class="service-nav-items"> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="gearboxes"> <i class="bi bi-gear text-primary-color me-2"></i>Gearboxes </a> <a href="#" class="service-nav-item d-block p-2 rounded mb-2 text-decoration-none" data-service="dashboard"> <i class="bi bi-speedometer text-primary-color me-2"></i>Dashboard </a> 
                                        </div>                                         
                                    </div>                                     
                                </div>                                 
                            </div>                             
                        </div>                         
                        <div class="col-12 col-lg-8 col-md-8 col-xl-8 order-2 order-xl-2 ps-xl-4"> 
                            <div id="service-content" class="d-flex flex-column gap-4"> 
                                <!-- Did You Know Content -->
                                <div class="service-content-section" data-service="did-you-know" style="display: none;">
                                    <h3 class="mb-0 text-primary-color" style="margin-top: 20px;">AutoEd CSR: Did You Know</h3>
                                    <p class="mb-4 text-big"> <em>Clear, Simplified Recommendations</em> </p>
                                    <div class="mb-4">
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">1. Keep Your Grille Clean</h5>
                                            <p class="mb-2">Bugs, dust, and debris can clog the front grille, blocking airflow to the condenser and radiator.</p>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Reduced airflow means lower A/C performance and higher engine temps</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Clean with compressed air or soft brush every <strong>50,000 miles</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">2. There Are No True "Lifetime" Fluids</h5>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-info-circle text-primary-color me-3 mt-1"></i>
                                                    <span>"Lifetime" usually means about <strong>100,000 miles</strong> — not forever</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>All fluids eventually break down and should be replaced for long-term reliability</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">3. Prevent Packrat Damage</h5>
                                            <p class="mb-2">Packrats cause millions in damage each year. Try these deterrents:</p>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span><strong>Pine-Sol & water (50/50):</strong> Spray on all four tires</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span><strong>Mint extract:</strong> Soak cotton balls, place in engine corners and near fuel tank</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span><strong>Ammonia & water (50/50):</strong> Spray around your parking area</span>
                                                </li>
                                            </ul>
                                            <p class="mb-0">Repeat weekly for <strong>four months</strong>.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">4. Hybrid Maintenance</h5>
                                            <p class="mb-0">Hybrid systems need <strong>inverter fluid changes</strong> and <strong>hybrid battery fan cleaning</strong> to prevent overheating and electrical strain.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">5. Alignment Matters</h5>
                                            <p class="mb-2">A hard hit to a pothole, curb, or parking block can knock alignment out of spec — even if it seems minor.</p>
                                            <p class="mb-0">If your steering wheel is off-center or tires wear unevenly, check alignment.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">6. Battery Life</h5>
                                            <p class="mb-2">Most vehicle batteries last around <strong>3 years</strong>, regardless of climate.</p>
                                            <p class="mb-0">Slow cranking or dim lights? Time for a test or replacement.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">7. Brake Fluid Caution</h5>
                                            <p class="mb-2">Brake fluid absorbs moisture, which can rust internal parts and damage ABS systems.</p>
                                            <p class="mb-0">Replace every <strong>2–3 years</strong> for safety.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">8. CVT Transmission Service</h5>
                                            <p class="mb-0">Continuously Variable Transmissions (CVTs) need <strong>fluid service every 30,000 miles</strong> to prevent belt slippage and overheating.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">9. Fuel System Types</h5>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span><strong>Carburetion:</strong> Common until the 1980s</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span><strong>Electronic Fuel Injection (EFI):</strong> 1980s–2010; still ~25% of cars</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span><strong>Gas Direct Injection (GDI):</strong> Since 1996; now ~75% of modern engines, especially turbos</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">10. Radiator Fluid</h5>
                                            <p class="mb-2">Old coolant becomes acidic, eating away at <strong>rubber, plastic, and aluminum</strong> parts.</p>
                                            <p class="mb-0">Flush and replace as recommended — usually every <strong>2–5 years</strong>.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">11. Maintenance Is Not an Upsell</h5>
                                            <p class="mb-0">Fluids, filters, and cleanings are essential — not "extras." They prevent breakdowns just like oil changes and tire rotations.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">12. Turbo & Supercharged Vehicles</h5>
                                            <p class="mb-2">More boost = more heat.</p>
                                            <p class="mb-0">These engines need <strong>more frequent spark plug and fluid changes</strong> to stay healthy.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">13. Time Breaks Down Fluids</h5>
                                            <p class="mb-2">Even parked cars suffer fluid breakdown from <strong>age, temperature, and moisture</strong>.</p>
                                            <p class="mb-0">Service by <strong>time or mileage</strong>, whichever comes first.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">14. Under-Vehicle Fluids Are Often Neglected</h5>
                                            <p class="mb-0">Differentials, transfer cases, and gear oils need attention too — often every <strong>30,000–60,000 miles</strong>.</p>
                                        </div>
                                        <div class="mb-4">
                                            <h5 class="mb-3 text-primary-color">15. Tire Pressure</h5>
                                            <p class="mb-2">Proper tire pressure improves fuel economy, ride comfort, and tread life.</p>
                                            <p class="mb-0">Check monthly and before long trips.</p>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="mb-0 text-white">These quick tips can save you time, money, and prevent unexpected breakdowns. Regular maintenance keeps your vehicle running smoothly and protects your investment for years to come.</p>
                                    </div>
                                </div>
                                <!-- Automotive Maintenance Education Content -->
                                <div class="service-content-section" data-service="automotive-education" style="display: none;">
                                    <h3 class="mb-0 text-primary-color" style="margin-top: 20px;">Automotive Maintenance Education — Experience You Can Trust</h3>
                                    <p class="mb-4 text-big">
                                        With over <strong>34 years in the automotive industry</strong>, we've seen it all — and learned what truly matters when it comes to keeping vehicles running their best. </p>
                                    <div class="mb-4">
                                        <p class="mb-3">Our experience comes from working with:</p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span><strong>100+ Technicians and Mechanics</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span><strong>70+ Service Advisors and Managers</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span><strong>10+ Companies</strong> including Dealerships, Independent Repair Shops, Franchise and Corporate Facilities, and Quick Oil & Lube Centers</span>
                                            </li>
                                        </ul>
                                        <p class="mb-0">Over the decades, we've heard <em>every</em> piece of advice imaginable about car care — some good, some confusing, and some downright misleading. That's why AutoManEd was created: to <strong>cut through the noise</strong> and give you clear, honest, experience-backed information on how to take care of your vehicle — your <strong>second-largest investment</strong>.</p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Our Passion</h5>
                                        <p class="mb-3">Educating and informing customers has always been our <strong>driving force</strong>. We believe in empowering drivers to make smart, confident maintenance decisions — no matter what they drive.</p>
                                        <p class="mb-3">Keeping your vehicle well-maintained doesn't just keep it reliable; it <strong>saves you money</strong>.</p>
                                        
                                        <!-- Cost Comparison Chart -->
                                        <div class="bg-white border border-2 border-primary-color rounded-4 p-4 mb-4">
                                            <h5 class="text-center text-primary-color mb-4">5½ Year Cost Comparison: New vs. Maintained Vehicle</h5>
                                            <p class="text-center text-muted mb-4">Based on average Toyota Camry ownership</p>
                                            
                                            <div class="row g-4">
                                                <!-- New Car Column -->
                                                <div class="col-12 col-md-6">
                                                    <div class="bg-danger bg-opacity-10 border border-danger rounded-3 p-4 h-100">
                                                        <div class="text-center mb-3">
                                                            <i class="bi bi-car-front-fill text-danger fs-1"></i>
                                                            <h5 class="text-danger mt-2 mb-0">New Car Purchase</h5>
                                                        </div>
                                                        
                                        <div class="cost-breakdown">
                                            <div class="d-flex justify-content-between align-items-center mb-3 pb-2 border-bottom">
                                                <span class="fw-bold text-dark">Monthly Payment</span>
                                                <span class="text-danger fw-bold">$600/mo</span>
                                            </div>
                                            <div class="d-flex justify-content-between align-items-center mb-2">
                                                <span class="text-dark">Payment (66 months)</span>
                                                <span class="text-dark fw-semibold">$39,600</span>
                                            </div>
                                            <div class="d-flex justify-content-between align-items-center mb-2">
                                                <span class="text-dark">Tax, Title, License</span>
                                                <span class="text-dark fw-semibold">$2,500</span>
                                            </div>
                                            <div class="d-flex justify-content-between align-items-center mb-2">
                                                <span class="text-dark">Insurance (5.5 years)</span>
                                                <span class="text-dark fw-semibold">$4,400</span>
                                            </div>
                                            <div class="d-flex justify-content-between align-items-center mb-3 pb-3 border-bottom">
                                                <span class="text-dark">Maintenance (5.5 years)</span>
                                                <span class="text-dark fw-semibold">$1,500</span>
                                            </div>                                                            <div class="d-flex justify-content-between align-items-center bg-danger bg-opacity-25 p-3 rounded-3">
                                                                <span class="fw-bold fs-5">Total Cost:</span>
                                                                <span class="text-danger fw-bold fs-4">$48,000</span>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                
                                                <!-- Keep Current Car Column -->
                                                <div class="col-12 col-md-6">
                                                    <div class="bg-success bg-opacity-10 border border-success rounded-3 p-4 h-100">
                                                        <div class="text-center mb-3">
                                                            <i class="bi bi-tools text-success fs-1"></i>
                                                            <h5 class="text-success mt-2 mb-0">Keep & Maintain Current Car</h5>
                                                        </div>
                                                        
                                        <div class="cost-breakdown">
                                            <div class="d-flex justify-content-between align-items-center mb-3 pb-2 border-bottom">
                                                <span class="fw-bold text-dark">Annual Cost</span>
                                                <span class="text-success fw-bold">~$5,000/yr</span>
                                            </div>
                                            <div class="d-flex justify-content-between align-items-center mb-2">
                                                <span class="text-dark">Maintenance (5.5 years)</span>
                                                <span class="text-dark fw-semibold">$16,500</span>
                                            </div>
                                            <div class="d-flex justify-content-between align-items-center mb-2">
                                                <span class="text-dark">Insurance (5.5 years)</span>
                                                <span class="text-dark fw-semibold">$6,600</span>
                                            </div>
                                            <div class="d-flex justify-content-between align-items-center mb-2">
                                                <span class="text-dark">Tags & Registration</span>
                                                <span class="text-dark fw-semibold">$3,400</span>
                                            </div>
                                            <div class="d-flex justify-content-between align-items-center mb-3 pb-3 border-bottom">
                                                <span class="text-dark">No Car Payment</span>
                                                <span class="text-success fw-bold">$0</span>
                                            </div>                                                            <div class="d-flex justify-content-between align-items-center bg-success bg-opacity-25 p-3 rounded-3">
                                                                <span class="fw-bold fs-5">Total Cost:</span>
                                                                <span class="text-success fw-bold fs-4">$26,500</span>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                            
                                            <!-- Savings Highlight -->
                                            <div class="mt-4 bg-primary-color p-4 rounded-4 text-center">
                                                <h4 class="text-white mb-2">
                                                    <i class="bi bi-piggy-bank-fill me-2"></i>
                                                    Your 5½ Year Savings
                                                </h4>
                                                <div class="display-4 text-white fw-bold mb-2">$21,500</div>
                                                <p class="text-white mb-0">Just by maintaining what you already own!</p>
                                            </div>
                                            
                                            <!-- Visual Bar Comparison -->
                                            <div class="mt-4">
                                                <h6 class="text-center text-dark mb-3 fw-bold">Visual Cost Comparison</h6>
                                                <div class="row g-3">
                                                    <div class="col-12">
                                                        <div class="d-flex align-items-center">
                                                            <span class="text-nowrap me-3 fw-semibold text-dark" style="min-width: 120px;">New Car</span>
                                                            <div class="flex-grow-1 bg-light rounded-pill overflow-hidden" style="height: 40px;">
                                                                <div class="bg-danger h-100 d-flex align-items-center justify-content-end pe-3" 
                                                                     style="width: 100%;">
                                                                    <span class="text-white fw-bold">$48,000</span>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                    <div class="col-12">
                                                        <div class="d-flex align-items-center">
                                                            <span class="text-nowrap me-3 fw-semibold text-dark" style="min-width: 120px;">Keep Current</span>
                                                            <div class="flex-grow-1 bg-light rounded-pill overflow-hidden" style="height: 40px;">
                                                                <div class="bg-success h-100 d-flex align-items-center justify-content-end pe-3" 
                                                                     style="width: 55.2%;">
                                                                    <span class="text-white fw-bold">$26,500</span>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                        <!-- End Cost Comparison Chart -->
                                        
                                        <p class="mb-0">If you love your current ride, know its quirks and blind spots, and it fits your needs — why trade it in? Proper maintenance can keep it going strong for years.</p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Our Mission</h5>
                                        <p class="mb-3">At AutoManEd, our mission is simple: <strong>to make car maintenance easy to understand and stress-free.</strong></p>
                                        <p class="mb-2">We strive to:</p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-wrench text-primary-color me-3 mt-1"></i>
                                                <span><strong>Simplify scheduled maintenance</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-lightbulb text-primary-color me-3 mt-1"></i>
                                                <span><strong>Help you make informed, straightforward decisions</strong> — no confusion, no pressure</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-shield-check text-primary-color me-3 mt-1"></i>
                                                <span><strong>Cut through misinformation</strong> from the internet, dealerships, shops, or even <em>your cousin Jethro</em></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-car-front text-primary-color me-3 mt-1"></i>
                                                <span><strong>Make your car more dependable and reliable</strong> — so it gets you where you want to go</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-hand-thumbs-up text-primary-color me-3 mt-1"></i>
                                                <span><strong>Bring honesty and clarity</strong> to every maintenance topic</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-map text-primary-color me-3 mt-1"></i>
                                                <span><strong>Provide a roadmap</strong> to maximize your vehicle's longevity and performance</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-compass text-primary-color me-3 mt-1"></i>
                                                <span><strong>Make navigation easy</strong> — our website is built for quick, clear, trustworthy information</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-book text-primary-color me-3 mt-1"></i>
                                                <span><strong>Share decades of real-world knowledge</strong> from the front lines of the automotive service industry</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-graduation-cap me-2"></i>AutoManEd — Educate. Inform. Empower. </h6>
                                        <p class="mb-0 text-white">We're here to help you understand your car, your maintenance needs, and your best options — so you can drive with confidence, not confusion.</p>
                                    </div>
                                </div>
                                <!-- If Your Car Could Talk Content -->
                                <div class="service-content-section" data-service="car-could-talk" style="display: none;">
                                    <h3 class="mb-0 text-primary-color" style="margin-top: 20px;">If Your Car Could Talk, It Would Say</h3>
                                    <p class="mb-4 text-big"> <strong>"These Lights Are Not Just for Fun."</strong> </p>
                                    <div class="mb-4">
                                        <p class="mb-0">Dashboard warning lights are your car's way of communicating — they're its built-in <strong>warning system.</strong> Understanding what they mean can save you from <strong>breakdowns, costly repairs, or safety risks.</strong></p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Three Main Categories of Dashboard Lights</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-circle-fill text-danger me-3 mt-1"></i>
                                                <span><strong>Red Lights → Serious Problem or Safety Issue</strong><br><small>Stop driving <strong>immediately</strong> if it's safe to do so.</small></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle-fill text-warning me-3 mt-1"></i>
                                                <span><strong>Yellow/Amber Lights → Caution / Needs Attention Soon</strong><br><small>Schedule service or inspection soon.</small></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-info-circle-fill text-success me-3 mt-1"></i>
                                                <span><strong>Green/Blue Lights → Information Only</strong><br><small>These just show that a system is active — not a problem.</small></span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-danger"><i class="bi bi-exclamation-circle-fill me-2"></i>Red Warning Lights (CRITICAL)</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Check Engine Light (Flashing):</strong> Needs attention <em>now</em>. Avoid driving.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Oil Pressure Light:</strong> Low oil pressure — stop immediately or risk engine failure.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Brake System Light:</strong> Parking brake on, low fluid, or brake malfunction.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Battery/Charging Light:</strong> Alternator not charging — the car will lose power once the battery drains.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Coolant Temperature Light:</strong> Engine overheating — stop to prevent severe damage.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Seat Belt Light:</strong> Buckle up!</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Airbag Light:</strong> Airbag system fault — may not deploy in a crash.</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-warning"><i class="bi bi-exclamation-triangle-fill me-2"></i>Yellow/Amber Warning Lights (CAUTION)</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-warning me-3 mt-1"></i>
                                                <span><strong>Check Engine Light (Solid):</strong> Driveable but needs diagnosis soon.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-warning me-3 mt-1"></i>
                                                <span><strong>ABS Light:</strong> Anti-lock brake system fault — regular brakes still work, but ABS is disabled.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-warning me-3 mt-1"></i>
                                                <span><strong>Traction/Stability Control Light:</strong> System active or malfunctioning.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-warning me-3 mt-1"></i>
                                                <span><strong>Tire Pressure Light:</strong><br> <small>• <em>Solid:</em> Low tire pressure.</small><br> <small>• <em>Flashing:</em> Tire sensor fault.</small> </span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-warning me-3 mt-1"></i>
                                                <span><strong>Maintenance/Service Light:</strong> Routine service due.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-warning me-3 mt-1"></i>
                                                <span><strong>Glow Plug Light (Diesel):</strong> Glow plugs warming or system fault.</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-success"><i class="bi bi-info-circle-fill me-2"></i>Green / Blue Indicator Lights (INFORMATION ONLY)</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-success me-3 mt-1"></i>
                                                <span><strong>Turn Signal Indicators:</strong> Show which way you're signaling.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-success me-3 mt-1"></i>
                                                <span><strong>High Beam Light:</strong> High beams active.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-success me-3 mt-1"></i>
                                                <span><strong>Fog Light Indicator:</strong> Fog lights on.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-dash-circle text-success me-3 mt-1"></i>
                                                <span><strong>Cruise Control Indicator:</strong> Cruise system active.</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <ul class="text-white mb-0">
                                            <li><strong>Red = Stop Now</strong> (Serious issue)
                                            </li>
                                            <li><strong>Yellow = Service Soon</strong> (Caution)
                                            </li>
                                            <li><strong>Green/Blue = Just Info</strong> (System active)
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                                <!-- Normal Driving in the USA Content -->
                                <div class="service-content-section" data-service="normal-driving" style="display: none;">
                                    <h3 class="mb-0 text-primary-color" style="margin-top: 20px;">Normal Driving in the USA</h3>
                                    <p class="mb-4 text-big"> <strong>NORMAL Driving in the U.S.A. = SEVERE Driving Conditions</strong> </p>
                                    <div class="mb-4">
                                        <p class="mb-0">Can you honestly think of anywhere in the United States — or the world — where you <strong>aren't</strong> driving in at least <strong>50% of these conditions</strong>?</p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Common "Severe" Driving Conditions</h5>
                                        <p class="mb-3">These are part of <strong>everyday driving</strong> for most people:</p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-stoplights-fill text-primary-color me-3 mt-1"></i>
                                                <span><strong>Stop-and-go traffic</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-buildings-fill text-primary-color me-3 mt-1"></i>
                                                <span><strong>Short trips (5 miles or less)</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-clock-fill text-primary-color me-3 mt-1"></i>
                                                <span><strong>Idling at lights or in traffic</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-thermometer-half text-primary-color me-3 mt-1"></i>
                                                <span><strong>Hot or cold climates</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-caret-up-fill text-primary-color me-3 mt-1"></i>
                                                <span><strong>Frequent uphill or downhill driving</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-cloud-fog-fill text-primary-color me-3 mt-1"></i>
                                                <span><strong>Dusty, muddy, or salty roads</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-sun-fill text-warning me-3 mt-1"></i>
                                                <span><strong>Extended highway driving in extreme heat</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-snow text-info me-3 mt-1"></i>
                                                <span><strong>Extended highway driving in extreme cold</strong></span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">The Truth</h5>
                                        <p class="text-white mb-2"><strong>These conditions are everywhere!</strong></p>
                                        <p class="text-white mb-0">That means for nearly every driver, the so-called <strong>"Severe Service Schedule"</strong> in your owner's manual is actually the <strong>Normal Schedule</strong> you should be following.</p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">"Extreme" Driving Conditions</h5>
                                        <p class="mb-3">These go <strong>beyond severe</strong> and require even more frequent maintenance:</p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-truck text-primary-color me-3 mt-1"></i>
                                                <span><strong>Towing or hauling heavy loads</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-box-seam text-primary-color me-3 mt-1"></i>
                                                <span><strong>Using a roof rack or cargo carrier</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-tornado text-primary-color me-3 mt-1"></i>
                                                <span><strong>Turbocharged or supercharged engines</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-speedometer text-primary-color me-3 mt-1"></i>
                                                <span><strong>High acceleration or aggressive driving</strong></span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">There's really no such thing as "Normal" driving anymore.</p>
                                        <p class="text-white mb-2">If you drive in real-world conditions — traffic, weather, short trips, hills — you're already driving in <strong>Severe Conditions.</strong></p>
                                        <p class="mb-0 text-white">So follow the <strong>Severe Service Schedule</strong> for fluid changes and maintenance to keep your vehicle reliable, efficient, and long-lasting.</p>
                                    </div>
                                </div>
                                <!-- Oil Changes Content (Default Active) -->
                                <div class="service-content-section active" data-service="oil-changes">
                                    <img src="images/service/oil-change.jpg" alt="oil-change-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Engine Oil & Maintenance</h3>
                                    <p class="mb-4 text-big">
                                        Probably the most well-known and understood service — but here are a few things you might not know. </p>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Oil Basics</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-droplet-fill text-primary-color me-3 mt-1"></i>
                                                <span>Synthetic oil helps prevent engine wear and improves fuel economy</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-gear-fill text-primary-color me-3 mt-1"></i>
                                                <span>Semi-synthetic and conventional oils don't hold up as well under heat or stress</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-clock-history text-primary-color me-3 mt-1"></i>
                                                <span>Oil technology has come a long way since the 1970s — when the old 3-month / 3,000-mile rule was created</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-arrow-repeat text-primary-color me-3 mt-1"></i>
                                                <span>Even though synthetic oil lasts longer, the filter still traps debris and must be changed regularly</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-search text-primary-color me-3 mt-1"></i>
                                                <span>Every oil change includes an inspection — quality varies by shop, but it's your chance to catch small problems before they grow</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="row">
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Performance & Protection</h5>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Turbo and supercharged engines run hotter and deplete oil faster</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Most turbo engines use GDI (Gas Direct Injection) systems — great for power, but they produce more internal deposits</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Fresh oil forms a protective film on pistons, bearings, and camshafts</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Oil also helps carry heat away — not just lubricate</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Dirty or degraded oil can't cool efficiently, causing overheating and gasket or seal damage</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">When Oil Is Ignored</h5>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Pistons and rings can seize or lose compression</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Turbochargers can fail from lack of clean oil flow</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Timing chains can stretch or break</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Worst case: total engine failure — often costing more than the car itself</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Skipping oil changes voids warranties and shows up as sludge — a mechanic can spot it instantly</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Sludge buildup destroys resale value — it's visual proof of neglect</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Change Intervals</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">Full Synthetic Oil</h6>
                                                <p class="mb-2">Every 6 months or 6,000 miles</p>
                                                <p class="small text-muted mb-0">Turbo/Supercharged: Every 4 months or 4,000 miles</p>
                                            </div>
                                            <div class="col-12 col-md-6">
                                                <h6 class="text-white mb-2">Semi-Synthetic Oil</h6>
                                                <p class="mb-2">Every 6 months or 5,000 miles</p>
                                                <p class="small text-muted mb-0">Turbo/Supercharged: Every 3 months or 3,000 miles</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="mb-0 text-white">Oil is the lifeblood of your engine. Skipping changes might save a few dollars today — but it risks thousands tomorrow. It's always cheaper to change oil on time than to replace an engine.</p>
                                    </div>
                                </div>
                                <!-- Spark Plugs Content -->
                                <div class="service-content-section" data-service="spark-plugs" style="display: none;">
                                    <img src="images/service/spark-plugs.jpg" alt="spark-plugs-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Spark Plugs — Small Parts, Big Impact</h3>
                                    <p class="mb-4 text-big">
                                        Spark plugs must be replaced at the proper intervals to prevent misfires, restore performance, and avoid expensive repairs. Waiting too long leads to check engine lights, poor fuel economy, and sluggish power. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Replacement Intervals</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">Iridium Spark Plugs</h6>
                                                <p class="mb-2 text-white">Every 100,000 miles</p>
                                                <p class="small text-white-50 mb-0">Turbocharged: Every 80,000 miles</p>
                                            </div>
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">Double Platinum</h6>
                                                <p class="mb-2 text-white">Every 60,000 miles</p>
                                                <p class="small text-white-50 mb-0">Turbocharged: Every 40,000 miles</p>
                                            </div>
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">Platinum Spark Plugs</h6>
                                                <p class="mb-2 text-white">Every 50,000 miles</p>
                                                <p class="small text-white-50 mb-0">Turbocharged: Every 30,000 miles</p>
                                            </div>
                                            <div class="col-12 col-md-6">
                                                <h6 class="text-white mb-2">Copper/Nickel</h6>
                                                <p class="mb-2 text-white">Every 30,000 miles</p>
                                                <p class="small text-white-50 mb-0">Not typically used in turbos</p>
                                            </div>
                                        </div>
                                        <div class="alert alert-info bg-white border-0 mt-3 p-3">
                                            <p class="mb-0 small"><strong>Note:</strong> Turbocharged engines run hotter and at higher RPM, which wears plugs out faster — so they require more frequent service.</p>
                                        </div>
                                    </div>
                                    
                                    <!-- Spark Plug Boots & Wires Section -->
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Don't Forget the Boots & Wires</h5>
                                        <p class="mb-3">When replacing spark plugs, <strong>always inspect — and often replace — the spark plug boots and wires</strong> if your vehicle is equipped with them.</p>
                                        
                                        <div class="alert alert-warning bg-white border-warning p-3 mb-3">
                                            <p class="mb-2"><strong>⚠️ Important:</strong> Some modern vehicles have coil-on-plug systems where the boot is part of the ignition coil itself. In these cases, inspect the coil boots for cracks or damage.</p>
                                        </div>
                                        
                                        <h6 class="text-secondary mb-2"><strong>Why Replace Boots & Wires?</strong></h6>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span><strong>Boots can tear during spark plug removal</strong> — The rubber becomes brittle over time and can rip when pulling the plug wire off</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span><strong>Rubber deteriorates with age and heat</strong> — Cracks and wear allow the electrical spark to escape</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Spark can jump to the cylinder head</strong> — Instead of firing at the plug, electricity leaks into the spark plug tubes inside the cylinder head</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Causes engine misfires and poor running</strong> — You'll experience rough idle, hesitation, and reduced power</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span><strong>Prevention is cheap insurance</strong> — Replacing boots and wires during spark plug service prevents comebacks and ensures reliable ignition</span>
                                            </li>
                                        </ul>
                                        
                                        <div class="bg-accent-color-2 p-3 rounded-3">
                                            <h6 class="text-white mb-2">💡 Pro Tip</h6>
                                            <p class="text-white mb-0">If your vehicle uses spark plug wires (not coil-on-plug), replace the entire wire set when you replace the plugs — especially if the vehicle has over 60,000 miles. Old wires can cause the same misfires as worn plugs.</p>
                                        </div>
                                    </div>
                                    <!-- End Boots & Wires Section -->
                                    
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What Happens When Spark Plugs Wear Out</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>1. Hard Starts & Misfires</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Worn plugs produce a weak spark, making engines harder to start — especially in cold weather</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Misfires waste fuel, shake the engine, and can damage the catalytic converter over time</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>2. Poor Fuel Economy & Reduced Power</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Weak spark = incomplete combustion, causing the engine to burn more fuel to make the same power</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Causes hesitation, sluggish acceleration, and poor towing/hauling performance</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Fresh plugs restore smooth, responsive power</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>3. Damage to Coils & Ignition Components</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>When a spark plug is weak, ignition coils must work harder</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>This leads to premature coil or wire failure, costing hundreds in avoidable repairs</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>4. Risk to the Catalytic Converter</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Misfires dump unburned fuel into the exhaust</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>This overheats and destroys the converter — a $1,500–$3,500 repair</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-shield-check text-success me-3 mt-1"></i>
                                                    <span>Spark plugs are cheap insurance compared to that</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white">Replacing spark plugs on schedule keeps your engine: </p>
                                        <ul class="text-white">
                                            <li>Efficient</li>
                                            <li>Reliable</li>
                                            <li>Powerful</li>
                                            <li>Protected from costly damage</li>
                                        </ul>
                                        <p class="mb-0 text-white">Skipping this maintenance leads to hard starts, wasted fuel, reduced performance, and expensive repairs — all from a part that costs just a fraction to replace. </p>
                                    </div>
                                </div>
                                <!-- Fuel System Cleaning Content -->
                                <div class="service-content-section" data-service="fuel-system" style="display: none;">
                                    <img src="images/service/fuel-system.jpg" alt="fuel-system-cleaning-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">GDI / EFI / D4S Fuel System Cleaning</h3>
                                    <p class="mb-4 text-big">
                                        Know Your Fuel System — Different systems require different cleaning intervals to prevent carbon buildup and maintain peak performance. </p>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Know Your Fuel System</h5>
                                        <div class="mb-3">
                                            <h6 class="text-secondary mb-2"><strong>GDI — Gas Direct Injection</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Found in roughly 75% of modern vehicles</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Fuel is sprayed directly into the combustion chamber for more power and efficiency</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>The downside: no fuel passes over the intake valves, so carbon buildup forms on the valves and intake manifold</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Over time, this leads to rough idle, poor performance, and higher emissions</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-3">
                                            <h6 class="text-secondary mb-2"><strong>EFI — Electronic Fuel Injection</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Common from the 1980s–2010s and still used in many cars today</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Sprays fuel into the intake port, washing over the valves and reducing carbon buildup</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Produces less performance than GDI but is simpler and cleaner inside the intake system</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-3">
                                            <h6 class="text-secondary mb-2"><strong>D4S — Dual Injection System</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>A combination of GDI and EFI (or PFI), used by manufacturers like Toyota and Subaru</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Offers the performance of GDI with the valve-cleaning benefits of EFI</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Still needs periodic cleaning to keep deposits minimal</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Cleaning Intervals</h5>
                                        <div class="table-responsive">
                                            <table class="table table-bordered mb-0">
                                                <thead>
                                                    <tr class="bg-primary-color">
                                                        <th class="text-dark fw-bold">System Type</th>
                                                        <th class="text-dark fw-bold">Cleaning Type</th>
                                                        <th class="text-dark fw-bold">Interval</th>
                                                        <th class="text-dark fw-bold">Purpose</th>
                                                    </tr>
                                                </thead>
                                                <tbody class="bg-white">
                                                    <tr>
                                                        <td rowspan="2" class="align-middle"><strong>GDI</strong><br><span class="small text-muted">Gas Direct Injection</span></td>
                                                        <td>Chemical Cleaning</td>
                                                        <td><strong>Every 20K miles</strong></td>
                                                        <td>Light cleaning to prevent carbon buildup. Start early and repeat consistently.</td>
                                                    </tr>
                                                    <tr>
                                                        <td>Walnut Blasting</td>
                                                        <td><strong>Every 50K miles</strong></td>
                                                        <td>Deep cleaning for hardened deposits. Required if no prior maintenance or for used GDI engines.</td>
                                                    </tr>
                                                    <tr>
                                                        <td><strong>EFI</strong><br><span class="small text-muted">Electronic Fuel Injection</span></td>
                                                        <td>Injector & Intake Cleaning</td>
                                                        <td><strong>Every 50K miles</strong></td>
                                                        <td>Keeps injectors spraying evenly and restores smooth idle and fuel economy.</td>
                                                    </tr>
                                                    <tr>
                                                        <td><strong>D4S</strong><br><span class="small text-muted">Dual Injection System</span></td>
                                                        <td>System Cleaning</td>
                                                        <td><strong>Every 40K miles</strong></td>
                                                        <td>Maintains both GDI and EFI injectors and prevents buildup on intake valves.</td>
                                                    </tr>
                                                </tbody>
                                            </table>
                                        </div>
                                        <div class="alert alert-info bg-white border-0 mt-3 mb-0 p-3">
                                            <p class="mb-0 small"><strong>💡 Pro Tip:</strong> Add a fuel additive every oil change to keep injectors clear and reduce varnish formation.</p>
                                        </div>
                                    </div>
                                    <div class="row mb-4">
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Why Regular Cleaning Matters</h5>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Removes carbon deposits that are harmful to the performance of the intake valves</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Smoother running and better throttle response</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Lower emissions (HC, CO, NOx)</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Longer engine life and cleaner injectors</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Skipping Cleanings Can Cause</h5>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Rough idle or hesitation</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Reduced power and throttle response</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Poor fuel economy</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Engine knocking or pinging</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Increased emissions and failed inspections</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Valve or piston damage in severe cases</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Chemical Cleaning vs. Walnut Blasting</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-secondary mb-2"><strong>Chemical Cleaning</strong></h6>
                                                <ul class="p-0 m-0">
                                                    <li class="list-unstyled mb-2 d-flex align-items-start">
                                                        <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                        <span>Quick service (usually 30–45 minutes)</span>
                                                    </li>
                                                    <li class="list-unstyled mb-2 d-flex align-items-start">
                                                        <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                        <span>Uses intake system solvents</span>
                                                    </li>
                                                    <li class="list-unstyled mb-2 d-flex align-items-start">
                                                        <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                        <span>Best for preventive maintenance</span>
                                                    </li>
                                                    <li class="list-unstyled mb-2 d-flex align-items-start">
                                                        <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                        <span>Won't remove hard, baked-on deposits</span>
                                                    </li>
                                                </ul>
                                            </div>
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-secondary mb-2"><strong>Walnut Blasting</strong></h6>
                                                <ul class="p-0 m-0">
                                                    <li class="list-unstyled mb-2 d-flex align-items-start">
                                                        <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                        <span>Involves removing the intake manifold</span>
                                                    </li>
                                                    <li class="list-unstyled mb-2 d-flex align-items-start">
                                                        <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                        <span>Cleans valves directly with crushed walnut shells</span>
                                                    </li>
                                                    <li class="list-unstyled mb-2 d-flex align-items-start">
                                                        <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                        <span>Restores lost power from heavy carbon buildup</span>
                                                    </li>
                                                    <li class="list-unstyled mb-2 d-flex align-items-start">
                                                        <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                        <span>Recommended for GDI engines past 50K miles without prior service</span>
                                                    </li>
                                                </ul>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>The Bottom Line </h6>
                                        <p class="text-white mb-2">Regular EFI, GDI, or D4S cleaning isn't just "extra maintenance."</p>
                                        <p class="text-white mb-2">It's a <strong>necessary service</strong> that keeps your engine:</p>
                                        <ul class="text-white mb-2">
                                            <li>Performing like new</li>
                                            <li>Burning fuel efficiently</li>
                                            <li>Passing emissions tests</li>
                                            <li>Avoiding costly repairs later</li>
                                        </ul>
                                        <p class="mb-0 text-white"><strong>Preventative maintenance always beats reactive repair.</strong></p>
                                    </div>
                                </div>
                                <!-- Fuel Filter Cleaning Content -->
                                <div class="service-content-section" data-service="fuel-filter" style="display: none;">
                                    <img src="images/service/fuel-filter.jpg" alt="fuel-filter-cleaning-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Fuel Filter — The First Line of Defense for Your Fuel System</h3>
                                    <p class="mb-4 text-big">
                                        Your fuel filter's job is simple but critical: it keeps dirt, rust, and debris from entering your fuel system. Whether gas or diesel, a clean filter ensures proper fuel flow, strong performance, and long component life. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service Intervals</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3 mb-md-0">
                                                <h6 class="text-white mb-2">⛽ Gas Engines</h6>
                                                <p class="mb-1 text-white">Every 30,000 miles</p>
                                                <p class="small text-white-50 mb-0">(If equipped with serviceable filter)</p>
                                            </div>
                                            <div class="col-12 col-md-6">
                                                <h6 class="text-white mb-2">🛻 Diesel Engines</h6>
                                                <p class="mb-1 text-white">Every 15,000 miles</p>
                                                <p class="small text-white-50 mb-0">More frequent service due to higher contamination risk</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why It Matters</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>1. Protects Fuel Injectors & Pump</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Traps dirt, rust, and debris from the fuel tank</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>A clogged filter allows contaminants into the injectors and pump</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Leads to wear, poor spray patterns, or complete failure</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>2. Prevents Engine Performance Issues</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>A dirty filter restricts fuel flow</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Causes hard starting, hesitation, loss of power under load, or even stalling</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>3. Protects the Fuel Pump</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>A clogged filter makes the fuel pump work harder</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Overheating and failure are common when it's starved for fuel</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>4. Keeps Fuel Economy & Emissions in Check</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Restricted fuel flow causes lean conditions, misfires, and higher emissions</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Clean filters mean smoother performance and better mileage</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="mb-0 text-white">Fuel filters are <strong>cheap insurance</strong> against <strong>expensive repairs</strong>. Servicing them on schedule keeps your <strong>fuel system clean</strong>, <strong>engine performance strong</strong>, and helps you <strong>avoid costly breakdowns</strong>.</p>
                                    </div>
                                </div>
                                <!-- Timing Belt Content -->
                                <div class="service-content-section" data-service="timing-belt" style="display: none;">
                                    <img src="images/service/timing-belt.jpg" alt="timing-belt-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Timing Belt — The Most Important Maintenance You Never Want to Ignore</h3>
                                    <p class="mb-4 text-big">
                                        Timing belts should be replaced every 90,000 miles or every 10 years. This part is inexpensive compared to the catastrophic engine damage that occurs if it fails. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service Interval</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-white mb-2">⏱️ Timing Belt Replacement</h6>
                                                <p class="mb-1 text-white"><strong>Every 90,000 miles or 10 years</strong></p>
                                                <p class="small text-white-50 mb-0">Whichever comes first — age matters as much as mileage</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What the Timing Belt Does</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-gear-fill text-primary-color me-3 mt-1"></i>
                                                <span>The timing belt keeps the <strong>crankshaft and camshaft(s) perfectly synchronized</strong>, ensuring pistons and valves move in precise rhythm</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>If the belt <strong>slips or breaks</strong>, that timing is lost instantly — and the engine destroys itself in a fraction of a second</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="row mb-4">
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Interference Engines = Catastrophic Failure</h5>
                                            <p class="mb-2">Most modern engines are <strong>interference designs</strong>, which means there is <strong>zero clearance</strong> between pistons and valves.</p>
                                            <p class="mb-3"><strong>If the belt breaks:</strong></p>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Pistons collide with open valves</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Valves bend, pistons get damaged, cylinder heads get ruined</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Repairs typically cost $2,000–$5,000+, and sometimes require full engine replacement</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Why Timing Belts Fail</h5>
                                            <p class="mb-3">Timing belts are reinforced rubber, but they <strong>wear down with age and heat:</strong></p>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Cracking, drying, or stretching over time</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Oil contamination weakens the belt</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Loss of teeth on the belt causes sudden failure</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>They usually fail without warning, unlike belts you can visually inspect</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Complete Timing Belt Service</h5>
                                        <p class="mb-3">A proper timing belt job should include:</p>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span><strong>Timing belt</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span><strong>Tensioner</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span><strong>Idler pulleys</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span><strong>Water pump</strong> (if driven by the belt)</span>
                                            </li>
                                        </ul>
                                        <div class="alert alert-warning bg-white border-warning p-3 mb-3">
                                            <p class="mb-0 small">If one of these components fails, it can <strong>destroy the new belt</strong>, so replacing them together is standard and smart.</p>
                                        </div>
                                        <div class="alert alert-info bg-white border-0 p-3">
                                            <p class="mb-0 small"><strong>💡 Buying a used car with no records?</strong> Replace the belt immediately for peace of mind.</p>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="mb-0 text-white">A timing belt is <strong>cheap insurance against catastrophic engine damage.</strong> Spending <strong>$1,200–$1,800</strong> on schedule prevents a <strong>$5,000–$10,000 disaster</strong> if the belt snaps.</p>
                                    </div>
                                </div>
                                <!-- Valve Adjustment Content -->
                                <div class="service-content-section" data-service="valve-adjustment" style="display: none;">
                                    <img src="images/service/valve-adjustment.jpg" alt="valve-adjustment-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Valve Adjustment — Recommended Every 60,000 Miles</h3>
                                    <p class="mb-4 text-big">
                                        Proper valve adjustment is critical to engine health, performance, and longevity. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service Interval</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-white mb-2">🔧 Valve Adjustment</h6>
                                                <p class="mb-1 text-white"><strong>Every 60,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">Essential for maintaining proper valve clearance and engine health</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Maintains Proper Timing and Performance</h5>
                                        <p class="mb-3">Valves control airflow in and out of the combustion chamber. When clearance goes out of spec:</p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Too tight:</strong> Valves don't open fully → restricted airflow, rough idle, loss of power, and hesitation</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Too loose:</strong> Valves open and close at the wrong time → poor response, noisy operation, and reduced efficiency</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span>Correct adjustment restores smooth idle, strong acceleration, and proper engine timing</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="row mb-4">
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Prevents Costly Valve & Seat Damage</h5>
                                            <p class="mb-3">Improper clearance is a silent engine killer:</p>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span><strong>Too tight:</strong> Valves can't fully close. Superheated exhaust gases leak past the valve, burning the valve and seat — leading to compression loss and expensive cylinder-head repairs</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span><strong>Too loose:</strong> Valves slam against components, causing hammering wear and premature failure</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>A simple adjustment protects thousands of dollars in valve-train parts</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Reduces Valve-Train Wear</h5>
                                            <p class="mb-3">Incorrect clearance increases stress on:</p>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-gear-fill text-primary-color me-3 mt-1"></i>
                                                    <span>Cam lobes</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-gear-fill text-primary-color me-3 mt-1"></i>
                                                    <span>Lifters</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-gear-fill text-primary-color me-3 mt-1"></i>
                                                    <span>Rockers</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Early wear in these parts leads to noisy operation, metal debris circulation, and eventual top-end failure</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Proper adjustment keeps moving parts working smoothly with minimal friction</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Improves Fuel Economy and Emissions</h5>
                                        <p class="mb-3">When valves open and close precisely:</p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span>The engine breathes efficiently</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span>Combustion is cleaner</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span>Fuel economy improves</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span>Emissions decrease</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-shield-check text-success me-3 mt-1"></i>
                                                <span>A well-adjusted valve train is a quieter, cleaner, longer-lasting one</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">A valve adjustment every <strong>60,000 miles</strong> ensures your engine runs <strong>smoothly, quietly, and efficiently</strong>.</p>
                                        <p class="text-white mb-2">Neglecting it can lead to:</p>
                                        <ul class="text-white mb-0">
                                            <li>Burned valves</li>
                                            <li>Loss of power</li>
                                            <li>Ticking or clattering noises</li>
                                            <li>Reduced fuel economy</li>
                                            <li><strong>Very expensive cylinder-head repairs</strong>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                                <!-- PCV Valve Content -->
                                <div class="service-content-section" data-service="pcv-valve" style="display: none;">
                                    <img src="images/service/pcv-valve.jpg" alt="pcv-valve-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">PCV Valve — Your Engine's Breathing System</h3>
                                    <p class="mb-4 text-big">
                                        The PCV (Positive Crankcase Ventilation) valve is a small but critical part of your vehicle's emissions and engine health system. </p>
                                    <div class="mb-4">
                                        <p class="mb-3">Usually found on the valve cover or intake manifold, it connects the crankcase to the intake system with a hose. The PCV valve was introduced in the 1960s as one of the first emissions control devices, designed to prevent harmful gases from venting directly into the atmosphere.</p>
                                        <p class="mb-3">Think of the PCV valve as your engine's breathing system. It moves dirty gases out of the crankcase and recycles them back into the engine to burn cleanly. Over time, this valve can clog—especially in GDI engines—leading to poor fuel economy, oil burning, and potential engine damage if ignored.</p>
                                        <p class="mb-0">The PCV valve helps prevent pressure buildup inside the engine, which can cause oil leaks and gasket failure. By routing blow-by gases (unburned fuel and combustion gases that escape past the piston rings) back into the intake, the PCV system reduces harmful emissions and keeps your engine running efficiently.</p>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service Interval</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-white mb-2">🔧 PCV Valve Inspection & Service</h6>
                                                <p class="mb-1 text-white"><strong>Every 30,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">Or as recommended by your manufacturer</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Symptoms of a Failing PCV Valve</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Rough idle or engine misfires</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Increased oil consumption or oil leaks</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Sludge buildup inside the engine</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Check engine light</strong> (often with codes related to emissions or fuel trim)</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Poor fuel economy</strong></span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="row mb-4">
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Stuck-Open PCV Valve</h5>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Can cause a vacuum leak</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Leads to rough idle and poor performance</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>May trigger check engine light</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Stuck-Closed PCV Valve</h5>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Causes excessive crankcase pressure</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Forces oil past seals and gaskets</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Creates oil leaks and sludge buildup</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Replacing a PCV valve is usually <strong>inexpensive</strong> and can prevent much more costly repairs down the road.</p>
                                        <p class="mb-0 text-white">Both stuck-open and stuck-closed conditions can shorten engine life if not addressed. Regular PCV valve service keeps your engine breathing properly and running efficiently.</p>
                                    </div>
                                </div>
                                <!-- DPF Content -->
                                <div class="service-content-section" data-service="diesel-filter" style="display: none;">
                                    <img src="images/service/dpf.jpg" alt="dpf-cleaning-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Diesel Particulate Filter (DPF) — Keep Your Diesel Breathing Clean</h3>
                                    <p class="mb-4 text-big">
                                        Your DPF (Diesel Particulate Filter) traps harmful soot before it exits the exhaust. Over time, ash buildup from oil additives and fuel impurities collects inside and can't be burned off during normal regeneration cycles — leading to restricted flow and potential engine damage. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-white mb-2">🔧 DPF Filter Replacement</h6>
                                                <p class="mb-1 text-white"><strong>Every 100,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">Or sooner if your vehicle spends most of its time on short trips or in stop-and-go traffic</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why It Matters</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>1. Traps Harmful Soot</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Captures fine soot particles that would otherwise pollute the air</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Keeps your diesel running cleaner and compliant with emissions standards</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>2. Prevents Clogging & Engine Damage</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>A clogged DPF creates <strong>excessive backpressure</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Strains the <strong>turbocharger</strong>, <strong>EGR system</strong>, and <strong>engine</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Results in <strong>power loss, poor fuel economy, overheating</strong>, or even <strong>engine failure</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>3. Avoids Costly Repairs</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Ignoring a full or failed DPF can trigger <strong>limp mode</strong> or <strong>turbo damage</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-currency-dollar text-danger me-3 mt-1"></i>
                                                    <span>OEM DPF replacements can run <strong>$2,000–$5,000+</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Regular replacement and maintenance are far cheaper than a breakdown</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>4. Keeps Emissions Legal</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>A missing or failed DPF = <strong>inspection failure</strong>, <strong>emissions violation</strong>, and possible <strong>fines</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                    <span>Highway driving helps the DPF <strong>regenerate properly</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Short city trips lead to <strong>faster clogging</strong> since it never gets hot enough to burn off soot</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-warning bg-white border-warning p-4 rounded-4 mb-4">
                                        <h6 class="mb-2"><strong>⚠️ Warning Signs It's Time</strong></h6>
                                        <ul class="mb-0">
                                            <li><strong>DPF warning light</strong> on the dash
                                            </li>
                                            <li><strong>Loss of power or frequent limp mode</strong>
                                            </li>
                                            <li><strong>Increased fuel consumption</strong>
                                            </li>
                                            <li><strong>Failed or frequent forced regenerations</strong>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Your DPF is the <strong>lungs of your diesel engine</strong> — it keeps the air clean and the engine healthy.</p>
                                        <p class="mb-0 text-white">Replacing it on time prevents <strong>expensive failures</strong>, keeps <strong>fuel economy up</strong>, and ensures your vehicle stays <strong>legal and reliable</strong>.</p>
                                    </div>
                                </div>
                                <!-- Transmission Fluid Content -->
                                <div class="service-content-section" data-service="transmission-fluid" style="display: none;">
                                    <img src="images/service/trans-fluid.jpg" alt="transmission-fluid-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Transmission Fluid — The Lifeblood of Your Drivetrain</h3>
                                    <p class="mb-4 text-big">
                                        Transmission fluid breaks down over time — yes, even synthetic. It also collects debris, clutch material, and metal particles. Since the transmission relies on fluid for both lubrication and hydraulic pressure, neglecting it is one of the fastest ways to destroy a gearbox. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Replacement Intervals (Simple Rule)</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">🩸 Synthetic ATF</h6>
                                                <p class="mb-1 text-white"><strong>Every 50,000 miles or 5 years</strong></p>
                                                <p class="small text-white-50 mb-0">Maximum protection for modern transmissions</p>
                                            </div>
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">🔧 CVT or Conventional ATF</h6>
                                                <p class="mb-1 text-white"><strong>Every 30,000 miles or 3 years</strong></p>
                                                <p class="small text-white-50 mb-0">More frequent service for optimal performance</p>
                                            </div>
                                            <div class="col-12">
                                                <h6 class="text-white mb-2">💧 Alternative Option</h6>
                                                <p class="mb-1 text-white"><strong>Drain & refill every 30,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">Any fluid type — for maximum longevity</p>
                                            </div>
                                        </div>
                                        <div class="alert alert-warning bg-white border-warning mt-3 mb-0 p-3">
                                            <p class="mb-0 small"><strong>⚠️ Important:</strong> "Lifetime fluid" is a sales tactic, not a maintenance plan. There is no true lifetime ATF. Manufacturers don't want this to be the last vehicle you ever buy — so don't fall for the gimmick.</p>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why Transmission Fluid Must Be Changed</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>1. Heat Breaks Fluid Down</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-fire text-danger me-3 mt-1"></i>
                                                    <span>Transmissions generate extreme heat — especially in <strong>traffic, towing, mountains, or hot climates</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Heat oxidizes fluid, reducing its ability to <strong>cool, lubricate, and protect</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>This leads to <strong>slipping, harsh shifts, shuddering</strong>, and accelerated internal wear</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>2. Debris and Contamination Build Up</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-gear-fill text-danger me-3 mt-1"></i>
                                                    <span>Normal wear releases <strong>metal particles and clutch dust</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Old fluid becomes <strong>abrasive</strong>, acting like liquid sandpaper</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Debris clogs <strong>valves, solenoids, and passages</strong>, causing shifting problems and hydraulic pressure loss</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>3. ATF is Also Hydraulic Fluid</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-droplet-fill text-primary-color me-3 mt-1"></i>
                                                    <span>Transmission fluid doesn't just lubricate — it <strong>creates the pressure</strong> that applies clutches and bands</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>When fluid breaks down, the transmission can't hold proper pressure, leading to:</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start ms-4">
                                                    <i class="bi bi-arrow-right text-danger me-3 mt-1"></i>
                                                    <span><strong>Delayed engagement</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start ms-4">
                                                    <i class="bi bi-arrow-right text-danger me-3 mt-1"></i>
                                                    <span><strong>Slipping gears</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start ms-4">
                                                    <i class="bi bi-arrow-right text-danger me-3 mt-1"></i>
                                                    <span><strong>Or no movement at all</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>4. Overheating = ATF Death</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-thermometer-high text-danger me-3 mt-1"></i>
                                                    <span>Burnt fluid can't carry heat away</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-fire text-danger me-3 mt-1"></i>
                                                    <span><strong>Heat is the #1 enemy of transmissions</strong> — every <strong>20°F rise above normal cuts fluid life in half</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-danger bg-white border-danger p-4 rounded-4 mb-4">
                                        <h6 class="text-danger mb-2"><strong>💸 The Cost of Neglect</strong></h6>
                                        <ul class="mb-0">
                                            <li><strong>Transmission rebuild/replacement:</strong> $3,000–$7,000+
                                            </li>
                                            <li><strong>Scheduled fluid changes:</strong> a tiny fraction of that
                                            </li>
                                        </ul>
                                        <p class="mb-0 mt-2 small">Skipping fluid maintenance is basically <strong>gambling with the most expensive component in your vehicle</strong> besides the engine.</p>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Transmission fluid is the <strong>lifeblood</strong> of your gearbox. If it's not replaced on schedule, <strong>heat, debris, and fluid breakdown will destroy the transmission from the inside.</strong></p>
                                        <p class="mb-0 text-white">Changing the fluid regularly is <strong>cheap insurance</strong> that keeps your shifts smooth and your transmission alive for the long haul.</p>
                                    </div>
                                </div>
                                <!-- Transmission Filter Content -->
                                <div class="service-content-section" data-service="transmission-filter" style="display: none;">
                                    <img src="images/service/filters.jpg" alt="transmission-filter-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Automatic Transmission Service — Protect Your Most Expensive Drivetrain Component</h3>
                                    <p class="mb-4 text-big">
                                        Automatic transmissions with a serviceable filter and pan must be maintained on a schedule to prevent slipping, overheating, and premature failure. Transmission repairs are among the most expensive on a vehicle, which makes preventative service critical. </p>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why Service Matters</h5>
                                        <p class="mb-3">Even in well-maintained vehicles, <strong>clutch material, metal particles, and debris</strong> accumulate in the transmission over time. This contamination affects shifting quality, clogs internal passages, and accelerates wear on solenoids and valves.</p>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Service Intervals</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">🔧 Step/Traditional Automatics</h6>
                                                <p class="mb-1 text-white"><strong>Service around 60,000–100,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">Typical service interval for conventional automatics</p>
                                            </div>
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">🔄 CVTs (Continuously Variable Transmissions)</h6>
                                                <p class="mb-1 text-white"><strong>Typically service every 60,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">More sensitive to fluid condition</p>
                                            </div>
                                            <div class="col-12">
                                                <h6 class="text-white mb-2">⚡ DCTs (Dual-Clutch Transmissions)</h6>
                                                <p class="mb-1 text-white"><strong>Often 30,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">Fluid gets dirty faster due to clutch wear</p>
                                            </div>
                                        </div>
                                        <div class="alert alert-warning bg-white border-warning mt-3 mb-0 p-3">
                                            <p class="mb-0 small"><strong>⚠️ Severe Driving Conditions:</strong> Towing, stop-and-go commuting, mountain driving, and hot climates may require <strong>more frequent service</strong>.</p>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">"Lifetime" Filters and Fluid — The Truth</h5>
                                        <p class="mb-3">Some newer transmissions have filters buried deep inside and are labeled <strong>"lifetime."</strong></p>
                                        <div class="alert alert-danger bg-white border-danger p-3 mb-3">
                                            <p class="mb-0"><strong>Reality:</strong> "lifetime" means <strong>lifetime of the warranty, not lifetime of the vehicle.</strong></p>
                                        </div>
                                        <p class="mb-0">Debris still circulates, and filters still clog. Servicing these units dramatically improves longevity and shifting quality.</p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Warning Signs You Shouldn't Ignore</h5>
                                        <p class="mb-3">If you experience any of the following, <strong>don't delay service:</strong></p>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Delayed shifting or slipping</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Dirty or burnt-smelling fluid</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Whining, clunking, or chatter noises</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Reduced performance once the transmission is hot</span>
                                            </li>
                                        </ul>
                                        <p class="mb-0">These symptoms mean the fluid has <strong>broken down</strong>, and waiting longer can turn a simple service into a multi-thousand-dollar repair.</p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Service = Fluid + Filter</h5>
                                        <p class="mb-3">A proper major service should include:</p>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span><strong>Fluid replacement</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span><strong>Filter replacement</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span><strong>Pan cleaning</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-success me-3 mt-1"></i>
                                                <span><strong>Gasket or pan seal renewal</strong></span>
                                            </li>
                                        </ul>
                                        <p class="mb-0">Replacing the filter <strong>every time you do a major fluid service</strong> keeps the fluid cleaner, extends the life of internal components, and ensures proper hydraulic pressure and smooth shifting.</p>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">If your transmission has a <strong>serviceable filter</strong>, replace it <strong>every major fluid interval (30k–100k miles, depending on transmission type).</strong></p>
                                        <p class="mb-0 text-white">Even so-called <strong>"lifetime" filters and fluids are not truly lifetime</strong> — servicing them protects the transmission, prevents shifting issues, and avoids <strong>$3,500–$8,000 transmission rebuild bills.</strong></p>
                                    </div>
                                </div>
                                <!-- Brake Fluid Content -->
                                <div class="service-content-section" data-service="brake-fluid" style="display: none;">
                                    <img src="images/service/brake-fluid.jpg" alt="brake-fluid-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Brake Fluid — The Hidden Safety Fluid</h3>
                                    <p class="mb-4 text-big">
                                        Brake fluid is hygroscopic, meaning it acts like a sponge — absorbing moisture from the air over time. Even a small amount of moisture can corrode internal brake components and reduce braking performance. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-white mb-2">🛑 Brake Fluid Change</h6>
                                                <p class="mb-1 text-white"><strong>Every 30,000 miles or every 3 years</strong></p>
                                                <p class="small text-white-50 mb-0">Whichever comes first — moisture absorption happens over time</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What Happens When Brake Fluid Ages</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-3 d-flex align-items-start">
                                                <i class="bi bi-gear-fill text-danger me-3 mt-1"></i>
                                                <span><strong>Corrosion damage</strong> to calipers, wheel cylinders, master cylinders, ABS pumps, and steel lines — repairs can get expensive fast</span>
                                            </li>
                                            <li class="list-unstyled mb-3 d-flex align-items-start">
                                                <i class="bi bi-exclamation-octagon text-danger me-3 mt-1"></i>
                                                <span><strong>Reduced braking performance</strong> — stopping distances increase and pedal feel becomes inconsistent</span>
                                            </li>
                                            <li class="list-unstyled mb-3 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span><strong>Gradual decline</strong> — most drivers don't notice the loss in performance until it's too late</span>
                                            </li>
                                            <li class="list-unstyled mb-3 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>One of the <strong>most neglected systems</strong> in a vehicle's maintenance routine</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Old brake fluid = <strong>higher risk of brake failure</strong> and <strong>costly repairs</strong>.</p>
                                        <p class="text-white mb-2">Fresh brake fluid = <strong>stronger braking, better control, and peace of mind.</strong></p>
                                        <p class="mb-0 text-white">Regular fluid changes are <strong>cheap insurance for your safety</strong> — and one of the smartest maintenance services you can perform.</p>
                                    </div>
                                </div>
                                <!-- Power Steering Fluid Content -->
                                <div class="service-content-section" data-service="power-steering" style="display: none;">
                                    <img src="images/service/power-steering-fluid.jpg" alt="power-steering-fluid-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Power Steering Fluid — The Forgotten Lifeblood of Your Steering System</h3>
                                    <p class="mb-4 text-big">
                                        Most people don't realize it, but power steering fluid is one of the most neglected — yet critical — fluids in your vehicle. This fluid lubricates and protects the power steering pump, rack and pinion, or steering gearbox, keeping your steering smooth, quiet, and responsive. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Why It Matters</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-white mb-2">🛠️ Power Steering Fluid Replacement</h6>
                                                <p class="mb-1 text-white"><strong>Every 50,000 miles or every 5 years</strong></p>
                                                <p class="small text-white-50 mb-0">Ignoring it can lead to expensive mechanical failures</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What Happens When You Don't Change It</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>1. Fluid Breakdown Over Time</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-thermometer-high text-danger me-3 mt-1"></i>
                                                    <span>Heat and pressure cause the fluid to <strong>oxidize</strong> and lose its lubricating properties</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Once this happens, it can no longer protect the pump, seals, or rack from wear</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>2. Contamination Buildup</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-gear-fill text-danger me-3 mt-1"></i>
                                                    <span>Microscopic metal shavings from the pump and rack circulate in the system</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Dirt, moisture, and rubber particles mix in, turning the fluid into <strong>abrasive liquid sandpaper</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>This increases wear and can cause the fluid to darken and smell burnt</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>3. System Damage & Costly Repairs</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-volume-up text-warning me-3 mt-1"></i>
                                                    <span>Dirty fluid makes the steering pump <strong>whine or groan</strong> and accelerates failure</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-currency-dollar text-danger me-3 mt-1"></i>
                                                    <span>Replacing a power steering rack or pump can cost <strong>$800–$2,500+</strong>, depending on the vehicle</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>4. Hard Steering & Safety Issues</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-octagon text-danger me-3 mt-1"></i>
                                                    <span>Contaminated fluid can cause <strong>sticking valves</strong> and <strong>erratic hydraulic pressure</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-shield-exclamation text-warning me-3 mt-1"></i>
                                                    <span>That means heavier steering effort and less control — a real safety risk</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Old fluid also attacks rubber seals, leading to <strong>leaks</strong> and eventual <strong>pump burnout</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Power steering fluid is <strong>cheap maintenance</strong> that prevents <strong>thousands in repairs</strong>.</p>
                                        <p class="mb-0 text-white">Regularly flushing and replacing it keeps your steering <strong>smooth, quiet, and safe</strong> for years to come.</p>
                                    </div>
                                </div>
                                <!-- Radiator Fluid Content -->
                                <div class="service-content-section" data-service="radiator-fluid" style="display: none;">
                                    <img src="images/service/radiator-fluid.jpg" alt="radiator-fluid-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Radiator Fluid — The Only Fluid That Can Turn Against Itself</h3>
                                    <p class="mb-4 text-big">
                                        Radiator (coolant) fluid is the <strong>only fluid in your vehicle that becomes acidic over time</strong> — literally turning against the system it's meant to protect. That's why coolant maintenance is based on <strong>time, not just mileage.</strong> </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Replacement Intervals</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-secondary mb-2"><strong>OAT/HOAT Coolant</strong></h6>
                                                <p class="mb-1 text-white"><strong>Every 80,000 miles or 5 years</strong></p>
                                                <p class="small text-white-50 mb-0">Long-life extended coolant</p>
                                            </div>
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-secondary mb-2"><strong>Ethylene Glycol Coolant</strong></h6>
                                                <p class="mb-1 text-white"><strong>Every 30,000 miles or 3 years</strong></p>
                                                <p class="small text-white-50 mb-0">Traditional green coolant</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why It's So Important</h5>
                                        <p class="mb-3">As coolant ages, it <strong>loses its ability to protect against corrosion</strong> and starts attacking the very parts it once safeguarded — plastic, rubber, and aluminum.</p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span><strong>Low pH = Acidic fluid</strong> → corrodes metal, weakens rubber hoses, and breaks down plastic components</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span><strong>Corrosion & deposits</strong> restrict coolant flow, reducing heat transfer and efficiency</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What Happens When Coolant Ages</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>1. Additive Breakdown</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>New coolant contains additives that <strong>prevent corrosion</strong>, <strong>lubricate the water pump</strong>, and <strong>raise the boiling point</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Over time, heat cycles destroy these additives — leaving the system unprotected</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>2. Corrosion & Rust Formation</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Without inhibitors, rust and scale start forming inside the radiator, heater core, and engine passages</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>These flakes clog small coolant passages, leading to <strong>overheating</strong> and <strong>poor heater performance</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>3. Acidic & Electrically Conductive Fluid</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>As additives degrade, pH levels drop, making the coolant <strong>acidic and conductive</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>This causes <strong>galvanic corrosion</strong>, especially in <strong>aluminum components</strong> like radiators, heater cores, and cylinder heads</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>The result? <strong>Leaks, internal corrosion, and even head gasket failure</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>4. Sludge and Clogged Flow</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Contaminated coolant thickens and turns into sludge</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Blocked passages prevent proper circulation — leading to <strong>overheating, poor cabin heat, and major engine damage</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-danger bg-white border-danger p-4 rounded-4 mb-4">
                                        <h6 class="text-danger mb-2"><strong>💸 Expensive Repairs If Ignored</strong></h6>
                                        <ul class="mb-0">
                                            <li><strong>Radiator or heater core replacement:</strong> $800–$2,000
                                            </li>
                                            <li><strong>Head gasket or engine damage:</strong> $3,000–$15,000
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Coolant isn't just about temperature — it's a <strong>corrosion inhibitor, lubricant, and protector</strong> for your entire cooling system.</p>
                                        <p class="text-white mb-2">Neglect it, and it can literally <strong>eat your engine from the inside out.</strong></p>
                                        <p class="mb-0 text-white">Change it on time to prevent overheating, corrosion, and costly repairs down the road.</p>
                                    </div>
                                </div>
                                <!-- Air & Cabin Filters Content -->
                                <div class="service-content-section" data-service="air-cabin-filters" style="display: none;">
                                    <img src="images/service/filters.jpg" alt="air-cabin-filters-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Air & Cabin Filters</h3>
                                    <p class="mb-4 text-big">
                                        Two simple, low-cost filters that protect your engine, fuel economy, and cabin air quality. </p>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Engine Air Filter</h5>
                                        <p class="mb-3">Keeps dirt, dust, and debris from entering the intake and throttle body. When this filter clogs up, your engine can't breathe properly — leading to poor performance and wasted fuel.</p>
                                        <h6 class="text-secondary mb-2"><strong>What happens when it's dirty:</strong></h6>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Causes the engine to run <strong>rich</strong> (too much fuel, not enough air)</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Leads to <strong>reduced power, sluggish acceleration, and poor fuel economy</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Can <strong>wear out the engine</strong> over time</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Overworks the <strong>Mass Air Flow (MAF) sensor</strong> and increases emissions</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Cabin Air Filter</h5>
                                        <p class="mb-3">Screens out dirt, pollen, and debris before it enters your vehicle's cabin. Once it's clogged, airflow through your heating and A/C system drops — affecting comfort and air quality.</p>
                                        <h6 class="text-secondary mb-2"><strong>What happens when it's dirty:</strong></h6>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Reduces airflow</strong> inside the cabin</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Forces the <strong>blower motor</strong> to work harder, hurting heating/cooling efficiency</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Can cause <strong>musty smells</strong> or even mold buildup</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>In extreme cases, can cause the <strong>evaporator core to freeze up</strong></span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Replacement</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-secondary mb-2"><strong>Both Filters</strong></h6>
                                                <p class="mb-1 text-white"><strong>Every 12,000–15,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">Low-cost maintenance that prevents expensive problems</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2"><strong>Engine air filter:</strong> Protects your <strong>engine</strong> and <strong>fuel economy</strong></p>
                                        <p class="text-white mb-2"><strong>Cabin air filter:</strong> Protects <strong>you</strong> and your <strong>HVAC system</strong></p>
                                        <p class="mb-0 text-white">Both are low-cost maintenance items that prevent <strong>expensive problems</strong> down the road.</p>
                                    </div>
                                </div>
                                <!-- Lifetime Fluids Content -->
                                <div class="service-content-section" data-service="lifetime-fluids" style="display: none;">
                                    <img src="images/service/lifetime-fluids.jpg" alt="lifetime-fluids-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">The Truth About "Lifetime Fluids"</h3>
                                    <p class="mb-4 text-big">
                                        A big misconception in the automotive industry revolves around <strong>"Lifetime Fluids."</strong> Some manufacturers suggest in their owner's manuals that these fluids never need attention. <strong>This is absolutely false.</strong> </p>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What "Lifetime" Really Means</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span><strong>"Lifetime"</strong> = the manufacturer's definition of how long they expect you to keep the vehicle — not how long the vehicle <em>can</em> actually last</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Automakers don't want your car to be the last one you ever buy — that would hurt future sales</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span>If you plan to <strong>keep your car long-term</strong>, <strong>regular fluid service is essential</strong></span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">The Marketing Behind the Myth</h5>
                                        <h6 class="text-secondary mb-2"><strong>Marketing / Lower Cost of Ownership Claims</strong></h6>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Automakers want their cars to appear <strong>low-maintenance</strong> during the warranty period</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Labeling fluids as "lifetime" makes ownership look cheaper and simpler</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>In reality, "lifetime" often means <strong>until the warranty expires</strong> (typically 100K miles), not the true mechanical life of the vehicle</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Once you're past that point, <strong>neglected fluids</strong> start causing major wear and failure</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Better Fluids — But Not Magic</h5>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span>Modern <strong>synthetic fluids</strong> are far better than old formulations — they handle heat, pressure, and oxidation longer</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>But even the best fluid still collects <strong>debris, moisture, and metal particles</strong> over time</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>OEM testing is done under <strong>ideal lab conditions</strong> — not real-world driving</span>
                                            </li>
                                        </ul>
                                        <p class="mb-2"><strong>Real-world conditions break down fluids faster:</strong></p>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Stop-and-go traffic</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Extreme heat or cold</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Towing or hauling</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Short trips</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Dusty or dirty environments</span>
                                            </li>
                                        </ul>
                                        <p class="mb-0">Many OEMs <em>quietly</em> recommend fluid changes under <strong>"severe service"</strong> schedules — which most drivers actually fall under.</p>
                                    </div>
                                    <div class="alert alert-danger bg-white border-danger p-4 rounded-4 mb-4">
                                        <h6 class="text-danger mb-2"><strong>🧠 The Reality</strong></h6>
                                        <p class="mb-2">No fluid lasts forever — not <strong>engine oil</strong>, <strong>transmission fluid</strong>, <strong>coolant</strong>, or <strong>gear oil</strong>.</p>
                                        <p class="mb-2">"Lifetime" usually means <strong>the lifetime of the warranty</strong>, not the lifetime of the car.</p>
                                        <p class="mb-0">Drivers who believe the "never change it" myth often face <strong>early transmission, differential, or transfer case failures</strong> — each costing <strong>thousands</strong> to repair.</p>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">"Lifetime Fluid" is a <strong>marketing term</strong>, not a maintenance plan.</p>
                                        <p class="text-white mb-2">Fluids <strong>degrade, get dirty, and lose protection</strong> over time.</p>
                                        <p class="text-white mb-2">If you want your vehicle to last — <strong>change your fluids regularly.</strong></p>
                                        <p class="mb-0 text-white">Preventative maintenance is <strong>cheap insurance</strong> against very expensive repairs.</p>
                                    </div>
                                </div>
                                <!-- Tire Rotation Content -->
                                <div class="service-content-section" data-service="tire-rotation" style="display: none;">
                                    <img src="images/service/tire-rotation.jpg" alt="tire-rotation-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Tire Rotation — Key to Long Tire Life and Better Handling</h3>
                                    <p class="mb-4 text-big">
                                        Tire rotation should be done every <strong>5,000–10,000 miles</strong>. Since turning wears the front tires faster, regular rotation is essential for maximizing tire life. </p>
                                    <div class="alert alert-info bg-white border-0 p-3 mb-4">
                                        <p class="mb-0"><strong>Pro tip:</strong> Rotate your tires <strong>with every oil change</strong>. It keeps the schedule simple and ensures you never forget.</p>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service Interval</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-secondary mb-2"><strong>Regular Rotation</strong></h6>
                                                <p class="mb-1 text-white"><strong>Every 5,000–10,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">Best practice: Rotate with every oil change</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why Tire Rotation Matters</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>1. Prevents Uneven Tire Wear</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Front tires wear faster because they handle <strong>steering and most braking</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>On <strong>FWD vehicles</strong>, they also deliver power—so they wear out even quicker</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Without rotation, the front pair often wears out long before the rears, forcing <strong>early replacement</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>2. Extends Tire Life</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Rotating spreads the workload evenly across all four tires</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>This helps you get the full <strong>40,000–60,000+ miles</strong> from a set instead of burning through two early</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>3. Improves Safety & Traction</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Even tread depth ensures better <strong>traction in rain, snow, and emergency maneuvers</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Uneven tires can cause <strong>pulling, vibration, or unstable handling</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>4. Reduces Wear on Suspension Components</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Uneven tires create vibration that stresses <strong>shocks, struts, and wheel bearings</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Rotation helps prevent <strong>premature suspension wear</strong> and unnecessary repairs</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>5. Protects Your Tire Warranty</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Most manufacturers require rotations every <strong>5k–10k miles</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Skip rotations and you may <strong>void your warranty</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Not rotating your tires <strong>will cost you more in the long run</strong>—you'll replace tires sooner, risk poor handling, and may void the warranty.</p>
                                        <p class="mb-0 text-white">Rotating them on schedule keeps your ride <strong>safer, smoother, and far more affordable</strong> to maintain.</p>
                                    </div>
                                </div>
                                <!-- Tire Pressure & Fuel Economy Content -->
                                <div class="service-content-section" data-service="tire-pressure" style="display: none;">
                                    <img src="images/service/fuel-economy.jpg" alt="tire-pressure-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Tire Pressure — One of the Easiest Wins for Fuel Economy & Safety</h3>
                                    <p class="mb-4 text-big">
                                        Maintaining correct tire pressure has a <strong>big impact</strong> on fuel economy, tire life, and vehicle safety. It's one of the easiest checks you can do. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">When to Check</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-secondary mb-2"><strong>Monthly Checks</strong></h6>
                                                <p class="mb-1 text-white"><strong>Check tire pressure once a month</strong></p>
                                                <p class="small text-white-50 mb-0">If you can't do it yourself, ask an automotive facility—they'll usually check for free</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why Proper Pressure Matters</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>Under-inflated tires</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Increase rolling resistance (think: an underinflated ball rolls poorly)</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>For every ~5 psi under the recommended pressure, you'll lose about <strong>1 mpg</strong> in fuel economy</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Create extra heat—raising risk of <strong>blowouts</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Reduce responsiveness in braking, turning, and handling</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>Over-inflated tires</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Place excessive wear on the <strong>center tread</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Lead to a harsher ride and reduced grip—especially unsafe on wet or slick surfaces</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What Pressure Should Be</h5>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span>Use the vehicle manufacturer's recommended PSI (often around <strong>32–35 psi</strong> on most cars)</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Don't blindly trust the door-placard if it looks unusually low—if most vehicles run ≥32 psi, a lower number could be misleading</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span>If you have specialty tires (heavy-duty, aftermarket, etc.), consult the tire maker or a professional</span>
                                            </li>
                                        </ul>
                                        <p class="mb-2"><strong>At the correct PSI:</strong></p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span>The tire maintains the ideal <strong>shape and contact patch</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span>Rolling resistance is minimized while traction and life are optimized</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-warning bg-white border-warning p-4 rounded-4 mb-4">
                                        <h6 class="mb-2"><strong>💡 Hidden Costs of Poor Inflation</strong></h6>
                                        <ul class="mb-0">
                                            <li>Underinflated tires burn <strong>more fuel</strong> and wear out faster
                                            </li>
                                            <li>Early tire replacement = <strong>extra cost</strong> you might not see coming
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Tire pressure has a <strong>direct and measurable</strong> impact on your fuel economy, tire longevity, and vehicle safety. It's cheap, easy maintenance—and powerful in its benefits.</p>
                                        <p class="mb-0 text-white">Check and adjust once a month and you'll save money at the pump, extend your tires, and improve your driving experience.</p>
                                    </div>
                                </div>
                                <!-- Alignment Content -->
                                <div class="service-content-section" data-service="alignments" style="display: none;">
                                    <img src="images/service/alignment.jpg" alt="tire-alignment-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Wheel Alignment</h3>
                                    <p class="mb-4 text-big">
                                        Your suspension takes a beating every day from curbs, potholes, and speed bumps. A <strong>yearly alignment</strong> helps your tires stay straight and true — improving handling, extending tire life, and catching suspension or steering issues before they become costly. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-secondary mb-2"><strong>Annual Check</strong></h6>
                                                <p class="mb-1 text-white"><strong>Get your alignment checked once a year — regardless of mileage</strong></p>
                                                <p class="small text-white-50 mb-0">Preventative maintenance saves tires and money</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What Happens When Alignment Is Off</h5>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>If it's enough to <strong>spill your coffee</strong>, it's enough to throw off your alignment</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Fuel economy drops</strong> because of added rolling resistance</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span><strong>Tires wear unevenly</strong> and can lose <strong>thousands of miles</strong> of life</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Just because the vehicle <strong>drives straight</strong> doesn't mean it's in proper alignment</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-gear-fill text-primary-color me-3 mt-1"></i>
                                                <span>Alignment is based on <strong>three angles:</strong> <strong>Toe</strong>, <strong>Caster</strong>, and <strong>Camber</strong> — with <strong>Toe</strong> responsible for about <strong>90% of tire wear</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Poor alignment adds <strong>stress to ball joints, tie rods, bushings, and bearings</strong>, wearing them out faster</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                <span>Proper alignment keeps your vehicle <strong>stable, predictable, and safe</strong></span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="mb-0 text-white">A <strong>yearly alignment</strong> is <strong>cheap insurance</strong> — it saves money on tires, improves fuel economy, and prevents expensive suspension repairs down the road.</p>
                                    </div>
                                </div>
                                <!-- Battery Maintenance Content -->
                                <div class="service-content-section" data-service="battery-maintenance" style="display: none;">
                                    <img src="images/service/battery-maintenance.jpg" alt="battery-maintenance-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Battery — The Nervous System of Your Vehicle</h3>
                                    <p class="mb-4 text-big">
                                        Your battery is the <strong>heart and nervous system</strong> of your vehicle's electrical system. It powers everything from the starter to the computers that control your seats, mirrors, and presets — even when the car's parked. Modern vehicles rely on the battery to stay "awake" in <strong>hibernation mode</strong>, remembering your settings and staying ready to start instantly. </p>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Types of Vehicle Batteries</h5>
                                        <p class="mb-3">There's more than one kind of battery under the hood — each designed for specific needs and power demands:</p>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-battery-charging text-primary-color me-3 mt-1"></i>
                                                <span><strong>Lead-Acid Batteries:</strong> The most common type — available in flooded or sealed versions. Affordable and reliable for everyday use.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-lightning-charge text-primary-color me-3 mt-1"></i>
                                                <span><strong>Absorbent Glass Mat (AGM):</strong> Maintenance-free, durable, and designed to handle heavy electrical loads — ideal for newer, electronics-heavy vehicles.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-arrow-repeat text-primary-color me-3 mt-1"></i>
                                                <span><strong>Deep-Cycle Batteries:</strong> Provide steady power over long periods. Common in <strong>RVs, golf carts, and marine applications</strong>.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-plug text-primary-color me-3 mt-1"></i>
                                                <span><strong>Dual-Purpose Batteries:</strong> Offer both strong starting power <strong>and</strong> long-term energy storage — great for vehicles with accessories or off-grid needs.</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-battery-full text-primary-color me-3 mt-1"></i>
                                                <span><strong>Lithium-Ion Batteries:</strong> Found in <strong>electric and hybrid vehicles</strong>. Lightweight, fast-charging, and long-lasting.</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Battery Lifespan</h5>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-clock text-white me-3 mt-1"></i>
                                                <span class="text-white">Average life: <strong>3–4 years</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-check-circle text-white me-3 mt-1"></i>
                                                <span class="text-white">With good care, AGM or premium batteries can last <strong>up to 7 years</strong></span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-gear-fill text-white me-3 mt-1"></i>
                                                <span class="text-white">Lifespan depends on <strong>temperature</strong>, <strong>driving habits</strong>, and <strong>maintenance</strong></span>
                                            </li>
                                        </ul>
                                        <p class="mb-0 text-white-50"><strong>Tip:</strong> Extreme heat, short trips, and lack of use are battery killers.</p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Corrosion and Lack of Maintenance</h5>
                                        <p class="mb-3">Battery corrosion is <strong>natural</strong>, but ignoring it can cause big problems.</p>
                                        <h6 class="text-secondary mb-2"><strong>What corrosion causes:</strong></h6>
                                        <ul class="p-0 m-0 mb-4">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Poor electrical connections — hard starts or no-starts</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Dim headlights or glitchy electronics</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                <span>Reduced battery performance and lifespan</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>In severe cases, corrosion can <strong>eat through battery terminals</strong> — costing <strong>hundreds in repairs</strong></span>
                                            </li>
                                        </ul>
                                        <p class="mb-0"><em>Battery corrosion doesn't mean your car has an electrical issue — it just needs maintenance.</em></p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Maintenance Tips</h5>
                                        <p class="mb-3">Keep your battery healthy and long-lasting with these simple steps:</p>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>1. Clean terminals regularly</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Mix <strong>baking soda + water (1:1)</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Always <strong>disconnect the negative (-)</strong> cable first</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Scrub with a stiff brush</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Rinse and wipe clean</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Reconnect <strong>positive (+)</strong> cable first</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>2. Protect with terminal spray</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>After reconnecting, coat terminals with <strong>anti-corrosion spray</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Spray from about 4 inches away until evenly coated</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="alert alert-info bg-white border-0 p-3 mb-0">
                                            <p class="mb-0"><strong>Note:</strong> Neglecting battery terminal cleaning is one of the most common maintenance mistakes. A few minutes of care can prevent hours of frustration.</p>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Your <strong>battery keeps your vehicle alive</strong> — even when it's off.</p>
                                        <p class="mb-0 text-white">Regular maintenance and inspections ensure reliable starts, protect sensitive electronics, and save you from costly breakdowns.</p>
                                    </div>
                                </div>
                                <!-- Hybrid Battery Fan Cleaning Content -->
                                <div class="service-content-section" data-service="hybrid-battery" style="display: none;">
                                    <img src="images/service/hybrid.jpg" alt="hybrid-battery-fan-cleaning-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Hybrid Battery Fan Cleaning — Every 30,000 Miles</h3>
                                    <p class="mb-4 text-big">
                                        Your hybrid's <strong>battery cooling fan</strong> is vital for keeping the battery at a safe operating temperature. Over time, <strong>dust, dirt, and pet hair</strong> clog the fan blades and vents — leading to overheating, reduced efficiency, and expensive repairs if ignored. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service Interval</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-secondary mb-2"><strong>Regular Cleaning</strong></h6>
                                                <p class="mb-1 text-white"><strong>Every 30,000 miles</strong></p>
                                                <p class="small text-white-50 mb-0">More frequently if you drive with pets or in dusty conditions</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">What Happens When It's Neglected</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>🔥 Battery Overheating</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Dust and debris restrict airflow, causing the battery to run hotter</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>High temperatures reduce battery efficiency and shorten its lifespan</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>⚡ Reduced Battery Performance</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>When temperatures rise, the computer limits how much the battery can charge or discharge</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>You'll notice <strong>lower fuel economy</strong>, <strong>less electric drive range</strong>, and <strong>sluggish acceleration</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>💀 Shortened Battery Life</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Heat is the <strong>#1 killer</strong> of hybrid batteries</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>A clogged fan accelerates internal wear, leading to potential <strong>$2,000–$5,000 replacement costs</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>🔊 Noise & Fan Failure</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>A dirty fan works harder and can become noisy or fail completely</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>If it burns out, the battery receives no cooling</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>Many hybrids will trigger a <strong>"Check Hybrid System"</strong> or <strong>battery temperature warning</strong> when this happens</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Clean your <strong>hybrid battery fan every 30,000 miles</strong> (or sooner if you drive with pets or in dusty conditions).</p>
                                        <p class="mb-0 text-white">It's a <strong>low-cost service</strong> that prevents overheating, extends battery life, and maintains top hybrid performance.</p>
                                    </div>
                                </div>
                                <!-- Hybrid Inverter Fluid Content -->
                                <div class="service-content-section" data-service="inverter-fluid" style="display: none;">
                                    <img src="images/service/inverter-fluid.jpg" alt="hybrid-inverter-fluid-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Inverter Fluid Service — Every 80,000 Miles or 5 Years</h3>
                                    <p class="mb-4 text-big">
                                        Your hybrid's <strong>inverter fluid</strong> is vital for keeping the <strong>inverter, electric motors, and electronics</strong> cool and protected. Like engine coolant, it breaks down over time and needs regular replacement to maintain proper system performance. </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service Interval</h5>
                                        <div class="row">
                                            <div class="col-12">
                                                <h6 class="text-secondary mb-2"><strong>Regular Service</strong></h6>
                                                <p class="mb-1 text-white"><strong>Every 80,000 miles or every 5 years</strong></p>
                                                <p class="small text-white-50 mb-0">Protects critical hybrid components and prevents overheating</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why It's Important</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>🌡️ Keeps the Inverter & Electric Motors Cool</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>The inverter converts high-voltage <strong>DC (from the battery)</strong> to <strong>AC (for the motors)</strong> — a process that generates significant heat</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>The fluid circulates through a <strong>dedicated cooling loop</strong>, regulating temperatures for the inverter, motor, and electronics</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>🧪 Fluid Breaks Down Over Time</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Protective additives degrade just like in regular engine coolant</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Worn fluid loses its ability to carry heat efficiently, raising the risk of <strong>overheating and component stress</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>🛡️ Prevents Corrosion & Deposits</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Fresh inverter fluid contains <strong>anti-corrosion inhibitors</strong> that keep cooling passages and pumps clean</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Old fluid can turn <strong>acidic</strong>, forming deposits that restrict flow and clog fine cooling channels</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>💰 Protects Expensive Components</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                    <span>A failed <strong>inverter</strong> can cost <strong>$3,000–$6,000+</strong> to replace</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>The <strong>inverter cooling pump</strong> (a common failure item on some hybrids) can overheat and fail prematurely if fluid is old or contaminated</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>⚙️ Maintains System Efficiency</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Proper cooling allows the inverter and electric motors to operate at <strong>peak performance</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>This improves <strong>fuel economy</strong>, reduces strain on the <strong>hybrid battery</strong>, and helps extend its lifespan</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Change your <strong>inverter fluid every 80,000 miles or every 5 years</strong> to protect critical hybrid components, prevent overheating, and maintain top hybrid efficiency and longevity.</p>
                                        <p class="mb-0 text-white">This simple maintenance step can save you <strong>thousands in repairs</strong> down the road.</p>
                                    </div>
                                </div>
                                <!-- Gearboxes Content -->
                                <div class="service-content-section" data-service="gearboxes" style="display: none;">
                                    <img src="images/service/gearbox.jpg" alt="hybrid-gearboxes-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Gearboxes — Rear Differential, Front Differential & Transfer Case (or PTO Unit)</h3>
                                    <p class="mb-4 text-big">
                                        These components are critical to your vehicle's drivetrain — yet their fluids are often <strong>overlooked</strong>. Despite what many manufacturers claim, <strong>these are not "lifetime fluids."</strong> </p>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Recommended Service Intervals</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-secondary mb-2"><strong>Synthetic Gearbox Fluid</strong></h6>
                                                <p class="mb-1 text-white"><strong>Every 50,000 miles or 5 years</strong></p>
                                                <p class="small text-white-50 mb-0">For vehicles using synthetic gear oil</p>
                                            </div>
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-secondary mb-2"><strong>Conventional Fluid</strong></h6>
                                                <p class="mb-1 text-white"><strong>Every 30,000 miles or 3 years</strong></p>
                                                <p class="small text-white-50 mb-0">Includes Dual Pump II Fluid, ATF, or Gear Lubricant</p>
                                            </div>
                                        </div>
                                        <p class="mb-0 text-white-50 mt-3"><em>Neglected systems = "Out of sight, out of mind."</em></p>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Why Fluid Changes Matter</h5>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>Heat + Shear = Fluid Breakdown</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Differentials and transfer cases handle <strong>extreme pressure and heat</strong></span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Over time, fluid loses its ability to lubricate, leading to metal-on-metal contact that grinds gears and bearings</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>Metal Shavings Build Up</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Normal wear produces microscopic metal particles</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Without fresh fluid, these circulate like sandpaper, accelerating wear on gears, bearings, and clutches</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="mb-4">
                                            <h6 class="text-secondary mb-2"><strong>Moisture Intrusion</strong></h6>
                                            <ul class="p-0 m-0 mb-3">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Vents release internal pressure but can also let in moisture — especially in wet or off-road conditions</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Water contamination leads to <strong>rust, corrosion, and gear pitting</strong></span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="mb-4">
                                        <h5 class="mb-3 text-primary-color">Warning Signs of Neglected Fluids</h5>
                                        <ul class="p-0 m-0 mb-3">
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Whining, grinding, or clunking noises</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Binding or slipping in 4WD/AWD systems</span>
                                            </li>
                                            <li class="list-unstyled mb-2 d-flex align-items-start">
                                                <i class="bi bi-exclamation-triangle text-warning me-3 mt-1"></i>
                                                <span>Harsh engagement or vibration during acceleration</span>
                                            </li>
                                        </ul>
                                    </div>
                                    <div class="alert alert-danger bg-white border-danger p-4 rounded-4 mb-4">
                                        <h6 class="text-danger mb-2"><strong>💸 The Cost of Neglect</strong></h6>
                                        <p class="mb-2">Rebuilding a <strong>front/rear differential or transfer case</strong> can cost <strong>$2,000–$4,500+ each</strong>.</p>
                                        <p class="mb-0">A <strong>fluid service</strong> costs a fraction of that — preventive maintenance <strong>saves thousands</strong>.</p>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="text-white mb-2">Differential and transfer case fluids don't need changing as often as engine oil, but <strong>ignoring them leads to early wear, performance issues, and expensive repairs</strong>.</p>
                                        <p class="mb-0 text-white">Regular service keeps your <strong>4WD/AWD system strong, quiet, and reliable</strong>.</p>
                                    </div>
                                </div>
                                <!-- Dashboard Content -->
                                <div class="service-content-section" data-service="dashboard" style="display: none;">
                                    <img src="images/service/dashboard.jpg" alt="hybrid-dashboard-service" class="w-100 rounded-4" style="max-height: 458px; margin-bottom: 20px;">
                                    <h3 class="mb-0 text-primary-color">Hybrid Dashboard Service</h3>
                                    <p class="mb-4 text-big">
                                        Regular hybrid dashboard service is crucial for maintaining optimal system performance and longevity.</p>
                                    <div class="row">
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Key Benefits</h5>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Prevents hybrid battery overheating</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Extends expensive hybrid battery life</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Maintains optimal hybrid system efficiency</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                                                    <span>Prevents costly emergency battery replacement</span>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="col-12 col-md-6">
                                            <h5 class="mb-3 text-primary-color">Risks of Skipping</h5>
                                            <ul class="p-0 m-0 mb-4">
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Battery overheating from blocked cooling</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Premature hybrid battery failure ($3,000-$6,000 replacement)</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Reduced hybrid system efficiency and fuel economy</span>
                                                </li>
                                                <li class="list-unstyled mb-2 d-flex align-items-start">
                                                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                                                    <span>Potential hybrid system shutdown for protection</span>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                    <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
                                        <h5 class="mb-3 text-primary-color">Service Intervals</h5>
                                        <div class="row">
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">Regular Cleaning</h6>
                                                <p class="mb-2">Every 60,000 miles or as needed</p>
                                                <p class="small text-muted mb-0">Prevent overheating issues</p>
                                            </div>
                                            <div class="col-12 col-md-6 mb-3">
                                                <h6 class="text-white mb-2">Filter Replacement</h6>
                                                <p class="mb-2">Replace cabin filter affecting battery cooling</p>
                                                <p class="small text-muted mb-0">Maintain airflow</p>
                                            </div>
                                            <div class="col-12 col-md-6">
                                                <h6 class="text-white mb-2">Professional Service</h6>
                                                <p class="mb-2">Have hybrid system inspected regularly</p>
                                                <p class="small text-muted mb-0">Expert diagnosis</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
                                        <h6 class="text-white mb-2"> <i class="bi bi-check-circle me-2"></i>Bottom Line </h6>
                                        <p class="mb-0 text-white">Clean cooling fans are essential for hybrid battery longevity and preventing expensive failures.</p>
                                    </div>
                                    <div class="col-12 col-md-6 col-xl-5 d-flex flex-column flex-md-row align-items-center w-100 gap-3 gap-md-5"> 
                                        <ul class="p-0 m-0"> 
                                            <li class="list-unstyled mb-3 text-big fw-bold d-flex flex-column flex-md-row align-items-center text-center text-md-start"> <i class="bi bi-check-circle text-primary-color me-0 me-md-4 fs-1"></i> 
                                                Clear visibility of all system alerts
                                            </li>                                             
                                            <li class="list-unstyled text-big fw-bold d-flex flex-column flex-md-row align-items-center text-center text-md-start"> <i class="bi bi-check-circle text-primary-color me-0 me-md-4 fs-1"></i> 
                                                Prevents misunderstanding of warnings
                                            </li>                                             
                                        </ul>                                         
                                        <ul class="p-0 m-0"> 
                                            <li class="list-unstyled mb-3 text-big fw-bold d-flex flex-column flex-md-row align-items-center text-center text-md-start"> <i class="bi bi-check-circle text-primary-color me-0 me-md-4 fs-1"></i> 
                                                Accurate system status monitoring
                                            </li>                                             
                                            <li class="list-unstyled text-big fw-bold d-flex flex-column flex-md-row align-items-center text-center text-md-start"> <i class="bi bi-check-circle text-primary-color me-0 me-md-4 fs-1"></i> 
                                                Safe and informed driving experience
                                            </li>                                             
                                        </ul>                                         
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </section>             
            <!-- #service content -->             
            <!-- CTA -->             
            <section class="section bg-color position-relative" style="background-image: url('images/banner1.jpg'); background-attachment: fixed;"> 
                <div class="bg-overlay-3"></div>                 
                <div class="b-container position-relative z-2"> 
                    <div class="d-flex flex-column align-items-center"> 
                        <div class="d-flex align-items-center"> <i class="bi bi-car-front-fill fs-4 me-3 text-primary-color"></i> <span class="subtitle">OUR NEWSLETTERS</span> 
                        </div>                         
                        <h2 class="my-4 text-center">GET EXCLUSIVE OFFERS AND CAR TIPS</h2> 
                        <p class="max-w-780 text-center">Join our newsletter to receive the latest updates, maintenance tips, and
            exclusive offers straight to your inbox. Stay ahead in car care and never miss a deal!</p> 
                        <div class="toast-container position-fixed bottom-0 end-0 p-3"> 
                            <div id="liveToast" class="toast success_msg_subscribe text-bg-light" role="alert" aria-live="assertive" aria-atomic="true"> 
                                <div class="d-flex"> 
                                    <div class="toast-body"> <i class="bi bi-check-circle-fill"></i> Your Subscribe Send Successfully.
                                    </div>                                     
                                    <button type="button" class="btn me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"> <i class="bi bi-x-lg"></i> 
                                    </button>                                     
                                </div>                                 
                            </div>                             
                        </div>                         
                        <form class="form needs-validation mt-4 d-flex flex-column flex-md-row max-w-717"> 
                            <input type="text" name="action" value="subscribe" hidden> 
                            <input type="email" name="email" id="email" class="form-control form-control-lg" placeholder="Enter your email address" required> 
                            <div class="invalid-feedback text-white"> 
                                Please provide a valid email format (e.g.,
                                user@example.com).
</div>                             
                            <button type="submit" class="btn btn-cta-primary w-100 d-inline-flex py-3 d-flex align-items-center justify-content-center submit_subscribe no-bottom-left-radius max-w-200 mt-3 mt-md-0"> 
                                Subscribe Now<span class="btn-icon rounded-circle d-inline-flex align-items-center justify-content-center ms-2"> <i class="bi bi-chevron-right text-white" style="font-size:10px"></i> </span> 
                            </button>                             
                        </form>                         
                    </div>                     
                </div>                 
            </section>             
            <!-- #cta -->             
            <!-- Testimonials -->             
            <!-- #testimonials -->             
            <!-- Footer --> 
             <?php include("footer.php"); ?>            
            <!-- #footer -->             
        </main>         
        <!-- End Main Content -->         
        <!-- Scripts -->         
        <!-- jQuery -->         
        <script src="js/vendor/jquery.min.js"></script>         
        <!-- Animation On Scroll (AOS) -->         
        <script src="js/vendor/aos.js"></script>         
        <!-- Slick JS -->         
        <script src="js/vendor/slick.min.js"></script>         
        <!-- FANCY BOX -->         
        <script src="js/vendor/fancybox.umd.js"></script>         
        <!-- Bootstrap JS -->         
        <script src="js/vendor/bootstrap.bundle.min.js"></script>         
        <!-- Custom JS -->         
        <script src="js/script-counter.js"></script>         
        <script src="js/submit-form.js"></script>         
        <script src="js/script.js"></script>         
        <!-- Theme Toggle Script -->
        <script>
            // Theme toggle functionality
            const themeToggle = document.getElementById('theme-toggle');
            const themeIcon = document.getElementById('theme-icon');
            const htmlElement = document.documentElement;
            
            // Check for saved theme preference or default to 'dark'
            const currentTheme = localStorage.getItem('theme') || 'dark';
            htmlElement.setAttribute('data-theme', currentTheme);
            updateThemeIcon(currentTheme);
            
            // Toggle theme on button click
            themeToggle.addEventListener('click', () => {
                const currentTheme = htmlElement.getAttribute('data-theme');
                const newTheme = currentTheme === 'dark' ? 'light' : 'dark';
                
                htmlElement.setAttribute('data-theme', newTheme);
                localStorage.setItem('theme', newTheme);
                updateThemeIcon(newTheme);
            });
            
            // Update icon based on theme
            function updateThemeIcon(theme) {
                if (theme === 'dark') {
                    themeIcon.classList.remove('bi-moon-fill');
                    themeIcon.classList.add('bi-sun-fill');
                } else {
                    themeIcon.classList.remove('bi-sun-fill');
                    themeIcon.classList.add('bi-moon-fill');
                }
            }
        </script>
        <!-- Service Navigation JavaScript -->         
        <script>
    document.addEventListener('DOMContentLoaded', function() {
      // Service navigation functionality
      const serviceNavItems = document.querySelectorAll('.service-nav-item');
      const serviceContainer = document.getElementById('service-content');
      
      // Service content data from automotive maintenance markdown files
      const serviceContent = {
        'oil-changes': {
          title: 'Oil Changes',
          subtitle: 'Probably the best known and most understood system most people know to maintain. But here are a few tips you might be unaware of.',
          benefits: [
            'Synthetic oil prevents engine wear and increases fuel economy',
            'Creates protective film between moving parts',
            'Carries heat away from critical engine components',
            'Inspection opportunity for early issue detection'
          ],
          risks: [
            'Engine damage and loss of compression',
            'Turbocharger failure from lack of clean oil flow',
            'Timing chains stretch or break',
            'Warranty voidance and reduced resale value'
          ],
          recommendations: {
            'Full Synthetic': 'Every 6 months or 6,000 miles (Turbo: 4 months/4,000 miles)',
            'Semi Synthetic': 'Every 6 months or 5,000 miles (Turbo: 3 months/3,000 miles)'
          },
          bottomLine: 'Oil is the lifeblood of your engine. Skipping changes saves a little now but risks massive repair bills later.'
        },
        'spark-plugs': {
          title: 'Spark Plugs',
          subtitle: 'Spark plugs need to be replaced at certain intervals. Avoiding check engine lights, poor fuel economy and reduced performance.',
          benefits: [
            'Strong spark for reliable engine starts',
            'Improved fuel economy through complete combustion',
            'Smooth, responsive power and acceleration',
            'Protects ignition coils and wires from overwork'
          ],
          risks: [
            'Hard starts and engine misfires',
            'Poor fuel economy and wasted fuel',
            'Premature ignition coil or wire failure',
            'Catalytic converter damage ($1,500-$3,500 repair)'
          ],
          recommendations: {
            'Iridium Plugs': 'Every 100,000 miles (Turbo: 80,000 miles)',
            'Platinum Plugs': 'Every 50,000 miles (Turbo: 30,000 miles)',
            'Copper/Nickel': 'Every 30,000 miles (Most affordable option)'
          },
          bottomLine: 'Skipping spark plug changes leads to hard starts, wasted fuel, reduced power, and possible expensive repairs.'
        },
        'fuel-system': {
          title: 'Fuel System Cleaning',
          subtitle: 'GDI and EFI fuel systems require different cleaning intervals to prevent carbon buildup and maintain peak performance.',
          benefits: [
            'Prevents carbon buildup on intake valves (especially GDI engines)',
            'Keeps fuel injectors clean and properly calibrated',
            'Maintains optimal fuel spray patterns for efficient combustion',
            'Reduces emissions and prevents failed inspections'
          ],
          risks: [
            'Heavy carbon deposits causing rough idle and power loss',
            'Clogged fuel injectors leading to misfires and hesitation',
            'Poor fuel economy from incomplete combustion',
            'Expensive valve and engine damage from improper seating'
          ],
          recommendations: {
            'GDI Systems': 'Every 20,000 miles (newer, more efficient but carbon-prone)',
            'EFI Systems': 'Every 50,000 miles (older system, less carbon buildup)',
            'Fuel Additive': 'Add fuel additive every oil change'
          },
          bottomLine: 'Preventative fuel system cleaning keeps your engine efficient, reliable, and far cheaper to maintain long-term.'
        },
        'fuel-filter': {
          title: 'Fuel Filter',
          subtitle: 'The fuel filter protects your engine by removing contaminants from fuel before it reaches critical injection components.',
          benefits: [
            'Prevents dirt and debris from reaching fuel injectors',
            'Maintains proper fuel pressure and flow',
            'Protects expensive fuel pump from contamination',
            'Ensures clean fuel delivery for optimal performance'
          ],
          risks: [
            'Clogged filter causing fuel starvation and poor performance',
            'Fuel pump failure from working against restriction',
            'Injector damage from contaminated fuel',
            'Engine stalling or difficulty starting'
          ],
          recommendations: {
            'Standard Filter': 'Every 30,000 miles or as recommended',
            'High-Performance': 'Every 15,000-20,000 miles for modified engines',
            'Severe Conditions': 'More frequent in dusty or contaminated fuel areas'
          },
          bottomLine: 'A clean fuel filter is essential for protecting your expensive fuel system components and maintaining reliable performance.'
        },
        'timing-belt': {
          title: 'Timing Belt',
          subtitle: 'Critical engine component that synchronizes valve and piston movement. Failure can cause catastrophic engine damage.',
          benefits: [
            'Precise valve timing for optimal engine performance',
            'Prevents interference between valves and pistons',
            'Maintains proper combustion timing',
            'Enables smooth, efficient engine operation'
          ],
          risks: [
            'Complete engine failure if belt breaks (interference engines)',
            'Bent valves and damaged pistons requiring engine rebuild',
            'Sudden breakdown leaving you stranded',
            'Repair costs of $3,000-$8,000 for interference engines'
          ],
          recommendations: {
            'Standard Interval': 'Every 60,000-100,000 miles (check manual)',
            'Severe Conditions': 'More frequent in extreme temperatures',
            'Preventive Replacement': 'Replace before failure - it\'s not repairable'
          },
          bottomLine: 'Timing belt failure on interference engines can destroy your engine. Prevention is far cheaper than repair.'
        },
        'valve-adjustment': {
          title: 'Valve Adjustment',
          subtitle: 'Proper valve clearance ensures optimal engine breathing, performance, and longevity, especially important for Honda and Acura vehicles.',
          benefits: [
            'Maintains proper valve sealing and compression',
            'Ensures optimal airflow and fuel mixture',
            'Prevents premature valve and seat wear',
            'Maintains quiet, smooth engine operation'
          ],
          risks: [
            'Tight valves causing valve burning and seat damage',
            'Loose valves creating noise and poor sealing',
            'Reduced engine performance and fuel economy',
            'Expensive valve train repairs if neglected'
          ],
          recommendations: {
            'Honda/Acura': 'Every 30,000 miles (critical for these brands)',
            'Other Brands': 'Every 60,000-100,000 miles or as specified',
            'Performance Engines': 'More frequent for modified or high-performance engines'
          },
          bottomLine: 'Proper valve adjustment maintains engine health and prevents expensive valve train damage, especially on Honda and Acura vehicles.'
        },
        'diesel-filter': {
          title: 'Diesel Particulate Filter',
          subtitle: 'Critical emissions component in modern diesel engines that captures soot particles and requires periodic regeneration.',
          benefits: [
            'Reduces harmful soot emissions by up to 85%',
            'Maintains compliance with emissions regulations',
            'Protects engine from soot accumulation',
            'Enables clean diesel technology benefits'
          ],
          risks: [
            'DPF clogging causing reduced power and fuel economy',
            'Expensive DPF replacement ($2,000-$4,000)',
            'Engine protection mode limiting performance',
            'Failed emissions tests and legal compliance issues'
          ],
          recommendations: {
            'Highway Driving': 'Allows natural regeneration through high temperatures',
            'City Driving': 'Periodic forced regeneration cycles needed',
            'Professional Service': 'DPF cleaning every 100,000-150,000 miles'
          },
          bottomLine: 'Proper DPF maintenance ensures clean emissions and prevents expensive filter replacement in modern diesel vehicles.'
        },
        'transmission-fluid': {
          title: 'Transmission Fluid',
          subtitle: 'Transmission fluid is the heart of your vehicle and should be taken care of like you would your heart.',
          benefits: [
            'Provides lubrication for transmission components',
            'Acts as hydraulic fluid for clutch and band operation',
            'Carries heat away from critical transmission parts',
            'Maintains proper pressure for smooth shifting'
          ],
          risks: [
            'Heat breakdown leading to slipping and hard shifts',
            'Metal particles creating abrasive wear',
            'Hydraulic failure causing delayed engagement',
            'Complete transmission failure ($3,000-$7,000+ repair)'
          ],
          recommendations: {
            'Synthetic Fluid': 'Every 50,000 miles or 5 years (all manufacturers)',
            'CVT/Conventional': 'Every 30,000 miles or 3 years',
            'Alternative': 'Drain and refill every 30,000 miles (any type)'
          },
          bottomLine: 'Transmission fluid is the lifeblood of your gearbox. Neglecting changes is gambling with one of your car\'s most expensive components.'
        },
        'transmission-filter': {
          title: 'Transmission Filter',
          subtitle: 'The transmission filter removes contaminants from transmission fluid to protect sensitive hydraulic components.',
          benefits: [
            'Removes metal particles and clutch material debris',
            'Maintains clean fluid flow through valve body',
            'Protects solenoids and sensitive hydraulic components',
            'Extends transmission life and performance'
          ],
          risks: [
            'Clogged filter restricting fluid flow',
            'Contaminated fluid damaging valve body',
            'Solenoid failure from dirty fluid',
            'Premature transmission wear and failure'
          ],
          recommendations: {
            'With Fluid Change': 'Replace filter every fluid change',
            'Internal Filter': 'Every 60,000-100,000 miles (varies by vehicle)',
            'External Filter': 'Every 30,000-50,000 miles if equipped'
          },
          bottomLine: 'A clean transmission filter ensures your transmission fluid stays clean and your transmission lasts longer.'
        },
        'brake-fluid': {
          title: 'Brake Fluid',
          subtitle: 'Brake fluid is hygroscopic (absorbs moisture) which lowers its boiling point and can cause brake failure.',
          benefits: [
            'Maintains consistent brake pedal feel and response',
            'Prevents corrosion in brake system components',
            'Ensures reliable stopping power in all conditions',
            'Protects expensive ABS and brake system parts'
          ],
          risks: [
            'Moisture absorption leading to brake fade',
            'Corrosion of brake lines and components',
            'Spongy brake pedal and reduced stopping power',
            'Complete brake system failure in extreme cases'
          ],
          recommendations: {
            'Standard Service': 'Every 24,000 miles or 2 years',
            'Severe Conditions': 'More frequent in high-moisture environments',
            'Performance Driving': 'High-temperature brake fluid for track use'
          },
          bottomLine: 'Fresh brake fluid ensures your brakes work when you need them most. It\'s a critical safety component.'
        },
        'power-steering': {
          title: 'Power Steering Fluid',
          subtitle: 'Power steering fluid enables easy steering and protects the power steering system from wear and failure.',
          benefits: [
            'Provides smooth, effortless steering operation',
            'Lubricates power steering pump and components',
            'Protects seals and prevents leaks',
            'Maintains consistent steering feel and response'
          ],
          risks: [
            'Power steering pump failure from dirty fluid',
            'Hard steering and increased effort required',
            'Seal deterioration leading to expensive leaks',
            'Complete steering system failure'
          ],
          recommendations: {
            'Standard Service': 'Every 50,000-75,000 miles',
            'Leak Prevention': 'Check fluid level monthly',
            'Pump Protection': 'Change if fluid becomes dark or contaminated'
          },
          bottomLine: 'Clean power steering fluid ensures easy steering and prevents expensive pump and system repairs.'
        },
        'radiator-fluid': {
          title: 'Radiator Fluid (Coolant)',
          subtitle: 'Engine coolant regulates temperature and prevents corrosion in your engine\'s cooling system.',
          benefits: [
            'Prevents engine overheating and damage',
            'Protects against freezing in cold climates',
            'Inhibits corrosion of cooling system components',
            'Maintains optimal engine operating temperature'
          ],
          risks: [
            'Engine overheating causing catastrophic damage',
            'Cooling system corrosion and component failure',
            'Head gasket failure from temperature extremes',
            'Complete engine replacement ($5,000-$15,000+)'
          ],
          recommendations: {
            'Standard Coolant': 'Every 30,000 miles or 3 years',
            'Extended Life': 'Every 60,000-100,000 miles (newer formulations)',
            'Severe Conditions': 'More frequent in extreme climates'
          },
          bottomLine: 'Proper coolant maintenance prevents engine overheating and protects against one of the most expensive automotive failures.'
        },
        'air-cabin-filters': {
          title: 'Air & Cabin Filters',
          subtitle: 'Engine air and cabin air filters protect your engine and provide clean air for passengers.',
          benefits: [
            'Engine air filter ensures clean air for optimal combustion',
            'Cabin filter provides clean air for passenger comfort',
            'Protects engine from debris and contaminants',
            'Improves HVAC system efficiency and air quality'
          ],
          risks: [
            'Clogged engine filter reducing power and fuel economy',
            'Dirty cabin filter causing poor air quality and odors',
            'Engine damage from unfiltered debris',
            'HVAC system strain and reduced efficiency'
          ],
          recommendations: {
            'Engine Air Filter': 'Every 15,000-30,000 miles (varies by conditions)',
            'Cabin Air Filter': 'Every 15,000-25,000 miles or annually',
            'Severe Conditions': 'More frequent in dusty or polluted areas'
          },
          bottomLine: 'Clean filters protect your engine and ensure healthy air quality for you and your passengers.'
        },
        'lifetime-fluids': {
          title: 'Lifetime Fluids',
          subtitle: 'Despite manufacturer claims, there is no such thing as truly "lifetime" fluid. All fluids degrade over time.',
          benefits: [
            'Understanding that all fluids require eventual service',
            'Preventing premature component failure',
            'Maintaining optimal system performance',
            'Protecting your investment in your vehicle'
          ],
          risks: [
            'Believing marketing claims about "lifetime" fluids',
            'Component failure from neglected fluid changes',
            'Expensive repairs from fluid breakdown',
            'Reduced vehicle reliability and lifespan'
          ],
          recommendations: {
            'Transmission': 'Service "lifetime" fluid every 60,000-100,000 miles',
            'Differential': 'Change "lifetime" gear oil every 60,000 miles',
            'Reality Check': 'Manufacturers want you to buy another car, not keep this one forever'
          },
          bottomLine: 'No fluid lasts forever. Regular service extends vehicle life far beyond manufacturer expectations.'
        },
        'tire-rotation': {
          title: 'Tire Rotation',
          subtitle: 'Regular tire rotation ensures even wear patterns and maximizes tire life and safety.',
          benefits: [
            'Extends tire life through even wear distribution',
            'Maintains optimal traction and handling',
            'Prevents irregular wear patterns',
            'Maximizes fuel economy through proper rolling resistance'
          ],
          risks: [
            'Premature tire replacement from uneven wear',
            'Reduced traction and safety',
            'Poor fuel economy from increased rolling resistance',
            'Handling issues from mismatched tire wear'
          ],
          recommendations: {
            'Standard Rotation': 'Every 5,000-7,500 miles',
            'High-Performance': 'Every 3,000-5,000 miles for performance tires',
            'Directional Tires': 'Front-to-back only (same side)'
          },
          bottomLine: 'Regular tire rotation is a simple service that significantly extends tire life and maintains vehicle safety.'
        },
        'tire-pressure': {
          title: 'Tire Pressure & Fuel Economy',
          subtitle: 'Proper tire pressure is crucial for safety, tire life, and fuel economy.',
          benefits: [
            'Maximizes fuel economy through reduced rolling resistance',
            'Ensures optimal tire contact patch and handling',
            'Prevents premature tire wear and failure',
            'Maintains vehicle safety and stability'
          ],
          risks: [
            'Under-inflation causing tire failure and reduced fuel economy',
            'Over-inflation leading to center wear and harsh ride',
            'Poor handling and reduced safety',
            'Increased tire replacement costs'
          ],
          recommendations: {
            'Check Monthly': 'Tire pressure changes with temperature',
            'Proper PSI': 'Follow door jamb sticker, not tire sidewall',
            'Temperature Correction': 'Check when tires are cold'
          },
          bottomLine: 'Proper tire pressure saves fuel, extends tire life, and keeps you safe on the road.'
        },
        'alignments': {
          title: 'Wheel Alignments',
          subtitle: 'Proper wheel alignment ensures your vehicle tracks straight and tires wear evenly.',
          benefits: [
            'Prevents premature and uneven tire wear',
            'Ensures vehicle tracks straight without pulling',
            'Improves fuel economy through reduced rolling resistance',
            'Enhances vehicle safety and handling'
          ],
          risks: [
            'Rapid tire wear requiring premature replacement',
            'Vehicle pulling to one side creating safety hazards',
            'Reduced fuel economy from misalignment drag',
            'Poor handling and reduced driver control'
          ],
          recommendations: {
            'Standard Service': 'Every 12,000 miles or annually',
            'After Impact': 'Check alignment after hitting potholes or curbs',
            'New Tires': 'Always check alignment with new tire installation'
          },
          bottomLine: 'Proper alignment saves money on tires and fuel while ensuring your vehicle handles safely.'
        },
        'battery-maintenance': {
          title: 'Battery Maintenance',
          subtitle: 'Proper battery maintenance ensures reliable starting and electrical system performance.',
          benefits: [
            'Reliable engine starting in all weather conditions',
            'Optimal performance of electrical systems',
            'Extended battery life and reduced replacement costs',
            'Prevents being stranded with a dead battery'
          ],
          risks: [
            'Battery failure leaving you stranded',
            'Electrical system damage from poor battery condition',
            'Reduced alternator life from working harder',
            'Emergency replacement costs and inconvenience'
          ],
          recommendations: {
            'Testing': 'Test battery annually after 3 years',
            'Cleaning': 'Clean terminals and check connections regularly',
            'Replacement': 'Replace every 4-6 years preventively'
          },
          bottomLine: 'Regular battery maintenance prevents unexpected failures and ensures reliable vehicle operation.'
        },
        'hybrid-battery': {
          title: 'Hybrid Battery Fan Cleaning',
          subtitle: 'Hybrid battery cooling fans require cleaning to prevent overheating and expensive battery failure.',
          benefits: [
            'Prevents hybrid battery overheating',
            'Extends expensive hybrid battery life',
            'Maintains optimal hybrid system efficiency',
            'Prevents costly emergency battery replacement'
          ],
          risks: [
            'Battery overheating from blocked cooling',
            'Premature hybrid battery failure ($3,000-$6,000 replacement)',
            'Reduced hybrid system efficiency and fuel economy',
            'Potential hybrid system shutdown for protection'
          ],
          recommendations: {
            'Regular Cleaning': 'Every 60,000 miles or as needed',
            'Filter Replacement': 'Replace cabin filter affecting battery cooling',
            'Professional Service': 'Have hybrid system inspected regularly'
          },
          bottomLine: 'Clean cooling fans are essential for hybrid battery longevity and preventing expensive failures.'
        },
        'inverter-fluid': {
          title: 'Inverter Fluid (Hybrid)',
          subtitle: 'Hybrid inverter cooling fluid maintains optimal temperature for the high-voltage electrical system.',
          benefits: [
            'Maintains optimal inverter operating temperature',
            'Protects expensive hybrid electrical components',
            'Ensures efficient hybrid system operation',
            'Prevents inverter overheating and failure'
          ],
          risks: [
            'Inverter overheating causing system shutdown',
            'Expensive inverter replacement ($2,000-$4,000)',
            'Reduced hybrid system efficiency',
            'Complete hybrid system failure'
          ],
          recommendations: {
            'Service Interval': 'Every 100,000 miles or as specified',
            'Professional Service': 'Requires specialized hybrid system knowledge',
            'Regular Inspection': 'Check for leaks and proper fluid level'
          },
          bottomLine: 'Proper inverter fluid maintenance protects your hybrid system\'s expensive electrical components.'
        },
        'gearboxes': {
          title: 'Gearboxes',
          subtitle: 'Manual transmissions and differentials require regular fluid changes to maintain smooth operation.',
          benefits: [
            'Smooth shifting and gear engagement',
            'Extended transmission and differential life',
            'Proper lubrication of precision components',
            'Maintained performance and efficiency'
          ],
          risks: [
            'Gear wear and difficult shifting',
            'Bearing failure and expensive repairs',
            'Complete transmission or differential failure',
            'Poor performance and drivability'
          ],
          recommendations: {
            'Manual Transmission': 'Every 30,000-60,000 miles',
            'Differential': 'Every 60,000-100,000 miles',
            'Severe Service': 'More frequent for towing or racing'
          },
          bottomLine: 'Regular gearbox fluid changes ensure smooth operation and prevent expensive mechanical failures.'
        },
        'dashboard': {
          title: 'Dashboard Warning Lights',
          subtitle: 'Dashboard warning lights are your vehicle\'s way of communicating problems that need attention.',
          benefits: [
            'Early warning of developing problems',
            'Prevention of major component failures',
            'Guidance for proper maintenance timing',
            'Protection of your investment through early intervention'
          ],
          risks: [
            'Ignoring warnings leading to major failures',
            'Expensive repairs from delayed action',
            'Safety hazards from ignored warnings',
            'Voided warranties from neglected maintenance'
          ],
          recommendations: {
            'Immediate Attention': 'Red lights require immediate stop and service',
            'Service Soon': 'Yellow lights indicate service needed soon',
            'Regular Inspection': 'Have warning lights diagnosed professionally'
          },
          bottomLine: 'Dashboard lights are your early warning system. Paying attention saves money and prevents breakdowns.'
        }
      };
      
      // Function to hide all service content sections
      function hideAllSections() {
        const allSections = document.querySelectorAll('.service-content-section');
        allSections.forEach(section => {
          section.classList.remove('active');
          section.style.display = 'none';
        });
      }
      
      // Function to show specific section
      function showSection(serviceType) {
        const targetSection = document.querySelector(`[data-service="${serviceType}"].service-content-section`);
        if (targetSection) {
          targetSection.classList.add('active');
          targetSection.style.display = 'block';
          return true;
        }
        return false;
      }
      
      // Handle navigation clicks
      serviceNavItems.forEach(item => {
        item.addEventListener('click', function(e) {
          e.preventDefault();
          
          // Remove active class from all navigation items
          serviceNavItems.forEach(navItem => navItem.classList.remove('active'));
          
          // Add active class to clicked item
          this.classList.add('active');
          
          // Get service type from data attribute
          const serviceType = this.dataset.service;
          console.log('Clicking on service:', serviceType); // Debug log
          
          // Hide all sections first
          hideAllSections();
          
          // Try to show existing section first (static HTML content)
          if (!showSection(serviceType)) {
            console.log('No static content found, creating dynamic content for:', serviceType); // Debug log
            // If no static content exists, create dynamic content
            createServiceContent(serviceType);
          } else {
            console.log('Found and showed static content for:', serviceType); // Debug log
          }
        });
      });
      
      function createServiceContent(serviceType) {
        const content = serviceContent[serviceType];
        if (!content) {
          // Fallback content for services not yet defined
          showPlaceholderContent(serviceType);
          return;
        }
        
        // Remove existing section if it exists
        const existingSection = document.querySelector(`[data-service="${serviceType}"].service-content-section`);
        if (existingSection) {
          existingSection.remove();
        }
        
        // Create new content section
        const newSection = document.createElement('div');
        newSection.className = 'service-content-section active';
        newSection.setAttribute('data-service', serviceType);
        newSection.style.display = 'block';
        
        newSection.innerHTML = `
          <img src="images/1920x1280.jpg" alt="${content.title.toLowerCase().replace(' ', '-')}-service" class="w-100 rounded-4" style="max-height: 458px;">
          <h3 class="mb-0 text-primary-color">${content.title}</h3>
          <p class="mb-4 text-big">${content.subtitle}</p>
          
          <div class="row">
            <div class="col-12 col-md-6">
              <h5 class="mb-3 text-primary-color">Key Benefits</h5>
              <ul class="p-0 m-0 mb-4">
                ${content.benefits.map(benefit => `
                  <li class="list-unstyled mb-2 d-flex align-items-start">
                    <i class="bi bi-check-circle text-primary-color me-3 mt-1"></i>
                    <span>${benefit}</span>
                  </li>
                `).join('')}
              </ul>
            </div>
            <div class="col-12 col-md-6">
              <h5 class="mb-3 text-primary-color">Risks of Skipping</h5>
              <ul class="p-0 m-0 mb-4">
                ${content.risks.map(risk => `
                  <li class="list-unstyled mb-2 d-flex align-items-start">
                    <i class="bi bi-x-circle text-danger me-3 mt-1"></i>
                    <span>${risk}</span>
                  </li>
                `).join('')}
              </ul>
            </div>
          </div>

          <div class="bg-accent-color-2 p-4 rounded-4 mb-4">
            <h5 class="mb-3 text-primary-color">Our Recommendations</h5>
            <div class="row">
              ${Object.entries(content.recommendations).map(([key, value]) => `
                <div class="col-12 col-md-6 mb-3">
                  <h6 class="text-white mb-2">${key.charAt(0).toUpperCase() + key.slice(1).replace(/([A-Z])/g, ' $1')}</h6>
                  <p class="mb-0">${value}</p>
                </div>
              `).join('')}
            </div>
          </div>

          <div class="alert alert-success bg-primary-color border-0 rounded-4 p-4">
            <h6 class="text-white mb-2">
              <i class="bi bi-check-circle me-2"></i>Bottom Line
            </h6>
            <p class="mb-0 text-white">${content.bottomLine}</p>
          </div>
        `;
        
        // Add new section to container
        serviceContainer.appendChild(newSection);
      }
      
      function showPlaceholderContent(serviceType) {
        // Find or create placeholder section
        let placeholderSection = document.querySelector(`[data-service="${serviceType}"].service-content-section`);
        if (!placeholderSection) {
          placeholderSection = document.createElement('div');
          placeholderSection.className = 'service-content-section active';
          placeholderSection.setAttribute('data-service', serviceType);
          placeholderSection.style.display = 'block';
          placeholderSection.innerHTML = `
            <img src="images/1920x1280.jpg" alt="${serviceType}-service" class="w-100 rounded-4" style="max-height: 458px;">
            <h3 class="mb-0 text-primary-color">${serviceType.replace('-', ' ').replace(/\b\w/g, l => l.toUpperCase())}</h3>
            <p class="mb-4">Detailed information for this service will be available soon. Contact us for more details about this service.</p>
            <div class="bg-accent-color-2 p-4 rounded-4">
              <h5 class="mb-3 text-primary-color">Contact Us</h5>
              <p class="mb-0">For specific information about this service, please call us at <strong>+1 (800) 123-4567</strong> or email <strong></strong></p>
            </div>
          `;
          serviceContainer.appendChild(placeholderSection);
        } else {
          placeholderSection.classList.add('active');
          placeholderSection.style.display = 'block';
        }
      }
    });
  </script>
        <!-- End Scripts -->
    </body>
</html>
