<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AllAboutAuto.us - Vehicle History Reports</title>
    <meta name="description" content="Get comprehensive vehicle history reports (CARFAX and AutoCheck) quickly and affordably.">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@700;800&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
    <link rel="stylesheet" href="css/styles.css">
</head>
<body>
    <!-- Navigation -->
    <nav class="navbar navbar-expand-lg fixed-top">
        <div class="container">
            <a class="navbar-brand" href="#">
                <span class="logo-text">All<span class="text-primary">About</span>Auto</span>
            </a>
            <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
                <span class="navbar-toggler-icon"></span>
            </button>
            <div class="collapse navbar-collapse" id="navbarNav">
                <ul class="navbar-nav ms-auto">
                    <li class="nav-item"><a class="nav-link" href="#home">Home</a></li>
                    <li class="nav-item"><a class="nav-link" href="#how-it-works">How It Works</a></li>
                    <li class="nav-item"><a class="nav-link" href="#features">Features</a></li>
                    <li class="nav-item"><a class="nav-link" href="#faq">FAQ</a></li>
                </ul>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section id="home" class="hero-section">
        <div class="container">
            <div class="row align-items-center">
                <div class="col-lg-6 hero-text">
                    <h1>Uncover Your Vehicle's <span class="text-primary">Complete History</span></h1>
                    <p class="lead">Get comprehensive vehicle history reports before making a purchase decision. Save time and avoid costly surprises.</p>
                    <div class="d-flex crypto-badges">
                        <span class="me-2"><i class="fab fa-bitcoin"></i> Bitcoin</span>
                        <span class="me-2"><i class="fab fa-ethereum"></i> Ethereum</span>
                        <span><i class="fa-solid fa-coins"></i> USDT</span>
                    </div>
                </div>
                <div class="col-lg-6">
                    <div class="card form-card">
                        <div class="card-body">
                            <h3 class="text-center mb-4">Get Your Vehicle Report</h3>
                            <form id="vinForm" action="check_report.php" method="post">
                                <div class="form-group mb-4">
                                    <label for="vin">Enter Vehicle Identification Number (VIN):</label>
                                    <input type="text" class="form-control" id="vin" name="vin" 
                                           placeholder="e.g., WAUDG74F25N111998" required maxlength="17" minlength="17">
                                    <small class="form-text text-muted">17-character code found on your vehicle</small>
                                </div>
                                
                                <div class="form-group mb-4">
                                    <label>Select Report Type:</label>
                                    <div class="report-options">
                                        <div class="report-option">
                                            <input type="radio" id="reportTypeCarfax" name="reportType" value="carfax" checked>
                                            <label for="reportTypeCarfax">
                                                <span class="report-name">CARFAX Report</span>
                                                <span class="report-price">$3</span>
                                            </label>
                                        </div>
                                        <div class="report-option">
                                            <input type="radio" id="reportTypeAutocheck" name="reportType" value="autocheck">
                                            <label for="reportTypeAutocheck">
                                                <span class="report-name">AutoCheck Report</span>
                                                <span class="report-price">$3</span>
                                            </label>
                                        </div>
                                        <div class="report-option recommended">
                                            <input type="radio" id="reportTypeBoth" name="reportType" value="both">
                                            <label for="reportTypeBoth">
                                                <span class="report-name">Both Reports <span class="badge">Best Value</span></span>
                                                <span class="report-price">$5</span>
                                            </label>
                                        </div>
                                    </div>
                                </div>
                                
                                <div class="text-center">
                                    <button type="submit" class="btn btn-primary btn-lg w-100">Check Availability</button>
                                </div>
                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- How It Works Section -->
    <section id="how-it-works" class="section-padding">
        <div class="container">
            <div class="section-header text-center">
                <h2>How It Works</h2>
                <p>Get your vehicle history report in three simple steps</p>
            </div>
            <div class="row">
                <div class="col-md-4">
                    <div class="process-box">
                        <div class="process-step">1</div>
                        <h3>Enter Your VIN</h3>
                        <p>Input your 17-character Vehicle Identification Number</p>
                    </div>
                </div>
                <div class="col-md-4">
                    <div class="process-box">
                        <div class="process-step">2</div>
                        <h3>Select Report Type</h3>
                        <p>Choose CARFAX, AutoCheck, or both for comprehensive coverage</p>
                    </div>
                </div>
                <div class="col-md-4">
                    <div class="process-box">
                        <div class="process-step">3</div>
                        <h3>Pay & Get Report</h3>
                        <p>Quick and secure payment with instant delivery to your email</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section id="features" class="section-padding bg-light">
        <div class="container">
            <div class="section-header text-center">
                <h2>Why Choose Our Reports?</h2>
                <p>Comprehensive vehicle information you can trust</p>
            </div>
            <div class="row">
                <div class="col-lg-3 col-md-6">
                    <div class="feature-box">
                        <div class="feature-icon">
                            <i class="fas fa-car-crash"></i>
                        </div>
                        <h3>Accident History</h3>
                        <p>Detailed accident records and damage reports</p>
                    </div>
                </div>
                <div class="col-lg-3 col-md-6">
                    <div class="feature-box">
                        <div class="feature-icon">
                            <i class="fas fa-tachometer-alt"></i>
                        </div>
                        <h3>Odometer Verification</h3>
                        <p>Confirm actual mileage and detect rollbacks</p>
                    </div>
                </div>
                <div class="col-lg-3 col-md-6">
                    <div class="feature-box">
                        <div class="feature-icon">
                            <i class="fas fa-file-contract"></i>
                        </div>
                        <h3>Title Information</h3>
                        <p>Identify salvage, rebuilt, or flood titles</p>
                    </div>
                </div>
                <div class="col-lg-3 col-md-6">
                    <div class="feature-box">
                        <div class="feature-icon">
                            <i class="fas fa-history"></i>
                        </div>
                        <h3>Ownership History</h3>
                        <p>Previous owners, length of ownership, and usage</p>
                    </div>
                </div>
            </div>
            <div class="row mt-4">
                <div class="col-lg-3 col-md-6">
                    <div class="feature-box">
                        <div class="feature-icon">
                            <i class="fas fa-wrench"></i>
                        </div>
                        <h3>Service Records</h3>
                        <p>Maintenance history and service information</p>
                    </div>
                </div>
                <div class="col-lg-3 col-md-6">
                    <div class="feature-box">
                        <div class="feature-icon">
                            <i class="fas fa-exclamation-triangle"></i>
                        </div>
                        <h3>Recall Information</h3>
                        <p>Open recalls and safety issues</p>
                    </div>
                </div>
                <div class="col-lg-3 col-md-6">
                    <div class="feature-box">
                        <div class="feature-icon">
                            <i class="fas fa-shield-alt"></i>
                        </div>
                        <h3>Lemon & Theft Check</h3>
                        <p>Verify if the vehicle was reported stolen</p>
                    </div>
                </div>
                <div class="col-lg-3 col-md-6">
                    <div class="feature-box">
                        <div class="feature-icon">
                            <i class="fas fa-truck"></i>
                        </div>
                        <h3>Commercial Usage</h3>
                        <p>Check if vehicle was used commercially</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Payment Section -->
    <section id="payment" class="section-padding">
        <div class="container">
            <div class="section-header text-center">
                <h2>Payment Options</h2>
                <p>We accept multiple cryptocurrencies for your convenience</p>
            </div>
            <div class="row justify-content-center">
                <div class="col-lg-8">
                    <div class="payment-options">
                        <div class="payment-option">
                            <div class="payment-icon bitcoin">
                                <i class="fab fa-bitcoin"></i>
                            </div>
                            <h3>Bitcoin</h3>
                            <p>Fast and secure payments with low transaction fees</p>
                        </div>
                        <div class="payment-option">
                            <div class="payment-icon ethereum">
                                <i class="fab fa-ethereum"></i>
                            </div>
                            <h3>Ethereum</h3>
                            <p>Quick confirmation times and reliable transactions</p>
                        </div>
                        <div class="payment-option">
                            <div class="payment-icon usdt">
                                <i class="fa-solid fa-coins"></i>
                            </div>
                            <h3>USDT</h3>
                            <p>Stable coin with price protection against volatility</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- FAQ Section -->
    <section id="faq" class="section-padding bg-light">
        <div class="container">
            <div class="section-header text-center">
                <h2>Frequently Asked Questions</h2>
                <p>Get answers to common questions about our vehicle history reports</p>
            </div>
            <div class="row justify-content-center">
                <div class="col-lg-8">
                    <div class="accordion" id="faqAccordion">
                        <div class="accordion-item">
                            <h2 class="accordion-header">
                                <button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#faq1">
                                    What's the difference between CARFAX and AutoCheck?
                                </button>
                            </h2>
                            <div id="faq1" class="accordion-collapse collapse show" data-bs-parent="#faqAccordion">
                                <div class="accordion-body">
                                    CARFAX and AutoCheck are both reliable vehicle history report providers, but they may have different sources of information. CARFAX often has more detailed maintenance records, while AutoCheck may have better auction and vehicle usage data. Getting both provides the most comprehensive view of a vehicle's history.
                                </div>
                            </div>
                        </div>
                        <div class="accordion-item">
                            <h2 class="accordion-header">
                                <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq2">
                                    How quickly will I receive my report?
                                </button>
                            </h2>
                            <div id="faq2" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
                                <div class="accordion-body">
                                    Reports are delivered instantly to your email after payment confirmation. The whole process typically takes less than 5 minutes from purchase to delivery.
                                </div>
                            </div>
                        </div>
                        <div class="accordion-item">
                            <h2 class="accordion-header">
                                <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq3">
                                    Where can I find my vehicle's VIN?
                                </button>
                            </h2>
                            <div id="faq3" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
                                <div class="accordion-body">
                                    The VIN can be found on the driver's side dashboard (visible through the windshield), driver's side door jamb, vehicle registration document, insurance card, or vehicle title.
                                </div>
                            </div>
                        </div>
                        <div class="accordion-item">
                            <h2 class="accordion-header">
                                <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq4">
                                    Do you offer refunds?
                                </button>
                            </h2>
                            <div id="faq4" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
                                <div class="accordion-body">
                                    Due to the digital nature of our reports, we generally do not offer refunds once a report has been delivered. However, if you experience any issues with your report, please contact our support team and we'll work to resolve the problem.
                                </div>
                            </div>
                        </div>
                        <div class="accordion-item">
                            <h2 class="accordion-header">
                                <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq5">
                                    How do I pay with cryptocurrency?
                                </button>
                            </h2>
                            <div id="faq5" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
                                <div class="accordion-body">
                                    After selecting your report type, you'll be directed to our secure payment page where you can choose your preferred cryptocurrency (Bitcoin, Ethereum, or USDT). You'll receive a wallet address and QR code to complete the payment using your crypto wallet.
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="footer">
        <div class="container">
            <div class="row">
                <div class="col-md-4">
                    <div class="footer-logo">
                        <span class="logo-text">All<span class="text-primary">About</span>Auto</span>
                    </div>
                    <p>Providing reliable vehicle history reports to help you make informed decisions.</p>
                </div>
                <div class="col-md-4">
                    <h5>Quick Links</h5>
                    <ul class="footer-links">
                        <li><a href="#home">Home</a></li>
                        <li><a href="#how-it-works">How It Works</a></li>
                        <li><a href="#features">Features</a></li>
                        <li><a href="#faq">FAQ</a></li>
                    </ul>
                </div>
                <div class="col-md-4">
                    <h5>Contact Us</h5>
                    <p>If you have any questions or need assistance, please don't hesitate to contact us.</p>
                    <p><a href="/cdn-cgi/l/email-protection#fd8e888d8d928f89bd9c91919c9f9288899c888992d3888e"><span class="__cf_email__" data-cfemail="fe8d8b8e8e918c8abe9f92929f9c918b8a9f8b8a91d08b8d">[email&#160;protected]</span></a></p>
                </div>
            </div>
            <div class="footer-bottom">
                <div class="row">
                    <div class="col-md-6">
                        <p>&copy; 2025 AllAboutAuto.us. All rights reserved.</p>
                    </div>
                    <div class="col-md-6 text-md-end">
                        <ul class="footer-bottom-links">
                            <li><a href="#">Privacy Policy</a></li>
                            <li><a href="#">Terms of Service</a></li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </footer>

    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
    <script>
    document.addEventListener('DOMContentLoaded', function() {
        // Smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function(e) {
                e.preventDefault();
                const target = document.querySelector(this.getAttribute('href'));
                if (target) {
                    window.scrollTo({
                        top: target.offsetTop - 70,
                        behavior: 'smooth'
                    });
                }
                
                // Close mobile menu when link is clicked
                const navbarCollapse = document.querySelector('.navbar-collapse');
                if (navbarCollapse.classList.contains('show')) {
                    navbarCollapse.classList.remove('show');
                }
            });
        });

        // VIN Form validation
        document.getElementById('vinForm').addEventListener('submit', function(e) {
            const vin = document.getElementById('vin').value.trim();
            
            // Basic client-side validation
            if (!/^[A-HJ-NPR-Z0-9]{17}$/i.test(vin)) {
                e.preventDefault();
                alert('Please enter a valid 17-character VIN number');
                return false;
            }
            
            // Show loading indicator
            document.querySelector('button[type="submit"]').innerHTML = 
                '<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span> Checking...';
            document.querySelector('button[type="submit"]').disabled = true;
        });

        // Navbar background change on scroll
        window.addEventListener('scroll', function() {
            const navbar = document.querySelector('.navbar');
            if (window.scrollY > 50) {
                navbar.classList.add('navbar-scrolled');
            } else {
                navbar.classList.remove('navbar-scrolled');
            }
        });

        // Initialize active nav item based on scroll position
        function setActiveNavItem() {
            const sections = document.querySelectorAll('section');
            let scrollPosition = window.scrollY + 100;

            sections.forEach(section => {
                const sectionTop = section.offsetTop - 100;
                const sectionHeight = section.offsetHeight;
                const sectionId = section.getAttribute('id');
                
                if (scrollPosition >= sectionTop && scrollPosition < sectionTop + sectionHeight) {
                    document.querySelectorAll('.navbar-nav .nav-link').forEach(link => {
                        link.classList.remove('active');
                        if (link.getAttribute('href') === '#' + sectionId) {
                            link.classList.add('active');
                        }
                    });
                }
            });
        }

        window.addEventListener('scroll', setActiveNavItem);
        setActiveNavItem();
    });
    </script>
</body>
</html>
