File size: 67,676 Bytes
a3c685f |
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 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oven Support Limited - Professional Oven Cleaning Services</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(56, 182, 255, 0.8) 100%);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.02);
}
.booking-form {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.8s ease forwards;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-fire text-blue-600 text-2xl"></i>
<span class="text-xl font-bold text-blue-800">Oven Support Ltd</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#services" class="text-gray-700 hover:text-blue-600 transition">Services</a>
<a href="#pricing" class="text-gray-700 hover:text-blue-600 transition">Pricing</a>
<a href="#about" class="text-gray-700 hover:text-blue-600 transition">About Us</a>
<a href="#testimonials" class="text-gray-700 hover:text-blue-600 transition">Testimonials</a>
<a href="#contact" class="text-gray-700 hover:text-blue-600 transition">Contact</a>
</div>
<button class="md:hidden text-gray-700" id="mobile-menu-button">
<i class="fas fa-bars text-2xl"></i>
</button>
<div class="hidden md:block">
<a href="#booking" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition">Book Now</a>
</div>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-white w-full py-4 px-4 shadow-lg" id="mobile-menu">
<div class="flex flex-col space-y-4">
<a href="#services" class="text-gray-700 hover:text-blue-600 transition">Services</a>
<a href="#pricing" class="text-gray-700 hover:text-blue-600 transition">Pricing</a>
<a href="#about" class="text-gray-700 hover:text-blue-600 transition">About Us</a>
<a href="#testimonials" class="text-gray-700 hover:text-blue-600 transition">Testimonials</a>
<a href="#contact" class="text-gray-700 hover:text-blue-600 transition">Contact</a>
<a href="#booking" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition text-center">Book Now</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient text-white py-20 md:py-32">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Professional Oven Cleaning Services</h1>
<p class="text-xl mb-8">Transform your dirty oven into a sparkling clean appliance with our expert cleaning services. Serving homes across the UK with care and professionalism.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#booking" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-semibold text-center transition">Book Your Clean Today</a>
<a href="#services" class="border-2 border-white text-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-lg font-semibold text-center transition">Our Services</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center fade-in">
<div class="relative w-full max-w-md">
<div class="bg-white rounded-xl shadow-2xl overflow-hidden">
<div class="relative">
<img src="https://images.unsplash.com/photo-1589984662646-e7b2e4962f18?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Clean oven" class="w-full h-64 object-cover">
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
<p class="text-white font-medium">Before & After Our Service</p>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<div>
<p class="text-gray-500">Starting from</p>
<p class="text-3xl font-bold text-blue-600">£45</p>
</div>
<div class="bg-blue-100 text-blue-600 px-3 py-1 rounded-full text-sm font-medium">
<i class="fas fa-star mr-1"></i> 4.9/5
</div>
</div>
<div class="flex items-center space-x-2 text-gray-600">
<i class="fas fa-clock"></i>
<p>60-90 minute service</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trust Indicators -->
<section class="bg-gray-100 py-8">
<div class="container mx-auto px-4">
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<div class="flex items-center space-x-2">
<i class="fas fa-shield-alt text-blue-600 text-2xl"></i>
<span class="font-medium">Fully Insured</span>
</div>
<div class="flex items-center space-x-2">
<i class="fas fa-check-circle text-blue-600 text-2xl"></i>
<span class="font-medium">DBS Checked</span>
</div>
<div class="flex items-center space-x-2">
<i class="fas fa-leaf text-blue-600 text-2xl"></i>
<span class="font-medium">Eco-Friendly</span>
</div>
<div class="flex items-center space-x-2">
<i class="fas fa-thumbs-up text-blue-600 text-2xl"></i>
<span class="font-medium">Satisfaction Guaranteed</span>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Professional Cleaning Services</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">We specialize in deep cleaning all types of domestic ovens and kitchen appliances to restore them to like-new condition.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card 1 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 fade-in">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1556910638-9a8ccf01f9e6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Oven cleaning" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-fire text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Standard Oven Cleaning</h3>
</div>
<p class="text-gray-600 mb-4">Our comprehensive cleaning service for single, double, and range ovens. Includes interior, exterior, racks, and door glass.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Complete degreasing</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Rack and tray cleaning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Door glass polishing</span>
</li>
</ul>
<a href="#booking" class="text-blue-600 font-semibold hover:text-blue-700 transition flex items-center">
Book this service <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 2 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 fade-in">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1606813907291-d86efa9b94db?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1472&q=80" alt="Hob cleaning" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-burn text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Hob & Extractor Cleaning</h3>
</div>
<p class="text-gray-600 mb-4">Specialist cleaning for all hob types (gas, electric, induction) and extractor hoods to remove built-up grease and grime.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Hob surface deep clean</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Burner/induction plate cleaning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Extractor filter degreasing</span>
</li>
</ul>
<a href="#booking" class="text-blue-600 font-semibold hover:text-blue-700 transition flex items-center">
Book this service <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 3 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 fade-in">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1587731558028-9a6a279a32df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Kitchen cleaning" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-home text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Complete Kitchen Package</h3>
</div>
<p class="text-gray-600 mb-4">Our premium service that includes oven, hob, extractor, microwave, and fridge cleaning for a sparkling clean kitchen.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Oven deep clean</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Hob and extractor clean</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Microwave and fridge clean</span>
</li>
</ul>
<a href="#booking" class="text-blue-600 font-semibold hover:text-blue-700 transition flex items-center">
Book this service <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Simple 4-Step Process</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Professional oven cleaning made easy with our streamlined service approach.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Step 1 -->
<div class="bg-white p-6 rounded-xl shadow-sm text-center fade-in">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 text-2xl font-bold">1</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Book Your Appointment</h3>
<p class="text-gray-600">Schedule online or by phone at a time that suits you. We offer flexible weekday and weekend slots.</p>
</div>
<!-- Step 2 -->
<div class="bg-white p-6 rounded-xl shadow-sm text-center fade-in">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 text-2xl font-bold">2</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Technician Arrival</h3>
<p class="text-gray-600">Our uniformed professional arrives on time with all equipment needed for a thorough clean.</p>
</div>
<!-- Step 3 -->
<div class="bg-white p-6 rounded-xl shadow-sm text-center fade-in">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 text-2xl font-bold">3</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Deep Cleaning Process</h3>
<p class="text-gray-600">We dismantle, clean, and sanitize all components using professional-grade products.</p>
</div>
<!-- Step 4 -->
<div class="bg-white p-6 rounded-xl shadow-sm text-center fade-in">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 text-2xl font-bold">4</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Final Inspection</h3>
<p class="text-gray-600">We review the results with you and provide maintenance tips before leaving your home spotless.</p>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Transparent Pricing</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">No hidden fees - just professional oven cleaning at fair prices.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Package -->
<div class="bg-white border border-gray-200 rounded-xl shadow-sm overflow-hidden fade-in">
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold text-gray-800 mb-2">Basic Clean</h3>
<p class="text-gray-600 mb-4">Perfect for standard single ovens</p>
<div class="flex items-end mb-4">
<span class="text-4xl font-bold text-blue-600">£45</span>
<span class="text-gray-500 ml-1">+ VAT</span>
</div>
<a href="#booking" class="block w-full bg-blue-600 hover:bg-blue-700 text-white text-center py-2 rounded-lg transition">Book Now</a>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Single oven interior & exterior</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Rack and tray cleaning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Door glass polishing</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>60-90 minute service</span>
</li>
</ul>
</div>
</div>
<!-- Popular Package -->
<div class="bg-white border-2 border-blue-500 rounded-xl shadow-lg overflow-hidden transform scale-105 fade-in">
<div class="bg-blue-500 text-white p-2 text-center text-sm font-semibold">
MOST POPULAR
</div>
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold text-gray-800 mb-2">Standard Package</h3>
<p class="text-gray-600 mb-4">Oven + hob cleaning combo</p>
<div class="flex items-end mb-4">
<span class="text-4xl font-bold text-blue-600">£75</span>
<span class="text-gray-500 ml-1">+ VAT</span>
</div>
<a href="#booking" class="block w-full bg-blue-600 hover:bg-blue-700 text-white text-center py-2 rounded-lg transition">Book Now</a>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Everything in Basic Clean</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Hob deep cleaning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Burner/induction plate cleaning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>90-120 minute service</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>15% savings vs separate</span>
</li>
</ul>
</div>
</div>
<!-- Premium Package -->
<div class="bg-white border border-gray-200 rounded-xl shadow-sm overflow-hidden fade-in">
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold text-gray-800 mb-2">Premium Package</h3>
<p class="text-gray-600 mb-4">Complete kitchen appliance clean</p>
<div class="flex items-end mb-4">
<span class="text-4xl font-bold text-blue-600">£120</span>
<span class="text-gray-500 ml-1">+ VAT</span>
</div>
<a href="#booking" class="block w-full bg-blue-600 hover:bg-blue-700 text-white text-center py-2 rounded-lg transition">Book Now</a>
</div>
<div class="p-6">
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Everything in Standard Package</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Extractor hood cleaning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Microwave deep clean</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Fridge interior clean</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>2-3 hour service</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>25% savings vs separate</span>
</li>
</ul>
</div>
</div>
</div>
<div class="mt-12 bg-blue-50 rounded-xl p-6 max-w-4xl mx-auto fade-in">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-4 md:mb-0 flex justify-center">
<div class="bg-blue-100 p-4 rounded-full">
<i class="fas fa-calendar-alt text-blue-600 text-3xl"></i>
</div>
</div>
<div class="md:w-2/3 text-center md:text-left">
<h3 class="text-xl font-bold text-gray-800 mb-2">Maintenance Plans</h3>
<p class="text-gray-600 mb-4">Save with our regular cleaning packages to keep your oven in top condition year-round.</p>
<div class="flex flex-wrap justify-center md:justify-start gap-4">
<div class="bg-white px-4 py-2 rounded-lg shadow-sm">
<p class="font-semibold">Quarterly</p>
<p class="text-blue-600">10% discount</p>
</div>
<div class="bg-white px-4 py-2 rounded-lg shadow-sm">
<p class="font-semibold">Bi-annual</p>
<p class="text-blue-600">15% discount</p>
</div>
<div class="bg-white px-4 py-2 rounded-lg shadow-sm">
<p class="font-semibold">Annual</p>
<p class="text-blue-600">20% discount</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">About Oven Support Limited</h2>
<p class="text-gray-600 mb-4">Founded in 2023, Oven Support Limited is a professional oven cleaning service dedicated to restoring domestic ovens to their original condition using safe, effective cleaning methods.</p>
<p class="text-gray-600 mb-6">Our team of trained technicians follows strict health and safety protocols while delivering exceptional results that exceed customer expectations.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4 mt-1">
<i class="fas fa-shield-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Fully Insured & Certified</h4>
<p class="text-gray-600">£5 million public liability insurance and all technicians DBS checked for your peace of mind.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4 mt-1">
<i class="fas fa-leaf text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Eco-Friendly Approach</h4>
<p class="text-gray-600">We use environmentally friendly cleaning products that are tough on grease but gentle on the planet.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4 mt-1">
<i class="fas fa-home text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Local Business</h4>
<p class="text-gray-600">We're proud to serve our local community with reliable, high-quality service you can trust.</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 fade-in">
<div class="relative">
<img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Clean kitchen" class="w-full rounded-xl shadow-lg">
<div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-xl shadow-lg w-3/4">
<div class="flex items-center mb-2">
<div class="bg-blue-100 p-2 rounded-full mr-3">
<i class="fas fa-award text-blue-600"></i>
</div>
<h4 class="font-bold text-gray-800">Our Commitment</h4>
</div>
<p class="text-gray-600">We guarantee your complete satisfaction with our work. If you're not happy, we'll return to make it right at no additional cost.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">What Our Customers Say</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Don't just take our word for it - hear from homeowners who've experienced our service.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md border border-gray-100 fade-in">
<div class="flex items-center mb-4">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">Sarah J.</h4>
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
</div>
<p class="text-gray-600 mb-4">"I couldn't believe the transformation of my oven! The technician was professional, punctual, and left my kitchen spotless. My oven looks and works like new again."</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-2"></i>
<span>London</span>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md border border-gray-100 fade-in">
<div class="flex items-center mb-4">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">Michael T.</h4>
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
</div>
<p class="text-gray-600 mb-4">"After years of neglecting my oven, I was embarrassed by its condition. Oven Support did an amazing job - they even cleaned areas I didn't know existed! Highly recommended."</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-2"></i>
<span>Manchester</span>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md border border-gray-100 fade-in">
<div class="flex items-center mb-4">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emma R." class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-gray-800">Emma R.</h4>
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
</div>
<p class="text-gray-600 mb-4">"As a landlord, I use Oven Support for all my end-of-tenancy cleans. They're reliable, thorough, and provide excellent documentation - making property handovers much smoother."</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-map-marker-alt mr-2"></i>
<span>Birmingham</span>
</div>
</div>
</div>
<div class="mt-12 text-center fade-in">
<a href="#" class="inline-flex items-center text-blue-600 font-semibold hover:text-blue-700 transition">
Read more reviews on Google <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Booking Section -->
<section id="booking" class="py-16 bg-gray-900 text-white">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row">
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:pr-10 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Book Your Oven Clean?</h2>
<p class="text-xl text-gray-300 mb-8">Schedule your professional oven cleaning service today and enjoy a sparkling clean appliance without the hassle.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-600 p-3 rounded-full mr-4 mt-1">
<i class="fas fa-calendar-check text-white"></i>
</div>
<div>
<h4 class="font-bold text-xl mb-2">Easy Online Booking</h4>
<p class="text-gray-300">Select your preferred date and time through our simple booking system.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-600 p-3 rounded-full mr-4 mt-1">
<i class="fas fa-clock text-white"></i>
</div>
<div>
<h4 class="font-bold text-xl mb-2">Flexible Scheduling</h4>
<p class="text-gray-300">We offer weekday, evening, and weekend appointments to fit your schedule.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-600 p-3 rounded-full mr-4 mt-1">
<i class="fas fa-pound-sign text-white"></i>
</div>
<div>
<h4 class="font-bold text-xl mb-2">Transparent Pricing</h4>
<p class="text-gray-300">No hidden fees - you'll know the exact cost before booking.</p>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2 fade-in">
<div class="booking-form rounded-xl shadow-2xl p-8 bg-gray-800">
<h3 class="text-2xl font-bold mb-6">Book Your Service</h3>
<form id="bookingForm" class="space-y-4">
<div>
<label for="name" class="block text-gray-300 mb-2">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required>
</div>
<div>
<label for="email" class="block text-gray-300 mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required>
</div>
<div>
<label for="phone" class="block text-gray-300 mb-2">Phone Number</label>
<input type="tel" id="phone" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required>
</div>
<div>
<label for="service" class="block text-gray-300 mb-2">Service Required</label>
<select id="service" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required>
<option value="">Select a service</option>
<option value="basic">Basic Oven Clean (£45)</option>
<option value="standard">Standard Package - Oven + Hob (£75)</option>
<option value="premium">Premium Package - Complete Kitchen (£120)</option>
<option value="other">Other (please specify)</option>
</select>
</div>
<div id="otherServiceContainer" class="hidden">
<label for="otherService" class="block text-gray-300 mb-2">Please specify</label>
<input type="text" id="otherService" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-blue-500 text-white">
</div>
<div>
<label for="date" class="block text-gray-300 mb-2">Preferred Date</label>
<input type="date" id="date" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required>
</div>
<div>
<label for="time" class="block text-gray-300 mb-2">Preferred Time</label>
<select id="time" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-blue-500 text-white" required>
<option value="">Select a time slot</option>
<option value="morning">Morning (9am-12pm)</option>
<option value="afternoon">Afternoon (12pm-4pm)</option>
<option value="evening">Evening (4pm-7pm)</option>
</select>
</div>
<div>
<label for="message" class="block text-gray-300 mb-2">Additional Notes</label>
<textarea id="message" rows="3" class="w-full px-4 py-3 rounded-lg bg-gray-700 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-blue-500 text-white"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300">
Confirm Booking
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Answers to common questions about our oven cleaning services.</p>
</div>
<div class="max-w-3xl mx-auto space-y-6">
<!-- FAQ Item 1 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden fade-in">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-semibold text-gray-800">How long does an oven clean take?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-600">The duration depends on the service you select and the condition of your oven. Typically, a standard oven clean takes 60-90 minutes, while a complete kitchen package may take 2-3 hours. Our technicians work efficiently while ensuring thorough results.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden fade-in">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-semibold text-gray-800">Are your cleaning products safe for my family?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-600">Absolutely. We use professional-grade, eco-friendly cleaning products that are tough on grease but safe for your family and pets. All products are non-toxic and biodegradable. We also provide guidance on when you can safely use your oven after cleaning.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden fade-in">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-semibold text-gray-800">Do I need to prepare my oven before your arrival?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-600">For best results, we recommend removing any large food debris from your oven before our visit. However, there's no need for extensive preparation - our technicians will handle everything else. Just ensure the oven is cool and switched off when we arrive.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden fade-in">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-semibold text-gray-800">What areas do you cover?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-600">We currently serve most areas within a 25-mile radius of our base location. During the booking process, you can enter your postcode to confirm availability. We're expanding our service areas regularly, so please check back if we don't currently cover your location.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="bg-white rounded-xl shadow-sm overflow-hidden fade-in">
<button class="faq-toggle w-full flex justify-between items-center p-6 text-left">
<h3 class="text-lg font-semibold text-gray-800">What payment methods do you accept?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-content px-6 pb-6 hidden">
<p class="text-gray-600">We accept all major credit/debit cards, bank transfers, and cash payments. Payment is due upon completion of the service unless you've arranged a corporate account. For subscription plans, we offer convenient direct debit options.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row">
<div class="lg:w-1/2 mb-10 lg:mb-0 lg:pr-10 fade-in">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Get In Touch</h2>
<p class="text-xl text-gray-600 mb-8">Have questions or need assistance? Our friendly team is here to help.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Call Us</h4>
<a href="tel:+441234567890" class="text-blue-600 hover:text-blue-700 transition">+44 1234 567890</a>
<p class="text-sm text-gray-500">Mon-Fri: 8am-6pm | Sat: 9am-4pm</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Email Us</h4>
<a href="mailto:[email protected]" class="text-blue-600 hover:text-blue-700 transition">[email protected]</a>
<p class="text-sm text-gray-500">We typically respond within 2 hours</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800 mb-1">Our Office</h4>
<p class="text-gray-600">123 Clean Street<br>London, UK<br>AB1 2CD</p>
<p class="text-sm text-gray-500 mt-1">By appointment only</p>
</div>
</div>
</div>
<div class="mt-10">
<h4 class="font-bold text-gray-800 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="bg-blue-100 text-blue-600 hover:bg-blue-200 w-10 h-10 rounded-full flex items-center justify-center transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="bg-blue-100 text-blue-600 hover:bg-blue-200 w-10 h-10 rounded-full flex items-center justify-center transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="bg-blue-100 text-blue-600 hover:bg-blue-200 w-10 h-10 rounded-full flex items-center justify-center transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-blue-100 text-blue-600 hover:bg-blue-200 w-10 h-10 rounded-full flex items-center justify-center transition">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
<div class="lg:w-1/2 fade-in">
<div class="bg-gray-50 rounded-xl p-8 h-full">
<h3 class="text-2xl font-bold text-gray-800 mb-6">Send Us a Message</h3>
<form id="contactForm" class="space-y-4">
<div>
<label for="contactName" class="block text-gray-700 mb-2">Your Name</label>
<input type="text" id="contactName" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500" required>
</div>
<div>
<label for="contactEmail" class="block text-gray-700 mb-2">Email Address</label>
<input type="email" id="contactEmail" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500" required>
</div>
<div>
<label for="contactPhone" class="block text-gray-700 mb-2">Phone Number</label>
<input type="tel" id="contactPhone" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div>
<label for="contactSubject" class="block text-gray-700 mb-2">Subject</label>
<select id="contactSubject" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
<option value="general">General Inquiry</option>
<option value="booking">Booking Question</option>
<option value="service">Service Question</option>
<option value="feedback">Feedback</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label for="contactMessage" class="block text-gray-700 mb-2">Your Message</label>
<textarea id="contactMessage" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-10">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-fire text-blue-400 text-2xl"></i>
<span class="text-xl font-bold">Oven Support Ltd</span>
</div>
<p class="text-gray-400 mb-4">Professional oven cleaning services for homes across the UK. Transforming dirty ovens into sparkling clean appliances since 2023.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#services" class="text-gray-400 hover:text-white transition">Our Services</a></li>
<li><a href="#pricing" class="text-gray-400 hover:text-white transition">Pricing</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Oven Cleaning</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Hob Cleaning</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Extractor Cleaning</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Complete Kitchen Clean</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Maintenance Plans</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Company Info</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-blue-400 mt-1 mr-2"></i>
<span class="text-gray-400">123 Clean Street, London, UK AB1 2CD</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone text-blue-400 mr-2"></i>
<a href="tel:+441234567890" class="text-gray-400 hover:text-white transition">+44 1234 567890</a>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-blue-400 mr-2"></i>
<a href="mailto:[email protected]" class="text-gray-400 hover:text-white transition">[email protected]</a>
</li>
<li class="flex items-center">
<i class="fas fa-clock text-blue-400 mr-2"></i>
<span class="text-gray-400">Mon-Fri: 8am-6pm | Sat: 9am-4pm</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Oven Support Limited. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition">Cookies</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="backToTop" class="fixed bottom-6 right-6 bg-blue-600 text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center transition-all duration-300 opacity-0 invisible hover:bg-blue-700">
<i class="fas fa-arrow-up"></i>
</button>
<!-- Success Modal -->
<div id="successModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-xl p-8 max-w-md mx-4">
<div class="text-center">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-check text-green-500 text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-gray-800 mb-2">Thank You!</h3>
<p class="text-gray-600 mb-6" id="modalMessage">Your booking request has been submitted successfully. We'll contact you shortly to confirm your appointment.</p>
<button id="closeModal" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded-lg transition">
Close
</button>
</div>
</div>
</div>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// FAQ toggle functionality
const faqToggles = document.querySelectorAll('.faq-toggle');
faqToggles.forEach(toggle => {
toggle.addEventListener('click', () => {
const content = toggle.nextElementSibling;
const icon = toggle.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('rotate-180');
});
});
// Back to top button
const backToTopButton = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('opacity-0', 'invisible');
backToTopButton.classList.add('opacity-100', 'visible');
} else {
backToTopButton.classList.remove('opacity-100', 'visible');
backToTopButton.classList.add('opacity-0', 'invisible');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
// Service selection toggle
const serviceSelect = document.getElementById('service');
const otherServiceContainer = document.getElementById('otherServiceContainer');
serviceSelect.addEventListener('change', () => {
if (serviceSelect.value === 'other') {
otherServiceContainer.classList.remove('hidden');
} else {
otherServiceContainer.classList.add('hidden');
}
});
// Form submission
const bookingForm = document.getElementById('bookingForm');
const contactForm = document.getElementById('contactForm');
const successModal = document.getElementById('successModal');
const modalMessage = document.getElementById('modalMessage');
const closeModal = document.getElementById('closeModal');
bookingForm.addEventListener('submit', (e) => {
e.preventDefault();
modalMessage.textContent = "Your booking request has been submitted successfully. We'll contact you shortly to confirm your appointment.";
successModal.classList.remove('hidden');
bookingForm.reset();
otherServiceContainer.classList.add('hidden');
});
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
modalMessage.textContent = "Thank you for your message! Our team will get back to you as soon as possible.";
successModal.classList.remove('hidden');
contactForm.reset();
});
closeModal.addEventListener('click', () => {
successModal.classList.add('hidden');
});
// Close modal when clicking outside
successModal.addEventListener('click', (e) => {
if (e.target === successModal) {
successModal.classList.add('hidden');
}
});
// Fade-in animation on scroll
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInOnScroll = () => {
fadeElements.forEach(element => {
const elementTop = element.getBoundingClientRect().top;
const windowHeight = window.innerHeight;
if (elementTop < windowHeight - 100) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
// Initialize elements as invisible
fadeElements.forEach(element => {
element.style.opacity = '0';
element.style.transform = 'translateY(20px)';
element.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
});
window.addEventListener('scroll', fadeInOnScroll);
window.addEventListener('load', fadeInOnScroll);
</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=osl-ai/osl" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |