-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
851 lines (796 loc) · 48.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<title>A1 Professional Cleaning Services</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<style>
.main-container {
width: 85%;
max-width: 1440px;
margin-left: auto;
margin-right: auto;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
const dateInput = document.getElementById('bookingDate');
const timeInput = document.getElementById('bookingTime');
const dateError = document.getElementById('dateError');
const timeError = document.getElementById('timeError');
const form = document.querySelector('form');
if (dateInput && timeInput) {
// Set minimum date to today
const today = new Date();
const tomorrow = new Date(today);
tomorrow.setDate(tomorrow.getDate() + 1);
const formattedTomorrow = tomorrow.toISOString().split('T')[0];
dateInput.min = formattedTomorrow;
// Example of booked slots (in reality, this would come from your backend)
const bookedSlots = [
{ date: '2025-02-01', time: '10:00' },
{ date: '2025-02-01', time: '14:00' },
];
// Validate date selection
dateInput.addEventListener('change', function() {
const selectedDate = new Date(this.value);
const today = new Date();
if (selectedDate < today) {
dateError.textContent = 'Please select a future date';
dateError.classList.remove('hidden');
this.value = '';
} else {
dateError.classList.add('hidden');
}
});
// Validate time selection
timeInput.addEventListener('change', function() {
const selectedTime = this.value;
const [hours, minutes] = selectedTime.split(':');
// Check if time is within business hours (8 AM - 5 PM)
if (hours < 8 || hours >= 17) {
timeError.textContent = 'Please select a time between 8:00 AM and 5:00 PM';
timeError.classList.remove('hidden');
this.value = '';
return;
}
// Check if slot is already booked
const selectedDate = dateInput.value;
const isBooked = bookedSlots.some(slot =>
slot.date === selectedDate && slot.time === selectedTime
);
if (isBooked) {
timeError.textContent = 'This time slot is already booked. Please select another time.';
timeError.classList.remove('hidden');
this.value = '';
} else {
timeError.classList.add('hidden');
}
});
// Form submission validation
form.addEventListener('submit', function(e) {
const selectedDate = new Date(dateInput.value);
const selectedTime = timeInput.value;
const today = new Date();
let hasError = false;
// Validate date
if (selectedDate < today) {
dateError.textContent = 'Please select a future date';
dateError.classList.remove('hidden');
hasError = true;
}
// Validate time
const [hours, minutes] = selectedTime.split(':');
if (hours < 8 || hours >= 17) {
timeError.textContent = 'Please select a time between 8:00 AM and 5:00 PM';
timeError.classList.remove('hidden');
hasError = true;
}
// Check if slot is booked
const isBooked = bookedSlots.some(slot =>
slot.date === dateInput.value && slot.time === selectedTime
);
if (isBooked) {
timeError.textContent = 'This time slot is already booked. Please select another time.';
timeError.classList.remove('hidden');
hasError = true;
}
if (hasError) {
e.preventDefault();
}
});
}
});
</script>
</head>
<body>
<!-- Main Header Area -->
<header class="bg-white shadow-lg fixed w-full top-0 z-50">
<div class="main-container">
<div class="container mx-auto px-8 py-6">
<div class="flex items-center justify-between">
<div class="logo-area flex items-center space-x-2 ml-4">
<img src="/images/A1 PROFESSIONAL CLEANING-4-1.jpg" alt="A1 Professional Cleaning Logo" class="h-10 w-auto">
<div>
<h1 class="text-3xl font-bold text-teal-600">A1 Professional Cleaning</h1>
<p class="text-gray-600 mt-1 italic">Your Trusted Cleaning Partner</p>
</div>
</div>
<div class="flex items-center space-x-6">
<nav class="main-menu">
<ul class="flex space-x-6">
<li><a href="#home" class="text-gray-700 hover:text-teal-600 relative after:absolute after:bottom-0 after:left-0 after:h-0.5 after:w-0 hover:after:w-full after:bg-teal-600 after:transition-all after:duration-300">Home</a></li>
<li><a href="about.html" class="text-gray-700 hover:text-teal-600 relative after:absolute after:bottom-0 after:left-0 after:h-0.5 after:w-0 hover:after:w-full after:bg-teal-600 after:transition-all after:duration-300">About</a></li>
<li><a href="services.html" class="text-gray-700 hover:text-teal-600 relative after:absolute after:bottom-0 after:left-0 after:h-0.5 after:w-0 hover:after:w-full after:bg-teal-600 after:transition-all after:duration-300">Services</a></li>
<li><a href="#pricing" class="text-gray-700 hover:text-teal-600 relative after:absolute after:bottom-0 after:left-0 after:h-0.5 after:w-0 hover:after:w-full after:bg-teal-600 after:transition-all after:duration-300">Pricing</a></li>
<li><a href="#contact" class="text-gray-700 hover:text-teal-600 relative after:absolute after:bottom-0 after:left-0 after:h-0.5 after:w-0 hover:after:w-full after:bg-teal-600 after:transition-all after:duration-300">Contact</a></li>
</ul>
</nav>
<div class="header-btn">
<a href="#quote" class="quote-btn bg-teal-600 text-white px-6 py-2 rounded-md hover:bg-teal-700 transition-colors">Get Free Quote</a>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="min-h-screen bg-gradient-to-br from-gray-900 to-gray-800 pt-20 flex items-center relative">
<!-- Background Blur Circle -->
<div class="absolute top-0 right-0 w-1/3 h-full bg-blue-500/5 rounded-full blur-3xl transform -translate-x-1/2 translate-y-1/2"></div>
<div class="container mx-auto px-6">
<div class="flex items-center gap-8">
<!-- Left Content -->
<div class="w-1/2 relative z-10">
<h1 class="text-5xl font-bold leading-tight mb-6 text-white">
<span>Professional & Quality</span><br>
<span class="text-[#FFBA08]">Cleaning Service</span>
</h1>
<p class="text-xl text-gray-300 mb-8">We provide top-notch cleaning services for both residential and commercial spaces, ensuring pristine environments that reflect your standards.</p>
<!-- Quality Indicators -->
<div class="flex gap-6 mb-8">
<div class="flex items-center gap-3 bg-white/10 backdrop-blur-sm px-4 py-2 rounded-lg hover:-translate-y-1 transition-transform duration-300">
<i class="fas fa-star text-[#FFBA08] text-xl"></i>
<span class="text-gray-200 text-sm font-medium">Guaranteed Cleanliness</span>
</div>
<div class="flex items-center gap-3 bg-white/10 backdrop-blur-sm px-4 py-2 rounded-lg hover:-translate-y-1 transition-transform duration-300">
<i class="fas fa-heart text-[#FFBA08] text-xl"></i>
<span class="text-gray-200 text-sm font-medium">Customer Satisfaction</span>
</div>
<div class="flex items-center gap-3 bg-white/10 backdrop-blur-sm px-4 py-2 rounded-lg hover:-translate-y-1 transition-transform duration-300">
<i class="fas fa-clock text-[#FFBA08] text-xl"></i>
<span class="text-gray-200 text-sm font-medium">24/7 Service</span>
</div>
</div>
<div class="flex gap-4">
<a href="#services" class="bg-[#FFBA08] hover:bg-[#FFB000] text-gray-900 px-8 py-3 rounded-md transition-colors duration-300 font-semibold">Book Service</a>
<a href="#contact" class="border-2 border-[#FFBA08] text-[#FFBA08] hover:bg-[#FFBA08] hover:text-gray-900 px-8 py-3 rounded-md transition-colors duration-300 font-semibold">Contact Us</a>
</div>
</div>
<!-- Right Image Slider -->
<div class="w-1/2 h-[500px] relative overflow-hidden rounded-lg shadow-2xl">
<div class="slide absolute inset-0 opacity-0 transition-opacity duration-1000">
<img src="images/20240922_134753.jpg" alt="Professional Office Cleaning" class="w-full h-full object-cover">
</div>
<div class="slide absolute inset-0 opacity-0 transition-opacity duration-1000">
<img src="images/20240917_160937.jpg" alt="Quality Cleaning Solutions" class="w-full h-full object-cover">
</div>
<div class="slide absolute inset-0 opacity-0 transition-opacity duration-1000">
<img src="images/20240905_120636.jpg" alt="Professional Cleaning Service" class="w-full h-full object-cover">
</div>
<div class="slide absolute inset-0 opacity-0 transition-opacity duration-1000">
<img src="images/20240830_114532.jpg" alt="Expert Cleaning Team" class="w-full h-full object-cover">
</div>
<!-- Slider Dots -->
<div class="absolute bottom-5 left-1/2 transform -translate-x-1/2 flex gap-3 px-4 py-2 bg-black/40 backdrop-blur rounded-full z-10">
<button class="w-3 h-3 rounded-full bg-[#FFBA08]/50 transition-all duration-300 slider-dot"></button>
<button class="w-3 h-3 rounded-full bg-[#FFBA08]/50 transition-all duration-300 slider-dot"></button>
<button class="w-3 h-3 rounded-full bg-[#FFBA08]/50 transition-all duration-300 slider-dot"></button>
<button class="w-3 h-3 rounded-full bg-[#FFBA08]/50 transition-all duration-300 slider-dot"></button>
</div>
</div>
</div>
</div>
</section>
<script>
document.addEventListener('DOMContentLoaded', function() {
const slides = document.querySelectorAll('.slide');
const dots = document.querySelectorAll('.slider-dot');
let currentSlide = 0;
// Add active classes for initial state
slides[0].classList.add('opacity-100');
dots[0].classList.add('bg-[#FFBA08]', 'scale-125');
function showSlide(index) {
slides.forEach(slide => slide.classList.remove('opacity-100'));
dots.forEach(dot => {
dot.classList.remove('bg-[#FFBA08]', 'scale-125');
dot.classList.add('bg-[#FFBA08]/50');
});
slides[index].classList.add('opacity-100');
dots[index].classList.remove('bg-[#FFBA08]/50');
dots[index].classList.add('bg-[#FFBA08]', 'scale-125');
}
function nextSlide() {
currentSlide = (currentSlide + 1) % slides.length;
showSlide(currentSlide);
}
// Add click events to dots
dots.forEach((dot, index) => {
dot.addEventListener('click', () => {
currentSlide = index;
showSlide(currentSlide);
});
});
// Change slide every 5 seconds
setInterval(nextSlide, 5000);
});
</script>
</script>
<!-- Stats Section -->
<section class="stats-section py-16 bg-white">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Satisfied Customers -->
<div class="stat-item text-center">
<div class="mb-4">
<i class="fas fa-smile text-4xl text-[#FFBA08]"></i>
</div>
<h3 class="text-4xl font-bold text-gray-800 mb-2">
<span class="counter" data-target="100">0</span>%
</h3>
<p class="text-gray-600">Satisfied Customers</p>
</div>
<!-- Projects Completed -->
<div class="stat-item text-center">
<div class="mb-4">
<i class="fas fa-check-circle text-4xl text-[#FFBA08]"></i>
</div>
<h3 class="text-4xl font-bold text-gray-800 mb-2">
<span class="counter" data-target="500">0</span>+
</h3>
<p class="text-gray-600">Projects Completed</p>
</div>
<!-- Team Members -->
<div class="stat-item text-center">
<div class="mb-4">
<i class="fas fa-users text-4xl text-[#FFBA08]"></i>
</div>
<h3 class="text-4xl font-bold text-gray-800 mb-2">
<span class="counter" data-target="25">0</span>+
</h3>
<p class="text-gray-600">Expert Cleaners</p>
</div>
<!-- Years Experience -->
<div class="stat-item text-center">
<div class="mb-4">
<i class="fas fa-award text-4xl text-[#FFBA08]"></i>
</div>
<h3 class="text-4xl font-bold text-gray-800 mb-2">
<span class="counter" data-target="10">0</span>+
</h3>
<p class="text-gray-600">Years Experience</p>
</div>
</div>
</div>
</section>
<script>
// Stats Counter Animation
const counters = document.querySelectorAll('.counter');
const speed = 200;
const startCounters = () => {
counters.forEach(counter => {
const updateCount = () => {
const target = parseInt(counter.getAttribute('data-target'));
const count = parseInt(counter.innerText);
const increment = target / speed;
if (count < target) {
counter.innerText = Math.ceil(count + increment);
setTimeout(updateCount, 1);
} else {
counter.innerText = target;
}
};
updateCount();
});
};
// Intersection Observer to start counter when in view
const statsSection = document.querySelector('.stats-section');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
startCounters();
observer.unobserve(entry.target);
}
});
}, { threshold: 0.5 });
observer.observe(statsSection);
</script>
<!-- About Area -->
<section id="about" class="py-24 relative overflow-hidden">
<!-- Background Decoration -->
<div class="absolute top-0 right-0 w-1/3 h-full bg-[#FFBA08]/5 -skew-x-12"></div>
<div class="main-container">
<div class="flex flex-wrap items-center -mx-4">
<!-- Left Content -->
<div class="w-full lg:w-1/2 px-4 mb-12 lg:mb-0">
<div class="relative">
<!-- Main Image -->
<div class="relative z-10">
<img src="images/Default_depict_a_warm_and_dignified_Black_woman_in_her_mid30s_0.jpg" alt="A1 Professional Cleaning Team at Work"
class="w-full h-[600px] object-cover rounded-2xl shadow-2xl transform hover:scale-[1.02] transition-transform duration-300">
<!-- Image Overlay -->
<div class="absolute inset-0 bg-gradient-to-t from-black/20 to-transparent rounded-2xl"></div>
</div>
<!-- Decorative Elements -->
<div class="absolute -top-4 -left-4 w-24 h-24 bg-[#FFBA08]/10 rounded-full"></div>
<div class="absolute -bottom-4 -right-4 w-32 h-32 bg-[#FFBA08]/20 rounded-full"></div>
<!-- Experience Badge -->
<div class="absolute -bottom-6 -right-6 bg-white rounded-2xl shadow-xl p-4 z-20">
<div class="flex items-center gap-3">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center">
<i class="fas fa-award text-[#FFBA08] text-2xl"></i>
</div>
<div>
<p class="text-sm text-gray-500">Experience</p>
<p class="text-xl font-bold text-gray-900">10+ Years</p>
</div>
</div>
</div>
</div>
</div>
<!-- Right Content -->
<div class="w-full lg:w-1/2 px-4">
<div class="lg:pl-16">
<div class="mb-8">
<span class="text-[#FFBA08] font-semibold text-lg">About Us</span>
<h2 class="text-4xl font-bold text-gray-900 mt-2 mb-6">
Professional Cleaning Services You Can Trust
</h2>
<p class="text-gray-600 leading-relaxed mb-6">
At A1 Professional Cleaning, we understand that a clean environment is essential for your well-being. With over a decade of experience, our team of certified professionals delivers exceptional cleaning services that exceed expectations.
</p>
<p class="text-gray-600 leading-relaxed">
We take pride in our attention to detail and commitment to using eco-friendly products that are safe for your family and the environment.
</p>
</div>
<!-- Features List -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
<div class="flex items-center gap-4">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center flex-shrink-0">
<i class="fas fa-certificate text-[#FFBA08]"></i>
</div>
<div>
<h3 class="font-semibold text-gray-900">Certified Team</h3>
<p class="text-sm text-gray-600">Professional & trained experts</p>
</div>
</div>
<div class="flex items-center gap-4">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center flex-shrink-0">
<i class="fas fa-leaf text-[#FFBA08]"></i>
</div>
<div>
<h3 class="font-semibold text-gray-900">Eco-Friendly</h3>
<p class="text-sm text-gray-600">Safe cleaning products</p>
</div>
</div>
<div class="flex items-center gap-4">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center flex-shrink-0">
<i class="fas fa-check-circle text-[#FFBA08]"></i>
</div>
<div>
<h3 class="font-semibold text-gray-900">Guaranteed</h3>
<p class="text-sm text-gray-600">100% satisfaction assured</p>
</div>
</div>
<div class="flex items-center gap-4">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center flex-shrink-0">
<i class="fas fa-clock text-[#FFBA08]"></i>
</div>
<div>
<h3 class="font-semibold text-gray-900">Flexible Times</h3>
<p class="text-sm text-gray-600">Schedule at your convenience</p>
</div>
</div>
</div>
<!-- CTA Button -->
<a href="#contact"
class="inline-flex items-center gap-2 px-8 py-4 bg-[#FFBA08] text-gray-900 rounded-xl font-semibold hover:bg-[#FFBA08]/90 transition-all duration-300 transform hover:-translate-y-0.5 hover:shadow-lg">
Schedule Cleaning
<i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<section id="services" class="py-24 bg-gray-50">
<div class="main-container">
<div class="text-center max-w-3xl mx-auto mb-16">
<span class="text-[#FFBA08] font-semibold text-lg">Our Services</span>
<h2 class="text-4xl font-bold text-gray-900 mt-2 mb-4">Professional Cleaning Solutions</h2>
<p class="text-gray-600">We offer comprehensive cleaning services tailored to your specific needs.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Residential -->
<div class="bg-[#f8f9ff] rounded-2xl overflow-hidden shadow-lg hover:shadow-xl transition-all duration-300 group">
<!-- Image Container -->
<div class="relative h-72 overflow-hidden">
<img src="images/pexels-matilda-wormwood-4098764.jpg" alt="Residential Cleaning"
class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
<div class="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent"></div>
<div class="absolute bottom-4 left-6 right-6">
<h3 class="text-2xl font-bold text-white mb-2">Residential Cleaning</h3>
<p class="text-gray-200">Keep your home pristine with our thorough residential cleaning services.</p>
</div>
</div>
<!-- Content -->
<div class="p-6">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center flex-shrink-0">
<i class="fas fa-home text-[#FFBA08] text-xl"></i>
</div>
<div class="flex-1">
<p class="text-sm text-gray-500">Professional Service</p>
<p class="text-lg font-semibold text-gray-900">Trusted by Families</p>
</div>
</div>
<ul class="space-y-3">
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Deep cleaning
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Window cleaning
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Sanitization
</li>
</ul>
<a href="#contact" class="mt-6 inline-flex items-center text-[#FFBA08] hover:text-[#FFB000] transition-colors">
Book Now <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Commercial -->
<div class="bg-[#f8f9ff] rounded-2xl overflow-hidden shadow-lg hover:shadow-xl transition-all duration-300 group">
<!-- Image Container -->
<div class="relative h-72 overflow-hidden">
<img src="images/person-taking-care-office-cleaning.jpg" alt="Commercial Cleaning"
class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
<div class="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent"></div>
<div class="absolute bottom-4 left-6 right-6">
<h3 class="text-2xl font-bold text-white mb-2">Commercial Cleaning</h3>
<p class="text-gray-200">Professional solutions for offices and commercial properties.</p>
</div>
</div>
<!-- Content -->
<div class="p-6">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center flex-shrink-0">
<i class="fas fa-building text-[#FFBA08] text-xl"></i>
</div>
<div class="flex-1">
<p class="text-sm text-gray-500">Business Solution</p>
<p class="text-lg font-semibold text-gray-900">For Your Workspace</p>
</div>
</div>
<ul class="space-y-3">
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Regular maintenance
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Floor care
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Office sanitization
</li>
</ul>
<a href="#contact" class="mt-6 inline-flex items-center text-[#FFBA08] hover:text-[#FFB000] transition-colors">
Book Now <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Car Deep Cleaning -->
<div class="bg-[#f8f9ff] rounded-2xl overflow-hidden shadow-lg hover:shadow-xl transition-all duration-300 group">
<!-- Image Container -->
<div class="relative h-72 overflow-hidden">
<img src="images/close-up-car-care-washing.jpg" alt="Car Deep Cleaning"
class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
<div class="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent"></div>
<div class="absolute bottom-4 left-6 right-6">
<h3 class="text-2xl font-bold text-white mb-2">Car Deep Cleaning</h3>
<p class="text-gray-200">Professional car cleaning and detailing services.</p>
</div>
</div>
<!-- Content -->
<div class="p-6">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center flex-shrink-0">
<i class="fas fa-car text-[#FFBA08] text-xl"></i>
</div>
<div class="flex-1">
<p class="text-sm text-gray-500">Auto Care</p>
<p class="text-lg font-semibold text-gray-900">Premium Detailing</p>
</div>
</div>
<ul class="space-y-3">
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Interior detailing
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Exterior washing
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Engine cleaning
</li>
</ul>
<a href="#contact" class="mt-6 inline-flex items-center text-[#FFBA08] hover:text-[#FFB000] transition-colors">
Book Now <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Fumigation -->
<div class="bg-[#f8f9ff] rounded-2xl overflow-hidden shadow-lg hover:shadow-xl transition-all duration-300 group">
<!-- Image Container -->
<div class="relative h-72 overflow-hidden">
<img src="images/pexels-tima-miroshnichenko-6196228.jpg" alt="Fumigation Service"
class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
<div class="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent"></div>
<div class="absolute bottom-4 left-6 right-6">
<h3 class="text-2xl font-bold text-white mb-2">Fumigation</h3>
<p class="text-gray-200">Complete pest control and fumigation services.</p>
</div>
</div>
<!-- Content -->
<div class="p-6">
<div class="flex items-center gap-4 mb-6">
<div class="w-12 h-12 bg-[#FFBA08]/10 rounded-xl flex items-center justify-center flex-shrink-0">
<i class="fas fa-spray-can text-[#FFBA08] text-xl"></i>
</div>
<div class="flex-1">
<p class="text-sm text-gray-500">Pest Control</p>
<p class="text-lg font-semibold text-gray-900">Safe & Effective</p>
</div>
</div>
<ul class="space-y-3">
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Pest elimination
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Prevention treatment
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check text-[#FFBA08] mr-3"></i>Safe chemicals
</li>
</ul>
<a href="#contact" class="mt-6 inline-flex items-center text-[#FFBA08] hover:text-[#FFB000] transition-colors">
Book Now <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-16">
<a href="#contact"
class="inline-flex items-center gap-2 px-8 py-4 bg-[#FFBA08] text-gray-900 rounded-xl font-semibold hover:bg-[#FFBA08]/90 transition-all duration-300">
Get a Free Quote
<i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
</section>
<section id="testimonials" class="py-24 bg-gray-50">
<div class="main-container">
<div class="text-center mb-16">
<span class="text-[#FFBA08] font-semibold text-lg">Testimonials</span>
<h2 class="text-4xl font-bold text-gray-900 mt-2">What Our Clients Say</h2>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-[#f8f9ff] p-8 rounded-2xl shadow-lg hover:shadow-xl transition-all duration-300">
<div class="flex text-[#FFBA08] mb-6 text-xl">
<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>
<p class="text-gray-700 text-lg mb-8 leading-relaxed">"Outstanding service! The team was professional, thorough, and paid attention to every detail. My home has never looked better!"</p>
<div class="flex items-center gap-4">
<div class="w-16 h-16 bg-[#FFBA08]/10 rounded-full flex items-center justify-center">
<i class="fas fa-user text-[#FFBA08] text-2xl"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-900">Sarah Johnson</h3>
<p class="text-gray-600">Residential Client</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-[#f8f9ff] p-8 rounded-2xl shadow-lg hover:shadow-xl transition-all duration-300">
<div class="flex text-[#FFBA08] mb-6 text-xl">
<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>
<p class="text-gray-700 text-lg mb-8 leading-relaxed">"Consistently excellent results for our office. Very reliable and professional. Their attention to detail has made our workspace more inviting for both staff and clients."</p>
<div class="flex items-center gap-4">
<div class="w-16 h-16 bg-[#FFBA08]/10 rounded-full flex items-center justify-center">
<i class="fas fa-user text-[#FFBA08] text-2xl"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-900">Michael Brown</h3>
<p class="text-gray-600">Office Manager</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-[#f8f9ff] p-8 rounded-2xl shadow-lg hover:shadow-xl transition-all duration-300">
<div class="flex text-[#FFBA08] mb-6 text-xl">
<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>
<p class="text-gray-700 text-lg mb-8 leading-relaxed">"Great attention to detail! They exceeded my expectations with their thorough cleaning and friendly service. I highly recommend their services to anyone looking for quality cleaning."</p>
<div class="flex items-center gap-4">
<div class="w-16 h-16 bg-[#FFBA08]/10 rounded-full flex items-center justify-center">
<i class="fas fa-user text-[#FFBA08] text-2xl"></i>
</div>
<div>
<h3 class="font-bold text-lg text-gray-900">Emily Davis</h3>
<p class="text-gray-600">Residential Client</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Quote Area -->
<section id="quote" class="py-24 bg-gray-50">
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<div class="max-w-3xl mx-auto bg-white rounded-2xl shadow-xl p-8">
<div class="text-center mb-8">
<h2 class="text-3xl font-bold text-gray-900 mb-2">Get Your Free Quote</h2>
<p class="text-gray-600">Fill out the form below and we'll get back to you as soon as possible</p>
</div>
<form class="space-y-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<input type="text" placeholder="Your Name" required
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:border-[#FFBA08]">
<input type="email" placeholder="Your Email" required
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:border-[#FFBA08]">
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<input type="tel" placeholder="Phone Number" required
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:border-[#FFBA08]">
<select required
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:border-[#FFBA08] bg-white">
<option value="">Select Service</option>
<option value="residential">Residential Cleaning</option>
<option value="commercial">Commercial Cleaning</option>
<option value="deep">Deep Cleaning</option>
</select>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="relative">
<label class="block text-sm font-medium text-gray-700 mb-1">Preferred Date</label>
<input type="date" id="bookingDate" required
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:border-[#FFBA08]">
<p class="text-sm text-red-500 mt-1 hidden" id="dateError"></p>
</div>
<div class="relative">
<label class="block text-sm font-medium text-gray-700 mb-1">Preferred Time</label>
<input type="time" id="bookingTime" required min="08:00" max="17:00"
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:border-[#FFBA08]">
<p class="text-sm text-red-500 mt-1" id="timeError"></p>
</div>
</div>
<textarea placeholder="Message" required rows="4"
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:border-[#FFBA08]"></textarea>
<button type="submit" class="w-full bg-[#FFBA08] text-gray-900 font-semibold py-4 px-6 rounded-lg hover:bg-[#FFBA08]/90 transition-all duration-300">
Get Quote
</button>
</form>
</div>
</div>
</section>
<!-- Contact Area -->
<section id="contact" class="py-24 bg-gray-50">
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<span class="text-[#FFBA08] font-semibold text-lg">Contact Us</span>
<h2 class="text-4xl font-bold text-gray-900 mt-2 mb-4">Get In Touch With Us</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Have questions about our services? We're here to help you keep your space spotless.</p>
</div>
<div class="max-w-4xl mx-auto bg-white rounded-lg shadow-md p-8">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Location -->
<div class="text-center">
<div class="w-16 h-16 bg-[#FFBA08]/10 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-map-marker-alt text-2xl text-[#FFBA08]"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Our Location</h3>
<a href="https://goo.gl/maps/your-location-link" target="_blank" class="text-gray-600 hover:text-[#FFBA08]">
<p>123 Cleaning Street</p>
<p>Nairobi, Kenya</p>
</a>
</div>
<!-- Phone Numbers -->
<div class="text-center">
<div class="w-16 h-16 bg-[#FFBA08]/10 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-phone-alt text-2xl text-[#FFBA08]"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Phone Number</h3>
<div class="space-y-1">
<a href="tel:+254712345678" class="block text-gray-600 hover:text-[#FFBA08]">+254 712 345 678</a>
<a href="tel:+254734567890" class="block text-gray-600 hover:text-[#FFBA08]">+254 734 567 890</a>
</div>
</div>
<!-- Email -->
<div class="text-center">
<div class="w-16 h-16 bg-[#FFBA08]/10 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-envelope text-2xl text-[#FFBA08]"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Email Address</h3>
<div class="space-y-1">
<a href="mailto:info@a1cleaning.com" class="block text-gray-600 hover:text-[#FFBA08]">info@a1cleaning.com</a>
<a href="mailto:support@a1cleaning.com" class="block text-gray-600 hover:text-[#FFBA08]">support@a1cleaning.com</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Area -->
<footer class="bg-gray-900 py-16">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-8">
<div class="text-gray-300">
<h3 class="text-white text-lg font-semibold mb-4">About Us</h3>
<p class="mb-4">Professional cleaning services delivering exceptional results for homes and businesses.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-[#FFBA08]"><i class="fab fa-facebook-f text-lg"></i></a>
<a href="#" class="text-gray-400 hover:text-[#FFBA08]"><i class="fab fa-linkedin-in text-lg"></i></a>
<a href="#" class="text-gray-400 hover:text-[#FFBA08]"><i class="fab fa-instagram text-lg"></i></a>
<a href="#" class="text-gray-400 hover:text-[#FFBA08]"><i class="fab fa-tiktok text-lg"></i></a>
</div>
</div>
<div class="text-gray-300">
<h3 class="text-white text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#home" class="hover:text-[#FFBA08]">Home</a></li>
<li><a href="about.html" class="hover:text-[#FFBA08]">About</a></li>
<li><a href="#services" class="hover:text-[#FFBA08]">Services</a></li>
<li><a href="#contact" class="hover:text-[#FFBA08]">Contact</a></li>
</ul>
</div>
<div class="text-gray-300">
<h3 class="text-white text-lg font-semibold mb-4">Our Services</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-[#FFBA08]">Residential Cleaning</a></li>
<li><a href="#" class="hover:text-[#FFBA08]">Commercial Cleaning</a></li>
<li><a href="#" class="hover:text-[#FFBA08]">Deep Cleaning</a></li>
<li><a href="#" class="hover:text-[#FFBA08]">Move In/Out Cleaning</a></li>
</ul>
</div>
<div class="text-gray-300">
<h3 class="text-white text-lg font-semibold mb-4">Working Hours</h3>
<ul class="space-y-2">
<li>Monday - Friday: 8:00 - 18:00</li>
<li>Saturday: 9:00 - 16:00</li>
<li>Sunday: Closed</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center text-gray-400 text-sm">
<p>© 2025 A1 Professional Cleaning. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>