* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2c3e50;
	--secondary-color: #e74c3c;
	--accent-color: #f39c12;
	--text-dark: #2c3e50;
	--text-light: #7f8c8d;
	--bg-light: #f8f9fa;
	--white: #ffffff;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--border-radius: 12px;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 4rem;
}

/* Header avec navbar sticky */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1003;
	transition: all 0.3s ease;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	height: 70px;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 5%;
	max-width: 1200px;
	margin: 0 auto;
	height: 100%;
}

/* Logo avec SVG - RESPONSIVE */
.logo {
	display: flex;
	align-items: center;
	font-size: clamp(1rem, 3vw, 1.5rem);
	font-weight: bold;
	color: var(--primary-color);
	white-space: nowrap;
	overflow: hidden;
}

.logo svg {
	margin-right: 0.5rem;
	width: clamp(32px, 4vw, 40px);
	height: clamp(32px, 4vw, 40px);
	fill: none;
	stroke: var(--secondary-color);
	stroke-width: 2;
	flex-shrink: 0;
}

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

.nav-links a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: var(--secondary-color);
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: var(--secondary-color);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.cta-phone {
	background: var(--secondary-color);
	color: white;
	padding: 0.6rem 1rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: bold;
	font-size: clamp(0.8rem, 2.5vw, 1rem);
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	white-space: nowrap;
	gap: 0.3rem;
}

.cta-phone:hover {
	background: #c0392b;
	transform: translateY(-2px);
}

.cta-phone svg {
	stroke: white;
	fill: none;
	width: clamp(14px, 3vw, 16px);
	height: clamp(14px, 3vw, 16px);
	flex-shrink: 0;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.mobile-menu span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #e74c3c 100%);
	padding: 70px 5% 2rem;
}

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

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 70%,
			rgba(231, 76, 60, 0.4) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(44, 62, 80, 0.6) 0%,
			transparent 50%
		);
	z-index: 2;
}

/* Formes géométriques animées */
.hero-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.shape {
	position: absolute;
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
	top: 20%;
	left: 10%;
	width: 80px;
	height: 80px;
	background: rgba(243, 156, 18, 0.3);
	border-radius: 50%;
	animation-delay: 0s;
}

.shape:nth-child(2) {
	top: 60%;
	right: 15%;
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 60px solid rgba(231, 76, 60, 0.3);
	animation-delay: 2s;
}

.shape:nth-child(3) {
	bottom: 30%;
	left: 20%;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(45deg);
	animation-delay: 4s;
}

.shape:nth-child(4) {
	top: 40%;
	right: 30%;
	width: 100px;
	height: 4px;
	background: rgba(243, 156, 18, 0.4);
	animation-delay: 1s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

/* Particules système */
.particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: particle-float 8s linear infinite;
}

@keyframes particle-float {
	0% {
		transform: translateY(100vh) translateX(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100px) translateX(100px);
		opacity: 0;
	}
}

