/* Variables CSS Modernes */
:root {
	--primary: #10b981;
	--secondary: #8b5cf6;
	--accent: #f43f5e;
	--nature-light: #34d399;
	--nature-dark: #059669;
	--earth: #a3a3a3;
	--soil: #78716c;
	--sky: #0ea5e9;
	--sunset: #f59e0b;
	--dark: #1f2937;
	--darker: #111827;
	--light: #f9fafb;
	--white: #ffffff;

	--gradient-nature: linear-gradient(
		135deg,
		#10b981 0%,
		#34d399 50%,
		#6ee7b7 100%
	);
	--gradient-earth: linear-gradient(
		135deg,
		#78716c 0%,
		#a3a3a3 50%,
		#d1d5db 100%
	);
	--gradient-sky: linear-gradient(
		135deg,
		#0ea5e9 0%,
		#38bdf8 50%,
		#7dd3fc 100%
	);

	--glass-bg: rgba(16, 185, 129, 0.1);
	--glass-border: rgba(16, 185, 129, 0.2);
	--glass-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);

	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
	--ease-organic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: var(--dark);
	background: var(--light);
	overflow-x: hidden;
}

/* Animations Modernes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes leafFall {
	0% {
		transform: translateY(-100vh) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 0.7;
	}
	90% {
		opacity: 0.7;
	}
	100% {
		transform: translateY(100vh) rotate(360deg);
		opacity: 0;
	}
}

@keyframes iconFloat {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-5px);
	}
}

@keyframes iconPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes leafSway {
	0%,
	100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-3deg);
	}
	75% {
		transform: rotate(3deg);
	}
}

/* Particules nature */
.nature-particles {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.leaf {
	position: absolute;
	width: 12px;
	height: 12px;
	background: var(--gradient-nature);
	border-radius: 0 100% 0 100%;
	animation: leafFall linear infinite;
	opacity: 0.6;
}

.leaf:nth-child(1) {
	left: 10%;
	animation-duration: 8s;
	animation-delay: 0s;
}
.leaf:nth-child(2) {
	left: 25%;
	animation-duration: 6s;
	animation-delay: 2s;
}
.leaf:nth-child(3) {
	left: 40%;
	animation-duration: 9s;
	animation-delay: 4s;
}
.leaf:nth-child(4) {
	left: 60%;
	animation-duration: 7s;
	animation-delay: 1s;
}
.leaf:nth-child(5) {
	left: 80%;
	animation-duration: 8.5s;
	animation-delay: 3s;
}

/* Header Moderne */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 2rem;
	background: rgba(249, 250, 251, 0.1);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(16, 185, 129, 0.1);
	transition: all 0.3s var(--ease-smooth);
}

.header.scrolled {
	background: rgba(249, 250, 251, 0.95);
	border-bottom: 1px solid rgba(16, 185, 129, 0.2);
	box-shadow: 0 2px 20px rgba(16, 185, 129, 0.1);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s var(--ease-smooth);
}

.logo:hover {
	transform: translateY(-2px);
}

/* SVG Logo Icon */
.logo-icon {
	width: 32px;
	height: 32px;
	animation: leafSway 4s ease-in-out infinite;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s var(--ease-smooth);
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.nav-links a:hover {
	color: var(--primary);
	background: rgba(16, 185, 129, 0.1);
	transform: translateY(-2px);
}

.contact-btn {
	background: var(--gradient-nature);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s var(--ease-smooth);
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
	overflow: hidden;
	padding-top: 80px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('/images/hero.avif');
	background-size: cover;
	background-position: center;
	opacity: 0.13;
	z-index: 1;
}

.hero-content {
	text-align: center;
	z-index: 2;
	max-width: 900px;
	padding: 2rem;
	position: relative;
	animation: fadeInUp 1s var(--ease-smooth) 0.5s both;
}

.hero-title {
	font-size: clamp(3rem, 8vw, 5.5rem);
	font-weight: 900;
	margin-bottom: 1.5rem;
	background: var(--gradient-nature);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	opacity: 0;
	animation: fadeInUp 1s var(--ease-smooth) 0.8s both;
}

.hero-subtitle {
	font-size: clamp(1.3rem, 4vw, 1.8rem);
	margin-bottom: 2rem;
	color: var(--soil);
	font-weight: 400;
	opacity: 0;
	animation: fadeInUp 1s var(--ease-smooth) 1.1s both;
}

.hero-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2.5rem 0;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 1s var(--ease-smooth) 1.4s both;
}

.feature-badge {
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid var(--primary);
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	font-weight: 600;
	color: var(--primary);
	backdrop-filter: blur(10px);
	transition: all 0.3s var(--ease-smooth);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.feature-badge:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.hero-cta {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 3rem;
	opacity: 0;
	animation: fadeInUp 1s var(--ease-smooth) 1.7s both;
}

.btn-primary {
	background: var(--gradient-nature);
	color: white;
	padding: 1.2rem 2.5rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s var(--ease-smooth);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary);
	padding: 1.2rem 2.5rem;
	border: 2px solid var(--primary);
	border-radius: 25px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s var(--ease-smooth);
	backdrop-filter: blur(10px);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.btn-secondary:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.phone-display {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--accent);
	margin: 1.5rem 0;
	text-shadow: 0 2px 4px rgba(244, 63, 94, 0.3);
	opacity: 0;
	animation: fadeInUp 1s var(--ease-smooth) 2s both;
}

/* Services Section */
.services {
	padding: 6rem 2rem;
	background: var(--white);
	position: relative;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	overflow-x: clip;
}

.section-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 900;
	text-align: center;
	margin-bottom: 4rem;
	background: var(--gradient-nature);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 80px;
	height: 4px;
	background: var(--gradient-nature);
	transform: translateX(-50%);
	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.service-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	transition: all 0.3s var(--ease-smooth);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.1);
	opacity: 0;
	transform: translateY(20px);
}

.service-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
	border-color: var(--primary);
}

.service-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 1.5rem;
	animation: iconFloat 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
	animation: iconPulse 0.6s ease-out;
}

.service-title {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.service-desc {
	color: var(--soil);
	margin-bottom: 2rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

.service-features {
	list-style: none;
	margin-bottom: 2rem;
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
	color: var(--dark);
	transition: all 0.3s var(--ease-smooth);
}

.service-features li:hover {
	transform: translateX(5px);
	color: var(--primary);
}

.service-price {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--accent);
	text-align: center;
	padding: 1rem;
	background: rgba(244, 63, 94, 0.1);
	border-radius: 15px;
	border: 1px solid rgba(244, 63, 94, 0.2);
}

/* Portfolio Section */
.portfolio {
	padding: 6rem 2rem;
	background: var(--darker);
	color: white;
	position: relative;
}

.portfolio-filters {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-btn {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s var(--ease-smooth);
}

.filter-btn.active,
.filter-btn:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.portfolio-item {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s var(--ease-smooth);
	position: relative;
	opacity: 0;
	transform: translateY(20px);
}

.portfolio-item.visible {
	opacity: 1;
	transform: translateY(0);
}

.portfolio-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.portfolio-image {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.portfolio-content {
	padding: 2rem;
}

.portfolio-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary);
}

.portfolio-desc {
	color: #cbd5e1;
	margin-bottom: 1.5rem;
}

.portfolio-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tag {
	background: rgba(16, 185, 129, 0.2);
	color: var(--nature-light);
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.85rem;
	font-weight: 600;
}

/* Process Timeline */
.process {
	padding: 6rem 2rem;
	background: var(--light);
	overflow: hidden;
}

.timeline-container {
	position: relative;
	padding: 3rem 0;
}

.timeline {
	display: flex;
	gap: 3rem;
	overflow-x: auto;
	padding: 2rem 0;
	scroll-snap-type: x mandatory;
}

.timeline-item {
	min-width: 300px;
	scroll-snap-align: center;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s var(--ease-smooth);
}

.timeline-item.visible {
	opacity: 1;
	transform: translateY(0);
}

.timeline-step {
	width: 80px;
	height: 80px;
	background: var(--gradient-nature);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 2rem;
	color: white;
	font-weight: 800;
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.timeline-content {
	text-align: center;
	background: white;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.1);
	transition: all 0.3s var(--ease-smooth);
}

.timeline-content:hover {
	border-color: var(--primary);
	transform: translateY(-5px);
}

.timeline-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 1rem;
}

.timeline-desc {
	color: var(--soil);
	line-height: 1.6;
}

/* Testimonials */
.testimonials {
	padding: 6rem 2rem;
	background: var(--darker);
	color: white;
	position: relative;
}

.testimonials-container {
	position: relative;
	overflow: visible;
}

.testimonials-track {
	display: flex;
	overflow-y: visible;
	gap: 2rem;
	animation: scroll-testimonials 30s linear infinite;
}

@keyframes scroll-testimonials {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.testimonial-card {
	min-width: 350px;
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	backdrop-filter: blur(15px);
	transition: all 0.3s var(--ease-smooth);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
	border-color: var(--primary);
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 2rem;
	color: #e2e8f0;
	font-size: 1.1rem;
	line-height: 1.7;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--gradient-nature);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 800;
	font-size: 1.5rem;
}

.author-info h4 {
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.author-info span {
	color: #94a3b8;
	font-size: 0.95rem;
}

.rating {
	color: var(--sunset);
	font-size: 1.2rem;
	margin-top: 0.5rem;
}

/* Contact Section */
.contact {
	padding: 6rem 2rem;
	background: var(--light);
	position: relative;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-info h2 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	margin-bottom: 2rem;
	background: var(--gradient-nature);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-details {
	display: grid;
	gap: 1.5rem;
	margin-top: 3rem;
}

.detail-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: white;
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 15px;
	transition: all 0.3s var(--ease-smooth);
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.1);
}

.detail-item:hover {
	background: rgba(16, 185, 129, 0.05);
	transform: translateX(5px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
	border-color: var(--primary);
}

.detail-icon {
	width: 40px;
	height: 40px;
	color: var(--primary);
}

.detail-text strong {
	display: block;
	color: var(--primary);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.detail-text {
	color: var(--soil);
}

.contact-form {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	border: 1px solid rgba(16, 185, 129, 0.2);
	box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-nature);
}

.form-group {
	margin-bottom: 2rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--primary);
	font-weight: 700;
	font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 1.25rem;
	border: 2px solid rgba(16, 185, 129, 0.2);
	border-radius: 10px;
	background: rgba(16, 185, 129, 0.05);
	color: var(--dark);
	font-size: 1rem;
	transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
	background: rgba(16, 185, 129, 0.08);
}

.season-preference {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
	margin: 2rem 0;
}

.season-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
	background: rgba(16, 185, 129, 0.05);
	border: 2px solid rgba(16, 185, 129, 0.2);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s var(--ease-smooth);
}

.season-option:hover,
.season-option.selected {
	background: var(--primary);
	transform: translateY(-3px);
}

.season-option:hover *,
.season-option.selected * {
	color: white !important;
	fill: white !important; /* Pour les SVG */
}

.season-option input[type='radio'] {
	display: none;
}

.season-icon {
	width: 32px;
	height: 32px;
	margin-bottom: 0.5rem;
}

.btn-submit {
	width: 100%;
	background: var(--gradient-nature);
	color: white;
	padding: 1.5rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s var(--ease-smooth);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-submit:hover:not(:disabled) {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Footer */
.footer {
	background: var(--darker);
	color: white;
	padding: 4rem 2rem 2rem;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-nature);
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	text-align: center;
}

.footer-logo {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.footer-text {
	color: #94a3b8;
	margin-bottom: 3rem;
	font-size: 1.1rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s var(--ease-smooth);
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.footer-links a:hover {
	color: var(--primary);
	background: rgba(16, 185, 129, 0.1);
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 2rem;
	color: #6b7280;
	font-size: 0.95rem;
}

/* Animations d'apparition */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s var(--ease-smooth);
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.slide-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.8s var(--ease-smooth);
}

.slide-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.slide-right {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.8s var(--ease-smooth);
}

.slide-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* Curseur trail */
.cursor-trail {
	position: fixed;
	width: 6px;
	height: 6px;
	background: var(--primary);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.7;
	animation: fadeInUp 1s ease-out forwards;
}

/* Styles pour les pages légales */
.legal-page {
	padding-top: 120px;
	min-height: 100vh;
	background: var(--light);
}

.legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
}

.legal-header {
	text-align: center;
	margin-bottom: 4rem;
}

.legal-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 900;
	background: var(--gradient-nature);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.legal-subtitle {
	font-size: 1.2rem;
	color: var(--soil);
	margin-bottom: 2rem;
}

.legal-content {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.legal-section {
	margin-bottom: 3rem;
}

.legal-section h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.legal-section h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--dark);
	margin: 2rem 0 1rem 0;
}

.legal-section h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary);
	margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
	color: var(--soil);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.legal-section ul {
	list-style: none;
	padding-left: 0;
}

.legal-section li {
	color: var(--soil);
	line-height: 1.7;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.legal-section li::before {
	content: '•';
	color: var(--primary);
	font-weight: bold;
	flex-shrink: 0;
}

.highlight-box {
	background: rgba(16, 185, 129, 0.05);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 15px;
	padding: 2rem;
	margin: 2rem 0;
}

.highlight-box h3 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.legal-icon {
	width: 24px;
	height: 24px;
	color: var(--primary);
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	padding: 1rem 2rem;
	background: rgba(16, 185, 129, 0.1);
	border-radius: 25px;
	transition: all 0.3s ease;
	margin-bottom: 2rem;
}

.back-link:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

.last-update {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: 10px;
	padding: 1rem;
	margin-top: 3rem;
	text-align: center;
	color: var(--primary);
	font-weight: 600;
}

.data-table {
	background: rgba(16, 185, 129, 0.02);
	border: 1px solid rgba(16, 185, 129, 0.1);
	border-radius: 10px;
	padding: 1.5rem;
	margin: 1.5rem 0;
}

.rights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.right-card {
	background: rgba(16, 185, 129, 0.05);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 10px;
	padding: 1.5rem;
}

.right-card h4 {
	color: var(--primary);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-highlight {
	background: linear-gradient(
		135deg,
		rgba(16, 185, 129, 0.1) 0%,
		rgba(52, 211, 153, 0.1) 100%
	);
	border: 2px solid rgba(16, 185, 129, 0.3);
	border-radius: 15px;
	padding: 2rem;
	margin: 2rem 0;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero {
		padding-top: 100px;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-grid,
	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.phone-display {
		font-size: 1.8rem;
	}

	.hero-features {
		flex-direction: column;
		gap: 1rem;
	}

	.timeline {
		flex-direction: column;
		gap: 2rem;
	}

	.timeline-item {
		min-width: auto;
	}

	.season-preference {
		grid-template-columns: repeat(2, 1fr);
	}

	.rights-grid {
		grid-template-columns: 1fr;
	}

	.footer-links {
		gap: 1.5rem;
	}

	.legal-container {
		padding: 1rem;
	}

	.legal-content {
		padding: 2rem;
	}
}
