-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1043 lines (932 loc) · 33.3 KB
/
index.html
File metadata and controls
1043 lines (932 loc) · 33.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OzdenClean - Professional Home Cleaning Services</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #4A90E2;
--secondary: #50C878;
--accent: #FFD700;
--dark: #2C3E50;
--light: #ECF0F1;
--white: #FFFFFF;
--gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--dark);
overflow-x: hidden;
}
/* Header & Navigation */
header {
background: var(--white);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}
header.scrolled {
padding: 0.5rem 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
color: var(--primary);
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo i {
color: var(--secondary);
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--primary);
}
.cta-btn {
background: var(--primary);
color: var(--white);
padding: 0.8rem 1.5rem;
border-radius: 25px;
text-decoration: none;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
.cta-btn:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}
.menu-toggle {
display: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--primary);
}
/* Hero Section */
.hero {
margin-top: 80px;
background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f4f8" width="1200" height="600"/></svg>');
min-height: 600px;
display: flex;
align-items: center;
color: var(--white);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}
@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-50px) rotate(180deg); }
}
.hero-content {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 1;
}
.hero-text h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.2;
animation: fadeInUp 1s ease;
}
.hero-text p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.95;
animation: fadeInUp 1s ease 0.2s backwards;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-buttons {
display: flex;
gap: 1rem;
animation: fadeInUp 1s ease 0.4s backwards;
}
.btn {
padding: 1rem 2rem;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
}
.btn-primary {
background: var(--white);
color: var(--primary);
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}
.btn-secondary {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
}
.btn-secondary:hover {
background: var(--white);
color: var(--primary);
}
.hero-image {
display: flex;
justify-content: center;
align-items: center;
}
.hero-image i {
font-size: 20rem;
opacity: 0.3;
animation: pulse 3s infinite ease-in-out;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
/* Features Section */
.features {
padding: 6rem 2rem;
background: var(--white);
}
.section-title {
text-align: center;
margin-bottom: 1rem;
color: var(--primary);
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 2px;
}
.section-heading {
text-align: center;
font-size: 2.5rem;
margin-bottom: 4rem;
color: var(--dark);
}
.features-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
}
.feature-card {
background: var(--white);
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 5px 25px rgba(0,0,0,0.08);
transition: all 0.3s;
text-align: center;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
}
.feature-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
font-size: 2rem;
color: var(--white);
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--dark);
}
.feature-card p {
color: #7f8c8d;
line-height: 1.8;
}
/* Services Section */
.services {
padding: 6rem 2rem;
background: var(--light);
}
.services-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background: var(--white);
padding: 2rem;
border-radius: 15px;
transition: all 0.3s;
border-left: 4px solid var(--primary);
}
.service-card:hover {
transform: translateX(10px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-left-color: var(--secondary);
}
.service-card i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
}
.service-card h3 {
font-size: 1.3rem;
margin-bottom: 0.8rem;
}
/* Comparison Section */
.comparison {
padding: 6rem 2rem;
background: var(--white);
}
.comparison-container {
max-width: 1000px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}
.comparison-card {
padding: 3rem;
border-radius: 20px;
position: relative;
}
.comparison-card.others {
background: #f8f9fa;
border: 2px solid #dee2e6;
}
.comparison-card.us {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
}
.comparison-card h3 {
font-size: 1.8rem;
margin-bottom: 2rem;
text-align: center;
}
.comparison-list {
list-style: none;
}
.comparison-list li {
padding: 1rem 0;
border-bottom: 1px solid rgba(255,255,255,0.2);
display: flex;
align-items: center;
gap: 1rem;
}
.comparison-card.others .comparison-list li {
border-bottom-color: #dee2e6;
}
.comparison-list i {
font-size: 1.2rem;
}
.comparison-card.others i {
color: #dc3545;
}
.comparison-card.us i {
color: var(--accent);
}
/* Testimonials */
.testimonials {
padding: 6rem 2rem;
background: var(--light);
}
.testimonials-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.testimonial-card {
background: var(--white);
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
position: relative;
}
.testimonial-card::before {
content: '"';
font-size: 5rem;
color: var(--primary);
opacity: 0.2;
position: absolute;
top: -10px;
left: 20px;
}
.stars {
color: var(--accent);
margin-bottom: 1rem;
font-size: 1.2rem;
}
.testimonial-text {
margin-bottom: 1.5rem;
font-style: italic;
color: #555;
line-height: 1.8;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}
.author-avatar {
width: 50px;
height: 50px;
background: var(--gradient);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-weight: bold;
font-size: 1.2rem;
}
.author-info h4 {
color: var(--dark);
margin-bottom: 0.2rem;
}
.author-info p {
color: #7f8c8d;
font-size: 0.9rem;
}
/* Contact Section */
.contact {
padding: 6rem 2rem;
background: var(--gradient);
color: var(--white);
text-align: center;
}
.contact h2 {
font-size: 3rem;
margin-bottom: 1rem;
}
.contact p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.95;
}
.contact-info {
display: flex;
justify-content: center;
gap: 3rem;
flex-wrap: wrap;
margin-top: 3rem;
}
.contact-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.contact-item i {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.contact-item a {
color: var(--white);
text-decoration: none;
font-size: 1.2rem;
font-weight: 600;
transition: all 0.3s;
}
.contact-item a:hover {
transform: scale(1.1);
}
/* Footer */
footer {
background: var(--dark);
color: var(--white);
padding: 4rem 2rem 2rem;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}
.footer-section h3 {
margin-bottom: 1.5rem;
color: var(--primary);
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.8rem;
}
.footer-section a {
color: var(--light);
text-decoration: none;
transition: color 0.3s;
}
.footer-section a:hover {
color: var(--primary);
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
width: 40px;
height: 40px;
background: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
}
.social-links a:hover {
background: var(--secondary);
transform: translateY(-3px);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
color: var(--light);
}
/* Responsive */
@media (max-width: 768px) {
.menu-toggle {
display: block;
}
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--white);
flex-direction: column;
padding: 2rem;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.nav-links.active {
display: flex;
}
.hero-content {
grid-template-columns: 1fr;
text-align: center;
}
.hero-text h1 {
font-size: 2.5rem;
}
.hero-buttons {
justify-content: center;
flex-direction: column;
}
.hero-image {
display: none;
}
.comparison-container {
grid-template-columns: 1fr;
}
.contact h2 {
font-size: 2rem;
}
}
/* Smooth Scroll */
html {
scroll-behavior: smooth;
}
/* Loading Animation */
.fade-in {
animation: fadeIn 1s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body>
<!-- Header -->
<header id="header">
<nav>
<div class="logo">
<i class="fas fa-sparkles"></i>
OzdenClean
</div>
<ul class="nav-links" id="navLinks">
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact" class="cta-btn">Get Quote</a></li>
</ul>
<div class="menu-toggle" id="menuToggle">
<i class="fas fa-bars"></i>
</div>
</nav>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="hero-content">
<div class="hero-text">
<h1>Your Home Deserves the Best Care</h1>
<p>Professional cleaning services that bring sparkle and freshness to every corner of your home.</p>
<div class="hero-buttons">
<a href="#contact" class="btn btn-primary">Book Now</a>
<a href="#services" class="btn btn-secondary">Our Services</a>
</div>
</div>
<div class="hero-image">
<i class="fas fa-home"></i>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features" id="about">
<div class="section-title">Why Choose Us</div>
<h2 class="section-heading">We Make Cleaning Effortless</h2>
<div class="features-grid">
<div class="feature-card fade-in">
<div class="feature-icon">
<i class="fas fa-certificate"></i>
</div>
<h3>100% Satisfaction Guaranteed</h3>
<p>We're not happy until you're thrilled with our service. If something isn't perfect, we'll make it right.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">
<i class="fas fa-users"></i>
</div>
<h3>Trained Professionals</h3>
<p>Our team consists of experienced, background-checked cleaning specialists who treat your home with care.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">
<i class="fas fa-leaf"></i>
</div>
<h3>Eco-Friendly Products</h3>
<p>We use environmentally safe, non-toxic cleaning products that are safe for your family and pets.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">
<i class="fas fa-dollar-sign"></i>
</div>
<h3>Transparent Pricing</h3>
<p>No hidden fees or surprises. Flat-rate billing means you know exactly what you're paying upfront.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">
<i class="fas fa-clock"></i>
</div>
<h3>Flexible Scheduling</h3>
<p>We work around your schedule. Weekly, bi-weekly, or one-time cleanings available at your convenience.</p>
</div>
<div class="feature-card fade-in">
<div class="feature-icon">
<i class="fas fa-shield-alt"></i>
</div>
<h3>Fully Insured</h3>
<p>Complete peace of mind with our comprehensive insurance coverage protecting your home and belongings.</p>
</div>
</div>
</section>
<!-- Services Section -->
<section class="services" id="services">
<div class="section-title">Our Services</div>
<h2 class="section-heading">Comprehensive Cleaning Solutions</h2>
<div class="services-grid">
<div class="service-card">
<i class="fas fa-home"></i>
<h3>House Cleaning</h3>
<p>Complete home cleaning with our detailed 45-point checklist covering every room and surface.</p>
</div>
<div class="service-card">
<i class="fas fa-building"></i>
<h3>Apartment Cleaning</h3>
<p>Specialized cleaning services tailored for apartments of all sizes.</p>
</div>
<div class="service-card">
<i class="fas fa-truck-moving"></i>
<h3>Move-In/Move-Out</h3>
<p>Deep cleaning to prepare your new home or ensure you get your deposit back.</p>
</div>
<div class="service-card">
<i class="fas fa-briefcase"></i>
<h3>Office Cleaning</h3>
<p>Professional office cleaning to maintain a healthy, productive work environment.</p>
</div>
<div class="service-card">
<i class="fas fa-umbrella-beach"></i>
<h3>Vacation Rentals</h3>
<p>Fast, thorough cleaning between guests to keep your rental property ready.</p>
</div>
<div class="service-card">
<i class="fas fa-glass-cheers"></i>
<h3>Event Cleaning</h3>
<p>Before and after party cleaning so you can enjoy your event stress-free.</p>
</div>
<div class="service-card">
<i class="fas fa-snowflake"></i>
<h3>Refrigerator Deep Clean</h3>
<p>Thorough sanitization and organization of your refrigerator and freezer.</p>
</div>
<div class="service-card">
<i class="fas fa-fire"></i>
<h3>Oven Cleaning</h3>
<p>Professional oven and range cleaning to remove grease and burnt-on residue.</p>
</div>
<div class="service-card">
<i class="fas fa-tree"></i>
<h3>Patio & Outdoor Areas</h3>
<p>Outdoor cleaning services to make your exterior spaces shine.</p>
</div>
</div>
</section>
<!-- Comparison Section -->
<section class="comparison">
<div class="section-title">The Difference</div>
<h2 class="section-heading">Why We Stand Out</h2>
<div class="comparison-container">
<div class="comparison-card others">
<h3>Other Cleaners</h3>
<ul class="comparison-list">
<li>
<i class="fas fa-times-circle"></i>
<span>Inconsistent cleaning quality</span>
</li>
<li>
<i class="fas fa-times-circle"></i>
<span>Hourly billing with frequent overtime</span>
</li>
<li>
<i class="fas fa-times-circle"></i>
<span>Take-it-or-leave-it service</span>
</li>
<li>
<i class="fas fa-times-circle"></i>
<span>Generic one-size-fits-all approach</span>
</li>
<li>
<i class="fas fa-times-circle"></i>
<span>Limited customer support</span>
</li>
</ul>
</div>
<div class="comparison-card us">
<h3>OzdenClean</h3>
<ul class="comparison-list">
<li>
<i class="fas fa-check-circle"></i>
<span>45-point checklist every time</span>
</li>
<li>
<i class="fas fa-check-circle"></i>
<span>Transparent flat-rate pricing</span>
</li>
<li>
<i class="fas fa-check-circle"></i>
<span>Final walkthrough for approval</span>
</li>
<li>
<i class="fas fa-check-circle"></i>
<span>Customized to your home's needs</span>
</li>
<li>
<i class="fas fa-check-circle"></i>
<span>24/7 customer support available</span>
</li>
</ul>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonials" id="testimonials">
<div class="section-title">Happy Clients</div>
<h2 class="section-heading">What Our Customers Say</h2>
<div class="testimonials-grid">
<div class="testimonial-card">
<div class="stars">
<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="testimonial-text">Absolutely amazing service! My house has never looked better. The team was professional, thorough, and paid attention to every detail. Highly recommend!</p>
<div class="testimonial-author">
<div class="author-avatar">SJ</div>
<div class="author-info">
<h4>Sarah Johnson</h4>
<p>Homeowner</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="stars">
<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="testimonial-text">I've used several cleaning services over the years, but OzdenClean is by far the best. They're reliable, affordable, and do an outstanding job every single time.</p>
<div class="testimonial-author">
<div class="author-avatar">MT</div>
<div class="author-info">
<h4>Michael Thompson</h4>
<p>Business Owner</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="stars">
<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="testimonial-text">The move-out cleaning service was perfect! Got my full deposit back thanks to their meticulous work. The team went above and beyond my expectations.</p>
<div class="testimonial-author">
<div class="author-avatar">ER</div>
<div class="author-info">
<h4>Emily Rodriguez</h4>
<p>Apartment Resident</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact" id="contact">
<h2>Ready to Experience the OzdenClean?</h2>
<p>Get your free quote today and discover why thousands trust us with their homes</p>
<a href="tel:+905356542005" class="btn btn-primary">Call Now: +90(535) 654 20 05</a>
<div class="contact-info">
<div class="contact-item">
<i class="fas fa-phone"></i>
<a href="tel:+905356542005">(535) 654 20 05</a>
</div>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<a href="mailto:info@ozdenclean.com">info@ozdenclean.com</a>
</div>
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<span>Her Masada Varız</span>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>OzdenClean</h3>
<p>Your trusted partner for professional home cleaning services. We bring sparkle and freshness to every corner of your home.</p>
<div class="social-links">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Our Services</h3>
<ul>
<li><a href="#services">House Cleaning</a></li>
<li><a href="#services">Office Cleaning</a></li>
<li><a href="#services">Move-In/Out Cleaning</a></li>
<li><a href="#services">Vacation Rentals</a></li>
<li><a href="#services">Event Cleaning</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact Info</h3>
<ul>
<li><i class="fas fa-phone"></i> (535) 654 20 05</li>
<li><i class="fas fa-envelope"></i> info@ozdenclean.com</li>
<li><i class="fas fa-clock"></i> Mon-Sat: 8AM - 6PM</li>
<li><i class="fas fa-map-marker-alt"></i> Her Masada Varız</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 OzdenClean. All rights reserved. | <a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a></p>
</div>
</footer>
<script>
// Mobile Menu Toggle
const menuToggle = document.getElementById('menuToggle');
const navLinks = document.getElementById('navLinks');
menuToggle.addEventListener('click', () => {
navLinks.classList.toggle('active');
const icon = menuToggle.querySelector('i');
icon.classList.toggle('fa-bars');
icon.classList.toggle('fa-times');
});
// Close mobile menu when clicking on a link