-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1102 lines (1067 loc) · 47.3 KB
/
index.html
File metadata and controls
1102 lines (1067 loc) · 47.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 id="html" class="scroll-smooth overflow-x-hidden" lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Lux Laundry offers fast, affordable, and professional laundry services in Phnom Penh. Enjoy self-service or full-service washing with modern machines and cashless QR payments."
/>
<!--Website Icon-->
<link
rel="icon"
href="public/images/logo/lux-laundry-logo.png"
type="image/svg+xml"
/>
<link rel="stylesheet" href="src/style.css" />
<link rel="stylesheet" href="node_modules/aos/dist/aos.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lux Laundry™</title>
</head>
<body>
<header class="sticky top-0 z-50">
<!-- Navbar -->
<nav
id="navbar"
class="opacity-[99%] bg-neutral shadow-sm border-gray-200 px-6 py-4 lg:py-6 xl:py-8 transition-all duration-300"
>
<div
class="container mx-auto max-w-7xl flex flex-wrap items-center justify-between"
data-aos="fade-down"
data-aos-duration="1000"
data-aos-easing="ease-out-cubic"
data-aos-once="true"
>
<!-- Nav Logo-->
<a href="#" class="flex items-center space-x-3 rtl:space-x-reverse">
<img
src="/public/images/logo/lux-laundry-logo.png"
class="h-10 object-contain"
alt="Lux Laundry Logo"
/>
<span
class="lg:text-base xl:text-large font-regular font-grandstander text-accent"
>Lux Laundry™</span
>
</a>
<button
id="mobile-menu-button"
type="button"
class="inline-flex items-center p-2 w-10 h-10 justify-center text-small text-grey-600 rounded-lg md:hidden"
aria-controls="navbar-default"
aria-expanded="false"
>
<span class="sr-only">Open main menu</span>
<!--Hamburger Menu-->
<div
class="flex flex-col justify-center items-center gap-1 hamburger-icon"
>
<div
class="w-6 h-0.5 bg-grey rounded-full transition-all duration-300 ease-in-out hamburger-line-1"
></div>
<div
class="w-6 h-0.5 bg-grey rounded-full transition-all duration-300 ease-in-out hamburger-line-2"
></div>
<div
class="w-6 h-0.5 bg-grey rounded-full transition-all duration-300 ease-in-out hamburger-line-3"
></div>
</div>
</button>
<!--Mobile menu-->
<div
class="mobile-menu w-full font-outfit md:block md:w-auto"
id="navbar-default"
>
<ul
class="font-regular flex justify-center items-center flex-col p-4 md:p-0 mt-4 border border-gray-100 rounded-lg md:flex-row md:space-x-8 rtl:space-x-reverse md:mt-0 md:border-0 text-grey xl:text-base"
>
<li>
<a
href="#how-it-works"
class="block py-2 px-3 rounded-sm hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:p-0"
>How it works</a
>
</li>
<li>
<a
href="#services"
class="block py-2 px-3 rounded-sm hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:p-0"
>Services</a
>
</li>
<li>
<a
href="#location"
onclick="openLocationModal()"
class="block py-2 px-3 rounded-sm hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:p-0"
>Location</a
>
</li>
<li>
<a
href="#contact"
class="block py-2 px-3 rounded-sm hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:p-0"
>Contact us</a
>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<!-- Hero -->
<section
class="bg-neutral text-center lg:text-start py-12 lg:py-20 xl:py-24 px-6"
>
<div class="container mx-auto max-w-7xl">
<div
class="grid justify-center items-center gap-12 lg:gap-16 xl:gap-20 lg:grid-cols-2"
>
<!-- Hero text container -->
<div
class="lg:col-span-1 justify-self-start"
data-aos="fade-right"
data-aos-duration="1000"
data-aos-easing="ease-out-cubic"
>
<!--Announcement banner -->
<a
href="#contact"
class="inline-flex items-center py-2 px-4 pr-4 mb-5 text-xsmall bg-secondary rounded-full text-black w-fit mx-auto lg:mx-0"
>
<span class="text-xsmall m-auto font-bold font-inter"
>20% Discount for 1 Month subscription</span
>
<svg
class="w-4 h-4 ml-1"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"
></path>
</svg>
</a>
<h1
class="mb-6 font-[300] text-larger md:text-largest xl:text-xlarge text-center lg:text-start font-grandstander text-primary"
>
Laundry today, <br />
Fresh tomorrow.
</h1>
<p
class="mb-8 md:text-small text-xsmall font-semiBold font-inter text-primary text-center lg:text-start"
>
Lux Laundry service will wash, dry, steam, and fold your <br />
laundry at an affordable price. Delivery options available!
</p>
<div class="flex justify-center lg:justify-start mb-8">
<a
href="#how-it-works"
class="inline-flex items-center justify-center px-7 py-3 font-semiBold text-small md:text-base text-center text-black bg-secondary rounded-full font-outfit lg:w-80"
>
How it works
</a>
</div>
<div
class="flex justify-center lg:justify-start lg:gap-12 gap-8 items-center font-inter"
>
<div
class="flex flex-col lg:flex-row lg:justify-center lg:items-center text-center lg:text-start"
>
<h3
class="text-[30px] md:text-[37.5px] lg:text-[50px] font-rasa font-bold lg:p-2 h-9 md:h-11 lg:h-auto"
>
12m+
</h3>
<p class="text-accent text-xsmall font-regular">
Happy <br class="hidden lg:block" />
Customers
</p>
</div>
<div
class="flex flex-col lg:flex-row lg:justify-center lg:items-center text-center lg:text-start"
>
<h3
class="text-[30px] md:text-[37.5px] lg:text-[50px] font-rasa font-bold lg:p-2 h-9 md:h-11 lg:h-auto"
>
10+
</h3>
<p class="text-accent text-xsmall font-regular">
Years of <br class="hidden lg:block" />
Experience
</p>
</div>
</div>
</div>
<!--Hero image container-->
<div
class="relative flex justify-center lg:justify-self-end items-center mt-14 lg:m-0 object-cover object-center lg:col-span-1"
data-aos="fade-left"
data-aos-duration="1000"
data-aos-easing="ease-out-cubic"
data-aos-anchor-placement="top-bottom"
>
<img
class="xl:w-[350px] w-[300px] z-10 relative cssanimation ca__fx-quiver"
src="src/assets/images/hero/washing-machine.png"
alt="A washing machine"
/>
<!-- Bubble 1 -->
<img
class="absolute w-12 h-12 sm:w-14 sm:h-14 md:w-18 md:h-18 lg:w-22 lg:h-22 xl:w-26 xl:h-26 top-[30%] left-[14%] sm:left-[18%] transform -translate-x-1/2 -translate-y-1/2 z-5 animate-bubble-peek-left"
src="src/assets/images/hero/bubbles.svg"
alt="floating bubble"
/>
<!-- Bubble 2 -->
<img
class="absolute w-12 h-12 sm:w-12 sm:h-12 md:w-16 md:h-16 lg:w-20 lg:h-20 xl:w-24 xl:h-24 top-[35%] right-[14%] sm:right-[18%] transform translate-x-1/2 -translate-y-1/2 z-5 animate-bubble-peek-right"
src="src/assets/images/hero/bubbles.svg"
alt="floating bubble"
/>
<!-- Bubble 3 -->
<img
class="absolute w-12 h-12 sm:w-16 sm:h-16 md:w-20 md:h-20 lg:w-24 lg:h-24 xl:w-28 xl:h-28 top-[50%] left-[12%] sm:left-[16%] transform -translate-x-1/2 -translate-y-1/2 z-5 animate-bubble-peek-left"
src="src/assets/images/hero/bubbles.svg"
alt="floating bubble"
style="animation-delay: 2s"
/>
<!-- Bubble 4 -->
<img
class="absolute w-12 h-12 sm:w-13 sm:h-13 md:w-17 md:h-17 lg:w-21 lg:h-21 xl:w-25 xl:h-25 top-[45%] right-[12%] sm:right-[16%] transform translate-x-1/2 -translate-y-1/2 z-5 animate-bubble-peek-right"
src="src/assets/images/hero/bubbles.svg"
alt="floating bubble"
style="animation-delay: 1.5s"
/>
<!-- Bubble 5 -->
<img
class="absolute w-12 h-12 sm:w-11 sm:h-11 md:w-15 md:h-15 lg:w-19 lg:h-19 xl:w-23 xl:h-23 top-[65%] left-[16%] sm:left-[20%] transform -translate-x-1/2 -translate-y-1/2 z-5 animate-bubble-peek-left"
src="src/assets/images/hero/bubbles.svg"
alt="floating bubble"
style="animation-delay: 4s"
/>
<!-- Bubble 6 -->
<img
class="absolute w-11 h-11 sm:w-10 sm:h-10 md:w-14 md:h-14 lg:w-18 lg:h-18 xl:w-22 xl:h-22 top-[60%] right-[16%] sm:right-[20%] transform translate-x-1/2 -translate-y-1/2 z-5 animate-bubble-peek-right"
src="src/assets/images/hero/bubbles.svg"
alt="floating bubble"
style="animation-delay: 3s"
/>
<!-- Bubble 7 -->
<img
class="absolute w-9 h-9 sm:w-9 sm:h-9 md:w-13 md:h-13 lg:w-17 lg:h-17 xl:w-21 xl:h-21 top-[55%] left-[22%] transform -translate-x-1/2 -translate-y-1/2 z-5 animate-bubble-peek-left"
src="src/assets/images/hero/bubbles.svg"
alt="floating bubble"
style="animation-delay: 0.5s"
/>
<!-- Bubble 8 -->
<img
class="absolute w-8 h-8 sm:w-8 sm:h-8 md:w-12 md:h-12 lg:w-16 lg:h-16 xl:w-20 xl:h-20 top-[40%] right-[22%] transform translate-x-1/2 -translate-y-1/2 z-5 animate-bubble-peek-right"
src="src/assets/images/hero/bubbles.svg"
alt="floating bubble"
style="animation-delay: 3.5s"
/>
</div>
</div>
</div>
</section>
<!--How it works section-->
<section
id="how-it-works"
class="bg-secondary font-outfit py-12 lg:py-20 xl:py-24 px-6 scroll-mt-24 lg:scroll-mt-32 xl:scroll-mt-36"
>
<div class="container mx-auto max-w-7xl text-center">
<div class="mx-auto mb-12 lg:mb-16">
<h3
class="font-regular text-small md:text-base xl:text-medium text-accent font-grandstander mb-2"
>
HOW IT WORKS
</h3>
<h2
class="text-larger md:text-largest xl:text-xlarge font-semiBold text-grey"
>
Get it done in 4 steps
</h2>
</div>
<!--Card grid-->
<div
class="grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-8 lg:gap-12"
>
<!--Card-->
<div
class="text-center bg-white w-full mx-auto justify-center items-center rounded-[20px] p-6 lg:p-8"
data-aos="fade-up"
data-aos-delay="0"
data-aos-duration="800"
data-aos-easing="ease-out-cubic"
>
<p
class="font-grandstander text-xsmall md:text-small xl:text-base text-accent font-regular mb-2"
>
STEP 1
</p>
<h3
class="text-small md:text-base xl:text-large font-outfit font-semiBold text-grey mb-6"
>
Drop off
</h3>
<img
class="mx-auto w-[200px] h-[200px] lg:w-[220px] lg:h-[220px] xl:w-[240px] xl:h-[240px] object-contain"
src="src/assets/images/how-it-works/how-it-works-card1.svg"
alt="A man going walking to an address"
/>
</div>
<!--Card-->
<div
class="text-center bg-white w-full mx-auto justify-center items-center rounded-[20px] p-6 lg:p-8"
data-aos="fade-up"
data-aos-delay="200"
data-aos-duration="800"
data-aos-easing="ease-out-cubic"
>
<p
class="font-grandstander text-xsmall md:text-small xl:text-base text-accent font-regular mb-2"
>
STEP 2
</p>
<h3
class="text-small md:text-base xl:text-large font-outfit font-semiBold text-grey mb-6"
>
Wash & Dry
</h3>
<img
class="mx-auto w-[200px] h-[200px] lg:w-[220px] lg:h-[220px] xl:w-[240px] xl:h-[240px] object-contain"
src="src/assets/images/how-it-works/how-it-works-card2.svg"
alt="A man going walking to an address"
/>
</div>
<!--Card-->
<div
class="text-center bg-white w-full mx-auto justify-center items-center rounded-[20px] p-6 lg:p-8"
data-aos="fade-up"
data-aos-delay="400"
data-aos-duration="800"
data-aos-easing="ease-out-cubic"
>
<p
class="font-grandstander text-xsmall md:text-small xl:text-base text-accent font-regular mb-2"
>
STEP 3
</p>
<h3
class="text-small md:text-base xl:text-large font-outfit font-semiBold text-grey mb-6"
>
Fold
</h3>
<img
class="mx-auto w-[200px] h-[200px] lg:w-[220px] lg:h-[220px] xl:w-[240px] xl:h-[240px] object-contain"
src="src/assets/images/how-it-works/how-it-works-card3.svg"
alt="A man going walking to an address"
/>
</div>
<!--Card-->
<div
class="text-center bg-white w-full mx-auto justify-center items-center rounded-[20px] p-6 lg:p-8"
data-aos="fade-up"
data-aos-delay="600"
data-aos-duration="800"
data-aos-easing="ease-out-cubic"
>
<p
class="font-grandstander text-xsmall md:text-small xl:text-base text-accent font-regular mb-2"
>
STEP 4
</p>
<h3
class="text-small md:text-base xl:text-large font-outfit font-semiBold text-grey mb-6"
>
Delivery
</h3>
<img
class="mx-auto w-[200px] h-[200px] lg:w-[220px] lg:h-[220px] xl:w-[240px] xl:h-[240px] object-contain"
src="src/assets/images/how-it-works/how-it-works-card4.svg"
alt="A man going walking to an address"
/>
</div>
</div>
</div>
</section>
<!--Services section-->
<section
id="services"
class="bg-neutral font-outfit py-12 lg:py-20 xl:py-24 px-6 scroll-mt-24 lg:scroll-mt-32 xl:scroll-mt-36"
>
<div class="container mx-auto max-w-7xl">
<div class="mx-auto max-w-screen-md text-center mb-12 lg:mb-16">
<h2
class="font-regular text-small md:text-base xl:text-medium text-accent font-grandstander mb-2"
>
SERVICES
</h2>
<h2
class="text-larger md:text-largest xl:text-xlarge font-semiBold text-grey"
>
Services & Packages
</h2>
</div>
<!--Card Container-->
<div
class="grid grid-cols-1 lg:grid-cols-3 md:grid-cols-2 gap-8 lg:gap-12 mb-8 lg:mb-12"
>
<!-- Pricing Card 1-->
<div
class="group flex flex-col p-6 w-full max-w-80 text-center text-grey justify-self-center bg-white rounded-lg border border-gray-100 shadow xl:p-8 hover:shadow-lg hover:-translate-y-5 transition-all duration-300 hover:bg-secondary"
>
<h3 class="mb-4 text-medium font-grandstander text-accent">
SINGLE SIZE
</h3>
<p class="font-light font-inter text-grey text-xsmall">
Perfect for one person.
</p>
<div class="flex justify-center items-baseline my-8">
<span class="mr-2 text-5xl text-grey font-extrabold">$10</span>
<span class="text-grey">/month</span>
</div>
<div class="flex justify-center items-center">
<!-- List -->
<ul
class="mb-8 font-inter flex-col space-y-4 text-grey text-center flex justify-center border rounded-lg p-4 md:p-9"
>
<li class="space-x-3 w-52 flex items-center">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>2 loads per week</span>
</li>
<li class="space-x-3 w-52 flex items-center">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Up to 10 lbs per load</span>
</li>
</ul>
</div>
<a
href="#"
class="inline-flex items-center justify-center px-7 py-3 mb-8 font-semiBold text-small text-center text-grey bg-secondary rounded-full font-outfit w-full group-hover:bg-accent"
>
Choose
</a>
</div>
<!-- Pricing Card 2-->
<div
class="group flex flex-col p-6 w-full max-w-80 text-center text-grey justify-self-center bg-white rounded-lg border border-gray-100 shadow xl:p-8 hover:shadow-lg hover:-translate-y-5 transition-all duration-300 hover:bg-secondary"
>
<h3 class="mb-4 text-medium font-grandstander text-accent">
COUPLE SIZE
</h3>
<p class="font-light font-inter text-grey text-xsmall">
Perfect for couples size 3-6.
</p>
<div class="flex justify-center items-baseline my-8">
<span class="mr-2 text-5xl text-grey font-extrabold">$20</span>
<span class="text-grey">/month</span>
</div>
<div class="flex justify-center flex-col items-center">
<!-- List -->
<ul
class="mb-8 text-grey font-inter space-y-4 text-center border rounded-lg p-4"
>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>4 loads per week</span>
</li>
<li class="flex w-52 items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Special garments</span>
</li>
<li class="flex w-52 items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Pickup & drop off </span>
</li>
<li class="flex w-52 items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span> Up to 12 lbs per load</span>
</li>
</ul>
</div>
<a
href="#"
class="inline-flex items-center justify-center px-7 py-3 mb-8 font-semiBold text-small text-center text-grey bg-secondary rounded-full font-outfit w-full group-hover:bg-accent"
>
Choose
</a>
</div>
<!-- Pricing Card 3-->
<div
class="group lg:flex flex-col p-8 w-full max-w-80 text-center text-grey justify-self-center bg-white rounded-lg border border-gray-100 shadow xl:p-8 hover:shadow-lg hover:-translate-y-5 transition-all duration-300 hover:bg-secondary hidden"
>
<h3 class="mb-4 text-2xl font-grandstander text-accent">
FAMILY SIZE
</h3>
<p class="font-light font-inter text-grey text-xsmall">
Perfect for families size 4-6.
</p>
<div class="flex justify-center items-baseline my-8">
<span class="mr-2 text-5xl text-grey font-extrabold">$30</span>
<span class="text-grey">/month</span>
</div>
<div class="flex justify-center flex-col items-center">
<!-- List -->
<ul
class="mb-8 text-grey font-inter space-y-4 text-left border rounded-lg p-1"
>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>6 loads per week</span>
</li>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Special garments</span>
</li>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Pickup & drop off</span>
</li>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Up to 15 lbs per load</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Free detergent samples</span>
</li>
</ul>
</div>
<a
href="#"
class="inline-flex items-center justify-center px-7 py-3 mb-8 font-semiBold text-small text-center text-grey bg-secondary rounded-full font-outfit w-full group-hover:bg-accent"
>
Choose
</a>
</div>
</div>
</div>
<div class="col-span-2 flex justify-center lg:hidden">
<!-- Pricing Card 3-->
<div
class="group flex flex-col p-8 w-80 text-center text-grey justify-self-center bg-white rounded-lg border border-gray-100 shadow xl:p-8 hover:shadow-lg hover:-translate-y-5 transition-all duration-300 hover:bg-secondary"
>
<h3 class="mb-4 text-2xl font-grandstander text-accent">
FAMILY SIZE
</h3>
<p class="font-light font-inter text-grey text-xsmall">
Perfect for families size 4-6.
</p>
<div class="flex justify-center items-baseline my-8">
<span class="mr-2 text-5xl text-grey font-extrabold">$30</span>
<span class="text-grey">/month</span>
</div>
<div class="flex justify-center flex-col items-center">
<!-- List -->
<ul
class="mb-8 text-grey font-inter space-y-4 text-left border rounded-lg p-1"
>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>6 loads per week</span>
</li>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Special garments</span>
</li>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Pickup & drop off</span>
</li>
<li class="flex items-center w-52 space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Up to 15 lbs per load</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-accent"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Free detergent samples</span>
</li>
</ul>
</div>
<a
href="#"
class="inline-flex items-center justify-center px-7 py-3 mb-8 font-semiBold text-small text-center text-grey bg-secondary rounded-full font-outfit w-full group-hover:bg-accent"
>
Choose
</a>
</div>
</div>
</section>
<!-- Location Modal -->
<div
id="locationModal"
class="fixed inset-0 bg-black bg-opacity-50 flex flex-col items-center justify-center z-50 hidden"
>
<p class="z-51 text-white">Click outside of the map to close it.</p>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d125075.71620272267!2d104.80778671296422!3d11.579352598718401!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3109513dc76a6be3%3A0x9c010ee85ab525bb!2sPhnom%20Penh!5e0!3m2!1sen!2skh!4v1759645908351!5m2!1sen!2skh"
class="w-full h-full max-w-[90%] max-h-[600px] lg:max-w-4xl lg:max-h-[800px] rounded-lg shadow-lg z-50"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
<!--Final CTA Section-->
<section class="py-12 lg:py-20 xl:py-24 px-6">
<div class="md:container mx-auto">
<div
class="block xl:flex p-6 xl:p-20 bg-secondary rounded-3xl lg:rounded-[120px]"
>
<!--Img container-->
<div
class="xl:relative xl:w-[50%] m-auto mb-4 lg:mb-0 flex items-center justify-center xl:justify-normal"
>
<img
class="object-contain w-64 lg:w-[300px] xl:w-[500px] xl:h-[500px] xl:absolute lg:bottom-[-50px]"
src="src/assets/images/cta/final-cta-thinking-face.svg"
alt="a woman thinking"
/>
</div>
<!--Text container-->
<div
class="flex xl:w-[50%] justify-center items-center flex-col m-auto"
>
<h2
class="mb-4 font-bold text-grey text-center text-larger md:text-largest xl:text-xlarge"
>
Hard time deciding what’s best for you?
</h2>
<a
href="#"
class="m-auto inline-flex items-center justify-center px-7 py-3 my-4 font-semiBold text-small text-center text-black bg-neutral rounded-full font-outfit w-[220px]"
>
Learn more
</a>
</div>
</div>
</div>
</section>
</main>
<!--Footer-->
<footer
class="bg-white py-12 lg:py-16 xl:py-20 px-6 border-t border-gray-200"
>
<div class="container mx-auto max-w-7xl">
<!-- Main Footer Content -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12 lg:mb-16">
<!-- Company Info -->
<div class="md:col-span-[1fr] md:m-auto">
<a href="#" class="inline-block mb-6">
<div class="flex items-center space-x-3">
<img
src="/public/images/logo/lux-laundry-logo.png"
class="h-10 object-contain"
alt="Lux Laundry Logo"
/>
<span
class="text-lg xl:text-xl font-medium font-grandstander text-accent"
>
Lux Laundry™
</span>
</div>
</a>
<p class="text-sm text-grey font-inter leading-7 max-w-sm mb-6">
Professional laundry services with pickup and delivery. We wash,
dry, steam, and fold your laundry at affordable prices.
</p>
<div class="flex space-x-4">
<a
href="https://x.com/i/flow/login"
class="text-grey hover:text-accent transition-colors duration-200"
target="_blank"
aria-label="Twitter"
>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"
/>
</svg>
</a>
<a
href="https://www.pinterest.com/login/"
class="text-grey hover:text-accent transition-colors duration-200"
target="_blank"
aria-label="Pinterest"
>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.174-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.402.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.357-.629-2.748-1.378 0 0-.599 2.282-.744 2.840-.282 1.084-1.064 2.456-1.549 3.235C9.584 23.815 10.77 24.001 12.017 24.001c6.624 0 11.99-5.367 11.99-11.988C24.007 5.367 18.641.001 12.017.001z"
/>
</svg>
</a>
<a
target="_blank"
href="https://www.instagram.com/accounts/login/"
class="text-grey hover:text-accent transition-colors duration-200"
aria-label="Instagram"
>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"
/>
</svg>
</a>
</div>
</div>
<!-- Navigation & Services -->
<div class="md:col-span-[1fr] md:m-auto">
<h3 class="text-base font-semiBold font-outfit text-grey mb-6">
Quick Links
</h3>
<nav>
<ul class="space-y-3">
<li>
<a
href="#how-it-works"
class="text-sm text-grey hover:text-accent transition-colors duration-200 font-inter"
>
How it Works
</a>
</li>
<li>
<a
href="#services"
class="text-sm text-grey hover:text-accent transition-colors duration-200 font-inter"
>
Our Services
</a>
</li>
<li>
<a
href="#location"
class="text-sm text-grey hover:text-accent transition-colors duration-200 font-inter"
>
Locations
</a>
</li>
<li>
<a
href="#contact"
class="text-sm text-grey hover:text-accent transition-colors duration-200 font-inter"
>
Contact Us
</a>
</li>
<li>
<a
href="#services"
class="text-sm text-grey hover:text-accent transition-colors duration-200 font-inter"
>
Pricing
</a>
</li>
</ul>
</nav>
</div>
<!-- Contact Info -->
<div class="md:col-span-[1fr] md:m-auto">
<h3 class="text-base font-semiBold font-outfit text-grey mb-6">
Get in Touch
</h3>
<div class="space-y-4">
<div class="flex items-start space-x-3">
<svg
class="w-5 h-5 text-accent mt-0.5 flex-shrink-0"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"