-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1302 lines (1202 loc) · 71.6 KB
/
Copy pathindex.html
File metadata and controls
1302 lines (1202 loc) · 71.6 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>Zenithly | Premium Web Solutions for Boutique Retailers</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/scrollreveal"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#0A0A0A',
secondary: '#1F1F1F',
accent: '#D4AF37', // Premium Gold
light: '#F5F3EF',
dark: '#121212'
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['Playfair Display', 'serif']
},
animation: {
'fade-up': 'fadeUp 0.8s ease-out',
'marquee': 'marquee 25s linear infinite',
'float': 'float 6s ease-in-out infinite'
},
keyframes: {
fadeUp: {
'0%': { opacity: 0, transform: 'translateY(20px)' },
'100%': { opacity: 1, transform: 'translateY(0)' }
},
marquee: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' }
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' }
}
}
}
}
}
</script>
<style>
.gold-border { border: 1px solid rgba(212, 175, 55, 0.3) }
.text-stroke { -webkit-text-stroke: 1px #D4AF37; color: transparent }
.hover-scale { transition: transform 0.3s ease, box-shadow 0.3s ease }
.hover-scale:hover { transform: scale(1.03); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) }
.service-card {
background: linear-gradient(180deg, rgba(245, 243, 239, 0) 0%, #F5F3EF 100%);
backdrop-filter: blur(12px);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -4px;
left: 0;
background-color: #D4AF37;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.testimonial-card {
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}
.form-input {
background: rgba(245, 243, 239, 0.7);
border-bottom: 2px solid rgba(212, 175, 55, 0.3);
transition: all 0.3s ease;
}
.form-input:focus {
border-bottom-color: #D4AF37;
background: rgba(245, 243, 239, 0.9);
}
.price-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 24px;
height: 24px;
border-radius: 50%;
background: #D4AF37;
cursor: pointer;
}
.feature-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.pulse-animation {
animation: pulse 3s infinite;
}
.swiper-pagination-bullet {
background: #D4AF37 !important;
opacity: 0.5 !important;
width: 12px !important;
height: 12px !important;
}
.swiper-pagination-bullet-active {
opacity: 1 !important;
width: 30px !important;
border-radius: 4px !important;
}
</style>
</head>
<body class="bg-light font-sans text-dark">
<!-- Navigation -->
<nav class="fixed w-full bg-light/90 backdrop-blur z-50 shadow-sm">
<div class="max-w-7xl mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<a href="#" class="text-3xl font-serif font-bold text-primary flex items-center">
<span class="text-accent">ZENITH</span>LY
<span class="text-xs font-sans font-normal ml-2 bg-accent text-dark px-2 py-1 rounded-full">PREMIUM</span>
</a>
<div class="hidden lg:flex items-center space-x-10">
<a href="#home" class="nav-link text-primary hover:text-accent transition">Home</a>
<a href="#portfolio" class="nav-link text-primary hover:text-accent transition">Portfolio</a>
<a href="#services" class="nav-link text-primary hover:text-accent transition">Services</a>
<a href="#process" class="nav-link text-primary hover:text-accent transition">Process</a>
<a href="#testimonials" class="nav-link text-primary hover:text-accent transition">Clients</a>
<button class="bg-accent px-6 py-3 rounded-full text-dark font-medium hover:bg-opacity-90 transition flex items-center">
Request Website
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</button>
</div>
<button class="lg:hidden text-primary">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-32 pb-20 px-6 relative overflow-hidden">
<div class="absolute inset-0 overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-r from-light to-light/70 z-10"></div>
<img src="https://images.unsplash.com/photo-1607082348824-0a96f2a4b3da"
alt="Luxury Retail Store"
class="w-full h-full object-cover object-center">
</div>
<div class="max-w-7xl mx-auto relative z-20">
<div class="grid lg:grid-cols-2 gap-16 items-center">
<div class="space-y-8 animate-fade-up">
<div class="inline-flex items-center px-4 py-2 rounded-full bg-accent/10 border border-accent/20">
<span class="text-accent font-medium">PREMIUM WEB SOLUTIONS</span>
</div>
<h1 class="text-5xl md:text-6xl font-serif font-bold text-primary leading-tight">
Elevate Your <span class="text-accent">Boutique's</span> Digital Presence
</h1>
<p class="text-lg text-gray-600">
Zenithly crafts bespoke digital experiences for luxury fashion retailers,
transforming your boutique's online presence into a premium destination.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="bg-accent px-8 py-4 rounded-full text-dark font-medium hover:bg-opacity-90 transition flex items-center justify-center">
Start Your Project
<i class="fas fa-arrow-right ml-3"></i>
</button>
<button class="border border-accent px-8 py-4 rounded-full text-accent hover:bg-accent hover:text-dark transition flex items-center justify-center">
<i class="fas fa-play-circle mr-3"></i>
Watch Showreel
</button>
</div>
<div class="flex items-center space-x-6 pt-4">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-light">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-light">
<img src="https://randomuser.me/api/portraits/women/45.jpg" class="w-10 h-10 rounded-full border-2 border-light">
</div>
<div>
<div class="flex items-center">
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
</div>
<p class="text-sm text-gray-600">Trusted by 150+ boutique owners</p>
</div>
</div>
</div>
<div class="relative group hidden lg:block">
<div class="absolute inset-0 bg-accent/10 rounded-3xl transform rotate-2 transition duration-500 group-hover:rotate-0"></div>
<div class="absolute -right-10 -top-10 w-32 h-32 rounded-full bg-accent/10 blur-3xl"></div>
<img src="https://images.unsplash.com/photo-1551232864-3f0890e580d9"
alt="Luxury Website Design"
class="rounded-3xl relative z-10 hover-scale shadow-xl">
<div class="absolute -left-10 -bottom-10 w-48 h-48 rounded-full bg-accent/5 blur-3xl"></div>
</div>
</div>
</div>
</section>
<!-- Marquee Brands -->
<div class="py-10 bg-dark text-light overflow-hidden">
<div class="flex space-x-16 animate-marquee whitespace-nowrap">
<span class="text-xl font-serif">HAUTE COUTURE</span>
<span class="text-xl font-serif">•</span>
<span class="text-xl font-serif">LUXURY RETAIL</span>
<span class="text-xl font-serif">•</span>
<span class="text-xl font-serif">BESPOKE DESIGN</span>
<span class="text-xl font-serif">•</span>
<span class="text-xl font-serif">PREMIUM E-COMMERCE</span>
<span class="text-xl font-serif">•</span>
<span class="text-xl font-serif">DIGITAL EXCELLENCE</span>
<span class="text-xl font-serif">•</span>
<span class="text-xl font-serif">ARTISANAL CRAFTSMANSHIP</span>
</div>
</div>
<!-- About Section -->
<section class="py-20 px-6 bg-light">
<div class="max-w-7xl mx-auto">
<div class="grid lg:grid-cols-2 gap-16 items-center">
<div class="space-y-8">
<h2 class="text-4xl font-serif font-bold text-primary">
Crafting Digital <span class="text-accent">Masterpieces</span> for Discerning Retailers
</h2>
<p class="text-lg text-gray-600">
At Zenithly, we understand that your boutique is more than just a store—it's a statement.
Our team of elite designers and developers create digital experiences that reflect the
exclusivity and craftsmanship of your brand.
</p>
<div class="space-y-6">
<div class="flex items-start space-x-4">
<div class="feature-icon">
<i class="fas fa-gem text-accent text-xl"></i>
</div>
<div>
<h4 class="font-serif text-xl font-medium">Luxury-First Approach</h4>
<p class="text-gray-600">Every pixel is crafted to exude sophistication and exclusivity.</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="feature-icon">
<i class="fas fa-chess-queen text-accent text-xl"></i>
</div>
<div>
<h4 class="font-serif text-xl font-medium">Bespoke Solutions</h4>
<p class="text-gray-600">No templates. Only custom designs tailored to your brand's essence.</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="feature-icon">
<i class="fas fa-hand-holding-usd text-accent text-xl"></i>
</div>
<div>
<h4 class="font-serif text-xl font-medium">Value-Driven Pricing</h4>
<p class="text-gray-600">Premium quality with flexible pricing models to suit your budget.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="grid grid-cols-2 gap-6">
<div class="bg-white p-6 rounded-2xl shadow-lg hover-scale">
<div class="text-5xl font-serif text-accent mb-4">150+</div>
<h4 class="font-medium text-lg">Satisfied Boutiques</h4>
<p class="text-gray-600 text-sm">Across North America & Europe</p>
</div>
<div class="bg-white p-6 rounded-2xl shadow-lg hover-scale">
<div class="text-5xl font-serif text-accent mb-4">98%</div>
<h4 class="font-medium text-lg">Client Retention</h4>
<p class="text-gray-600 text-sm">Year-over-year growth</p>
</div>
<div class="bg-white p-6 rounded-2xl shadow-lg hover-scale">
<div class="text-5xl font-serif text-accent mb-4">4.9</div>
<h4 class="font-medium text-lg">Average Rating</h4>
<p class="text-gray-600 text-sm">From our luxury clients</p>
</div>
<div class="bg-white p-6 rounded-2xl shadow-lg hover-scale">
<div class="text-5xl font-serif text-accent mb-4">24/7</div>
<h4 class="font-medium text-lg">Premium Support</h4>
<p class="text-gray-600 text-sm">Dedicated account managers</p>
</div>
</div>
<div class="absolute -z-10 -left-10 -top-10 w-64 h-64 rounded-full bg-accent/10 blur-3xl"></div>
<div class="absolute -z-10 -right-10 -bottom-10 w-64 h-64 rounded-full bg-accent/5 blur-3xl"></div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 px-6 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<div class="inline-flex items-center px-4 py-2 rounded-full bg-accent/10 border border-accent/20 mb-4">
<span class="text-accent font-medium">OUR WORK</span>
</div>
<h2 class="text-4xl font-serif font-bold text-primary">
Curated <span class="text-accent">Digital Showcases</span>
</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto mt-4">
Explore our portfolio of bespoke digital experiences crafted for luxury fashion retailers.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Portfolio Item 1 -->
<div class="group relative overflow-hidden rounded-2xl hover-scale">
<img src="https://images.unsplash.com/photo-1551232864-3f0890e580d9"
alt="Luxury Fashion Website"
class="w-full h-96 object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 via-black/40 to-transparent flex items-end p-8 opacity-0 group-hover:opacity-100 transition duration-500">
<div>
<h3 class="text-2xl font-serif text-light mb-2">Vogue Atelier</h3>
<p class="text-light/80 mb-4">Premium Fashion Retailer in Milan</p>
<div class="flex space-x-4">
<span class="text-xs bg-accent text-dark px-2 py-1 rounded-full">E-Commerce</span>
<span class="text-xs bg-white/20 text-light px-2 py-1 rounded-full">Custom CMS</span>
</div>
<button class="text-accent flex items-center mt-4">
View Case Study
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Portfolio Item 2 -->
<div class="group relative overflow-hidden rounded-2xl hover-scale">
<img src="https://plus.unsplash.com/premium_photo-1705554330163-2e0ccc1808e2?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Luxury Shoe Store Website"
class="w-full h-96 object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 via-black/40 to-transparent flex items-end p-8 opacity-0 group-hover:opacity-100 transition duration-500">
<div>
<h3 class="text-2xl font-serif text-light mb-2">Sole Supreme</h3>
<p class="text-light/80 mb-4">Luxury Footwear Boutique in Paris</p>
<div class="flex space-x-4">
<span class="text-xs bg-accent text-dark px-2 py-1 rounded-full">E-Commerce</span>
<span class="text-xs bg-white/20 text-light px-2 py-1 rounded-full">AR Try-On</span>
</div>
<button class="text-accent flex items-center mt-4">
View Case Study
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Portfolio Item 3 -->
<div class="group relative overflow-hidden rounded-2xl hover-scale">
<img src="https://images.unsplash.com/photo-1554412933-514a83d2f3c8"
alt="Luxury Jewelry Website"
class="w-full h-96 object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 via-black/40 to-transparent flex items-end p-8 opacity-0 group-hover:opacity-100 transition duration-500">
<div>
<h3 class="text-2xl font-serif text-light mb-2">Gilded Treasures</h3>
<p class="text-light/80 mb-4">Fine Jewelry Atelier in New York</p>
<div class="flex space-x-4">
<span class="text-xs bg-accent text-dark px-2 py-1 rounded-full">E-Commerce</span>
<span class="text-xs bg-white/20 text-light px-2 py-1 rounded-full">3D Product Viewer</span>
</div>
<button class="text-accent flex items-center mt-4">
View Case Study
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Portfolio Item 4 -->
<div class="group relative overflow-hidden rounded-2xl hover-scale">
<img src="https://images.unsplash.com/photo-1483985988355-763728e1935b"
alt="Luxury Fashion Website"
class="w-full h-96 object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 via-black/40 to-transparent flex items-end p-8 opacity-0 group-hover:opacity-100 transition duration-500">
<div>
<h3 class="text-2xl font-serif text-light mb-2">Chic Haven</h3>
<p class="text-light/80 mb-4">Boutique Fashion House in London</p>
<div class="flex space-x-4">
<span class="text-xs bg-accent text-dark px-2 py-1 rounded-full">E-Commerce</span>
<span class="text-xs bg-white/20 text-light px-2 py-1 rounded-full">Personal Styling</span>
</div>
<button class="text-accent flex items-center mt-4">
View Case Study
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Portfolio Item 5 -->
<div class="group relative overflow-hidden rounded-2xl hover-scale">
<img src="https://images.unsplash.com/photo-1525507119028-ed4c629a60a3"
alt="Luxury Menswear Website"
class="w-full h-96 object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 via-black/40 to-transparent flex items-end p-8 opacity-0 group-hover:opacity-100 transition duration-500">
<div>
<h3 class="text-2xl font-serif text-light mb-2">Gentleman's Reserve</h3>
<p class="text-light/80 mb-4">Bespoke Menswear in Tokyo</p>
<div class="flex space-x-4">
<span class="text-xs bg-accent text-dark px-2 py-1 rounded-full">E-Commerce</span>
<span class="text-xs bg-white/20 text-light px-2 py-1 rounded-full">Tailoring Appointments</span>
</div>
<button class="text-accent flex items-center mt-4">
View Case Study
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Portfolio Item 6 -->
<div class="group relative overflow-hidden rounded-2xl hover-scale bg-dark flex items-center justify-center">
<div class="text-center p-8">
<h3 class="text-2xl font-serif text-light mb-4">Your Boutique Here</h3>
<p class="text-light/80 mb-6">Let us craft a digital masterpiece for your brand</p>
<button class="bg-accent px-6 py-3 rounded-full text-dark font-medium hover:bg-opacity-90 transition">
Start Your Project
</button>
</div>
</div>
</div>
<div class="text-center mt-16">
<button class="border border-accent px-8 py-4 rounded-full text-accent hover:bg-accent hover:text-dark transition">
View Full Portfolio
</button>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 px-6 bg-light">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<div class="inline-flex items-center px-4 py-2 rounded-full bg-accent/10 border border-accent/20 mb-4">
<span class="text-accent font-medium">OUR SERVICES</span>
</div>
<h2 class="text-4xl font-serif font-bold text-primary">
Bespoke <span class="text-accent">Digital Solutions</span>
</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto mt-4">
Tailored web solutions designed to elevate your boutique's digital presence.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white p-8 rounded-2xl shadow-lg hover-scale group">
<div class="text-accent text-4xl mb-6 font-serif">01</div>
<h3 class="text-2xl font-serif font-bold mb-4 group-hover:text-accent transition">Premium E-Commerce</h3>
<p class="text-gray-600 mb-6">
Sophisticated online stores with seamless checkout, inventory management, and luxury shopping experience.
</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Custom product displays</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Secure payment gateways</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Inventory synchronization</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>VIP customer portals</span>
</li>
</ul>
<button class="text-accent font-medium flex items-center">
Learn More
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Service 2 -->
<div class="bg-white p-8 rounded-2xl shadow-lg hover-scale group">
<div class="text-accent text-4xl mb-6 font-serif">02</div>
<h3 class="text-2xl font-serif font-bold mb-4 group-hover:text-accent transition">Brand Identity Design</h3>
<p class="text-gray-600 mb-6">
Comprehensive visual identity that communicates your boutique's unique value proposition.
</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Logo & visual identity</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Brand guidelines</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Typography systems</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Color psychology</span>
</li>
</ul>
<button class="text-accent font-medium flex items-center">
Learn More
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Service 3 -->
<div class="bg-white p-8 rounded-2xl shadow-lg hover-scale group">
<div class="text-accent text-4xl mb-6 font-serif">03</div>
<h3 class="text-2xl font-serif font-bold mb-4 group-hover:text-accent transition">Content Management</h3>
<p class="text-gray-600 mb-6">
Intuitive systems to manage your boutique's digital content with ease and sophistication.
</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Custom CMS development</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Product management</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Seasonal lookbooks</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Blog & editorial</span>
</li>
</ul>
<button class="text-accent font-medium flex items-center">
Learn More
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Service 4 -->
<div class="bg-white p-8 rounded-2xl shadow-lg hover-scale group">
<div class="text-accent text-4xl mb-6 font-serif">04</div>
<h3 class="text-2xl font-serif font-bold mb-4 group-hover:text-accent transition">Digital Marketing</h3>
<p class="text-gray-600 mb-6">
Strategic campaigns to position your boutique as a leader in the luxury fashion space.
</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>SEO optimization</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Social media integration</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Email marketing</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Influencer collaborations</span>
</li>
</ul>
<button class="text-accent font-medium flex items-center">
Learn More
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Service 5 -->
<div class="bg-white p-8 rounded-2xl shadow-lg hover-scale group">
<div class="text-accent text-4xl mb-6 font-serif">05</div>
<h3 class="text-2xl font-serif font-bold mb-4 group-hover:text-accent transition">Mobile Experience</h3>
<p class="text-gray-600 mb-6">
Flawless mobile experiences that maintain the luxury feel across all devices.
</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Responsive design</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Progressive web apps</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Mobile-first approach</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Touch optimization</span>
</li>
</ul>
<button class="text-accent font-medium flex items-center">
Learn More
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Service 6 -->
<div class="bg-white p-8 rounded-2xl shadow-lg hover-scale group">
<div class="text-accent text-4xl mb-6 font-serif">06</div>
<h3 class="text-2xl font-serif font-bold mb-4 group-hover:text-accent transition">Ongoing Support</h3>
<p class="text-gray-600 mb-6">
Premium maintenance and support to ensure your digital presence remains impeccable.
</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>24/7 monitoring</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Security updates</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Performance optimization</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-accent mr-3"></i>
<span>Dedicated account manager</span>
</li>
</ul>
<button class="text-accent font-medium flex items-center">
Learn More
<i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Pricing Calculator -->
<section class="py-20 px-6 bg-dark text-light">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<div class="inline-flex items-center px-4 py-2 rounded-full bg-accent/20 border border-accent/30 mb-4">
<span class="text-accent font-medium">TRANSPARENT PRICING</span>
</div>
<h2 class="text-4xl font-serif font-bold text-light">
Custom <span class="text-accent">Pricing</span> Calculator
</h2>
<p class="text-lg text-light/80 max-w-2xl mx-auto mt-4">
Adjust the sliders to estimate your investment based on desired features.
</p>
</div>
<div class="grid lg:grid-cols-2 gap-16 items-center">
<div class="space-y-8">
<div class="space-y-6">
<!-- Feature 1 -->
<div>
<div class="flex justify-between mb-2">
<label class="font-medium">E-Commerce Functionality</label>
<span class="text-accent font-medium">+ $2,500</span>
</div>
<input type="range" min="0" max="1" value="1" class="w-full price-slider">
</div>
<!-- Feature 2 -->
<div>
<div class="flex justify-between mb-2">
<label class="font-medium">Custom Design Complexity</label>
<span class="text-accent font-medium">+ $3,500</span>
</div>
<input type="range" min="0" max="3" value="2" class="w-full price-slider">
</div>
<!-- Feature 3 -->
<div>
<div class="flex justify-between mb-2">
<label class="font-medium">Number of Pages</label>
<span class="text-accent font-medium">+ $1,200</span>
</div>
<input type="range" min="5" max="50" value="15" class="w-full price-slider">
</div>
<!-- Feature 4 -->
<div>
<div class="flex justify-between mb-2">
<label class="font-medium">Content Management System</label>
<span class="text-accent font-medium">+ $1,800</span>
</div>
<input type="range" min="0" max="1" value="1" class="w-full price-slider">
</div>
<!-- Feature 5 -->
<div>
<div class="flex justify-between mb-2">
<label class="font-medium">Ongoing Support (months)</label>
<span class="text-accent font-medium">+ $300/mo</span>
</div>
<input type="range" min="0" max="12" value="6" class="w-full price-slider">
</div>
</div>
<div class="pt-6">
<button class="bg-accent px-8 py-4 rounded-full text-dark font-medium hover:bg-opacity-90 transition w-full">
Get Exact Quote
</button>
</div>
</div>
<div class="bg-secondary/50 rounded-2xl p-10 border border-accent/20">
<div class="text-center mb-8">
<div class="text-sm text-light/60 mb-2">ESTIMATED INVESTMENT</div>
<div class="text-6xl font-serif font-bold text-accent mb-2">$9,500</div>
<div class="text-light/60">one-time + $1,800/year</div>
</div>
<div class="space-y-4">
<div class="flex justify-between py-3 border-b border-light/10">
<span>Base Website</span>
<span class="font-medium">$4,500</span>
</div>
<div class="flex justify-between py-3 border-b border-light/10">
<span>E-Commerce</span>
<span class="font-medium">+ $2,500</span>
</div>
<div class="flex justify-between py-3 border-b border-light/10">
<span>Premium Design</span>
<span class="font-medium">+ $2,000</span>
</div>
<div class="flex justify-between py-3 border-b border-light/10">
<span>15 Pages</span>
<span class="font-medium">+ $1,200</span>
</div>
<div class="flex justify-between py-3 border-b border-light/10">
<span>6 Months Support</span>
<span class="font-medium">+ $1,800</span>
</div>
<div class="flex justify-between py-3 text-accent">
<span class="font-medium">Total</span>
<span class="font-bold">$9,500</span>
</div>
</div>
<div class="mt-8 text-center text-sm text-light/60">
<p>Prices are estimates. Final quote may vary based on specific requirements.</p>
<p class="mt-2">Flexible payment plans available.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section id="process" class="py-20 px-6 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<div class="inline-flex items-center px-4 py-2 rounded-full bg-accent/10 border border-accent/20 mb-4">
<span class="text-accent font-medium">OUR PROCESS</span>
</div>
<h2 class="text-4xl font-serif font-bold text-primary">
The Zenithly <span class="text-accent">Experience</span>
</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto mt-4">
A meticulous approach to crafting your boutique's digital masterpiece.
</p>
</div>
<div class="relative">
<!-- Process Timeline -->
<div class="hidden lg:block absolute left-1/2 top-0 h-full w-0.5 bg-accent/20 transform -translate-x-1/2"></div>
<div class="space-y-16 lg:space-y-32">
<!-- Step 1 -->
<div class="relative lg:grid lg:grid-cols-2 gap-16 items-center">
<div class="lg:text-right order-1">
<div class="inline-flex items-center justify-center w-16 h-16 rounded-full bg-accent text-dark text-2xl font-serif font-bold mb-6 lg:ml-auto">
1
</div>
<h3 class="text-2xl font-serif font-bold mb-4">Discovery & Consultation</h3>
<p class="text-gray-600">
We begin with an in-depth consultation to understand your boutique's unique identity,
target audience, and business objectives.
</p>
</div>
<div class="relative order-2">
<div class="absolute -left-10 -top-10 w-48 h-48 rounded-full bg-accent/5 blur-3xl"></div>
<img src="https://images.unsplash.com/photo-1552664730-d307ca884978"
alt="Discovery Meeting"
class="rounded-2xl hover-scale shadow-xl w-full">
</div>
</div>
<!-- Step 2 -->
<div class="relative lg:grid lg:grid-cols-2 gap-16 items-center">
<div class="relative order-2">
<div class="absolute -right-10 -top-10 w-48 h-48 rounded-full bg-accent/5 blur-3xl"></div>
<img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f"
alt="Design Process"
class="rounded-2xl hover-scale shadow-xl w-full">
</div>
<div class="order-1">
<div class="inline-flex items-center justify-center w-16 h-16 rounded-full bg-accent text-dark text-2xl font-serif font-bold mb-6">
2
</div>
<h3 class="text-2xl font-serif font-bold mb-4">Design & Strategy</h3>
<p class="text-gray-600">
Our creative team develops a custom design strategy that captures your brand's essence
while optimizing for user experience and conversion.
</p>
</div>
</div>
<!-- Step 3 -->
<div class="relative lg:grid lg:grid-cols-2 gap-16 items-center">
<div class="lg:text-right order-1">
<div class="inline-flex items-center justify-center w-16 h-16 rounded-full bg-accent text-dark text-2xl font-serif font-bold mb-6 lg:ml-auto">
3
</div>
<h3 class="text-2xl font-serif font-bold mb-4">Development & Refinement</h3>
<p class="text-gray-600">
Our developers bring the design to life with clean, efficient code while incorporating
your feedback through multiple refinement stages.
</p>
</div>
<div class="relative order-2">
<div class="absolute -left-10 -top-10 w-48 h-48 rounded-full bg-accent/5 blur-3xl"></div>
<img src="https://images.unsplash.com/photo-1579389083078-4e7018379f7e"
alt="Development Process"
class="rounded-2xl hover-scale shadow-xl w-full">
</div>
</div>
<!-- Step 4 -->
<div class="relative lg:grid lg:grid-cols-2 gap-16 items-center">
<div class="relative order-2">
<div class="absolute -right-10 -top-10 w-48 h-48 rounded-full bg-accent/5 blur-3xl"></div>
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692"
alt="Launch Process"
class="rounded-2xl hover-scale shadow-xl w-full">
</div>
<div class="order-1">
<div class="inline-flex items-center justify-center w-16 h-16 rounded-full bg-accent text-dark text-2xl font-serif font-bold mb-6">
4
</div>
<h3 class="text-2xl font-serif font-bold mb-4">Launch & Optimization</h3>
<p class="text-gray-600">
We deploy your website with precision, then monitor and optimize performance to ensure
your boutique makes the perfect first impression.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 px-6 bg-light">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<div class="inline-flex items-center px-4 py-2 rounded-full bg-accent/10 border border-accent/20 mb-4">
<span class="text-accent font-medium">CLIENT TESTIMONIALS</span>
</div>
<h2 class="text-4xl font-serif font-bold text-primary">
Trusted by <span class="text-accent">Luxury Retailers</span>
</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto mt-4">
Hear from boutique owners who've transformed their digital presence with Zenithly.
</p>
</div>
<div class="swiper testimonialSwiper">
<div class="swiper-wrapper pb-16">
<!-- Testimonial 1 -->
<div class="swiper-slide">
<div class="bg-white p-10 rounded-2xl testimonial-card hover-scale">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/43.jpg"
alt="Isabella Rossi"
class="w-16 h-16 rounded-full object-cover border-2 border-accent">
<div class="ml-4">
<h4 class="font-serif text-xl font-bold">Isabella Rossi</h4>
<p class="text-accent">Owner, Bella Moda Milano</p>
</div>
</div>
<p class="text-gray-600 mb-6">
"Zenithly transformed our online presence completely. Our e-commerce sales increased by
240% within three months of launching our new website. The attention to detail and
understanding of luxury retail is unparalleled."
</p>
<div class="flex items-center">
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="swiper-slide">
<div class="bg-white p-10 rounded-2xl testimonial-card hover-scale">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/65.jpg"
alt="Alexander Dubois"
class="w-16 h-16 rounded-full object-cover border-2 border-accent">
<div class="ml-4">
<h4 class="font-serif text-xl font-bold">Alexander Dubois</h4>
<p class="text-accent">CEO, Le Château Parisien</p>
</div>
</div>
<p class="text-gray-600 mb-6">
"Working with Zenithly was like finding a creative partner who truly understood our
brand's DNA. The website they created perfectly captures the essence of our Parisian
atelier while delivering exceptional functionality."
</p>
<div class="flex items-center">
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="swiper-slide">
<div class="bg-white p-10 rounded-2xl testimonial-card hover-scale">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/68.jpg"
alt="Sophia Chen"
class="w-16 h-16 rounded-full object-cover border-2 border-accent">
<div class="ml-4">
<h4 class="font-serif text-xl font-bold">Sophia Chen</h4>
<p class="text-accent">Founder, Silk Road Couture</p>
</div>
</div>
<p class="text-gray-600 mb-6">
"The 3D product viewer Zenithly implemented for our jewelry collection has been a
game-changer. Our customers can now appreciate the craftsmanship in ways that photos
alone could never convey. Our conversion rates have never been higher."
</p>
<div class="flex items-center">
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
<i class="fas fa-star text-accent mr-1"></i>
</div>
</div>
</div>