.hero-content {
	max-width: 900px;
	padding: 2rem;
	text-align: center;
	color: white;
	z-index: 10;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Titre responsive */
.hero h1 {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 900;
	margin-bottom: 1rem;
	color: white;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1s ease forwards;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: clamp(1rem, 3vw, 1.4rem);
	margin-bottom: 2rem;
	opacity: 0;
	animation: fadeInUp 1s ease 0.3s forwards;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Badges avec alignement parfait en grille */
.hero-badges {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 1rem;
	margin-bottom: 3rem;
	opacity: 0;
	animation: fadeInUp 1s ease 0.9s forwards;
	width: 100%;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	justify-items: center;
}

.badge {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	padding: 0.8rem 1.5rem;
	border-radius: 30px;
	font-size: 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	width: 200px;
	min-height: 50px;
}

/* Positionnement spécifique du 4ème badge */
.badge:nth-child(4) {
	grid-column: 2;
	grid-row: 2;
}

.badge svg {
	margin-right: 8px;
	stroke: white;
	fill: none;
	flex-shrink: 0;
}

.badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.badge:hover::before {
	left: 100%;
}

.badge:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Boutons CTA */
.hero-cta {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 1s ease 1.2s forwards;
	width: 100%;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}

.btn-primary {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	padding: 1.2rem 2.5rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
	white-space: nowrap;
	width: 200px;
	height: 56px;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	padding: 1.2rem 2.5rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.4s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	width: 200px;
	height: 56px;
}

.btn-primary svg {
	margin-right: 8px;
	stroke: white;
	fill: none;
	flex-shrink: 0;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s ease;
}

.btn-primary:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-secondary svg {
	margin-right: 8px;
	stroke: white;
	fill: none;
	flex-shrink: 0;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

/* Boutons de partage social */
.social-share {
	display: flex;
	align-items: center;
	gap: 1rem;
	justify-content: center;
	opacity: 0;
	animation: fadeInUp 1s ease 1.5s forwards;
	margin-top: 1rem;
}

.social-share span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

.social-share a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-share a:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-share a svg {
	width: 18px;
	height: 18px;
}

/* Scroll indicator */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	right: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8rem;
	opacity: 0;
	animation: fadeIn 1s ease 3s forwards;
}

.scroll-arrow {
	width: 2px;
	height: 30px;
	background: rgba(255, 255, 255, 0.5);
	position: relative;
	animation: scroll-bounce 2s ease infinite;
}

.scroll-arrow::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -3px;
	width: 8px;
	height: 8px;
	border-right: 2px solid rgba(255, 255, 255, 0.7);
	border-bottom: 2px solid rgba(255, 255, 255, 0.7);
	transform: rotate(45deg);
}

@keyframes scroll-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

/* Zone d'intervention avec carte OSM */
.intervention-zone {
	padding: 6rem 5%;
	background: white;
}

.map-container {
	margin-top: 3rem;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 400px;
	position: relative;
}

#map {
	width: 100%;
	height: 100%;
}

.zone-info {
	background: var(--bg-light);
	padding: 2rem;
	border-radius: var(--border-radius);
	margin-top: 2rem;
}

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

.zone-item {
	background: white;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.zone-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section avec animations */
.services {
	padding: 6rem 5%;
	background: var(--bg-light);
}

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

.service-card {
	background: white;
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--secondary-color),
		var(--accent-color)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(231, 76, 60, 0.05),
		transparent
	);
	transition: left 0.6s ease;
}

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover::after {
	left: 100%;
}

.service-card:hover .service-icon {
	transform: scale(1.2) rotate(10deg);
}

.service-card:hover .service-price {
	color: var(--secondary-color);
	transform: scale(1.1);
}

/* SVG Icons animés */
.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: var(--secondary-color);
	stroke-width: 2;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	transition: color 0.3s ease;
}

.service-card p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	transition: color 0.3s ease;
}

