-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzibaei2.html
More file actions
1327 lines (1217 loc) · 77.3 KB
/
Copy pathzibaei2.html
File metadata and controls
1327 lines (1217 loc) · 77.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="fa" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="کلینیک تخصصی پوست و زیبایی - خدمات لیزر، بوتاکس، فیلر، پاکسازی پوست و جوانسازی با تجهیزات پیشرفته و پزشکان متخصص" />
<title>کلینیک پوست و زیبایی | خدمات حرفهای زیبایی و درمانی</title>
<!-- TODO: Replace CDN with local Tailwind build for production to improve performance and avoid CSP issues -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Custom Tailwind Config for RTL and Persian -->
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f0fdf4',
100: '#dcfce7',
200: '#bbf7d0',
300: '#86efac',
400: '#4ade80',
500: '#22c55e',
600: '#16a34a',
700: '#15803d',
800: '#166534',
900: '#14532d',
},
cream: {
50: '#fefdfb',
100: '#fdf8f0',
200: '#f9edd8',
300: '#f3ddb8',
400: '#e8c48a',
},
beige: {
50: '#fdfdfc',
100: '#faf8f5',
200: '#f5f0e8',
300: '#ede4d6',
400: '#e2d3be',
},
gold: {
50: '#fefbe8',
100: '#fdf4c3',
200: '#f9e68c',
300: '#f3d152',
400: '#e8b82a',
}
},
fontFamily: {
sans: ['Vazirmatn', 'system-ui', 'sans-serif'],
serif: ['Noto Naskh Arabic', 'serif'],
},
animation: {
'fade-in': 'fadeIn 1s ease-in-out',
'slide-up': 'slideUp 0.8s ease-out',
'slide-left': 'slideLeft 0.8s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(30px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
slideLeft: {
'0%': { opacity: '0', transform: 'translateX(-30px)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
},
},
},
}
</script>
<!-- TODO: Consider self-hosting fonts or using system fonts as fallback for better performance and offline support -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600;700&family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Hero Background Video Fallback -->
<style>
.hero-bg {
background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f8fafc" width="1200" height="800"/><text x="600" y="400" text-anchor="middle" fill="%23e2d3be" font-size="48" font-family="Arial">Background Image</text></svg>');
background-size: cover;
background-position: center;
}
.before-after-slider {
position: relative;
overflow: hidden;
}
.before-after-slider img {
width: 100%;
height: auto;
display: block;
}
.before-after-slider .divider {
position: absolute;
top: 0;
left: 50%;
width: 4px;
height: 100%;
background: white;
cursor: ew-resize;
z-index: 10;
}
.before-after-slider .divider::before {
content: '<';
position: absolute;
top: 50%;
left: -20px;
transform: translateY(-50%);
background: white;
color: #16a34a;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: bold;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.before-after-slider .divider::after {
content: '>';
position: absolute;
top: 50%;
right: -20px;
transform: translateY(-50%);
background: white;
color: #16a34a;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: bold;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.before-after-slider .before {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
overflow: hidden;
}
.before-after-slider .after {
position: relative;
width: 100%;
height: 100%;
}
.stat-counter {
font-size: 2.5rem;
font-weight: 700;
color: #22c55e;
}
.stat-label {
font-size: 0.875rem;
color: #6b7280;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
</style>
</head>
<body class="font-sans text-gray-800 bg-cream-50">
<!-- ==================== HEADER ==================== -->
<header class="sticky top-0 z-50 bg-white/95 backdrop-blur-sm shadow-sm">
<div class="container mx-auto px-4 py-4">
<div class="flex items-center justify-between">
<!-- Logo -->
<a href="#" class="flex items-center space-x-2">
<div class="w-12 h-12 bg-gradient-to-br from-primary-500 to-gold-400 rounded-full flex items-center justify-center">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.965 15.026a3 3 0 104.242 0 3 3 0 00-4.242 0z"></path>
</svg>
</div>
<div>
<h1 class="text-xl font-bold text-gray-900">کلینیک زیبایی</h1>
<p class="text-sm text-gray-500">پوست سالم، زیبایی ابدی</p>
</div>
</a>
<!-- Navigation -->
<nav class="hidden lg:flex items-center space-x-8">
<a href="#home" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium">خانه</a>
<a href="#services" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium">خدمات</a>
<a href="#about" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium">درباره ما</a>
<a href="#gallery" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium">گالری</a>
<a href="#testimonials" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium">نظرات</a>
<a href="#contact" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium">تماس</a>
</nav>
<!-- CTA Button -->
<a href="#appointment" class="hidden sm:block bg-gradient-to-l from-primary-600 to-gold-400 text-white px-6 py-3 rounded-full font-semibold hover:shadow-lg transition-all duration-300 transform hover:scale-105">
رزرو نوبت
</a>
<!-- Mobile Menu Button -->
<button id="mobile-menu-btn" class="lg:hidden p-2 rounded-md text-gray-600 hover:text-primary-600 hover:bg-primary-50">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden lg:hidden mt-4 pb-4">
<div class="flex flex-col space-y-4">
<a href="#home" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium py-2">خانه</a>
<a href="#services" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium py-2">خدمات</a>
<a href="#about" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium py-2">درباره ما</a>
<a href="#gallery" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium py-2">گالری</a>
<a href="#testimonials" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium py-2">نظرات</a>
<a href="#contact" class="text-gray-600 hover:text-primary-600 transition-colors duration-200 font-medium py-2">تماس</a>
<a href="#appointment" class="bg-gradient-to-l from-primary-600 to-gold-400 text-white px-6 py-3 rounded-full font-semibold text-center">
رزرو نوبت
</a>
</div>
</div>
</div>
</header>
<!-- ==================== HERO SECTION ==================== -->
<section id="home" class="relative min-h-screen flex items-center justify-center hero-bg">
<div class="absolute inset-0 bg-black/20"></div>
<div class="relative z-10 container mx-auto px-4 text-center">
<div class="max-w-4xl mx-auto">
<p class="text-lg font-medium text-gold-400 mb-4 animate-fade-in">بهترین کلینیک پوست و زیبایی در شهر</p>
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6 animate-slide-up">
زیبایی را با <span class="text-gold-400">اطمینان</span> تجربه کنید
</h1>
<p class="text-lg md:text-xl text-white/90 mb-8 max-w-2xl mx-auto animate-slide-up" style="animation-delay: 0.2s">
کلینیک تخصصی ما با استفاده از مدرنترین تجهیزات و پزشکان مجرب، راهکارهای کامل زیبایی و درمانی را به شما ارائه میدهد.
</p>
<!-- TODO: Move inline animation-delays to CSS classes for better maintainability -->
<div class="flex flex-col sm:flex-row gap-4 justify-center animate-slide-up" style="animation-delay: 0.4s">
<a href="#appointment" class="bg-gradient-to-l from-primary-600 to-primary-700 text-white px-8 py-4 rounded-full font-semibold hover:shadow-lg transition-all duration-300 transform hover:scale-105">
رزرو نوبت آنلاین
</a>
<a href="#contact" class="bg-white/20 backdrop-blur-sm border-2 border-white/30 text-white px-8 py-4 rounded-full font-semibold hover:bg-white/30 transition-all duration-300">
مشاوره رایگان
</a>
</div>
<!-- Trust Indicators -->
<div class="mt-16 flex flex-wrap justify-center gap-8 animate-fade-in" style="animation-delay: 0.6s">
<div class="flex items-center space-x-2 text-white">
<svg class="w-6 h-6 text-gold-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<span>بیش از <span class="font-bold">5000</span> بیمار راضی</span>
</div>
<div class="flex items-center space-x-2 text-white">
<svg class="w-6 h-6 text-gold-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"></path>
</svg>
<span>بیش از <span class="font-bold">10 سال</span> تجربه</span>
</div>
<div class="flex items-center space-x-2 text-white">
<svg class="w-6 h-6 text-gold-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 3v4M3 5h4M6 17v4m-2-2h4m5-16l2.286 6.857L21 12l-5.714 2.143L13 21l-2.286-6.857L5 12l5.714-2.143L13 3z"></path>
</svg>
<span>تجهیزات <span class="font-bold">پیشرفته</span></span>
</div>
</div>
</div>
</div>
<!-- Scroll Down Indicator -->
<div class="absolute bottom-8 left-1/2 transform -translate-x-1/2 animate-bounce">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
</svg>
</div>
</section>
<!-- ==================== SERVICES SECTION ==================== -->
<section id="services" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<p class="text-primary-600 font-semibold mb-2">خدمات ما</p>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">خدمات تخصصی کلینیک زیبایی</h2>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">
ما طیف گستردهای از خدمات زیبایی و درمانی را با بالاترین استانداردهای کیفی ارائه میدهیم.
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card 1 -->
<div class="bg-cream-50 rounded-2xl p-8 hover:shadow-xl transition-all duration-300 group">
<div class="w-16 h-16 bg-gradient-to-br from-primary-500 to-gold-400 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform duration-300">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.5L15.232 5.232z"></path>
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">لیزر موهای زائد</h3>
<p class="text-gray-600 mb-4">
حذف دائمی موهای زائد با جدیدترین دستگاههای لیزر الکساندرایت و دیود، مناسب برای تمام انواع پوست.
</p>
<a href="#" class="text-primary-600 font-semibold hover:text-primary-700 transition-colors duration-200 flex items-center">
اطلاعات بیشتر
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
</div>
<!-- Service Card 2 -->
<div class="bg-cream-50 rounded-2xl p-8 hover:shadow-xl transition-all duration-300 group">
<div class="w-16 h-16 bg-gradient-to-br from-primary-500 to-gold-400 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform duration-300">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"></path>
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">بوتاکس و فیلر</h3>
<p class="text-gray-600 mb-4">
جوانسازی صورت، از بین بردن چین و چروکها و حجمدهی با استفاده از مواد با کیفیت و تایید شده.
</p>
<a href="#" class="text-primary-600 font-semibold hover:text-primary-700 transition-colors duration-200 flex items-center">
اطلاعات بیشتر
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
</div>
<!-- Service Card 3 -->
<div class="bg-cream-50 rounded-2xl p-8 hover:shadow-xl transition-all duration-300 group">
<div class="w-16 h-16 bg-gradient-to-br from-primary-500 to-gold-400 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform duration-300">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13"></path>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">پاکسازی پوست و میکرونیدلینگ</h3>
<p class="text-gray-600 mb-4">
پاکسازی عمیق پوست، درمان آکنه و لکها با استفاده از روشهای مدرن و موثر.
</p>
<a href="#" class="text-primary-600 font-semibold hover:text-primary-700 transition-colors duration-200 flex items-center">
اطلاعات بیشتر
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
</div>
<!-- Service Card 4 -->
<div class="bg-cream-50 rounded-2xl p-8 hover:shadow-xl transition-all duration-300 group">
<div class="w-16 h-16 bg-gradient-to-br from-primary-500 to-gold-400 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform duration-300">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a2 2 0 01-2 2H6a2 2 0 01-2-2V4z"></path>
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">درمان آکنه و لک</h3>
<p class="text-gray-600 mb-4">
درمان تخصصی آکنه، لکهای پیری و تیرهگی پوست با استفاده از لیزر و روشهای درمانی موثر.
</p>
<a href="#" class="text-primary-600 font-semibold hover:text-primary-700 transition-colors duration-200 flex items-center">
اطلاعات بیشتر
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
</div>
<!-- Service Card 5 -->
<div class="bg-cream-50 rounded-2xl p-8 hover:shadow-xl transition-all duration-300 group">
<div class="w-16 h-16 bg-gradient-to-br from-primary-500 to-gold-400 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform duration-300">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"></path>
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">جوانسازی و PRP</h3>
<p class="text-gray-600 mb-4">
جوانسازی پوست با استفاده از پلاسمای غنی از پلاکت (PRP) و روشهای طبیعی برای بازگرداندن شادابی پوست.
</p>
<a href="#" class="text-primary-600 font-semibold hover:text-primary-700 transition-colors duration-200 flex items-center">
اطلاعات بیشتر
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
</div>
<!-- Service Card 6 -->
<div class="bg-cream-50 rounded-2xl p-8 hover:shadow-xl transition-all duration-300 group">
<div class="w-16 h-16 bg-gradient-to-br from-primary-500 to-gold-400 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform duration-300">
<svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9"></path>
</svg>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">مزوتراپی و هیدرادرم</h3>
<p class="text-gray-600 mb-4">
تغذیه و آبرسانی عمیق پوست با استفاده از ویتامینها و مواد مغذی برای پوستی سالم و درخشان.
</p>
<a href="#" class="text-primary-600 font-semibold hover:text-primary-700 transition-colors duration-200 flex items-center">
اطلاعات بیشتر
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"></path>
</svg>
</a>
</div>
</div>
</div>
</section>
<!-- ==================== ABOUT SECTION ==================== -->
<section id="about" class="py-20 bg-cream-50">
<div class="container mx-auto px-4">
<div class="grid lg:grid-cols-2 gap-12 items-center">
<!-- Image -->
<div class="relative">
<div class="rounded-2xl overflow-hidden shadow-2xl">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400'><rect fill='%23f1f5f9' width='600' height='400'/><text x='300' y='200' text-anchor='middle' fill='%236b7280' font-size='24' font-family='Arial'>تصویر کلینیک</text></svg>"
alt="فضای کلینیک زیبایی"
class="w-full h-auto">
</div>
<!-- Decorative Element -->
<div class="absolute -top-8 -left-8 w-24 h-24 bg-primary-200 rounded-full opacity-50 -z-10"></div>
<div class="absolute -bottom-8 -right-8 w-32 h-32 bg-gold-200 rounded-full opacity-50 -z-10"></div>
</div>
<!-- Content -->
<div>
<p class="text-primary-600 font-semibold mb-2">درباره ما</p>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">چرا کلینیک زیبایی ما را انتخاب کنید؟</h2>
<p class="text-gray-600 mb-8">
کلینیک زیبایی ما با بیش از یک دهه تجربه در زمینه خدمات زیبایی و درمانی، همواره در تلاش بوده است تا با استفاده از مدرنترین تجهیزات و کادر مجرب، بهترین خدمات را به مراجعهکنندگان عزیز ارائه دهد. ما belief داریم که زیبایی حق هر فردی است و سعی میکنیم این حق را با کیفیت و اعتماد کامل به شما ارائه دهیم.
</p>
<!-- Features -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary-100 rounded-xl flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"></path>
</svg>
</div>
<div>
<h4 class="font-bold text-gray-900 mb-1">تجهیزات پیشرفته</h4>
<p class="text-gray-600 text-sm">مدرنترین دستگاههای لیزر و زیبایی با استانداردهای بینالمللی</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary-100 rounded-xl flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"></path>
</svg>
</div>
<div>
<h4 class="font-bold text-gray-900 mb-1">پزشکان متخصص</h4>
<p class="text-gray-600 text-sm">کادر پزشکی مجرب و متخصص در زمینه پوست و زیبایی</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary-100 rounded-xl flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path>
</svg>
</div>
<div>
<h4 class="font-bold text-gray-900 mb-1">محیط استریل</h4>
<p class="text-gray-600 text-sm">رعایت کامل استانداردهای بهداشتی و استریل بودن محیط</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary-100 rounded-xl flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"></path>
</svg>
</div>
<div>
<h4 class="font-bold text-gray-900 mb-1">نتایج طبیعی</h4>
<p class="text-gray-600 text-sm">تمرکز بر نتایج طبیعی و زیبا بدون تغییرات مصنوعی</p>
</div>
</div>
</div>
<!-- Stats -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="bg-white rounded-xl p-4 text-center">
<div class="stat-counter" data-target="10">0</div>
<div class="stat-label">سال تجربه</div>
</div>
<div class="bg-white rounded-xl p-4 text-center">
<div class="stat-counter" data-target="5000">0</div>
<div class="stat-label">بیمار راضی</div>
</div>
<div class="bg-white rounded-xl p-4 text-center">
<div class="stat-counter" data-target="50">0</div>
<div class="stat-label">پزشک متخصص</div>
</div>
<div class="bg-white rounded-xl p-4 text-center">
<div class="stat-counter" data-target="98">0</div>
<div class="stat-label">درصد رضایت</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== GALLERY SECTION ==================== -->
<section id="gallery" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<p class="text-primary-600 font-semibold mb-2">گالری ما</p>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">قبل و بعد</h2>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">
مشاهده نتایج واقعی درمانها و خدمات کلینیک زیبایی ما
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Gallery Item 1 -->
<div class="relative group overflow-hidden rounded-2xl shadow-lg cursor-pointer">
<div class="before-after-slider">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23f1f5f9' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%236b7280' font-size='16' font-family='Arial'>قبل</text></svg>"
alt="قبل از درمان"
class="before">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23dcfce7' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%2316a34a' font-size='16' font-family='Arial'>بعد</text></svg>"
alt="بعد از درمان"
class="after">
<div class="divider"></div>
</div>
<div class="absolute inset-0 bg-black/40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<button class="bg-white text-gray-800 px-4 py-2 rounded-full font-semibold hover:bg-gray-100 transition-colors">
مشاهده جزئیات
</button>
</div>
</div>
<!-- Gallery Item 2 -->
<div class="relative group overflow-hidden rounded-2xl shadow-lg cursor-pointer">
<div class="before-after-slider">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23f1f5f9' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%236b7280' font-size='16' font-family='Arial'>قبل</text></svg>"
alt="قبل از درمان"
class="before">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23dcfce7' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%2316a34a' font-size='16' font-family='Arial'>بعد</text></svg>"
alt="بعد از درمان"
class="after">
<div class="divider"></div>
</div>
<div class="absolute inset-0 bg-black/40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<button class="bg-white text-gray-800 px-4 py-2 rounded-full font-semibold hover:bg-gray-100 transition-colors">
مشاهده جزئیات
</button>
</div>
</div>
<!-- Gallery Item 3 -->
<div class="relative group overflow-hidden rounded-2xl shadow-lg cursor-pointer">
<div class="before-after-slider">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23f1f5f9' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%236b7280' font-size='16' font-family='Arial'>قبل</text></svg>"
alt="قبل از درمان"
class="before">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23dcfce7' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%2316a34a' font-size='16' font-family='Arial'>بعد</text></svg>"
alt="بعد از درمان"
class="after">
<div class="divider"></div>
</div>
<div class="absolute inset-0 bg-black/40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<button class="bg-white text-gray-800 px-4 py-2 rounded-full font-semibold hover:bg-gray-100 transition-colors">
مشاهده جزئیات
</button>
</div>
</div>
<!-- More Gallery Items -->
<div class="relative group overflow-hidden rounded-2xl shadow-lg cursor-pointer">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23e2d3be' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%236b7280' font-size='16' font-family='Arial'>تصویر درمان</text></svg>"
alt="درمان زیبایی"
class="w-full h-64 object-cover">
<div class="absolute inset-0 bg-black/40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<button class="bg-white text-gray-800 px-4 py-2 rounded-full font-semibold hover:bg-gray-100 transition-colors">
مشاهده جزئیات
</button>
</div>
</div>
<div class="relative group overflow-hidden rounded-2xl shadow-lg cursor-pointer">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23e2d3be' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%236b7280' font-size='16' font-family='Arial'>تصویر درمان</text></svg>"
alt="درمان زیبایی"
class="w-full h-64 object-cover">
<div class="absolute inset-0 bg-black/40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<button class="bg-white text-gray-800 px-4 py-2 rounded-full font-semibold hover:bg-gray-100 transition-colors">
مشاهده جزئیات
</button>
</div>
</div>
<div class="relative group overflow-hidden rounded-2xl shadow-lg cursor-pointer">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect fill='%23e2d3be' width='400' height='300'/><text x='200' y='150' text-anchor='middle' fill='%236b7280' font-size='16' font-family='Arial'>تصویر درمان</text></svg>"
alt="درمان زیبایی"
class="w-full h-64 object-cover">
<div class="absolute inset-0 bg-black/40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<button class="bg-white text-gray-800 px-4 py-2 rounded-full font-semibold hover:bg-gray-100 transition-colors">
مشاهده جزئیات
</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="bg-gradient-to-l from-primary-600 to-gold-400 text-white px-8 py-4 rounded-full font-semibold hover:shadow-lg transition-all duration-300 transform hover:scale-105">
مشاهده همه
</button>
</div>
</div>
</section>
<!-- ==================== TESTIMONIALS SECTION ==================== -->
<section id="testimonials" class="py-20 bg-cream-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<p class="text-primary-600 font-semibold mb-2">نظرات بیماران</p>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">تجربههای واقعی، نتایج واقعی</h2>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">
بشنوید که بیماران ما درباره خدمات کلینیک زیبایی چه میگویند
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300">
<div class="flex items-center mb-4">
<div class="flex text-gold-400">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
</div>
</div>
<p class="text-gray-600 mb-6">
«بعد از سالها مبارزه با آکنه، سرانجام با درمانهای کلینیک زیبایی توانستم پوستی صاف و سالم داشته باشم. بسیار سپاسگزارم.»
</p>
<div class="flex items-center">
<!-- TODO: Add meaningful alt text for accessibility and replace placeholder SVGs with real images -->
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle fill='%23e2d3be' cx='50' cy='50' r='50'/><text x='50' y='55' text-anchor='middle' fill='%236b7280' font-size='20' font-family='Arial'>سرن</text></svg>"
alt="عکس بیمار سرن - نتیجه درمان موفق"
class="w-12 h-12 rounded-full object-cover">
<div class="mr-4">
<p class="font-semibold text-gray-900">سرن</p>
<p class="text-sm text-gray-500">بیمار</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300">
<div class="flex items-center mb-4">
<div class="flex text-gold-400">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
</div>
</div>
<p class="text-gray-600 mb-6">
«لیزر موهای زائد در این کلینیک بسیار موثر بود. بعد از چند جلسه نتایج شگفتانگیزی دیدم. کاملا راضی ام.»
</p>
<div class="flex items-center">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle fill='%23e2d3be' cx='50' cy='50' r='50'/><text x='50' y='55' text-anchor='middle' fill='%236b7280' font-size='20' font-family='Arial'>مهرناز</text></svg>"
alt="مهرناز"
class="w-12 h-12 rounded-full object-cover">
<div class="mr-4">
<p class="font-semibold text-gray-900">مهرناز</p>
<p class="text-sm text-gray-500">بیمار</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300">
<div class="flex items-center mb-4">
<div class="flex text-gold-400">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path></svg>
</div>
</div>
<p class="text-gray-600 mb-6">
«پزشکان بسیار حرفهای و دقت بالا در کار دارند. محیط کلینیک بسیار تمیز و آرامشبخش است. حتما توصیه میکنم.»
</p>
<div class="flex items-center">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle fill='%23e2d3be' cx='50' cy='50' r='50'/><text x='50' y='55' text-anchor='middle' fill='%236b7280' font-size='20' font-family='Arial'>علی</text></svg>"
alt="علی"
class="w-12 h-12 rounded-full object-cover">
<div class="mr-4">
<p class="font-semibold text-gray-900">علی</p>
<p class="text-sm text-gray-500">بیمار</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="bg-gradient-to-l from-primary-600 to-gold-400 text-white px-8 py-4 rounded-full font-semibold hover:shadow-lg transition-all duration-300 transform hover:scale-105">
نظرات بیشتر
</button>
</div>
</div>
</section>
<!-- ==================== APPOINTMENT FORM SECTION ==================== -->
<section id="appointment" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="grid lg:grid-cols-2 gap-12 items-center">
<!-- Left Side - Image -->
<div class="relative">
<div class="rounded-2xl overflow-hidden shadow-2xl">
<img src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><rect fill='%23f8fafc' width='600' height='600'/><text x='300' y='300' text-anchor='middle' fill='%236b7280' font-size='24' font-family='Arial'>رزرو نوبت</text></svg>"
alt="رزرو نوبت آنلاین"
class="w-full h-auto">
</div>
<!-- Decorative Elements -->
<div class="absolute -top-8 -left-8 w-24 h-24 bg-primary-200 rounded-full opacity-50 -z-10"></div>
<div class="absolute -bottom-8 -right-8 w-32 h-32 bg-gold-200 rounded-full opacity-50 -z-10"></div>
</div>
<!-- Right Side - Form -->
<div class="bg-cream-50 rounded-2xl p-8 shadow-xl">
<div class="text-center mb-8">
<p class="text-primary-600 font-semibold mb-2">رزرو نوبت</p>
<h2 class="text-3xl font-bold text-gray-900">رزرو نوبت آنلاین</h2>
<p class="text-gray-600 mt-4">
برای رزرو نوبت، فرم زیر را تکمیل کنید. کارشناسان ما در اسرع وقت با شما تماس خواهند گرفت.
</p>
</div>
<form id="appointment-form" class="space-y-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Name -->
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-2">
نام و نام خانوادگی <span class="text-red-500">*</span>
</label>
<input
type="text"
id="name"
name="name"
required
class="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors duration-200 bg-white"
placeholder="مثال: علیرضا سیازدی">
</div>
<!-- Phone -->
<div>
<label for="phone" class="block text-sm font-medium text-gray-700 mb-2">
شماره موبایل <span class="text-red-500">*</span>
</label>
<!-- TODO: Add proper Iranian phone number validation pattern (e.g., pattern="09[0-9]{9}") -->
<input
type="tel"
id="phone"
name="phone"
required
class="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors duration-200 bg-white"
placeholder="مثال: 09123456789">
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Email -->
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-2">
ایمیل (اختیاری)
</label>
<input
type="email"
id="email"
name="email"
class="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors duration-200 bg-white"
placeholder="m@example.com">
</div>
<!-- Service -->
<div>
<label for="service" class="block text-sm font-medium text-gray-700 mb-2">
انتخاب خدمت <span class="text-red-500">*</span>
</label>
<select
id="service"
name="service"
required
class="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors duration-200 bg-white">
<option value="" disabled selected>یک خدمت را انتخاب کنید</option>
<option value="laser">لیزر موهای زائد</option>
<option value="botox">بوتاکس و فیلر</option>
<option value="peeling">پاکسازی پوست و میکرونیدلینگ</option>
<option value="acne">درمان آکنه و لک</option>
<option value="rejuvenation">جوانسازی و PRP</option>
<option value="mesotherapy">مزوتراپی و هیدرادرم</option>
<option value="consultation">مشاوره رایگان</option>
</select>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Date -->
<div>
<label for="date" class="block text-sm font-medium text-gray-700 mb-2">
انتخاب تاریخ <span class="text-red-500">*</span>
</label>
<input
type="date"
id="date"
name="date"
required
min="2026-08-08"
class="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors duration-200 bg-white">
</div>
<!-- Time -->
<div>
<label for="time" class="block text-sm font-medium text-gray-700 mb-2">
انتخاب ساعت <span class="text-red-500">*</span>
</label>
<select
id="time"
name="time"
required
class="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors duration-200 bg-white">
<option value="" disabled selected>یک ساعت را انتخاب کنید</option>
<option value="09:00">09:00 - 10:00</option>
<option value="10:00">10:00 - 11:00</option>
<option value="11:00">11:00 - 12:00</option>
<option value="14:00">14:00 - 15:00</option>
<option value="15:00">15:00 - 16:00</option>
<option value="16:00">16:00 - 17:00</option>
<option value="17:00">17:00 - 18:00</option>
</select>
</div>
</div>
<!-- Message -->
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-2">
توضیحات یا پیام (اختیاری)
</label>
<textarea
id="message"
name="message"
rows="4"
class="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors duration-200 bg-white resize-none"
placeholder="پیام یا سوال خود را اینجا بنویسید..."></textarea>
</div>
<!-- Submit Button -->
<div class="text-center">
<button
type="submit"
class="w-full sm:w-auto bg-gradient-to-l from-primary-600 to-gold-400 text-white px-8 py-4 rounded-full font-semibold hover:shadow-lg transition-all duration-300 transform hover:scale-105">
ارسال درخواست
</button>
</div>
</form>
<!-- Success Message (Hidden by default) -->
<div id="success-message" class="hidden mt-6 p-4 bg-green-50 border border-green-200 rounded-xl text-center">
<div class="flex items-center justify-center mb-2">
<svg class="w-6 h-6 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<p class="text-green-800 font-semibold mr-2">درخواست شما با موفقیت ارسال شد!</p>
</div>
<p class="text-green-600 text-sm">کارشناسان ما در اسرع وقت با شما تماس خواهند گرفت.</p>
</div>
<!-- Error Message (Hidden by default) -->
<div id="error-message" class="hidden mt-6 p-4 bg-red-50 border border-red-200 rounded-xl text-center">
<div class="flex items-center justify-center mb-2">
<svg class="w-6 h-6 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<p class="text-red-800 font-semibold mr-2">خطا در ارسال درخواست!</p>
</div>
<p class="text-red-600 text-sm">لطفاً فیلدهای اجباری را تکمیل کنید.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== CONTACT SECTION ==================== -->
<section id="contact" class="py-20 bg-cream-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<p class="text-primary-600 font-semibold mb-2">تماس با ما</p>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">موقعیت و اطلاعات تماس</h2>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">
با ما در تماس باشید یا از کلینیک زیبایی ما بازدید کنید
</p>
</div>
<div class="grid lg:grid-cols-2 gap-12">
<!-- Map -->
<div class="rounded-2xl overflow-hidden shadow-xl">
<div class="h-96 bg-gray-200 flex items-center justify-center">
<p class="text-gray-500">نقشه گوگل (آدرس: تهران، خیابان ولیعصر، نبش خیابان طالقانی)</p>
</div>
</div>
<!-- Contact Info -->
<div class="space-y-8">
<!-- Address -->
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary-100 rounded-xl flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
</div>
<div>
<h3 class="font-bold text-gray-900 mb-1">آدرس</h3>
<p class="text-gray-600">
تهران، خیابان ولیعصر، نبش خیابان طالقانی، پلاک 123، طبقه 2
</p>
</div>
</div>
<!-- Phone -->
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary-100 rounded-xl flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"></path>
</svg>
</div>
<div>
<h3 class="font-bold text-gray-900 mb-1">تلفن</h3>
<p class="text-gray-600">
۰۲۱ - ۱۲۳۴۵۶۷۸ <br>
۰۹۱۲ - ۳۴۵۶۷۸۹
</p>
</div>
</div>
<!-- Email -->
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary-100 rounded-xl flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
</svg>
</div>
<div>
<h3 class="font-bold text-gray-900 mb-1">ایمیل</h3>
<p class="text-gray-600">
info@skinclinic.ir <br>
support@skinclinic.ir
</p>
</div>
</div>
<!-- Working Hours -->
<div class="flex items-start space-x-4">
<div class="w-12 h-12 bg-primary-100 rounded-xl flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
<div>
<h3 class="font-bold text-gray-900 mb-1">ساعات کاری</h3>