File size: 41,704 Bytes
82d9983 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chop Shop Cycle Ltd. | Rare Performance Salvage</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
h1, h2, h3, h4, .nav-item, .btn {
font-family: 'Oswald', sans-serif;
}
.hero-section {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
min-height: 600px;
}
.part-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
#chatbot {
transition: all 0.3s ease;
}
#chatbot-container {
transform: translateY(100%);
transition: all 0.3s ease;
}
#chatbot.active #chatbot-container {
transform: translateY(0);
}
.inventory-tab.active {
background-color: #b91c1c;
color: white;
}
.testimonial-carousel {
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
}
.testimonial-slide {
scroll-snap-align: start;
flex: 0 0 100%;
}
@media (min-width: 768px) {
.testimonial-slide {
flex: 0 0 50%;
}
}
@media (min-width: 1024px) {
.testimonial-slide {
flex: 0 0 33.33%;
}
}
</style>
</head>
<body class="bg-gray-100">
<!-- Navigation Bar -->
<nav class="fixed w-full bg-black text-white z-50 shadow-lg">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="h-12">
</div>
<div class="hidden md:flex space-x-6">
<a href="#" class="nav-item hover:text-red-600">HOME</a>
<a href="#about" class="nav-item hover:text-red-600">ABOUT</a>
<div class="relative group">
<button class="nav-item hover:text-red-600 flex items-center">
INVENTORY <i class="fas fa-chevron-down ml-1 text-xs"></i>
</button>
<div class="absolute hidden group-hover:block bg-black w-48 pt-2">
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Engine</a>
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Transmission</a>
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Electrical</a>
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Interior</a>
<a href="#inventory" class="block px-4 py-2 hover:bg-red-600">Exterior</a>
</div>
</div>
<div class="relative group">
<button class="nav-item hover:text-red-600 flex items-center">
CARS FOR SALE <i class="fas fa-chevron-down ml-1 text-xs"></i>
</button>
<div class="absolute hidden group-hover:block bg-black w-48 pt-2">
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Tesla</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Audi</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">BMW</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Porsche</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Ducati</a>
<a href="#cars" class="block px-4 py-2 hover:bg-red-600">Other Bikes</a>
</div>
</div>
<a href="#services" class="nav-item hover:text-red-600">SERVICES</a>
<a href="#reviews" class="nav-item hover:text-red-600">REVIEWS</a>
<a href="#contact" class="nav-item hover:text-red-600">CONTACT</a>
</div>
<button class="md:hidden focus:outline-none" id="mobile-menu-button">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-black w-full pb-4" id="mobile-menu">
<a href="#" class="block px-4 py-2 hover:bg-gray-800">HOME</a>
<a href="#about" class="block px-4 py-2 hover:bg-gray-800">ABOUT</a>
<div class="px-4 py-2">
<button class="w-full flex justify-between items-center hover:bg-gray-800 py-1 px-2" id="inventory-toggle">
INVENTORY <i class="fas fa-chevron-down"></i>
</button>
<div class="hidden pl-4 mt-1" id="inventory-dropdown">
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Engine</a>
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Transmission</a>
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Electrical</a>
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Interior</a>
<a href="#inventory" class="block py-1 hover:bg-gray-700 pl-2">Exterior</a>
</div>
</div>
<div class="px-4 py-2">
<button class="w-full flex justify-between items-center hover:bg-gray-800 py-1 px-2" id="cars-toggle">
CARS FOR SALE <i class="fas fa-chevron-down"></i>
</button>
<div class="hidden pl-4 mt-1" id="cars-dropdown">
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Tesla</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Audi</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">BMW</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Porsche</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Ducati</a>
<a href="#cars" class="block py-1 hover:bg-gray-700 pl-2">Other Bikes</a>
</div>
</div>
<a href="#services" class="block px-4 py-2 hover:bg-gray-800">SERVICES</a>
<a href="#reviews" class="block px-4 py-2 hover:bg-gray-800">REVIEWS</a>
<a href="#contact" class="block px-4 py-2 hover:bg-gray-800">CONTACT</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section flex items-center justify-center text-center text-white pt-20">
<div class="container mx-auto px-4">
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="mx-auto w-3/4 md:w-1/2 lg:w-1/3 mb-8">
<h1 class="text-4xl md:text-6xl font-bold mb-4">RARE. PERFORMANCE. SALVAGE.</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Premium OEM parts & exotic vehicles — professionally sourced, expertly tested.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#inventory" class="btn bg-red-600 hover:bg-red-700 px-6 py-3 rounded font-bold uppercase tracking-wide">Browse Parts</a>
<a href="#cars" class="btn bg-transparent hover:bg-gray-800 border-2 border-white px-6 py-3 rounded font-bold uppercase tracking-wide">See Cars for Sale</a>
<button id="chatbot-button" class="btn bg-black hover:bg-gray-800 px-6 py-3 rounded font-bold uppercase tracking-wide">Talk to ALEX</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Built for Builders.</h2>
<div class="max-w-4xl mx-auto text-center">
<p class="text-lg md:text-xl leading-relaxed">
Chop Shop Cycle Ltd. specializes in sourcing rare OEM parts and salvaging exotic cars, motorcycles, and performance vehicles.
From hard-to-find powertrains to body kits, our inventory is tested, tagged, and trusted by shops and enthusiasts across Canada and beyond.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mt-12">
<div class="bg-gray-100 p-6 rounded-lg text-center">
<i class="fas fa-search text-5xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Expert Sourcing</h3>
<p>Our network finds parts others can't, from rare Euro imports to discontinued American muscle components.</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg text-center">
<i class="fas fa-check-circle text-5xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Rigorous Testing</h3>
<p>Every part undergoes our 12-point inspection process before being listed in our inventory.</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg text-center">
<i class="fas fa-truck text-5xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Global Shipping</h3>
<p>We ship worldwide with insured logistics partners specializing in automotive components.</p>
</div>
</div>
</div>
</section>
<!-- Inventory Section -->
<section id="inventory" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Parts Inventory</h2>
<div class="flex overflow-x-auto mb-8 scrollbar-hide">
<button class="inventory-tab px-6 py-2 mr-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Engines</button>
<button class="inventory-tab px-6 py-2 mr-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Transmissions</button>
<button class="inventory-tab px-6 py-2 mr-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Body Parts</button>
<button class="inventory-tab px-6 py-2 mr-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Wheels & Tires</button>
<button class="inventory-tab px-6 py-2 rounded-lg font-bold uppercase bg-gray-200 text-gray-800">Electrical</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" id="inventory-container">
<!-- Engines tab content -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Duramax L5P Diesel Engine" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">2021 Duramax L5P Diesel Engine</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Mileage: 42,000 km</span>
<span class="font-bold text-green-600">In Stock</span>
</div>
<div class="mb-3">
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold">Tested & Verified</span>
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold ml-1">Low Hours</span>
</div>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$6,899</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Request Quote</button>
</div>
</div>
</div>
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1596755094514-f87e34085b2c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2048&q=80" alt="BMW B58 Engine" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">BMW B58 3.0L Turbo Engine</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Mileage: 18,500 km</span>
<span class="font-bold text-green-600">In Stock</span>
</div>
<div class="mb-3">
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold">Complete</span>
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold ml-1">No Damage</span>
</div>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$4,599</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Request Quote</button>
</div>
</div>
</div>
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Audi 2.5TFSI Engine" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">Audi 2.5TFSI 5-Cylinder Engine</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">Mileage: 35,200 km</span>
<span class="font-bold text-green-600">In Stock</span>
</div>
<div class="mb-3">
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold">Tested</span>
<span class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold ml-1">Warranty Available</span>
</div>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$5,299</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Request Quote</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-10">
<a href="#" class="btn bg-black hover:bg-gray-800 text-white px-8 py-3 rounded font-bold uppercase tracking-wide inline-block">View Full Inventory</a>
</div>
</div>
</section>
<!-- Cars for Sale Section -->
<section id="cars" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Featured Vehicles</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Tesla Model 3 -->
<div class="part-card bg-gray-100 rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1517649763962-0c623066013b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Tesla Model 3" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">2021 Tesla Model 3 Performance</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">19,800 km</span>
<span class="font-bold text-green-600">Available</span>
</div>
<p class="mb-3">Excellent condition. Fully loaded with FSD capability. Clean title.</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$42,000</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Inquire</button>
</div>
</div>
</div>
<!-- Tesla Model Y -->
<div class="part-card bg-gray-100 rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1607860108855-64acf2078ed9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Tesla Model Y" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">2020 Tesla Model Y AWD</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">26,100 km</span>
<span class="font-bold text-yellow-600">Salvage Title</span>
</div>
<p class="mb-3">Minor rear damage. Battery/mechanical systems fully functional.</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$38,500</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Inquire</button>
</div>
</div>
</div>
<!-- Audi R8 -->
<div class="part-card bg-gray-100 rounded-lg overflow-hidden shadow-md transition-transform duration-300">
<img src="https://images.unsplash.com/photo-1619682817481-e994891cd1f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Audi R8" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">2018 Audi R8 V10 Plus</h3>
<div class="flex justify-between mb-2">
<span class="text-gray-600">12,500 km</span>
<span class="font-bold text-yellow-600">Rebuildable</span>
</div>
<p class="mb-3">Front-end damage. Engine/drivetrain intact. Rare spec with carbon ceramics.</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold">$58,900</span>
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded font-bold">Inquire</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-10">
<a href="#" class="btn bg-black hover:bg-gray-800 text-white px-8 py-3 rounded font-bold uppercase tracking-wide inline-block">View All Vehicles</a>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-gray-900 text-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Our Services</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="text-center p-6 border border-gray-700 rounded-lg">
<i class="fas fa-binoculars text-4xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Rare Part Sourcing</h3>
<p>We'll hunt down parts others can't find, leveraging our network of salvage yards and dismantlers worldwide.</p>
</div>
<div class="text-center p-6 border border-gray-700 rounded-lg">
<i class="fas fa-check-double text-4xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Engine Verification</h3>
<p>Comprehensive compression tests, leak-down analysis, and borescope inspection for critical components.</p>
</div>
<div class="text-center p-6 border border-gray-700 rounded-lg">
<i class="fas fa-truck-fast text-4xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Shipping & Pickup</h3>
<p>On-site pickup in Richmond or arranged shipping with our specialized automotive transport partners.</p>
</div>
<div class="text-center p-6 border border-gray-700 rounded-lg">
<i class="fas fa-clipboard-list text-4xl text-red-600 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Inventory Assistance</h3>
<p>Need something specific? We'll search our network and notify you when items matching your criteria arrive.</p>
</div>
</div>
</div>
</section>
<!-- Reviews Section -->
<section id="reviews" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">What Our Customers Say</h2>
<div class="testimonial-carousel flex overflow-x-auto gap-6 pb-6 scrollbar-hide">
<!-- Review 1 -->
<div class="testimonial-slide flex-none">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex mb-4">
<div class="flex items-center text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="mb-4 italic">"Found the impossible-to-get M3 CS steering rack I needed for my track build. Arrived quicker than expected and in perfect condition."</p>
<div class="flex items-center">
<div class="bg-gray-200 rounded-full h-10 w-10 flex items-center justify-center mr-3">
<i class="fas fa-user text-gray-600"></i>
</div>
<div>
<p class="font-bold">Mike T.</p>
<p class="text-sm text-gray-600">2019 BMW M2 Competition</p>
</div>
</div>
</div>
</div>
<!-- Review 2 -->
<div class="testimonial-slide flex-none">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex mb-4">
<div class="flex items-center text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="mb-4 italic">"Saved my RS5 rebuild after the dealer quoted $22k for a new transmission. Their used unit had lower miles than my original!"</p>
<div class="flex items-center">
<div class="bg-gray-200 rounded-full h-10 w-10 flex items-center justify-center mr-3">
<i class="fas fa-user text-gray-600"></i>
</div>
<div>
<p class="font-bold">Sarah K.</p>
<p class="text-sm text-gray-600">2018 Audi RS5</p>
</div>
</div>
</div>
</div>
<!-- Review 3 -->
<div class="testimonial-slide flex-none">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex mb-4">
<div class="flex items-center text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<p class="mb-4 italic">"Honest assessment of a wrecked GT3's condition helped me decide it was the perfect donor for my kit car project."</p>
<div class="flex items-center">
<div class="bg-gray-200 rounded-full h-10 w-10 flex items-center justify-center mr-3">
<i class="fas fa-user text-gray-600"></i>
</div>
<div>
<p class="font-bold">James R.</p>
<p class="text-sm text-gray-600">2016 Porsche 911 GT3</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Contact Us</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<div class="mb-8">
<h3 class="text-xl font-bold mb-4">Location & Hours</h3>
<div class="space-y-2">
<p><i class="fas fa-map-marker-alt text-red-600 mr-2"></i> 12820 Trites Rd, Richmond, BC V7E 3R8, Canada</p>
<p><i class="fas fa-clock text-red-600 mr-2"></i> Monday - Friday: 8:30AM - 5:30PM</p>
<p><i class="fas fa-clock text-red-600 mr-2"></i> Saturday: 9:00AM - 3:00PM</p>
<p><i class="fas fa-phone-alt text-red-600 mr-2"></i> 778-859-0000</p>
<p><i class="fas fa-envelope text-red-600 mr-2"></i> [email protected]</p>
</div>
</div>
<div class="h-64 w-full bg-gray-200 rounded-lg overflow-hidden">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2609.0282469525835!2d-123.10475612341022!3d49.14918807517772!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x5485d9d358d76255%3A0x8ee1bdf5b6b71b94!2s12820%20Trites%20Rd%2C%20Richmond%2C%20BC%20V7E%203R8%2C%20Canada!5e0!3m2!1sen!2sus!4v1689012433699!5m2!1sen!2sus" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
<div>
<form class="space-y-4">
<div>
<label for="name" class="block font-medium mb-1">Name</label>
<input type="text" id="name" class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<div>
<label for="email" class="block font-medium mb-1">Email</label>
<input type="email" id="email" class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<div>
<label for="phone" class="block font-medium mb-1">Phone</label>
<input type="tel" id="phone" class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<div>
<label for="message" class="block font-medium mb-1">Message</label>
<textarea id="message" rows="5" class="w-full p-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-red-600"></textarea>
</div>
<button type="submit" class="btn bg-red-600 hover:bg-red-700 text-white px-6 py-3 rounded font-bold uppercase tracking-wide w-full">Send Inquiry</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="h-16 mb-4">
<p class="text-gray-400">Premium salvage parts and exotic vehicles for enthusiasts and professionals.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#inventory" class="text-gray-400 hover:text-white">Parts Inventory</a></li>
<li><a href="#cars" class="text-gray-400 hover:text-white">Cars for Sale</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#services" class="text-gray-400 hover:text-white">Part Sourcing</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Vehicle Testing</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Shipping</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Inventory Assistance</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Connect With Us</h3>
<div class="flex space-x-4 mb-4">
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-youtube"></i></a>
</div>
<p class="text-gray-400">Subscribe to our newsletter for exclusive deals</p>
<div class="mt-2 flex">
<input type="email" placeholder="Your email" class="p-2 rounded-l text-black w-full">
<button class="bg-red-600 hover:bg-red-700 px-4 rounded-r"><i class="fas fa-arrow-right"></i></button>
</div>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center text-gray-400">
<p>© 2025 Chop Shop Cycle Ltd. All rights reserved.</p>
</div>
</div>
</footer>
<!-- ALEX Chatbot -->
<div id="chatbot" class="fixed bottom-6 right-6 z-50">
<div id="chatbot-container" class="hidden md:block bg-white rounded-t-lg shadow-xl w-80 h-96 flex flex-col">
<div class="bg-red-600 text-white p-3 rounded-t-lg flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-robot mr-2"></i>
<span>ALEX - Parts Assistant</span>
</div>
<button id="close-chatbot"><i class="fas fa-times"></i></button>
</div>
<div class="flex-1 p-4 overflow-y-auto bg-gray-50" id="chat-messages">
<div class="chat-message incoming mb-4">
<div class="bg-gray-200 rounded-lg p-3 max-w-xs">
<p>Hi! I'm ALEX, your parts assistant. How can I help you today? Try asking about specific parts or vehicles.</p>
</div>
</div>
</div>
<div class="p-3 border-t">
<div class="flex">
<input type="text" id="chat-input" placeholder="Type your message..." class="flex-1 p-2 border rounded-l focus:outline-none">
<button id="send-chat" class="bg-red-600 hover:bg-red-700 text-white px-4 rounded-r"><i class="fas fa-paper-plane"></i></button>
</div>
</div>
</div>
<button id="chatbot-button" class="bg-red-600 hover:bg-red-700 text-white rounded-full w-14 h-14 flex items-center justify-center shadow-lg">
<i class="fas fa-robot text-2xl"></i>
</button>
</div>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Mobile dropdown toggles
document.getElementById('inventory-toggle').addEventListener('click', function() {
document.getElementById('inventory-dropdown').classList.toggle('hidden');
});
document.getElementById('cars-toggle').addEventListener('click', function() {
document.getElementById('cars-dropdown').classList.toggle('hidden');
});
// Inventory tabs
const tabs = document.querySelectorAll('.inventory-tab');
tabs[0].classList.add('active', 'bg-red-600', 'text-white');
tabs.forEach(tab => {
tab.addEventListener('click', function() {
tabs.forEach(t => t.classList.remove('active', 'bg-red-600', 'text-white'));
this.classList.add('active', 'bg-red-600', 'text-white');
});
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Chatbot functionality
const chatbot = document.getElementById('chatbot');
const chatbotContainer = document.getElementById('chatbot-container');
const chatMessages = document.getElementById('chat-messages');
const chatInput = document.getElementById('chat-input');
const sendChat = document.getElementById('send-chat');
const chatbotButtons = document.querySelectorAll('#chatbot-button');
const closeChatbot = document.getElementById('close-chatbot');
chatbotButtons.forEach(button => {
button.addEventListener('click', function() {
chatbot.classList.toggle('active');
chatMessages.innerHTML = `
<div class="chat-message incoming mb-4">
<div class="bg-gray-200 rounded-lg p-3 max-w-xs">
<p>Hi! I'm ALEX, your parts assistant. How can I help you today? Try asking about specific parts or vehicles.</p>
</div>
</div>
`;
if (chatbot.classList.contains('active')) {
chatbotContainer.classList.remove('hidden');
} else {
chatbotContainer.classList.add('hidden');
}
});
});
closeChatbot.addEventListener('click', function() {
chatbot.classList.remove('active');
chatbotContainer.classList.add('hidden');
});
function addMessage(message, isOutgoing) {
const messageDiv = document.createElement('div');
messageDiv.className = `chat-message ${isOutgoing ? 'outgoing' : 'incoming'} mb-4`;
const bubble = document.createElement('div');
bubble.className = isOutgoing ?
'bg-red-600 text-white rounded-lg p-3 max-w-xs ml-auto' :
'bg-gray-200 rounded-lg p-3 max-w-xs';
bubble.innerHTML = `<p>${message}</p>`;
messageDiv.appendChild(bubble);
chatMessages.appendChild(messageDiv);
chatMessages.scrollTop = chatMessages.scrollHeight;
}
sendChat.addEventListener('click', function() {
sendMessage();
});
chatInput.addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
sendMessage();
}
});
function sendMessage() {
const message = chatInput.value.trim();
if (message) {
addMessage(message, true);
chatInput.value = '';
// Simulate response
setTimeout(() => {
if (message.toLowerCase().includes('duramax')) {
addMessage("Yes! We have 3 options in stock, tested and ready. Want me to forward the details to our front counter?", false);
} else {
addMessage("I can help with that. Would you like me to check our current inventory for that specific part or vehicle?", false);
}
}, 1000);
}
}
// Testimonial carousel navigation (simplified)
let currentTestimonialIndex = 0;
const testimonials = document.querySelectorAll('.testimonial-slide');
function showTestimonial(index) {
const carousel = document.querySelector('.testimonial-carousel');
carousel.scrollTo({
left: testimonials[index].offsetLeft,
behavior: 'smooth'
});
}
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=nextgensolutions8/chopshopcycle-sample-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |