body, html {
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Arial', sans-serif;
}
p {
	font-family:'Open Sans';
	font-size: 18px;
}
.background-container {
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url('images/lisbonne2.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	margin-top: -180px;
	margin-bottom: 0;
	padding-top: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

/* Styles généraux pour le body */
/* Global Box Sizing */
* {
	box-sizing: border-box;
}

html, body {
	width: 100%;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

/* Image de fond pour toutes les pages sauf l'index */
body:not(.home-page) {
	background-image: url('images/lisbonne2.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
@keyframes carEntrance {
	from {
		opacity: 0;
		transform: translateX(-150%) translateY(0);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}
							/* "RESERVEZ VOTRE CHAUFFEUR" */
.titreprincipal {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
}

.titreprincipal p {
	color: white;
	font-size: 32px;
	font-weight: bold;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	letter-spacing: 2px;
}
											/* BTA "Réservez" */
.reserve-btn {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #FFB6A3,#2E1425 );
	color: #fff;
	border: none;
	padding: 20px 30px;
	font-size: 25px;
	font-weight: bold;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
	transition: all 0.3s ease;
	z-index: 10;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
}
.reserve-btn:hover {
	background: linear-gradient(135deg, #2E1425, #2E1425);
	transform: translate(-50%, -50%) scale(1.05);
	box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

						/* Bouton de réservation pour les pages internes */
.reserve-btn-page {
	background: linear-gradient(135deg, #FFB6A3,#2E1425 );
	color: #fff;
	border: none;
	padding: 20px 40px;
	font-size: 25px;
	font-weight: bold;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.reserve-btn-page:hover {
	background: linear-gradient(135deg, #2E1425, #2E1425);
	transform: scale(1.05);
	box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

								/* Voiture roulante */
.car-overlay {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 600px;
	opacity: 0;
	animation: carEntrance 1s ease-in-out 1s forwards;
	-webkit-box-reflect: below 0px linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}
												/* Navbar Styles */
.navbar {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
	z-index: 1000;
	padding: 0;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Classes pour hide/show au scroll mobile */
.navbar {
	transition: transform 0.3s ease-in-out;
}

.navbar.navbar-hidden {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}

.navbar.navbar-hidden .navbar-menu {
	display: none !important;
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 25px 20px;
	position: relative;
}

.navbar-brand {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	flex: 1;
}

.navbar-menu {
	display: flex;
	list-style: none;
	margin-left: 180px;
	padding: 0;
	gap: 80px;
	flex: 2;
	justify-content: center;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.navbar-spacer {
	flex: 1;
}

.navbar-link {
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	font-weight: 500;
	padding: 20px 0px;
	border-radius: 5px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.navbar-link:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* Bouton de traduction */
/* Language Selector Dropdown */
.language-selector {
	position: relative;
	margin-right: 200px;
}

.language-selector select {
	background: linear-gradient(135deg, #FFB6A3, #2E1425);
	color: white;
	border: none;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: bold;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 35px;
	background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 20px;
	padding-right: 38px;
}

.language-selector select:hover {
	background-color: #2E1425;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}

.language-selector select:focus {
	outline: none;
	box-shadow: 0 4px 20px rgba(255, 182, 163, 0.4);
}

.language-selector option {
	background-color: #f0f0f0;
	color: #333;
	padding: 10px;
	margin: 5px 0;
}

.translation-btn {
	background: linear-gradient(135deg, #FFB6A3, #2E1425);
	color: white;
	border: none;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: bold;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	margin-right: 200px;
}

.translation-btn:hover {
	background: linear-gradient(135deg, #2E1425, #FFB6A3);
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

											/* Section Services avec 3 colonnes */
.services-section {
	background: #f0f0f0;
	padding: 50px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.services-icons {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 30px 0 20px 0;
	align-items: center;
	max-width: 1200px;
	width: 100%;
}

.services-icons .icon-wrapper {
	flex: 1;
	display: flex;
	justify-content: center;
}

.services-icons img {
	width: 8cap;
	height: 80px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.services-icons img:hover {
	transform: scale(1.1);
}

/* Nouvelle structure : services avec icônes + cartes */
.services-with-icons {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	max-width: 1300px;
	width: 100%;
	margin: 50px auto;
	gap: 80px;
	padding: 0 40px;
}

.service-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 320px;
	min-width: 250px;
	height: 100%;
}

.service-item .icon-wrapper {
	margin-bottom: 25px;
	flex-shrink: 0;
}

.service-item .icon-wrapper img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	transition: transform 0.3s;
}

.service-item .icon-wrapper img:hover {
	transform: scale(1.1);
}

.service-item .column {
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.three-columns {
	display: flex;
	justify-content: center;
	gap: 40px;
	max-width: 1200px;
	width: 100%;
	margin-top: 20px;
}

.column {
	flex: 1;
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.column:hover {
	transform: translateY(-5px);
}

.column p {
	font-size: 22px;
	line-height: 1.6;
	color: #333;
	margin: 0;
}

											/* Icônes sous Supplément possible */
.sup-icons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 900px;
	width: 100%;
	margin: 30px auto 50px auto;
	gap: 150px;
}
.sup-icons .icon-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.sup-icons img {
	width: 70px;
	height: 70px;
	object-fit: contain;
	transition: transform 0.3s;
}
	.icon-label {
		margin-top: 12px;
		text-align: center;
		font-size: 18px;
		color: #222;
		font-family: 'Open Sans', Arial, sans-serif;
		font-weight: 500;
	}
.sup-icons img:hover {
	transform: scale(1.1);
}

												/* Centrage du texte sous la barre horizontale */
.sup-center {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 40px;
}
												/* Barre horizontale de séparation sous les trois colonnes */
.horizontal-separator {
	width: 100%;
	max-width: 900px;
	height: 2px;
	background: #111;
	margin: 40px auto 0 auto;
	border-radius: 1px;
	display: block;
}

.white-background-section {
	background-color: #ffffff;
	padding: 0 0 0 0;
	width: 100%;
}

							/* Carte véhicule stylée */
.vehicle-card {
	background: linear-gradient(135deg, #fff 80%, #FFB6A3 100%);
	border-radius: 18px;
	box-shadow: 0 8px 32px rgba(44, 44, 44, 0.12);
	padding: 32px 28px 24px 28px;
	max-width: 350px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	transition: transform 0.3s, box-shadow 0.3s;
}
.vehicle-card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 16px 48px rgba(44,44,44,0.18);
}
.vehicle-card img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.12);
	margin-bottom: 18px;
}
.vehicle-card h3 {
	color: #007bff;
	margin: 18px 0 8px 0;
	font-size: 1.5em;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	letter-spacing: 1px;
}
.vehicle-card p {
	font-size: 16px;
	color: #444;
	margin-bottom: 12px;
}
.vehicle-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 10px 0;
	color: #222;
	font-size: 15px;
	text-align: left;
	display: inline-block;
}
.vehicle-card ul li {
	margin-bottom: 6px;
	padding-left: 8px;
	position: relative;
	margin-top: 20px;
}
.vehicle-card ul li:before {
	content: '•';
	color: #FFB6A3;
	position: absolute;
	left: -8px;
}

h2 {
	font-size: 35px;
	font-family: 'Roboto';
	font-weight: 10;
	text-align: center;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.25), 0 1px 0 #fff;
	margin-top: 240px;
}

								/* Formulaire de contact */

.contact-form-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 50px 20px;
}

.contact-form-container h1 {
	text-align: center;
	font-size: 36px;
	color: white;
	margin-bottom: 40px;
	font-family: 'Roboto', sans-serif;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-form {
	background: rgba(255, 255, 255, 0.95);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	width: 700px;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	flex: 1;
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #333;
	font-size: 18px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #FFB6A3;
	box-shadow: 0 0 10px rgba(255, 182, 163, 0.3);
}

.form-group textarea {
	resize: vertical;
	min-height: 180px;
}

							/* BOUTON RESERVEZ page about */

.submit-btn {
	background: linear-gradient(135deg, #FFB6A3, #2E1425);
	color: white;
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: block;
	margin: 30px auto 0;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #2E1425, #2E1425);
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

									/* Page Avis Clients */

.reviews-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
}

.reviews-container h1 {
	text-align: center;
	font-size: 36px;
	color: white;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.reviews-subtitle {
	text-align: center;
	font-size: 18px;
	color: white;
	margin-bottom: 50px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.review-card {
	background: rgba(255, 255, 255, 0.95);
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
}

.reviewer-info h3 {
	margin: 0 0 5px 0;
	font-size: 22px;
	color: #333;
	font-weight: bold;
}

.review-date {
	font-size: 14px;
	color: #666;
	font-style: italic;
}

.stars {
	font-size: 20px;
	color: #FFD700;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.review-text {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 15px;
	font-style: italic;
}

.certification-badge {
	background: rgba(255, 182, 163, 0.1);
	color: #FFB6A3;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	border: 2px solid #FFB6A3;
}

										/* Page À propos */
.about-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 20px;
}

h1 {
	text-align: center;
	font-size: 36px;
	color: white;
	margin-bottom: 40px;
	font-family: 'Roboto', sans-serif;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-content {
	text-align: center;
	margin-bottom: 50px;
}

.about-content p {
	font-size: 22px;
	line-height: 1.8;
	color: white;
	margin-bottom: 20px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	text-align: center;
	font-size: 28px;
	color: white;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

									/* Bouton de réservation blanc */
.reservation-button-container {
	text-align: center;
	margin: 40px 0;
}

									/* Carte du chauffeur */
.driver-card {
	max-width: 400px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.driver-card:hover {
	transform: scale(1.05);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.driver-photo {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	margin: 0 auto 20px;
	object-fit: cover;
	object-position: 50% 20%;
	border: 5px solid #FFB6A3;
	transition: transform 0.3s ease;
	display: block;

}

.driver-photo:hover {
	transform: scale(1.05);
}

.driver-info h3 {
	font-size: 28px;
	color: #333;
	margin: 0 0 10px 0;
	font-weight: bold;
}

.driver-title {
	font-size: 18px;
	color: #FFB6A3;
	font-weight: 500;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.driver-description {
	font-size: 18px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 25px;
	text-align: justify;
}

.driver-experience {
	background: linear-gradient(135deg, #FFB6A3, #2E1425);
	color: white;
	padding: 15px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}

.driver-certifications {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.certification-badge {
	background: rgba(255, 182, 163, 0.3);
	color: #2E1425;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	border: 2px solid #FFB6A3;
}

.reviews-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	background: rgba(255, 255, 255, 0.95);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat {
	text-align: center;
}

.stat h3 {
	font-size: 36px;
	color: #FFB6A3;
	margin: 0 0 10px 0;
	font-weight: bold;
}

.stat p {
	font-size: 18px;
	color: #333;
	margin: 0;
	font-weight: 500;
}
										/* Section chauffeur */
#chauffeur {
  padding: 50px 20px;
  text-align: center;
  color: white;
  font-size: 20px;
}

#chauffeur h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

#chauffeur img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #007bff;
}

#chauffeur h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

#chauffeur p {
  max-width: 700px;
  margin: 10px auto;
  font-size: 1.1em;
  line-height: 1.6;
}

#chauffeur ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 1.1em;
}

#chauffeur ul li {
  margin: 10px 0;
}

										/* Bouton Réserver */
.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  background-color: #007bff;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #0056b3;
}
/* Styles pour la section "Comment ça marche" */
.steps-container {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  text-align: center;
}

.steps-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.steps {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.step {
  flex: 1 1 200px;
  text-align: center;
  margin: 20px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 200px;
}

.step h4 {
  margin-top: 10px;
  color: #007bff;
  font-size: 20px;
}

.step p {
  color: #555;
  font-size: 20px;
}

.step-arrow {
    font-size: 40px;
    color: #FFB6A3;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.step-arrow-down {
    font-size: 40px;
    color: #FFB6A3;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    width: 100%;
}
											/* Footer Styles */
.footer {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	color: white;
	padding: 20px 0;
	margin-bottom: 0;
	margin-top: auto;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-logo h2 {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin: 0;
}

.footer-contact {
	text-align: center;
}

.contact-info {
	display: flex;
	gap: 20px;
	align-items: center;
}

.contact-info span {
	font-size: 18px;
	color: #fff;
	white-space: nowrap;
}

.footer-icons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.footer-icons img {
	width: 30px;
	height: 30px;
	object-fit: cover;
	border-radius: 5px;
	transition: transform 0.3s ease;
}

.footer-icons img:hover {
	transform: scale(1.1);
}

.footer-bottom {
	background: transparent;
	text-align: center;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	margin: 0;
	font-size: 12px;
	color: #ccc;
}
										/* Responsive pour mobiles */
@media (max-width: 768px) {
  #chauffeur {
    padding: 30px 10px;
  }

  #chauffeur img {
    width: 140px;
    height: 140px;
  }

  #chauffeur p {
    font-size: 1em;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}
/* Style spécifique pour la page backoffice */
.backoffice-page .footer {
  margin-top: 70px;
}

/* Responsive pour mobile - afficher les flèches verticales entre les steps */
@media (max-width: 1024px) {
  .step-arrow {
    display: none;
  }
  
  .step-arrow-down {
    display: flex;
    font-size: 40px;
    color: #FFB6A3;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    margin: 10px 0;
  }
}

/* ========================================
   MEDIA QUERIES POUR LA PAGE INDEX
   ======================================== */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
  /* Hero section */
  .titreprincipal p {
    font-size: 28px;
    letter-spacing: 1.5px;
  }
  
  .reserve-btn {
    font-size: 22px;
    padding: 18px 45px;
  }

  /* Bouton de traduction responsive */
  .translation-btn {
    padding: 10px 14px;
    font-size: 12px;
    margin-right: 100px;
  }
  
  /* Services section */
  .services-section h2 {
    font-size: 28px;
    padding: 0 20px;
  }
  
  .three-columns {
    max-width: 90%;
    gap: 30px;
  }
  
  .column h3 {
    font-size: 20px;
  }
  
  .column p {
    font-size: 18px;
  }
  
  /* Icônes suppléments */
  .sup-icons {
    gap: 80px;
    max-width: 95%;
  }
  
  .sup-icons img {
    width: 65px;
    height: 65px;
  }
  
  .icon-label {
    font-size: 16px;
  }
}

/* ========== RESPONSIVE PROGRESSIF - TABLETTES LARGES (max-width: 900px) ========== */
@media (max-width: 1024px) {
  /* Hero section */
  .titreprincipal p {
    font-size: 28px;
  }

  .reserve-btn {
    font-size: 20px;
    padding: 16px 40px;
  }

  /* Services section */
  .services-section {
    padding: 40px 30px;
  }

  .services-section h2 {
    font-size: 26px;
  }

  .services-with-icons {
    gap: 60px;
    padding: 0 30px;
  }

  /* Supplements */
  .sup-center h2 {
    font-size: 26px;
    padding: 0 30px;
  }

  .sup-icons {
    gap: 120px;
    padding: 0 30px;
  }

  .icon-label {
    font-size: 17px;
  }
}

/* ========== RESPONSIVE PROGRESSIF - TABLETTES MOYENNES (max-width: 750px) ========== */
@media (max-width: 750px) {
  /* Hero section */
  .background-container {
    height: 65vh;
  }

  .titreprincipal p {
    font-size: 24px;
  }

  .reserve-btn {
    font-size: 18px;
    padding: 14px 35px;
  }

  /* Services section */
  .services-section {
    padding: 35px 25px;
  }

  .services-section h2 {
    font-size: 22px;
  }

  .services-with-icons {
    gap: 50px;
    padding: 0 25px;
  }

  .service-item {
    max-width: 280px;
  }

  .column h3 {
    font-size: 17px;
  }

  .column p {
    font-size: 15px;
  }

  /* Supplements */
  .sup-center h2 {
    font-size: 22px;
    padding: 0 25px;
  }

  .sup-icons {
    gap: 80px;
    padding: 0 25px;
  }

  .sup-icons img {
    width: 55px;
    height: 55px;
  }

  .icon-label {
    font-size: 16px;
  }

  /* Footer */
  .footer-container {
    padding: 20px;
  }

  .contact-info span {
    font-size: 13px;
  }
}

/* Mobiles et petites tablettes (max-width: 768px) */
@media (max-width: 768px) {
  /* Navigation responsive */
  .navbar-menu {
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    display: none;
  }
  
  .navbar-brand {
    font-size: 20px;
  }
  
  /* Hero section */
  .background-container {
    height: 60vh;
    background-attachment: scroll;
    margin-top: -90px;
    padding-top: 40px;
  }
  
  .titreprincipal {
    top: 35%;
    padding: 0 20px;
  }
  
  .titreprincipal p {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1.3;
    max-width: 100%;
    width: 90vw;
  }
  
  .reserve-btn {
    top: 50%;
    font-size: 18px;
    padding: 15px 35px;
    margin: 0 auto;
    width: auto;
    max-width: 300px;
    box-sizing: border-box;
  }
  
  /* Voiture overlay - réduire ou masquer sur mobile */
  .car-overlay {
    width: 300px;
    opacity: 0;
    animation: carEntrance 1s ease-in-out 1.5s forwards;
  }
  
  /* Services section */
  .services-section {
    padding: 40px 20px;
  }
  
  .services-section h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
    margin-top: 160px;
  }
  
  /* Icônes services */
  .services-icons {
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
  }
  
  .services-icons .icon-wrapper {
    margin: 0 auto;
  }
  
  .services-icons img {
    width: 80px;
    height: 80px;
  }
  
  /* Nouvelle structure services avec icônes */
  .services-with-icons {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    padding: 0 20px;
    margin: 50px auto;
  }
  
  .service-item {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .service-item .icon-wrapper {
    margin-bottom: 20px;
  }
  
  .service-item .icon-wrapper img {
    width: 80px;
    height: 80px;
  }

  /* Colonnes en stack vertical */
  .three-columns {
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    padding: 0 10px;
  }
  
  .column {
    margin-bottom: 20px;
  }
  
  .column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .column p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
  
  /* Suppléments */
  .sup-center h2 {
    font-size: 20px;
    padding: 0 20px;
  }
  
  .sup-icons {
    flex-direction: column;
    gap: 25px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
  }
  
  .sup-icons .icon-wrapper {
    flex-direction: row;
    gap: 15px;
    text-align: left;
    justify-content: flex-start;
    max-width: 200px;
  }
  
  .sup-icons img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  
  .icon-label {
    font-size: 16px;
    margin-top: 0;
    align-self: center;
  }
  
  /* Séparateur horizontal */
  .horizontal-separator {
    width: 90%;
    margin: 30px auto 40px auto;
  }
  
  /* Footer responsive */
  .footer-container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 30px 20px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-info span {
    font-size: 16px;
  }
  
  .footer-icons {
    justify-content: center;
    gap: 20px;
  }
  
  .footer-icons img {
    width: 35px;
    height: 35px;
  }
}

/* Très petits mobiles (max-width: 480px) */
@media (max-width: 480px) {
  /* Hero section */
  .titreprincipal p {
    font-size: 20px;
    padding: 0 10px;
  }
  
.navbar-brand {
	height: 20px;
	width: 20px;
  }

  /* Bouton de traduction sur très petit mobile */
  .translation-btn {
    padding: 6px 10px;
    font-size: 10px;
    margin-right: 15px;
  }

  .reserve-btn {
    font-size: 16px;
    padding: 12px 30px;
    margin: 0 auto;
    width: auto;
    max-width: 270px;
  }
  
  
  /* Services */
  .services-section h2 {
    font-size: 18px;
    padding: 0 15px;
  }
  
  .services-section {
    padding: 30px 15px;
  }
  
  .column h3 {
    font-size: 16px;
  }
  
  .column p {
    font-size: 14px;
  }
  
  /* Suppléments */
  .sup-center h2 {
    font-size: 18px;
  }
  
  .sup-icons {
    padding: 0 15px;
  }
  
  .sup-icons .icon-wrapper {
    max-width: 180px;
  }
  
  .icon-label {
    font-size: 14px;
  }
  
  /* Footer */
  .footer-container {
    padding: 25px 15px;
  }
  
  .footer-logo h2 {
    font-size: 20px;
  }
  
  .contact-info span {
    font-size: 14px;
  }
  
  .footer-bottom p {
    font-size: 11px;
  }
}

/* Media query pour les très grands écrans */
@media (min-width: 1400px) {
  .three-columns {
    max-width: 1200px;
  }
  
  .sup-icons {
    max-width: 1000px;
  }
  
  .services-section h2 {
    font-size: 40px;
  }
}

/* Force un espace sous la navbar fixe sur tous les titres et blocs principaux */
/* Force un espace sous la navbar fixe sur tous les titres et blocs principaux */
.header, h1, .login-container, .calendar-admin {
    margin-top: 100px !important;
}


/* Logo responsive */
.logo {
	width: 300px;
	height: 200px;
    transition: height 0.3s;
}

@media (max-width: 1024px) {
    .logo {
        height: 120px;
		width: 150px;
    }
}

@media (max-width: 600px) {
    .logo {
        display: none;
    }

    /* Bouton de traduction sur mobile */
    .translation-btn {
        padding: 8px 12px;
        font-size: 11px;
        margin-right: 15px;
    }
}

/* --- MENU HAMBURGER --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
    padding: 0;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 3px 0;
    background: linear-gradient(135deg, #FFB6A3, #2E1425);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Menu mobile */
@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 1099;
        overflow-y: auto;
        list-style: none;
        margin: 0;
    }
    
    .navbar-menu.open {
        display: flex;
    }
    
    .navbar-menu li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(-20px);
        animation: slideIn 0.3s ease-out forwards;
        text-align: center;
        width: 100%;
    }
    
    .navbar-menu.open li:nth-child(1) { animation-delay: 0.1s; }
    .navbar-menu.open li:nth-child(2) { animation-delay: 0.2s; }
    .navbar-menu.open li:nth-child(3) { animation-delay: 0.3s; }
    .navbar-menu.open li:nth-child(4) { animation-delay: 0.4s; }
    .navbar-menu.open li:nth-child(5) { animation-delay: 0.5s; }
    .navbar-menu.open li:nth-child(6) { animation-delay: 0.6s; }
    
    .navbar-link {
        font-size: 22px;
        padding: 15px 30px;
        text-align: center;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: #fff;
        text-decoration: none;
        letter-spacing: 1px;
    }
    
    .navbar-link:hover {
        background: rgba(255, 182, 163, 0.2);
        transform: scale(1.05);
        color: #FFB6A3;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Style du bouton de traduction en mobile */
    .language-selector select {
        background: linear-gradient(135deg, #FFB6A3, #2E1425) !important;
        color: white !important;
        border: none !important;
        padding: 12px 18px !important;
        font-size: 14px !important;
        font-weight: bold !important;
        border-radius: 25px !important;
        cursor: pointer !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    .language-selector select:hover {
        background: #2E1425 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
}

/* Sur mobiles/tablettes, garder la navbar transparente même quand scrolled */
@media (max-width: 1024px) {
  .navbar.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  /* Assurer que la navbar ne couvre pas les titres sur mobile (déjà géré globalement) */
  .navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 1000;
  }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vehicle photo: desktop fixed-height with cover; on smaller screens keep aspect ratio to avoid cropping */
.vehicle-card .vehicle-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  margin-bottom: 18px;
}

@media (max-width: 1024px) {
  /* On tablet and mobile, let the image keep its aspect ratio (no cropping) and limit its max height */
  .vehicle-card .vehicle-photo {
    height: auto;
    object-fit: contain;
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  .vehicle-card .vehicle-photo {
    max-height: 220px;
  }
}

/* ========================================
   CALENDRIER RESPONSIVE - PAGE RÉSERVATION
   ======================================== */

.calendar-container {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  max-width: 90vw;
  width: 500px;
}

.calendar-header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-nav-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.calendar-month-year {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  text-align: center;
}

/* Responsive tablette */
@media (max-width: 1024px) {
  .calendar-container {
    width: 90%;
    max-width: 450px;
    padding: 30px;
  }

  .calendar-month-year {
    font-size: 20px;
  }

  .calendar-weekdays {
    font-size: 14px;
  }

  .calendar-nav-btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .calendar-days {
    gap: 10px;
  }
}

/* Responsive mobile */
@media (max-width: 600px) {
  .calendar-container {
    width: 95%;
    max-width: 350px;
    padding: 20px;
  }

  .calendar-header {
    margin-bottom: 20px;
  }

  .calendar-month-year {
    font-size: 18px;
  }

  .calendar-weekdays {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .calendar-nav-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .calendar-days {
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .calendar-container {
    padding: 15px;
    max-width: 300px;
  }

  .calendar-month-year {
    font-size: 16px;
  }

  .calendar-weekdays {
    font-size: 11px;
  }

  .calendar-nav-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .calendar-days {
    gap: 4px;
  }
}

/* ========================================
   MEDIA QUERY: PAGE "NOS SERVICES"
   Empiler les 3 cartes en colonne sur mobiles et tablettes
   ======================================== */

@media (max-width: 1024px) {
  .services {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 30px 20px !important;
  }

  .card {
    max-width: 600px !important;
    margin: 20px auto !important;
    width: 100% !important;
  }

  /* Garantir que tous les steps aient la même taille que les cards en mobile */
  .step {
    flex: 0 1 auto;
    width: calc(100% - 40px);
    max-width: 560px;
    margin: 20px auto;
    padding: 20px;
  }

  .steps-row {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 20px 15px !important;
    gap: 30px !important;
  }

  .card {
    padding: 18px !important;
    margin: 15px auto !important;
  }

  .card p {
    font-size: 15px !important;
  }
}

/* ========================================
   MEDIA QUERIES: PAGE AVIS CLIENTS
   Adaptation pour mobiles et tablettes
   ======================================== */

/* Tablettes */
@media (max-width: 1024px) {
  .reviews-container {
    padding: 40px 20px;
  }

  .reviews-container h1 {
    font-size: 32px;
  }

  .reviews-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .review-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .reviews-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .stat {
    width: 100%;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .reviews-container {
    padding: 30px 15px;
  }

  .reviews-container h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .reviews-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .reviews-grid {
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .review-card {
    padding: 20px;
    max-width: 100%;
  }

  .review-header {
    flex-direction: column;
    gap: 10px;
  }

  .reviewer-info h3 {
    font-size: 20px;
  }

  .review-date {
    font-size: 13px;
  }

  .stars {
    font-size: 18px;
  }

  .review-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .reviews-stats {
    flex-direction: column;
    gap: 25px;
    padding: 25px;
  }

  .stat h3 {
    font-size: 32px;
  }

  .stat p {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .reviews-container h1 {
    font-size: 24px;
  }

  .reviews-subtitle {
    font-size: 14px;
  }

  .review-card {
    padding: 15px;
  }

  .reviewer-info h3 {
    font-size: 18px;
  }

  .review-text {
    font-size: 15px;
  }
}

/* ========================================
   MEDIA QUERIES: PAGE CONTACT
   Adaptation du formulaire pour mobiles et tablettes
   ======================================== */

/* Tablettes */
@media (max-width: 1024px) {
  .contact-form-container {
    max-width: 90%;
    padding: 40px 20px;
  }

  .contact-form-container h1 {
    font-size: 32px;
  }

  .contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 35px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .contact-form-container {
    padding: 30px 15px;
  }

  .contact-form-container h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form {
    width: 100%;
    padding: 25px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 15px;
  }

  .form-group textarea {
    min-height: 150px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 17px;
  }
}

@media (max-width: 400px) {
  .contact-form-container h1 {
    font-size: 24px;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 9px;
    font-size: 14px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}

/* Optimisation de l'image de fond pour mobile */
@media (max-width: 1024px) {
  /* Pour les pages autres que index */
  body:not(.home-page) .background-container {
    background-attachment: scroll;
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
  }
  
  /* Pour la page index seulement */
  body.home-page .background-container {
    height: 60vh;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }
  
  body:not(.home-page) {
    background-attachment: scroll;
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
    height: auto;
  }
}

@media (max-width: 600px) {
  /* Pour la page index seulement */
  body.home-page .background-container {
    height: 80vh;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    image-rendering: auto;
    -webkit-background-size: cover;
  }
  
  /* Pour les autres pages */
  body:not(.home-page) .background-container {
    background-attachment: scroll;
    background-size: cover;
    background-position: top center;
    image-rendering: auto;
    -webkit-background-size: cover;
    min-height: 100vh;
  }
  
  body:not(.home-page) {
    background-attachment: scroll;
    background-size: cover;
    background-position: top center;
    image-rendering: auto;
    -webkit-background-size: cover;
    min-height: 100vh;
    height: auto;
  }
}
