:root {
	--primary-color: #4CAF50;
	--secondary-color: #2196F3;
	--text-color: #333;
	--background-color: #f9f9f9;
	--background-header: white;
	--card-background: #ffffff;
	--spacing-unit: 1rem;
	--background-light: #F8F9FA;
	--font-main: 'Poppins', sans-serif;
	--transition: all 0.3s ease;
}
/* Dark mode overrides */
@media (prefers-color-scheme: dark) {
	:root {
		--text-color: #f0f0f0;
		--background-color: #121212;
		--background-header: black;
		--card-background: #181818;
		--background-light: #212121;
	}
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-color);
}
.header {
	background: var(--background-header);
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.header-left {
	flex: 1;
}
.header-right {
	display: flex;
	align-items: center;
}
.logo-link {
	text-decoration: none;
	color: inherit;
}
.logo {
	margin: 0;
	font-size: 1.5rem;
}
.logo-title {
	margin-right:10px;
	margin-left:10px;
}
.nav {
	display: flex;
	gap: 1.5rem;
}
.nav a {
	text-decoration: none;
	color: inherit;
	padding: 0.5rem;
}
.underline-hover {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: inherit;
}
.underline-hover::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.underline-hover:hover::after {
	transform: scaleX(1);
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.inflate-delay {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 1s ease-out forwards;
}
.inflate-delay {
	animation-delay: calc(var(--i) * 0.2s);
}
.hero {
	opacity: 0;
	animation: fadeInUp 1s ease-out forwards;
	animation-delay: 0.3s;
  min-height: calc(100vh - 4.5rem);
	display: flex;
	align-items: center;
  padding: 7rem 5% 5rem;
	background: var(--card-background);
	gap: 4rem;
}
.hero-content {
	flex: 1;
}
.hero-content h2 {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}
.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}
.hero-img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	display: block;
	margin: 2rem auto;
	object-fit: cover;
}
@media (max-width: 1340px) {
	.hero {
		flex-direction: column;
		margin-top: 5rem;
		padding: 3rem 5%;
		min-height: auto;
		gap: 2rem;
	}
	.hero-content {
		flex: none;
		width: 100%;
		text-align: center;
	}
	.hero-content h2 {
		font-size: 2.5rem;
	}
	.hero-content p {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
	.hero-buttons {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		justify-content: center;
	}
	.hero-buttons a {
		width: 100%;
		padding: 1rem;
		font-size: 1.1rem;
	}
	.hero-img {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		border-radius: 10px;
		box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	}
}
.presentation {
	padding: 2rem 5%;
	text-align: center;
	background: var(--card-background);
}
.presentation h3 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 2rem;
}
.service-grid-parent {
	width: 100%;
	background-color: var(--background-light);
	padding: 0.5rem;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	padding: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}
.service-card {
	background-color: var(--card-background);
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	height: 100%;
}
.service-card:hover {
	transform: translateY(-5px);
}
.service-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.service-card h4 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}
.price {
	font-weight: 600;
	color: var(--secondary-color);
	margin: 1rem 0;
}
.service-details {
	list-style: none;
	margin-top: 1.5rem;
}
.service-details li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
	display: flex;
}
.service-details li::before {
	content: "✓";
	color: var(--primary-color);
	position: absolute;
	left: 0;
}
.service-details li span {
	margin-left: 1rem;
}
.gallery {
	padding: 2rem 5%;
	background-color: var(--background-light);
}
.gallery h3 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--primary-color);
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	aspect-ratio: 1;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.gallery-item:hover img {
	transform: scale(1.1);
}
.testimonials {
	padding: 2rem 5%;
	background: var(--background-light);
}
.testimonial-card {
	background: var(--card-background);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	margin: 2rem 0;
}
.underline-hover.underline::after {
	transform: scaleX(1);
}
.testimonial-text {
	font-style: italic;
	margin-bottom: 1rem;
}
.testimonial-author {
	font-weight: bold;
	color: var(--primary-color);
}
.contact-section {
	padding: 2rem 5%;
	background: var(--background-light);
}
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
}
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.contact-item i {
	font-size: 1.5rem;
	color: var(--primary-color);
	width: 24px;
	text-align: center;
}
.footer {
	background-color: var(--card-background);
	padding: 2rem var(--spacing-unit);
	text-align: center;
	padding-top: 3rem;
}
.social-links {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}
.social-links a {
	color: var(--text-color);
	font-size: 1.5rem;
	transition: color 0.3s ease;
}
.social-links a:hover {
	color: var(--primary-color);
}
.btn {
	display: inline-block;
	padding: 1rem 2rem;
	background: var(--primary-color);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	transition: var(--transition);
	font-weight: 500;
	max-width: 300px;
}
.btn:hover {
	background: #66BB6A;
	transform: translateY(-3px);
}
.logo {
	font-size: 1.25rem;
}
@media (max-width: 1340px) {
	.header {
		padding: 1rem;
	}
	.logo {
		font-size: 1rem;
	}
	.header-right .nav {
		display: block;
		position: fixed;
		top: 80px;
		right: -250px;
		width: 250px;
		background: var(--card-background);
		padding: 1rem;
		flex-direction: column;
		gap: 0;
		box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
		z-index: 1000;
		transition: all 0.3s ease-in-out;
		opacity: 0;
	}
	.header-right .nav.active {
		right: 0;
		opacity: 1;
	}
	.menu-toggle {
		display: block;
		background: none;
		border: none;
		padding: 0.5rem;
		cursor: pointer;
		margin-left: 1rem;
		z-index: 1001;
	}
	.bar {
		display: block;
		width: 25px;
		height: 3px;
		margin: 5px auto;
		background-color: var(--text-color);
		transition: all 0.3s ease-in-out;
	}
	.menu-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}
	.menu-toggle.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.menu-toggle.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
	.nav a {
		padding: 0.8rem 1rem;
		border-bottom: 1px solid #eee;
		width: 100%;
		transform: translateX(20px);
		opacity: 0;
		transition: all 0.3s ease-in-out;
		transition-delay: calc(var(--item-index) * 0.1s);
	}
	.nav.active a {
		transform: translateX(0);
		opacity: 1;
	}
	.nav a:last-child {
		border-bottom: none;
	}
	.nav-overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease-in-out;
	}
	.underline-hover.underline::after {
		transform: scaleX(0);
	}
	.nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}
	.page-header {
		padding: 2rem 1rem;
	}
	.page-header h2 {
		font-size: 2rem;
	}
	.services-grid {
		grid-template-columns: 1fr;
		padding: 1rem;
		gap: 1.5rem;
	}
	.service-card {
		padding: 1.5rem;
	}
	.btn-whatsapp {
		height: 3.5rem;
		padding: 0 2rem;
		width: 100%;
		max-width: 300px;
		margin: 0.2rem auto;
	}
	.btn {
		margin: 0.4rem auto;
	}
	.hero-img {
		width: 100%;
		margin: 1rem auto;
		border-radius: 8px;
	}
	html, body {
		max-width: 100%;
		overflow-x: hidden;
	}
}
@media (max-width: 480px) {
	.logo {
		font-size: 1rem;
	}
	.nav {
		flex-direction: column;
		width: 100%;
	}
	.nav a {
		display: block;
		padding: 0.5rem;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.underline-hover.underline::after {
		transform: scaleX(0);
	}
	.nav a:last-child {
		border-bottom: none;
	}
	.page-header h2 {
		font-size: 1.75rem;
	}
	.service-card {
		margin: 0 1rem;
	}
	.service-icon {
		font-size: 2rem;
	}
	.service-card h4 {
		font-size: 1.25rem;
	}
}
@media (max-width: 360px) {
	.logo {
		font-size: 0.8rem;
	}
}
@media (prefers-reduced-motion: reduce) {
	.service-card:hover {
		transform: none;
	}
}
.page-header {
	text-align: center;
	padding: 3rem var(--spacing-unit);
	background-color: var(--card-background);
}
.page-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.section-comment-maps {
	text-align: center;
	padding: 3rem var(--spacing-unit) 3rem;
	background-color: var(--background-light);
}
.section-comment-maps h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.gallery-caption {
	padding: 1rem;
	background: var(--card-background);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	transform: translateY(100%);
	transition: var(--transition);
}
.gallery-item:hover .gallery-caption {
	transform: translateY(0);
}
.testimonial-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1rem;
}
.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.testimonial-pet {
	color: var(--primary-color);
	font-style: italic;
	margin: 0.5rem 0;
}
.rating {
	color: var(--secondary-color);
	margin-top: 1rem;
}
.form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 600px;
	margin: 0 auto;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.form-group label {
	font-weight: 500;
	color: var(--text-color);
}
.form-group input,.form-group select,.form-group textarea {
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: var(--font-main);
	transition: var(--transition);
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}
.map-section {
	padding: 2rem 5%;
	text-align: center;
	background: var(--background-light);
}
.section-header {
	max-width: 800px;
	margin: 0 auto 3rem;
}
.section-header h3 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}
.section-header p {
	font-size: 1.2rem;
	color: var(--text-color);
	opacity: 0.8;
}
.map-container {
	max-width: 1500px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	background: var(--card-background);
	padding: 1rem;
}
.map-container iframe {
	display: block;
	width: 100%;
	border-radius: 15px;
	aspect-ratio: 16/9;
}
.map-actions {
	margin-top: 2.5rem;
}
.btn-map {
	background-color: var(--primary-color);
	color: white;
	padding: 1rem 2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.btn-map:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-map i {
	margin-right: 0.5rem;
}
@media (max-width: 768px) {
	.section-header h3 {
		font-size: 2rem;
	}
	.map-container {
		padding: 0.5rem;
		border-radius: 15px;
	}
	.map-container iframe {
		border-radius: 10px;
	}
}
.location-link {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.2s ease;
}
.location-link:hover {
	color: var(--primary-color);
}
.location-link p {
	text-align: left;
	line-height: 1.6;
}
.service-details {
	list-style: none;
	padding: 0;
	margin-top: 1rem;
}
.service-details li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #eee;
}
.service-details li:last-child {
	border-bottom: none;
}
.price {
	font-weight: 600;
	color: var(--primary-color);
	margin: 1rem 0;
}
@media (max-width: 768px) {
	.page-header {
		padding: 4rem 5% 3rem;
	}
	.page-header h2 {
		font-size: 2rem;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.form {
		padding: 0 1rem;
	}
	.testimonial-image {
		width: 80px;
		height: 80px;
	}
}
.btn-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background-color: #075E54;
	color: white;
	padding: 1rem 2rem;
	height: 3.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
	border: none;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.btn-whatsapp:hover {
	background-color: #128C7E;
	transform: translateY(-1px);
}
.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	padding: 4rem 5%;
	background: var(--background-light);
}
.feature-card {
	background: var(--card-background);
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: var(--transition);
}
.feature-card:hover {
	transform: translateY(-10px);
}
.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}
.about-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	padding: 4rem 5%;
	background: var(--card-background);
}
.about-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-content h3 {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}
.about-content p {
	margin-bottom: 1rem;
	line-height: 1.8;
}
.about-image {
	border-radius: 20px;
	overflow: hidden;
}
.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.quick-contact {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	padding: 4rem 5%;
	text-align: center;
}
.quick-contact h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}
.quick-contact p {
	margin-bottom: 2rem;
}
.contact-info-centered {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--card-background);
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: transform 0.2s ease;
}
.contact-item:hover {
	transform: translateY(-2px);
}
@media (max-width: 768px) {
	.hero-buttons {
		flex-direction: column;
	}
	.about-section {
		grid-template-columns: 1fr;
	}
	.about-image {
		order: -1;
	}
}
.custom-services {
	padding: 2rem 5%;
	background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
}
.custom-services-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.custom-services h3 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}
.custom-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}
.custom-service-item {
	background: var(--card-background);
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: var(--transition);
}
.custom-service-item:hover {
	transform: translateY(-10px);
}
.custom-service-item i {
	font-size: 2.5rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}
.custom-service-item h4 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}
.custom-services-contact {
	margin-top: 3rem;
}
.custom-services-contact p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
	.custom-services h3 {
		font-size: 2rem;
	}
	.custom-services-grid {
		gap: 1.5rem;
	}
}
/* Menu toggle button - caché par défaut */
.menu-toggle {
	display: none;
}
.nav-overlay {
	display: none;
}
@media screen and (min-width: 1000px) {
	.menu-toggle {
		display: none;
	}
}
@media screen and (max-width: 1340px) {
	.header {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		background: var(--card-background);
		z-index: 1000;
	}
	.page-header {
		margin-top: 60px;
	}
	.menu-toggle {
		display: block;
		background: none;
		border: none;
		padding: 0.5rem;
		cursor: pointer;
		margin-left: 1rem;
		z-index: 1001;
	}
	.nav {
		display: block;
		position: fixed;
		top: 60px;
		right: -100vw;
		width: 100vw;
		height: auto;
		background: var(--card-background);
		padding: 0;
		margin: 0;
		opacity: 0;
		transition: all 0.3s ease-in-out;
		box-shadow: 0 2px 4px rgba(0,0,0,0.1);
		left: auto;
	}
	.nav.active {
		right: 0;
		opacity: 1;
	}
	.nav a {
		padding: 1rem;
		border-bottom: 1px solid #eee;
		width: 100%;
		display: block;
		text-align: left;
		opacity: 0;
		transform: translateX(20px);
		transition: all 0.3s ease-in-out;
		transition-delay: calc(var(--item-index) * 0.1s);
		margin: 0;
		box-sizing: border-box;
	}
	.nav.active a {
		opacity: 1;
		transform: translateX(0);
	}
	.nav a:last-child {
		border-bottom: none;
	}
	.nav-overlay {
		display: block;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease-in-out;
	}
	.nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 1200px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 900px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.services-grid {
		grid-template-columns: 1fr;
		padding: 1rem;
		gap: 1.5rem;
	}
}
.contact-link {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.2s ease;
}
.contact-link:hover {
	color: var(--primary-color);
}