.service-price {
	font-weight: bold;
	color: var(--accent-color);
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

/* About Section */
.about {
	padding: 6rem 5%;
	background: white;
}

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

.about-text h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.about-text p {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.stat {
	text-align: center;
	padding: 1rem;
	background: var(--bg-light);
	border-radius: var(--border-radius);
}

.stat-number {
	font-size: 2rem;
	font-weight: bold;
	color: var(--secondary-color);
}

.stat-label {
	color: var(--text-light);
	font-size: 0.9rem;
}

.about-image {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

/* Galerie avant/après */
.portfolio-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.portfolio-item {
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

.portfolio-item:hover {
	transform: scale(1.05);
}

.portfolio-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 1.5rem;
	transform: translateY(0);
	transition: transform 0.3s ease;
}

/* Sur desktop seulement, masquer et afficher au hover */
@media (min-width: 769px) {
	.portfolio-overlay {
		transform: translateY(100%);
	}

	.portfolio-item:hover .portfolio-overlay {
		transform: translateY(0);
	}
}

/* TESTIMONIALS SECTION - INFINITE SCROLL SIMPLE */
.testimonials {
	padding: 6rem 5%;
	background: var(--bg-light);
	position: relative;
	overflow-x: hidden;
}

.testimonials-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	overflow: visible;
	position: relative;
}

@keyframes fadeInOut {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.testimonials-track {
	display: flex;
	gap: 2rem;
	/* Pas de transition ici car on anime via JavaScript */
	overflow: visible;
}

.testimonial-card {
	background: white;
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	position: relative;
	flex: 0 0 350px;
	min-height: 280px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: var(--secondary-color);
	opacity: 0.3;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.author-info {
	flex: 1;
}

.author-name {
	font-weight: bold;
	color: var(--primary-color);
}

.author-location {
	font-size: 0.9rem;
	color: var(--text-light);
}

.rating {
	display: flex;
	gap: 2px;
}

.rating svg {
	fill: var(--accent-color);
	stroke: none;
}

/* Responsive pour testimonials */
@media (max-width: 767px) {
	.testimonial-card {
		flex: 0 0 300px;
		padding: 1.5rem;
		min-height: 250px;
	}

	.testimonials-track {
		gap: 1rem;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.testimonial-card {
		flex: 0 0 320px;
	}
}

/* Contact Section */
.contact {
	padding: 6rem 5%;
	background: white;
}

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

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

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.contact-icon svg {
	stroke: white;
	fill: none;
}

.contact-item:hover .contact-icon {
	transform: scale(1.1);
	background: var(--accent-color);
}

.contact-form {
	background: var(--bg-light);
	padding: 2rem;
	border-radius: var(--border-radius);
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
	color: var(--primary-color);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: var(--border-radius);
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--secondary-color);
}

.form-group input[type='checkbox'] {
	width: auto;
	margin-right: 0.5rem;
	display: inline-block;
}

.form-group label:has(input[type='checkbox']) {
	display: flex;
	align-items: center;
	font-weight: normal;
}

/* Footer */
.footer {
	background: var(--primary-color);
	color: white;
	padding: 3rem 5% 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: var(--accent-color);
}

.footer-section p,
.footer-section a {
	color: #bdc3c7;
	text-decoration: none;
	line-height: 1.8;
	display: flex;
	align-items: center;
}

.footer-section a:hover {
	color: var(--accent-color);
}

.footer-section svg {
	stroke: #bdc3c7;
	fill: none;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #34495e;
	color: #95a5a6;
}

/* Emergency button amélioré */
.emergency-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--secondary-color);
	color: white;
	padding: 1rem;
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
	z-index: 999;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	animation: pulse 2s infinite;
	transition: all 0.3s ease;
}

.emergency-btn:hover {
	background: #c0392b;
	transform: scale(1.1);
}

.emergency-btn svg {
	fill: white;
	stroke: none;
}

/* Styles pour les marqueurs de carte personnalisés */
.custom-home-marker,
.custom-district-marker {
	background: transparent;
	border: none;
}

.leaflet-popup-content-wrapper {
	border-radius: 8px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.leaflet-popup-content {
	margin: 8px 12px;
	font-size: 14px;
}

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

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

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

/* Responsive Design - NAVBAR MOBILE */
@media (max-width: 768px) {
	/* Navbar mobile optimisée */
	.navbar {
		padding: 0.8rem 2%;
		gap: 0.5rem;
	}

	/* Logo mobile plus petit */
	.logo {
		font-size: 1rem;
		flex: 1;
		min-width: 0;
	}

	.logo svg {
		width: 24px;
		height: 24px;
		margin-right: 0.3rem;
	}

	/* Téléphone mobile compact */
	.cta-phone {
		padding: 0.5rem 0.8rem;
		font-size: 0.85rem;
		border-radius: 8px;
		flex-shrink: 0;
	}

	.cta-phone svg {
		width: 14px;
		height: 14px;
		margin-right: 0.2rem;
	}

	.nav-links {
		display: none;
	}

	.nav-links.active {
		display: flex;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 1rem;
		box-shadow: var(--shadow);
		border-radius: 0 0 var(--border-radius) var(--border-radius);
		z-index: 999;
	}

	.mobile-menu {
		display: flex;
		flex-shrink: 0;
		margin-left: 0.5rem;
	}

	.mobile-menu.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.mobile-menu.active span:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}

	/* Hero responsive amélioré */
	.hero {
		padding: 70px 3% 2rem;
		min-height: calc(100vh - 70px);
	}

	.hero h1 {
		font-size: clamp(1.8rem, 6vw, 3rem);
		line-height: 1.1;
	}

	.hero-subtitle {
		font-size: clamp(0.9rem, 4vw, 1.2rem);
		margin-bottom: 1.5rem;
	}

	/* Badges responsive - retour en colonne sur mobile */
	.hero-badges {
		display: flex !important;
		flex-direction: column;
		align-items: center;
		gap: 0.8rem;
		margin-bottom: 2rem;
	}

	.badge {
		padding: 0.6rem 1.2rem;
		font-size: 0.85rem;
		min-width: 200px;
		width: auto;
		justify-content: center;
	}

	/* Boutons responsive */
	.hero-cta {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		width: 100%;
	}

	.btn-primary,
	.btn-secondary {
		padding: 1rem 2rem;
		font-size: 1rem;
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}

	/* Social share responsive */
	.social-share {
		flex-wrap: wrap;
		gap: 0.8rem;
	}

	.social-share span {
		width: 100%;
		text-align: center;
		margin-bottom: 0.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

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

	.services,
	.about,
	.testimonials,
	.contact,
	.intervention-zone {
		padding: 4rem 3%;
	}

	/* Touch-friendly buttons */
	.cta-phone,
	.btn-primary,
	.btn-secondary {
		min-height: 44px;
		touch-action: manipulation;
	}

	/* Improve form usability on mobile */
	.form-group input,
	.form-group textarea {
		font-size: 16px;
	}

	/* Emergency button positioning */
	.emergency-btn {
		bottom: 80px;
	}

	/* Scroll indicator hide on mobile */
	.scroll-indicator {
		display: none;
	}

	/* Portfolio overlay toujours visible sur mobile */
	.portfolio-overlay {
		transform: translateY(0) !important;
		position: relative;
		background: rgba(0, 0, 0, 0.8);
		margin-top: -60px;
		z-index: 2;
	}
}

/* Mobile très petit écran */
@media (max-width: 480px) {
	/* Navbar ultra compacte */
	.navbar {
		padding: 0.5rem 1%;
		gap: 0.3rem;
	}

	/* Logo très compact */
	.logo {
		font-size: 0.85rem;
		font-weight: 600;
	}

	.logo svg {
		width: 20px;
		height: 20px;
		margin-right: 0.2rem;
	}

	/* Téléphone très compact */
	.cta-phone {
		padding: 0.4rem 0.6rem;
		font-size: 0.75rem;
		border-radius: 6px;
		min-width: auto;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	.cta-phone svg {
		width: 12px;
		height: 12px;
		margin-right: 0.1rem;
	}

	/* Menu hamburger plus petit */
	.mobile-menu span {
		width: 20px;
		height: 2px;
		margin: 2px 0;
	}

	.hero {
		padding: 70px 1rem 1rem;
	}

	.hero-content {
		padding: 1rem;
	}

	.btn-primary,
	.btn-secondary {
		padding: 1rem 1.5rem;
		font-size: 0.95rem;
	}

	.service-card {
		padding: 1.5rem;
	}

	.testimonial-card {
		padding: 1.5rem;
	}

	.contact-form {
		padding: 1.5rem;
	}

	.badge {
		min-width: 180px;
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
	}

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

	/* Portfolio encore plus simple sur très petit écran */
	.portfolio-overlay {
		position: relative !important;
		transform: none !important;
		margin-top: 0;
		background: var(--primary-color);
		border-radius: 0 0 var(--border-radius) var(--border-radius);
	}

	.portfolio-item img {
		border-radius: var(--border-radius) var(--border-radius) 0 0;
	}
}

/* Performance optimizations */
.lazy {
	filter: blur(5px);
	transition: filter 0.3s;
}

.lazy.loaded {
	filter: blur(0);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	:root {
		--primary-color: #000000;
		--secondary-color: #ff0000;
		--text-light: #333333;
	}
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
	.hero h1 {
		font-size: 3.5rem;
	}

	.hero-badges {
		gap: 0.8rem;
	}

	.badge {
		padding: 0.7rem 1.3rem;
		font-size: 0.9rem;
	}
}
