/* Variables CSS Révolutionnaires */
:root {
	--primary: #0ea5e9;
	--secondary: #6366f1;
	--accent: #eab308;
	--danger: #ef4444;
	--dark: #0f172a;
	--light: #f8fafc;
	--gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
	--gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	--gradient-water: linear-gradient(45deg, #0ea5e9, #06b6d4, #3b82f6);
	--glass-bg: rgba(14, 165, 233, 0.1);
	--glass-border: rgba(14, 165, 233, 0.2);
	--glass-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
	--ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
	--ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

/* Glassmorphism Base */
.glass {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	box-shadow: var(--glass-shadow);
}

/* Icons */
.icon {
	width: 1.2em;
	height: 1.2em;
	flex-shrink: 0;
}

/* Water Drop Animation */
@keyframes dropFall {
	0% {
		transform: translateY(-100vh) scale(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(100vh) scale(1);
		opacity: 0;
	}
}

@keyframes ripple {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	100% {
		transform: scale(4);
		opacity: 0;
	}
}

@keyframes bubble {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}
	50% {
		opacity: 0.7;
	}
	100% {
		transform: translateY(-100vh) scale(1);
		opacity: 0;
	}
}

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

@keyframes wave {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(3px);
	}
}

/* Header Moderne */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 2rem;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(14, 165, 233, 0.2);
	transition: all 0.3s var(--ease-out-quart);
}

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

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	width: 2rem;
	height: 2rem;
	animation: wave 2s ease-in-out infinite;
}

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

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

.nav-links a:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

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

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

.urgence-btn {
	background: var(--gradient-primary);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	animation: pulse 2s infinite;
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
	transition: all 0.3s var(--ease-out-quart);
}

.urgence-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(14, 165, 233, 0.6);
}

/* Hero Révolutionnaire */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(15, 23, 42, 0.8) 0%,
		rgba(30, 41, 59, 0.7) 100%
	);
}

.hero-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(14,165,233,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.water-drops {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.drop {
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--gradient-primary);
	border-radius: 50% 50% 50% 0;
	transform: rotate(45deg);
	animation: dropFall linear infinite;
}

.drop:nth-child(1) {
	left: 10%;
	animation-duration: 3s;
	animation-delay: 0s;
}
.drop:nth-child(2) {
	left: 25%;
	animation-duration: 2.5s;
	animation-delay: 0.5s;
}
.drop:nth-child(3) {
	left: 45%;
	animation-duration: 3.5s;
	animation-delay: 1s;
}
.drop:nth-child(4) {
	left: 65%;
	animation-duration: 2.8s;
	animation-delay: 1.5s;
}
.drop:nth-child(5) {
	left: 80%;
	animation-duration: 3.2s;
	animation-delay: 2s;
}

.bubbles {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.bubble {
	position: absolute;
	background: rgba(14, 165, 233, 0.1);
	border: 1px solid rgba(14, 165, 233, 0.2);
	border-radius: 50%;
	animation: bubble linear infinite;
}

.bubble:nth-child(1) {
	left: 15%;
	width: 20px;
	height: 20px;
	animation-duration: 4s;
	animation-delay: 0s;
}
.bubble:nth-child(2) {
	left: 35%;
	width: 15px;
	height: 15px;
	animation-duration: 5s;
	animation-delay: 1s;
}
.bubble:nth-child(3) {
	left: 55%;
	width: 25px;
	height: 25px;
	animation-duration: 3.5s;
	animation-delay: 2s;
}
.bubble:nth-child(4) {
	left: 75%;
	width: 18px;
	height: 18px;
	animation-duration: 4.5s;
	animation-delay: 0.5s;
}

.hero-content {
	text-align: center;
	z-index: 2;
	color: white;
	max-width: 800px;
	padding: 2rem;
}

.hero-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	margin-bottom: 1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	margin-bottom: 2rem;
	opacity: 0.9;
	font-weight: 300;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s var(--ease-out-quart);
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(14, 165, 233, 0.6);
}

.btn-secondary {
	background: transparent;
	color: white;
	padding: 1rem 2rem;
	border: 2px solid var(--primary);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s var(--ease-out-quart);
}

.btn-secondary:hover {
	background: var(--primary);
	transform: translateY(-3px);
}

.phone-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--accent);
	margin: 1rem 0;
	animation: pulse 2s infinite;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

/* Services Révolutionnaires */
.services {
	padding: 5rem 2rem;
	background: var(--light);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	text-align: center;
	margin-bottom: 3rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

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

.service-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s var(--ease-out-quart);
	position: relative;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.1;
	transition: all 0.3s var(--ease-out-quart);
}

.service-card:hover::before {
	left: 0;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.service-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s var(--ease-out-quart);
}

.service-card:hover .service-image img {
	transform: scale(1.1);
}

.service-content {
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.service-icon {
	width: 3rem;
	height: 3rem;
	color: var(--primary);
	margin-bottom: 1rem;
	display: block;
}

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

.service-desc {
	color: #64748b;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.service-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary);
}

/* Zone d'intervention */
.zone {
	padding: 5rem 2rem;
	background: var(--dark);
	color: white;
}

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

.zone-text h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 1.5rem;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.zone-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colonnes égales */
  gap: 1rem;
  margin-top: 2rem;

}

.zone-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	background: rgba(14, 165, 233, 0.1);
	border-radius: 10px;
	border-left: 4px solid var(--primary);
	transition: all 0.3s var(--ease-out-quart);
}

.zone-list li:hover {
	background: rgba(14, 165, 233, 0.2);
	transform: translateX(5px);
}

.zone-list li::before {
	content: '📍';
	font-size: 1.2rem;
}

.zone-highlight {
	margin-top: 1.5rem;
	color: var(--accent);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.zone-map {
	background: rgba(14, 165, 233, 0.1);
	border-radius: 20px;
	padding: 1rem;
	border: 2px solid var(--primary);
	min-height: 400px;
}

#map {
	width: 100%;
	height: 400px;
	border-radius: 15px;
	z-index: 1;
}

/* Témoignages */
.testimonials {
	padding: 5rem 2rem;
	background: var(--light);
}

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

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	transition: all 0.3s var(--ease-out-quart);
}

.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(--primary);
	font-weight: 800;
}

.stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
	color: var(--accent);
}

.stars svg {
	width: 1.25rem;
	height: 1.25rem;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #64748b;
	line-height: 1.6;
}

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

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

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

.author-info span {
	color: #64748b;
	font-size: 0.9rem;
}

/* Contact */
.contact {
	padding: 5rem 2rem;
	background: var(--dark);
	color: white;
}

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

.contact-info h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 2rem;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 1rem;
}

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

.detail-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(14, 165, 233, 0.1);
	border-radius: 10px;
	border-left: 4px solid var(--primary);
	transition: all 0.3s var(--ease-out-quart);
}

.detail-item:hover {
	background: rgba(14, 165, 233, 0.2);
	transform: translateX(5px);
}

.detail-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--primary);
	flex-shrink: 0;
}

.detail-text strong {
	display: block;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.detail-text a {
	color: white;
	text-decoration: none;
	transition: color 0.3s var(--ease-out-quart);
}

.detail-text a:hover {
	color: var(--primary);
}

.contact-form {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(14, 165, 233, 0.2);
}

.contact-form h3 {
	margin-bottom: 1.5rem;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(14, 165, 233, 0.3);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 1rem;
	transition: all 0.3s var(--ease-out-quart);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.urgence-checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 1.5rem 0;
	padding: 1rem;
	background: rgba(239, 68, 68, 0.1);
	border-radius: 10px;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.urgence-checkbox input[type='checkbox'] {
	width: auto;
	margin: 0;
}

.urgence-checkbox label {
	margin: 0;
	color: #fca5a5;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.btn-submit {
	width: 100%;
	background: var(--gradient-primary);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s var(--ease-out-quart);
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(14, 165, 233, 0.6);
}

/* Footer */
.footer {
	background: #0f172a;
	color: white;
	padding: 3rem 2rem 1rem;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

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

.footer-text {
	color: #94a3b8;
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.3s var(--ease-out-quart);
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-bottom {
	border-top: 1px solid #334155;
	padding-top: 1rem;
	color: #64748b;
	font-size: 0.9rem;
}

/* SOS Button fixe */
.sos-button {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1000;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: white;
	padding: 1rem;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	animation: pulse 2s infinite;
	box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
	transition: all 0.3s var(--ease-out-quart);
}

.sos-button:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(239, 68, 68, 0.7);
}

.sos-button svg {
	width: 1.5rem;
	height: 1.5rem;
}

/* Animations au scroll */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s var(--ease-out-quart);
}

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

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

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

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

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

	.phone-number {
		font-size: 1.5rem;
	}

	.section-title {
		flex-direction: column;
		gap: 0.5rem;
	}

	.zone-text h2,
	.contact-info h2 {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}

	.zone-list {
		display: none;
	}

	#map {
		height: 300px;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}

	.detail-item {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}

	.urgence-checkbox {
		flex-direction: column;
		text-align: center;
	}

	.sos-button {
		bottom: 1rem;
		right: 1rem;
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 480px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.service-card {
		margin: 0 1rem;
	}

	.hero {
		min-height: 80vh;
	}

	.hero-content {
		padding: 1rem;
	}

	.phone-number {
		font-size: 1.2rem;
		flex-direction: column;
		gap: 0.25rem;
	}
}
