-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1238 lines (1118 loc) · 77 KB
/
Copy pathindex.html
File metadata and controls
1238 lines (1118 loc) · 77 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="fr" class="scroll-smooth">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WWLJQZXZ0R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WWLJQZXZ0R');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary SEO Meta Tags -->
<title>Tagada Studio | Photographe Scolaire, Club Sportif & Association Île-de-France</title>
<meta name="description" content="Photographe professionnel B2B basé à Neuilly-sur-Marne. Spécialiste de la photographie scolaire, photo de club sportif et reportage associatif en Seine-Saint-Denis (93) et Île-de-France. Solution numérique, commande en ligne sécurisée et démarche éthique." />
<meta name="robots" content="index, follow" />
<meta name="author" content="Tagada Studio" />
<link rel="canonical" href="https://tagadastudio.fr/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tagadastudio.fr/" />
<meta property="og:title" content="Tagada Studio | Photographe Scolaire, Club Sportif & Association Île-de-France" />
<meta property="og:description" content="Studio photo professionnel expert en Île-de-France. Portraits scolaires numériques, composites d'équipes de sport et reportages événementiels associatifs haut de gamme." />
<meta property="og:image" content="https://tagadastudio.fr/Images/photo_scolaire.webp" />
<meta property="og:locale" content="fr_FR" />
<meta property="og:site_name" content="Tagada Studio" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Tagada Studio | Photo Scolaire & Sportive en Île-de-France" />
<meta name="twitter:description" content="Photographie professionnelle pour écoles, clubs et associations. Zéro charge administrative pour les établissements, commande en ligne sécurisée pour les familles." />
<meta name="twitter:image" content="https://tagadastudio.fr/Images/photo_scolaire.webp" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
forest: {
DEFAULT: '#1A4D2E',
light: '#256D41',
dark: '#0F2F1B',
soft: '#E8F3EC',
},
stone: {
DEFAULT: '#FDFBF7',
dark: '#F3EFE9',
slate: '#E9E4DC',
},
ink: '#0C110D',
},
fontFamily: {
display: ['"Playfair Display"', 'Georgia', 'serif'],
body: ['"Plus Jakarta Sans"', 'system-ui', 'sans-serif'],
},
animation: {
'fade-in': 'fadeIn 1s ease-out forwards',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' }
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-10px)' }
}
}
}
}
}
</script>
<!-- Global Custom Styles -->
<style>
body {
font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
background-color: #FDFBF7;
color: #0C110D;
overflow-x: hidden;
}
/* Subtle grain phototexture overlay */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 9999;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
background: #1A4D2E;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #0F2F1B;
}
/* FAQ accordion dynamic heights */
details summary::-webkit-details-marker {
display: none;
}
details[open] summary svg {
transform: rotate(180deg);
}
details summary svg {
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Fade-up classes for JS Observer */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
/* Scrolled dynamic styles for color contrast */
#header-nav.scrolled #nav-links a {
color: rgba(12, 17, 13, 0.8) !important;
}
#header-nav.scrolled #nav-links a:hover {
color: #1A4D2E !important;
}
#header-nav.scrolled #nav-links a.active-link {
color: #1A4D2E !important;
border-color: rgba(26, 77, 46, 0.6) !important;
}
</style>
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://tagadastudio.fr/#organization",
"name": "Tagada Studio",
"url": "https://tagadastudio.fr",
"logo": {
"@type": "ImageObject",
"url": "https://tagadastudio.fr/Images/Logo.png",
"caption": "Tagada Studio"
},
"image": "https://tagadastudio.fr/Images/photo_scolaire.webp",
"sameAs": [],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+33-7-81-75-77-54",
"contactType": "customer service",
"email": "tagadastudiophoto@gmail.com",
"availableLanguage": ["French"]
}
},
{
"@type": "LocalBusiness",
"@id": "https://tagadastudio.fr/#business",
"name": "Tagada Studio",
"description": "Studio photographique professionnel spécialisé dans la photographie scolaire numérique, les photos de clubs sportifs et les reportages associatifs à Neuilly-sur-Marne et dans toute l'Île-de-France.",
"url": "https://tagadastudio.fr",
"telephone": "0781757754",
"email": "tagadastudiophoto@gmail.com",
"image": "https://tagadastudio.fr/Images/photo_scolaire.webp",
"logo": "https://tagadastudio.fr/Images/Logo.png",
"priceRange": "€€",
"currenciesAccepted": "EUR",
"paymentAccepted": "Credit Card, Bank Transfer, Cash",
"address": {
"@type": "PostalAddress",
"streetAddress": "Neuilly-sur-Marne",
"addressLocality": "Neuilly-sur-Marne",
"postalCode": "93330",
"addressRegion": "Île-de-France",
"addressCountry": "FR"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 48.8534,
"longitude": 2.5337
},
"areaServed": [
{
"@type": "AdministrativeArea",
"name": "Île-de-France"
},
{
"@type": "City",
"name": "Neuilly-sur-Marne"
},
{
"@type": "AdministrativeArea",
"name": "Seine-Saint-Denis"
},
{
"@type": "AdministrativeArea",
"name": "Val-de-Marne"
},
{
"@type": "AdministrativeArea",
"name": "Seine-et-Marne"
},
{
"@type": "AdministrativeArea",
"name": "Paris"
}
],
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday","Tuesday","Wednesday","Thursday","Friday"],
"opens": "09:00",
"closes": "18:00"
}
]
},
{
"@type": "FAQPage",
"@id": "https://tagadastudio.fr/#faq",
"mainEntity": [
{
"@type": "Question",
"name": "Pourquoi choisir Tagada Studio pour les photos scolaires ?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Nous éliminons toute la charge mentale liée à la gestion administrative des photos scolaires. Grâce à notre système de commande en ligne 100% numérique, les écoles n'ont plus à gérer d'enveloppes d'argent liquide ou de retours. Les parents commandent et règlent en ligne de façon sécurisée. De plus, nous reversons une commission de financement à la coopérative scolaire."
}
},
{
"@type": "Question",
"name": "Comment se déroule la vente de photos de clubs de sport ?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Nous organisons une séance photo dynamique pour les licenciés et les équipes. Les photos sont mises en vente sur notre galerie en ligne sécurisée. Tagada Studio propose un système de partenariat rémunéré : une partie du chiffre d'affaires des ventes est reversée directement à l'association pour soutenir ses projets sportifs."
}
},
{
"@type": "Question",
"name": "Dans quelle région de l'Île-de-France intervenez-vous ?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Basés à Neuilly-sur-Marne (93330), nous intervenons dans toute l'Île-de-France : Seine-Saint-Denis, Paris, Seine-et-Marne, Val-de-Marne, Yvelines, Essonne, Hauts-de-Seine et Val-d'Oise."
}
}
]
},
{
"@type": "BreadcrumbList",
"@id": "https://tagadastudio.fr/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://tagadastudio.fr/"
}
]
}
]
}
</script>
</head>
<body class="bg-stone text-ink selection:bg-forest selection:text-white antialiased">
<!-- ===================== HEADER / NAVIGATION ===================== -->
<header class="fixed top-0 left-0 right-0 z-50 transition-all duration-500" id="header-nav">
<nav class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4 sm:py-5 flex items-center justify-between" aria-label="Navigation principale">
<!-- LOGO -->
<a href="index.html" class="flex items-center gap-3 group focus:outline-none" aria-label="Tagada Studio - Accueil">
<img id="nav-logo-img" src="Images/Logo-tagada-studio-fond-transparent2-800 2 - Petite.png" alt="Tagada Studio" class="h-10 sm:h-11 w-auto object-contain transition-all duration-300 group-hover:scale-105" />
</a>
<!-- DESKTOP NAV -->
<ul class="hidden md:flex items-center gap-8 lg:gap-10 list-none text-sm font-medium text-white/90 transition-colors duration-300" id="nav-links" role="list">
<li><a href="#expertises" class="hover:text-white focus:text-white transition-colors py-2 relative group">Expertises<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-forest-light transition-all group-hover:w-full"></span></a></li>
<li><a href="#processus" class="hover:text-white focus:text-white transition-colors py-2 relative group">Notre Méthode<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-forest-light transition-all group-hover:w-full"></span></a></li>
<li><a href="#temoignages" class="hover:text-white focus:text-white transition-colors py-2 relative group">Témoignages<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-forest-light transition-all group-hover:w-full"></span></a></li>
<li><a href="#faq" class="hover:text-white focus:text-white transition-colors py-2 relative group">FAQ<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-forest-light transition-all group-hover:w-full"></span></a></li>
<li><a href="#contact" class="hover:text-white focus:text-white transition-colors py-2 relative group">Devis<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-forest-light transition-all group-hover:w-full"></span></a></li>
</ul>
<!-- CTA + MOBILE TOGGLE -->
<div class="flex items-center gap-3 sm:gap-4">
<a href="#contact" class="hidden sm:inline-flex items-center gap-2 px-5 py-2.5 rounded-full text-sm font-semibold transition-all duration-300 border border-white/20 bg-white/10 hover:bg-white hover:text-forest hover:border-white text-white shadow-sm hover:shadow-lg" id="nav-cta-btn">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/>
</svg>
Contact & Devis
</a>
<button id="mobile-menu-toggle" class="md:hidden p-2 rounded-xl text-white hover:bg-white/10 transition-colors" aria-label="Ouvrir le menu" aria-expanded="false" aria-controls="mobile-menu">
<svg id="hamburger-icon" class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/></svg>
<svg id="close-icon" class="w-6 h-6 hidden" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/></svg>
</button>
</div>
</nav>
<!-- MOBILE MENU -->
<div id="mobile-menu" class="hidden md:hidden absolute top-full left-0 w-full bg-forest-dark border-t border-white/10 py-6 px-4 shadow-xl z-40 transition-all duration-300">
<ul class="flex flex-col gap-4 list-none text-base font-semibold text-white/90" role="list">
<li><a href="#expertises" class="block py-2 px-3 rounded-lg hover:bg-white/5 transition-colors">Expertises</a></li>
<li><a href="#processus" class="block py-2 px-3 rounded-lg hover:bg-white/5 transition-colors">Notre Méthode</a></li>
<li><a href="#temoignages" class="block py-2 px-3 rounded-lg hover:bg-white/5 transition-colors">Témoignages</a></li>
<li><a href="#faq" class="block py-2 px-3 rounded-lg hover:bg-white/5 transition-colors">FAQ</a></li>
<li><a href="#contact" class="block py-2 px-3 rounded-lg hover:bg-white/5 transition-colors">Demander un Devis</a></li>
<li><a href="#contact" class="block mt-4 text-center bg-white text-forest py-3 rounded-full shadow-md font-bold">Contact & Devis</a></li>
</ul>
</div>
</header>
<main>
<!-- ===================== HERO SECTION ===================== -->
<section class="relative min-h-[95svh] flex flex-col justify-center items-center text-center bg-gradient-to-b from-forest-dark via-forest to-forest-dark py-24 sm:py-32 px-4 sm:px-6 lg:px-8 overflow-hidden z-10" aria-labelledby="hero-heading">
<!-- Visual Decorative Effects -->
<div class="absolute inset-0 bg-[radial-gradient(circle_at_center,_var(--tw-gradient-stops))] from-white/[0.04] via-transparent to-transparent pointer-events-none" aria-hidden="true"></div>
<div class="absolute w-[400px] h-[400px] sm:w-[600px] sm:h-[600px] rounded-full bg-forest-light/10 blur-[80px] sm:blur-[120px] -top-40 -right-40 pointer-events-none" aria-hidden="true"></div>
<div class="absolute w-[300px] h-[300px] sm:w-[550px] sm:h-[550px] rounded-full bg-forest-light/20 blur-[60px] sm:blur-[100px] -bottom-40 -left-40 pointer-events-none" aria-hidden="true"></div>
<div class="relative max-w-5xl mx-auto flex flex-col items-center">
<!-- TRUST BADGE -->
<div class="inline-flex items-center gap-2 px-4 py-2 rounded-full border border-white/20 bg-white/10 text-white/95 text-xs sm:text-sm font-semibold tracking-wide mb-8 animate-fade-in shadow-inner">
<span class="w-2.5 h-2.5 rounded-full bg-emerald-400 inline-block animate-pulse"></span>
Photographe Professionnel B2B · Neuilly-sur-Marne · Île-de-France
</div>
<!-- MAIN HEADING -->
<h1 id="hero-heading" class="font-display text-4xl sm:text-6xl md:text-7xl font-extrabold text-white tracking-tight leading-[1.1] mb-6 max-w-4xl animate-fade-in">
<span class="block text-xs sm:text-sm font-body font-bold tracking-[0.2em] text-stone-dark/85 uppercase mb-4">Photographe Scolaire, Club Sportif & Association en Île-de-France</span>
Chaque visage a sa lumière,<br/>
<em class="font-normal italic text-stone-dark opacity-95">chaque instant sa vérité.</em>
</h1>
<!-- SUBTITLE -->
<p class="text-base sm:text-lg md:text-xl text-white/80 max-w-3xl leading-relaxed font-light mb-10 sm:mb-12">
De la spontanéité d'une <strong class="text-white font-semibold">cour de récréation</strong> à la ferveur d'une <strong class="text-white font-semibold">victoire sportive</strong>, Tagada Studio crée des souvenirs authentiques et inoubliables pour les écoles, clubs et associations d'IDF.
</p>
<!-- CTA GROUP -->
<div class="flex flex-col sm:flex-row items-center justify-center gap-4 w-full sm:w-auto mb-16 sm:mb-20">
<a href="#contact" class="btn-primary w-full sm:w-auto text-center px-8 py-4 rounded-full text-base font-bold bg-white text-forest shadow-lg hover:shadow-2xl hover:bg-stone-dark hover:-translate-y-0.5 active:translate-y-0 transition-all duration-300 flex items-center justify-center gap-2" aria-label="Demander une intervention photographique">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/>
</svg>
Demander une intervention
</a>
<a href="#expertises" class="btn-secondary w-full sm:w-auto text-center px-8 py-4 rounded-full text-base font-bold border border-white/35 text-white bg-transparent hover:bg-white/10 hover:border-white hover:-translate-y-0.5 active:translate-y-0 transition-all duration-300 flex items-center justify-center gap-2" aria-label="Découvrir nos spécialités photos">
Découvrir nos expertises
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/>
</svg>
</a>
</div>
<!-- KEY STATS (Animated) -->
<div class="grid grid-cols-3 gap-3 sm:gap-6 w-full max-w-3xl border-t border-white/15 pt-10 px-4">
<div class="text-center">
<div class="font-display text-3xl sm:text-5xl font-black text-white leading-none tracking-tight mb-2">
<span class="counter" data-target="500">0</span>+
</div>
<p class="text-xs sm:text-sm text-stone-dark/70 font-medium">Écoles & Clubs Partenaires</p>
</div>
<div class="text-center border-x border-white/10">
<div class="font-display text-3xl sm:text-5xl font-black text-white leading-none tracking-tight mb-2">
<span class="counter" data-target="15">0</span>
</div>
<p class="text-xs sm:text-sm text-stone-dark/70 font-medium">Ans d'Art et d'Expérience</p>
</div>
<div class="text-center">
<div class="font-display text-3xl sm:text-5xl font-black text-white leading-none tracking-tight mb-2">
<span class="counter" data-target="75">0</span>k+
</div>
<p class="text-xs sm:text-sm text-stone-dark/70 font-medium">Portraits HD Livrés</p>
</div>
</div>
</div>
<!-- Sinuous Wave Transition -->
<div class="absolute bottom-0 left-0 right-0 w-full overflow-hidden leading-none z-20 pointer-events-none" aria-hidden="true">
<svg viewBox="0 0 1200 120" preserveAspectRatio="none" class="relative block w-full h-12 sm:h-20 text-stone fill-current">
<path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V30.27C1124.4,19,1060.78,112,985.66,92.83Z"></path>
</svg>
</div>
</section>
<!-- ===================== SERVICES / SILOS SECTION ===================== -->
<section id="expertises" class="py-24 sm:py-32 bg-stone relative" aria-labelledby="services-heading">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative">
<!-- SECTION TITLE -->
<div class="text-center max-w-3xl mx-auto mb-20 reveal">
<span class="text-forest font-bold tracking-widest text-xs uppercase bg-forest/10 px-4 py-1.5 rounded-full inline-block mb-4">Nos Domaines d'Intervention</span>
<h2 id="services-heading" class="font-display text-3xl sm:text-5xl font-black text-ink mb-6">Nos expertises photo : scolaire, clubs de sport & associations</h2>
<p class="text-gray-600 text-base sm:text-lg leading-relaxed">
Nous combinons la sensibilité artistique du photographe à une logistique numérique de pointe pour simplifier vos projets B2B de A à Z.
</p>
</div>
<!-- 3 SILO CARDS -->
<div class="grid md:grid-cols-3 gap-8 sm:gap-10 items-stretch">
<!-- SILO SCOLAIRE -->
<article class="flex flex-col bg-white rounded-3xl overflow-hidden border border-gray-100 hover:border-forest/20 shadow-sm hover:shadow-xl transition-all duration-500 group reveal">
<!-- Card Image -->
<div class="h-64 sm:h-72 overflow-hidden relative">
<div class="absolute inset-0 bg-forest/20 group-hover:bg-transparent transition-colors duration-500 z-10"></div>
<img src="Images/photo_scolaire.webp" alt="Portrait photo scolaire et de classe professionnel - Tagada Studio" width="400" height="300" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-700 ease-out" loading="lazy" />
<div class="absolute top-4 left-4 bg-forest text-white text-xs font-bold tracking-wide uppercase px-3 py-1.5 rounded-full z-20 shadow-md">
Écoles & Maternelles
</div>
</div>
<!-- Card Body -->
<div class="p-8 flex-1 flex flex-col justify-between">
<div>
<h3 class="font-display text-2xl font-bold text-ink mb-4 group-hover:text-forest transition-colors duration-300">Photographie Scolaire</h3>
<p class="text-gray-600 leading-relaxed text-sm sm:text-base mb-6">
Fini la gestion d'enveloppes et de monnaie perdue ! Notre service de **photographie scolaire Neuilly-sur-Marne** est 100% numérisé, libérant les enseignants et ravissant les parents d'élèves.
</p>
<ul class="space-y-3 mb-8 list-none text-sm text-gray-600">
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Commande en ligne sécurisée famille
</li>
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Zéro charge administrative pour l'école
</li>
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Portraits individuels & photos de classe HD
</li>
</ul>
</div>
<a href="scolaire.html" class="inline-flex items-center gap-2 text-forest font-bold hover:text-forest-light text-sm tracking-wide group/link transition-colors duration-300 focus:outline-none" aria-label="Découvrir le service photo scolaire">
Découvrir la solution scolaire
<svg class="w-4 h-4 transition-transform duration-300 group-hover/link:translate-x-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>
</a>
</div>
</article>
<!-- SILO SPORT -->
<article class="flex flex-col bg-white rounded-3xl overflow-hidden border border-gray-100 hover:border-forest/20 shadow-sm hover:shadow-xl transition-all duration-500 group reveal" style="transition-delay: 150ms;">
<!-- Card Image -->
<div class="h-64 sm:h-72 overflow-hidden relative">
<div class="absolute inset-0 bg-forest/20 group-hover:bg-transparent transition-colors duration-500 z-10"></div>
<img src="Images/photo_sport.webp" alt="Photo d'équipe et portrait sportif pour club de sport - Tagada Studio" width="400" height="300" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-700 ease-out" loading="lazy" />
<div class="absolute top-4 left-4 bg-forest text-white text-xs font-bold tracking-wide uppercase px-3 py-1.5 rounded-full z-20 shadow-md">
Clubs & Associations Sportives
</div>
</div>
<!-- Card Body -->
<div class="p-8 flex-1 flex flex-col justify-between">
<div>
<h3 class="font-display text-2xl font-bold text-ink mb-4 group-hover:text-forest transition-colors duration-300">Photo Club Sport</h3>
<p class="text-gray-600 leading-relaxed text-sm sm:text-base mb-6">
Portraits dynamiques, photos d'équipe officielles et composites créatives. Notre service exclusif **photo club sport** dynamise votre communication et génère des fonds précieux pour l'association.
</p>
<ul class="space-y-3 mb-8 list-none text-sm text-gray-600">
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Partenariat de financement de club
</li>
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Photos d'équipe et composites sur-mesure
</li>
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Session photo énergique sur site
</li>
</ul>
</div>
<a href="sport.html" class="inline-flex items-center gap-2 text-forest font-bold hover:text-forest-light text-sm tracking-wide group/link transition-colors duration-300 focus:outline-none" aria-label="Découvrir le service photo pour les clubs de sport">
Découvrir l'offre clubs
<svg class="w-4 h-4 transition-transform duration-300 group-hover/link:translate-x-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>
</a>
</div>
</article>
<!-- SILO ASSOCIATION -->
<article class="flex flex-col bg-white rounded-3xl overflow-hidden border border-gray-100 hover:border-forest/20 shadow-sm hover:shadow-xl transition-all duration-500 group reveal" style="transition-delay: 300ms;">
<!-- Card Image -->
<div class="h-64 sm:h-72 overflow-hidden relative">
<div class="absolute inset-0 bg-forest/20 group-hover:bg-transparent transition-colors duration-500 z-10"></div>
<img src="Images/photo_association.webp" alt="Reportage photo évènementiel pour association culturelle - Tagada Studio" width="400" height="300" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-700 ease-out" loading="lazy" />
<div class="absolute top-4 left-4 bg-forest text-white text-xs font-bold tracking-wide uppercase px-3 py-1.5 rounded-full z-20 shadow-md">
Associations & Événements
</div>
</div>
<!-- Card Body -->
<div class="p-8 flex-1 flex flex-col justify-between">
<div>
<h3 class="font-display text-2xl font-bold text-ink mb-4 group-hover:text-forest transition-colors duration-300">Reportage Associatif</h3>
<p class="text-gray-600 leading-relaxed text-sm sm:text-base mb-6">
Capturer l'énergie des bénévoles et l'émotion des galas de fin d'année. Notre **reportage associatif** restitue avec authenticité et justesse toute la richesse de la vie collective.
</p>
<ul class="space-y-3 mb-8 list-none text-sm text-gray-600">
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Gala de danse, spectacles & assemblées
</li>
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Prises de vue naturelles sur le vif
</li>
<li class="flex items-center gap-2.5">
<svg class="w-5 h-5 text-forest flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
Tarifs solidaires adaptés aux budgets
</li>
</ul>
</div>
<a href="association.html" class="inline-flex items-center gap-2 text-forest font-bold hover:text-forest-light text-sm tracking-wide group/link transition-colors duration-300 focus:outline-none" aria-label="Découvrir le service de reportage pour les associations">
Découvrir l'offre culturelle
<svg class="w-4 h-4 transition-transform duration-300 group-hover/link:translate-x-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>
</a>
</div>
</article>
</div>
</div>
</section>
<!-- ===================== INTERACTIVE PROCESS SECTION ===================== -->
<section id="processus" class="py-24 sm:py-32 bg-stone-dark/45 relative" aria-labelledby="process-heading">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<!-- SECTION TITLE -->
<div class="text-center max-w-2xl mx-auto mb-20 reveal">
<span class="text-forest font-bold tracking-widest text-xs uppercase bg-forest/10 px-4 py-1.5 rounded-full inline-block mb-4">Une Organisation Transparente</span>
<h2 id="process-heading" class="font-display text-3xl sm:text-5xl font-black text-ink mb-6">Notre méthode étape par étape</h2>
<p class="text-gray-600 text-base sm:text-lg">Un accompagnement clé en main pour garantir une fluidité totale, sans charge administrative.</p>
</div>
<!-- PROCESS MAP -->
<div class="relative grid sm:grid-cols-2 lg:grid-cols-4 gap-8 lg:gap-12 mt-12">
<!-- Connective line for desktop -->
<div class="hidden lg:block absolute top-14 left-1/8 right-1/8 h-0.5 bg-forest-light/15 -z-10" aria-hidden="true"></div>
<!-- Step 1 -->
<div class="bg-stone border border-gray-100 hover:border-forest/20 rounded-3xl p-8 shadow-sm hover:shadow-lg transition-all duration-300 text-center relative flex flex-col items-center group reveal">
<div class="w-14 h-14 rounded-2xl flex items-center justify-center bg-forest text-white font-display text-xl font-bold shadow-md mb-6 group-hover:scale-110 group-hover:bg-forest-light transition-all duration-300">
1
</div>
<h3 class="font-display font-bold text-lg text-ink mb-3">Brief & Planification</h3>
<p class="text-gray-500 text-sm leading-relaxed">
Nous définissons vos besoins (taille de la structure, dates idéales, décors souhaités) et calons le calendrier idéal ensemble.
</p>
</div>
<!-- Step 2 -->
<div class="bg-stone border border-gray-100 hover:border-forest/20 rounded-3xl p-8 shadow-sm hover:shadow-lg transition-all duration-300 text-center relative flex flex-col items-center group reveal" style="transition-delay: 100ms;">
<div class="w-14 h-14 rounded-2xl flex items-center justify-center bg-forest text-white font-display text-xl font-bold shadow-md mb-6 group-hover:scale-110 group-hover:bg-forest-light transition-all duration-300">
2
</div>
<h3 class="font-display font-bold text-lg text-ink mb-3">La Prise de Vue</h3>
<p class="text-gray-500 text-sm leading-relaxed">
Le jour J, nous installons notre studio mobile professionnel. Nos photographes animent la séance pour révéler le sourire naturel de chacun.
</p>
</div>
<!-- Step 3 -->
<div class="bg-stone border border-gray-100 hover:border-forest/20 rounded-3xl p-8 shadow-sm hover:shadow-lg transition-all duration-300 text-center relative flex flex-col items-center group reveal" style="transition-delay: 200ms;">
<div class="w-14 h-14 rounded-2xl flex items-center justify-center bg-forest text-white font-display text-xl font-bold shadow-md mb-6 group-hover:scale-110 group-hover:bg-forest-light transition-all duration-300">
3
</div>
<h3 class="font-display font-bold text-lg text-ink mb-3">Retouches Premium</h3>
<p class="text-gray-500 text-sm leading-relaxed">
Chaque cliché est développé artisanalement : correction colorimétrique, exposition optimale et légères retouches d'éclat naturelles.
</p>
</div>
<!-- Step 4 -->
<div class="bg-stone border border-gray-100 hover:border-forest/20 rounded-3xl p-8 shadow-sm hover:shadow-lg transition-all duration-300 text-center relative flex flex-col items-center group reveal" style="transition-delay: 300ms;">
<div class="w-14 h-14 rounded-2xl flex items-center justify-center bg-forest text-white font-display text-xl font-bold shadow-md mb-6 group-hover:scale-110 group-hover:bg-forest-light transition-all duration-300">
4
</div>
<h3 class="font-display font-bold text-lg text-ink mb-3">Commande Digitale</h3>
<p class="text-gray-500 text-sm leading-relaxed">
Mise en ligne sécurisée des galeries sous 10 jours. Les parents ou adhérents choisissent et achètent en ligne en quelques clics.
</p>
</div>
</div>
</div>
</section>
<!-- ===================== TESTIMONIALS SECTION ===================== -->
<section id="temoignages" class="py-24 sm:py-32 bg-stone relative" aria-labelledby="testimonials-heading">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<!-- SECTION TITLE -->
<div class="text-center max-w-2xl mx-auto mb-20 reveal">
<span class="text-forest font-bold tracking-widest text-xs uppercase bg-forest/10 px-4 py-1.5 rounded-full inline-block mb-4">Avis de nos Partenaires</span>
<h2 id="testimonials-heading" class="font-display text-3xl sm:text-5xl font-black text-ink mb-6">Ils nous font confiance</h2>
<p class="text-gray-600 text-base sm:text-lg">Directeurs d'école, présidents de clubs sportifs locaux, découvrez leur retour d'expérience.</p>
</div>
<!-- TESTIMONIAL CARDS -->
<div class="grid md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<blockquote class="bg-white rounded-3xl p-8 border border-gray-100 flex flex-col justify-between shadow-sm hover:shadow-xl transition-shadow duration-300 reveal">
<div>
<div class="flex text-amber-400 text-lg mb-4" aria-hidden="true">★★★★★</div>
<p class="text-gray-600 italic leading-relaxed text-sm sm:text-base mb-6">
"Nous travaillons avec Tagada Studio depuis 3 ans maintenant. La commande en ligne a radicalement changé notre gestion : plus d'enveloppes d'espèces égarées et une qualité d'image haut de gamme saluée par tous les parents."
</p>
</div>
<footer class="border-t border-gray-100 pt-5 mt-4 flex items-center gap-4">
<div>
<cite class="not-italic font-bold text-ink block">Marie-Claire Dupont</cite>
<span class="text-xs text-forest font-semibold block">Directrice d'École Primaire</span>
<span class="text-xs text-gray-600 block">Neuilly-sur-Marne (93)</span>
</div>
</footer>
</blockquote>
<!-- Testimonial 2 -->
<blockquote class="bg-white rounded-3xl p-8 border border-gray-100 flex flex-col justify-between shadow-sm hover:shadow-xl transition-shadow duration-300 reveal" style="transition-delay: 150ms;">
<div>
<div class="flex text-amber-400 text-lg mb-4" aria-hidden="true">★★★★★</div>
<p class="text-gray-600 italic leading-relaxed text-sm sm:text-base mb-6">
"Nos licenciés adorent les composites d'équipe et les portraits d'action ! De plus, le reversement d'une commission sur les ventes à notre association nous a permis de financer l'achat de nouveaux ballons. Une collaboration gagnant-gagnant."
</p>
</div>
<footer class="border-t border-gray-100 pt-5 mt-4 flex items-center gap-4">
<div>
<cite class="not-italic font-bold text-ink block">Laurent Ferreri</cite>
<span class="text-xs text-forest font-semibold block">Président de Club de Football</span>
<span class="text-xs text-gray-600 block">Île-de-France (IDF)</span>
</div>
</footer>
</blockquote>
<!-- Testimonial 3 -->
<blockquote class="bg-white rounded-3xl p-8 border border-gray-100 flex flex-col justify-between shadow-sm hover:shadow-xl transition-shadow duration-300 reveal" style="transition-delay: 300ms;">
<div>
<div class="flex text-amber-400 text-lg mb-4" aria-hidden="true">★★★★★</div>
<p class="text-gray-600 italic leading-relaxed text-sm sm:text-base mb-6">
"Le reportage réalisé par Tagada Studio pour notre festival culturel annuel a capturé des sourires et des émotions exceptionnelles. Les clichés reflètent toute l'authenticité de notre engagement humain et associatif."
</p>
</div>
<footer class="border-t border-gray-100 pt-5 mt-4 flex items-center gap-4">
<div>
<cite class="not-italic font-bold text-ink block">Sophie Martineau</cite>
<span class="text-xs text-forest font-semibold block">Coordinatrice de Collectif Culturel</span>
<span class="text-xs text-gray-600 block">Seine-Saint-Denis (93)</span>
</div>
</footer>
</blockquote>
</div>
</div>
</section>
<!-- ===================== INTERACTIVE FAQ SECTION ===================== -->
<section id="faq" class="py-24 sm:py-32 bg-stone-dark/45 relative" aria-labelledby="faq-heading">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<!-- SECTION TITLE -->
<div class="text-center max-w-2xl mx-auto mb-16 sm:mb-20 reveal">
<span class="text-forest font-bold tracking-widest text-xs uppercase bg-forest/10 px-4 py-1.5 rounded-full inline-block mb-4">FAQ & Conseils</span>
<h2 id="faq-heading" class="font-display text-3xl sm:text-5xl font-black text-ink mb-6">Des réponses à vos questions</h2>
<p class="text-gray-600 text-base sm:text-lg">Toutes les clés pour comprendre notre accompagnement et la fluidité de nos services photo.</p>
</div>
<!-- ACCORDIONS -->
<div class="space-y-4 reveal">
<details class="bg-white border border-gray-100 rounded-2xl overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 group">
<summary class="flex justify-between items-center px-6 py-5 font-bold text-ink cursor-pointer hover:text-forest transition-colors focus:outline-none select-none">
<span class="pr-4 sm:pr-8 text-sm sm:text-base">Dans quelles zones géographiques Tagada Studio intervient-il ?</span>
<span class="w-8 h-8 rounded-full bg-forest-soft flex items-center justify-center text-forest flex-shrink-0 transition-transform group-hover:scale-105">
<svg class="w-4 h-4" 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"/></svg>
</span>
</summary>
<div class="px-6 pb-5 text-gray-600 leading-relaxed text-sm sm:text-base border-t border-gray-50 pt-4">
Tagada Studio est officiellement basé à **Neuilly-sur-Marne (93330)**, en Seine-Saint-Denis. Nous nous déplaçons avec notre matériel studio complet dans **toute la région Île-de-France** (Seine-Saint-Denis, Val-de-Marne, Seine-et-Marne, Paris, etc.). Pour des projets nationaux spécifiques, n'hésitez pas à nous solliciter.
</div>
</details>
<details class="bg-white border border-gray-100 rounded-2xl overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 group">
<summary class="flex justify-between items-center px-6 py-5 font-bold text-ink cursor-pointer hover:text-forest transition-colors focus:outline-none select-none">
<span class="pr-4 sm:pr-8 text-sm sm:text-base">Comment fonctionne le système de commande 100% en ligne pour les familles ?</span>
<span class="w-8 h-8 rounded-full bg-forest-soft flex items-center justify-center text-forest flex-shrink-0 transition-transform group-hover:scale-105">
<svg class="w-4 h-4" 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"/></svg>
</span>
</summary>
<div class="px-6 pb-5 text-gray-600 leading-relaxed text-sm sm:text-base border-t border-gray-50 pt-4">
Après la prise de vue, chaque enfant reçoit une carte d'accès individuelle contenant un **code d'accès personnel sécurisé**. Les parents se connectent sur tagadastudio.fr, visualisent la galerie sécurisée de leur enfant et commandent en quelques clics leurs tirages papier, fichiers numériques ou objets cadeaux. Les règlements s'effectuent par carte bancaire de façon 100% sécurisée.
</div>
</details>
<details class="bg-white border border-gray-100 rounded-2xl overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 group">
<summary class="flex justify-between items-center px-6 py-5 font-bold text-ink cursor-pointer hover:text-forest transition-colors focus:outline-none select-none">
<span class="pr-4 sm:pr-8 text-sm sm:text-base">Qu'est-ce que le système de partenariat financier pour les clubs de sport ?</span>
<span class="w-8 h-8 rounded-full bg-forest-soft flex items-center justify-center text-forest flex-shrink-0 transition-transform group-hover:scale-105">
<svg class="w-4 h-4" 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"/></svg>
</span>
</summary>
<div class="px-6 pb-5 text-gray-600 leading-relaxed text-sm sm:text-base border-t border-gray-50 pt-4">
Pour soutenir activement le tissu sportif local, Tagada Studio reverse une **commission (sous forme de pourcentage fixe sur les ventes)** directement à l'association ou au club sportif partenaire. Les parents et licenciés s'offrent des portraits de qualité professionnelle tout en participant directement au budget de fonctionnement ou au financement de projets matériels du club. Fini le porte-à-porte, les ventes sont gérées numériquement et en toute transparence.
</div>
</details>
<details class="bg-white border border-gray-100 rounded-2xl overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 group">
<summary class="flex justify-between items-center px-6 py-5 font-bold text-ink cursor-pointer hover:text-forest transition-colors focus:outline-none select-none">
<span class="pr-4 sm:pr-8 text-sm sm:text-base">Quels sont les délais de livraison pour les photos imprimées ?</span>
<span class="w-8 h-8 rounded-full bg-forest-soft flex items-center justify-center text-forest flex-shrink-0 transition-transform group-hover:scale-105">
<svg class="w-4 h-4" 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"/></svg>
</span>
</summary>
<div class="px-6 pb-5 text-gray-600 leading-relaxed text-sm sm:text-base border-t border-gray-50 pt-4">
Les fichiers numériques achetés sont téléchargeables immédiatement après validation du paiement. Les tirages papier sont imprimés par un **laboratoire photo français professionnel certifié** de haute qualité, puis expédiés et livrés sous 10 à 15 jours ouvrés à domicile ou directement groupés au sein de la structure partenaire (école, club).
</div>
</details>
</div>
</div>
</section>
</div>
</section>
<!-- ===================== CONTACT / DEVIS SECTION ===================== -->
<section id="contact" class="py-24 sm:py-32 relative bg-gradient-to-br from-forest-dark via-forest to-forest-dark overflow-hidden" aria-labelledby="contact-heading">
<!-- Visual details -->
<div class="absolute inset-0 bg-[radial-gradient(circle_at_center,_var(--tw-gradient-stops))] from-white/[0.03] via-transparent to-transparent pointer-events-none" aria-hidden="true"></div>
<div class="absolute w-[450px] h-[450px] rounded-full bg-forest-light/15 blur-[90px] -bottom-32 -right-32 pointer-events-none" aria-hidden="true"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<!-- SECTION TITLE -->
<div class="text-center max-w-2xl mx-auto mb-20 reveal">
<span class="text-stone-dark font-bold tracking-widest text-xs uppercase bg-white/10 border border-white/10 px-4 py-1.5 rounded-full inline-block mb-4">Demander un Devis Gratuit</span>
<h2 id="contact-heading" class="font-display text-3xl sm:text-5xl font-black text-white mb-6">Planifiez votre prochaine séance photo</h2>
<p class="text-white/75 text-base sm:text-lg">
Réponse garantie sous 24h ouvrées. Nos devis d'interventions scolaires, clubs et associations sont entièrement gratuits.
</p>
</div>
<div class="grid lg:grid-cols-5 gap-12 lg:gap-16 items-start max-w-5xl mx-auto">
<!-- FORMULAR CARD -->
<div class="bg-white rounded-[32px] p-8 shadow-2xl border border-gray-50 lg:col-span-3 reveal">
<form id="contact-form" method="POST" class="space-y-6">
<!-- Vos Coordonnées -->
<div class="space-y-4">
<span class="block text-[11px] font-bold text-forest uppercase tracking-widest bg-forest/10 px-3 py-1.5 rounded-full w-max">1. Vos Coordonnées</span>
<div class="grid sm:grid-cols-2 gap-4">
<div>
<label for="contact-firstname" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Votre prénom *</label>
<input type="text" id="contact-firstname" name="lead_form[firstname]" required class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="Jean" />
</div>
<div>
<label for="contact-lastname" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Votre nom *</label>
<input type="text" id="contact-lastname" name="lead_form[lastname]" required class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="Dupont" />
</div>
</div>
<div class="grid sm:grid-cols-2 gap-4">
<div>
<label for="contact-email" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Votre adresse email *</label>
<input type="email" id="contact-email" name="lead_form[email]" required autocomplete="email" class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="direction@ecole.fr" />
</div>
<div>
<label for="contact-phone" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Téléphone *</label>
<input type="tel" id="contact-phone" name="lead_form[phone]" required autocomplete="tel" pattern="^(?:0|\+33|0033)\s*[1-9](?:[ .-]?\d{2}){4}$" title="Veuillez entrer un numéro de téléphone valide (ex: 06 12 34 56 78)" class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="07 81 75 77 54" />
</div>
</div>
</div>
<!-- Votre Établissement -->
<div class="border-t border-gray-100 pt-6 space-y-4">
<span class="block text-[11px] font-bold text-forest uppercase tracking-widest bg-forest/10 px-3 py-1.5 rounded-full w-max">2. Votre Structure</span>
<div class="grid sm:grid-cols-2 gap-4">
<div>
<label for="contact-structure-name" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Nom de l'établissement *</label>
<input type="text" id="contact-structure-name" name="custom_3357" required class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="École élémentaire Jean Moulin" />
</div>
<div>
<label for="contact-role" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Fonction dans l'établissement *</label>
<input type="text" id="contact-role" name="custom_3356" required class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="Directeur / Présidente de club" />
</div>
</div>
<div class="grid sm:grid-cols-2 gap-4">
<div>
<label for="contact-structure-type" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Type d'établissement *</label>
<input type="text" id="contact-structure-type" name="custom_3359" required class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="École Maternelle, Club de foot..." />
</div>
<div>
<label for="contact-size" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Nombre d'élèves et de classes *</label>
<input type="text" id="contact-size" name="custom_3358" required class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="250 élèves, 10 classes" />
</div>
</div>
<!-- Adresse -->
<div class="bg-stone-dark/45 p-5 rounded-2xl space-y-4 border border-gray-100">
<label class="block text-xs font-bold text-ink uppercase tracking-wider">Adresse de l'établissement *</label>
<div>
<label for="contact-street" class="block text-[10px] font-bold text-gray-500 uppercase tracking-wider mb-1">Rue (Numéro et nom de voie)</label>
<input type="text" id="contact-street" name="lead_form[address][street]" required class="w-full px-3 py-2.5 rounded-lg border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="8 Rue de la Mairie" />
</div>
<div class="grid grid-cols-3 gap-3">
<div class="col-span-1">
<label for="contact-zipcode" class="block text-[10px] font-bold text-gray-500 uppercase tracking-wider mb-1">Code postal</label>
<input type="text" id="contact-zipcode" name="lead_form[address][zipcode]" required pattern="[0-9]{5}" title="Le code postal doit comporter 5 chiffres (ex: 93330)" class="w-full px-3 py-2.5 rounded-lg border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="93330" />
</div>
<div class="col-span-2">
<label for="contact-city" class="block text-[10px] font-bold text-gray-500 uppercase tracking-wider mb-1">Ville</label>
<input type="text" id="contact-city" name="lead_form[address][city]" required class="w-full px-3 py-2.5 rounded-lg border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="Neuilly-sur-Marne" />
</div>
</div>
</div>
</div>
<!-- Votre Projet -->
<div class="border-t border-gray-100 pt-6 space-y-4">
<span class="block text-[11px] font-bold text-forest uppercase tracking-widest bg-forest/10 px-3 py-1.5 rounded-full w-max">3. Votre Projet Photo</span>
<div class="grid sm:grid-cols-2 gap-4">
<div>
<label for="contact-start-date" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Date souhaitée *</label>
<input type="text" id="contact-start-date" name="lead_form[start_date]" required class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 transition-all bg-white" placeholder="Automne 2026 / Avril 2027" />
</div>
<div>
<label for="contact-origin" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Comment m'avez-vous connu ? *</label>
<div class="relative">
<select id="contact-origin" name="lead_form[prospect_origin_id]" required class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 bg-white transition-all appearance-none cursor-pointer">
<option value="">Sélectionner...</option>
<option value="20697">Bouche à oreille</option>
<option value="20698">Google</option>
<option value="20699">Facebook</option>
<option value="20700">Instagram</option>
<option value="20701">Salon</option>
<option value="20702">Evénement</option>
<option value="20703">Autre</option>
<option value="20967">Leboncoin</option>
<option value="20969">Mariage.net</option>
<option value="21498">Messenger</option>
<option value="21499">Site Web</option>
<option value="24002">Linked In</option>
<option value="27531">ShootingBox</option>
<option value="27404">Les Pages Jaunes - Solocal</option>
<option value="81928">Kabook</option>
</select>
<div class="pointer-events-none absolute inset-y-0 right-4 flex items-center text-gray-500">
<svg class="w-4 h-4" 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"/></svg>
</div>
</div>
</div>
</div>
<div>
<label for="contact-message" class="block text-xs font-bold text-ink uppercase tracking-wider mb-2">Votre message / précisions *</label>
<textarea id="contact-message" name="lead_form[message]" required rows="4" class="w-full px-4 py-3 rounded-xl border border-gray-200 text-sm focus:outline-none focus:border-forest focus:ring-2 focus:ring-forest/10 resize-none transition-all bg-white" placeholder="Précisez le nombre de classes, les particularités de l'évènement..."></textarea>
</div>
</div>
<!-- GDPR checkbox & Gotcha -->
<div class="space-y-4 border-t border-gray-100 pt-6">
<div class="flex items-start gap-3 cursor-pointer">
<input type="checkbox" id="contact-optin" required class="mt-1 rounded text-forest focus:ring-forest" />
<label for="contact-optin" class="text-[11px] text-gray-500 leading-normal">
J'accepte que Tagada Studio traite mes données professionnelles afin de traiter ma demande de devis, conformément à sa <a href="politique-confidentialite.html" class="text-forest underline font-semibold">Politique de Confidentialité</a>.
</label>
</div>
<!-- Anti-spam : ne pas supprimer -->
<input type="text" name="_gotcha" style="display:none" tabindex="-1" autocomplete="off">
<button type="submit" class="w-full justify-center py-4 bg-forest hover:bg-forest-light text-white text-base font-bold rounded-full transition-all duration-300 shadow-md hover:shadow-xl active:scale-[0.99] flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 19l9 2-9-18-9 18 9-2zm0 0v-8"/></svg>
Envoyer ma demande de devis
</button>
</div>
</form>
</div>
<!-- DIRECT INFO CARD -->
<div class="text-white lg:col-span-2 space-y-8 py-2 reveal" style="transition-delay: 150ms;">
<div>
<h3 class="font-display text-2xl font-bold mb-4">Coordonnées du studio</h3>
<p class="text-white/70 text-sm sm:text-base leading-relaxed">
Vous préférez échanger par téléphone ou nous écrire directement par courriel ? Notre équipe se tient à votre entière disposition.
</p>
</div>
<div class="space-y-6">
<!-- Item 1 -->
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-2xl flex items-center justify-center bg-white/10 border border-white/10 text-white flex-shrink-0">
<svg class="w-5 h-5" 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"/></svg>
</div>
<div>
<span class="text-white/50 text-xs font-bold uppercase tracking-wider block mb-1">Écrivez-nous</span>
<a href="mailto:tagadastudiophoto@gmail.com" class="text-white font-bold text-base hover:text-stone-dark transition-colors">tagadastudiophoto@gmail.com</a>
</div>
</div>
<!-- Item 2 -->
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-2xl flex items-center justify-center bg-white/10 border border-white/10 text-white flex-shrink-0">
<svg class="w-5 h-5" 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"/></svg>
</div>
<div>
<span class="text-white/50 text-xs font-bold uppercase tracking-wider block mb-1">Appelez-nous</span>
<a href="tel:0781757754" class="text-white font-bold text-base hover:text-stone-dark transition-colors">07 81 75 77 54</a>
</div>
</div>
<!-- Item 3 -->
<div class="flex items-start gap-4">
<div class="w-12 h-12 rounded-2xl flex items-center justify-center bg-white/10 border border-white/10 text-white flex-shrink-0">
<svg class="w-5 h-5" 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 stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/></svg>
</div>
<div>
<span class="text-white/50 text-xs font-bold uppercase tracking-wider block mb-1">Siège Social & Zone d'Intervention</span>
<p class="text-white font-bold text-sm sm:text-base leading-snug">
Neuilly-sur-Marne (93330)<br/>
<span class="text-white/70 font-normal text-xs sm:text-sm block mt-1">Interventions physiques sur toute l'Île-de-France (IDF)</span>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- ===================== FOOTER SECTION ===================== -->
<footer class="bg-forest-dark text-white border-t border-white/5 pt-16 pb-8" aria-label="Pied de page">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 gap-y-12 mb-16">
<!-- COLUMN 1: BRAND -->
<div class="col-span-2 md:col-span-1 space-y-4">
<img src="Images/Logo-tagada-studio-fond-transparent2-800 2 - Petite.png" alt="Tagada Studio" class="h-8 sm:h-9 w-auto object-contain opacity-90 hover:opacity-100 transition-opacity" />
<p class="text-white/60 text-sm leading-relaxed max-w-xs">
Spécialiste de la photographie scolaire, sportive et associative en Seine-Saint-Denis (93) et Île-de-France. Fiers d'un artisanat moderne et engagé.
</p>
</div>
<!-- COLUMN 2: SILOS -->
<nav aria-label="Silos Navigation Footer">
<h4 class="text-xs font-bold uppercase tracking-widest text-white/55 mb-4">Nos Expertises</h4>
<ul class="space-y-2 text-sm text-white/60 list-none">
<li><a href="scolaire.html" class="hover:text-white transition-colors duration-300">Photographie Scolaire</a></li>
<li><a href="photo-de-classe.html" class="hover:text-white transition-colors duration-300">Photos de Classe</a></li>
<li><a href="sport.html" class="hover:text-white transition-colors duration-300">Photo Club Sport</a></li>
<li><a href="association.html" class="hover:text-white transition-colors duration-300">Reportage Associatif</a></li>
</ul>
</nav>
<!-- COLUMN 3: DIRECT LINKS -->
<nav aria-label="Liens Utiles Footer">
<h4 class="text-xs font-bold uppercase tracking-widest text-white/55 mb-4">Services & Tarifs</h4>
<ul class="space-y-2 text-sm text-white/60 list-none">
<li><a href="commande-photo-scolaire-en-ligne.html" class="hover:text-white transition-colors duration-300">Commande en Ligne</a></li>