/* =====================
   VARIABLES & RESET
===================== */
:root {
  --primary: #1a73e8;
  --primary-dark: #0d47a1;
  --secondary: #fbbc04;
  --dark: #202124;
  --light: #f8f9fa;
  --gray: #5f6368;
  --light-gray: #dadce0;
  --success: #34a853;
  --danger: #ea4335;
  --border-radius: 8px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --font-primary: 'Poppins', 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
}

/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

/* =====================
   HEADER MODERNE - VERSION PREMIUM
===================== */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 140px; /* Augmenté pour logo plus grand */
}

.logo {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ===================== LOGO ENCORE PLUS GRAND ===================== */
.logo-img {
  height: 120px; /* Augmenté de 100px à 120px */
  width: auto;
  border-radius: 12px;
  transition: var(--transition);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px; /* Augmenté pour équilibrer avec le logo */
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.logo-text span {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; /* Augmenté */
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Navigation principale - Style amélioré */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: var(--primary);
  background: rgba(26, 115, 232, 0.05);
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.main-nav a:hover:after {
  width: 70%;
}

/* Bouton Réserver - Plus élégant */
.btn-book {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 14px 32px !important; /* Augmenté */
  border-radius: 40px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
  transition: var(--transition) !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 115, 232, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
}

.btn-book:after {
  display: none; /* Supprime l'effet de soulignement pour le bouton */
}

/* Sélecteur de langue - Style premium */
.language-selector {
  position: relative;
}

.language-selector select {
  padding: 12px 22px; /* Augmenté */
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  background: white;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  min-width: 150px; /* Augmenté */
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a73e8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 45px;
}

.language-selector select:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}

.language-selector select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

/* =====================
   HERO SECTION MODERNE
===================== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('images/hero-taxi.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 220px 20px 100px; /* Augmenté pour header plus grand */
  margin-top: 140px; /* Correspond à la nouvelle hauteur du header */
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.badge i {
  font-size: 16px;
}

/* =====================
   BOOKING FORM MODERNE
   (Labels au-dessus des champs)
===================== */
.booking-box {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin: -80px auto 50px; /* Ajusté */
  padding: 45px;
  max-width: 1150px;
  position: relative;
  z-index: 2;
}

.booking-box h2 {
  text-align: center;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  margin-bottom: 35px;
  font-weight: 700;
}


.grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 25px !important;
}
/* Style des champs avec labels au-dessus */
.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-control:hover {
  border-color: #bdc1c6;
}

/* Style spécifique pour les selects */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Bouton principal */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.3);
}

/* =====================
   AUTOCOMPLETE DES VILLES
===================== */
.autocomplete-container {
  position: relative;
}

.autocomplete-container .form-control {
  padding-right: 40px;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid var(--primary);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  display: none;
}

.autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--light-gray);
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: rgba(26, 115, 232, 0.1);
}

.autocomplete-item.selected {
  background: rgba(26, 115, 232, 0.2);
  font-weight: 500;
}

/* =====================
   DETAILED FORM MODERNE
===================== */
.booking-details {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  margin: 40px auto;
  padding: 40px;
  max-width: 1100px;
}

.booking-details h3 {
  color: var(--dark);
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

/* Résumé */
.summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  border-left: 4px solid var(--primary);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.summary-item {
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.summary-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.price-box {
  background: white;
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  border: 2px solid var(--light-gray);
}

.price-box span {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 5px;
}

.price-box strong {
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
}

/* Formulaire détaillé */
.details-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.details-form .form-group.full-width {
  grid-column: 1 / -1;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  grid-column: 1 / -1;
}

.checkbox input {
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox label {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.checkbox a {
  color: var(--primary);
  text-decoration: none;
}

.checkbox a:hover {
  text-decoration: underline;
}

/* =====================
   CONTACT SECTION MODERNE
===================== */
.contact-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-section .subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary-dark);
  gap: 12px;
}

/* =====================
   REVIEWS SECTION MODERNE
===================== */
.reviews-section {
  padding: 80px 20px;
  background: white;
}

.reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--dark);
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.stars {
  color: #fbbc04;
  font-size: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.review-info h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

.review-info .date {
  color: var(--gray);
  font-size: 13px;
}

.review-text {
  color: var(--dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.review-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: var(--light-gray);
  font-family: Georgia, serif;
}

/* =====================
   FOOTER PROFESSIONNEL
===================== */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px; /* Augmenté pour correspondre au logo */
  border-radius: 8px;
}

.footer-logo-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  margin-bottom: 5px;
  color: white;
  font-weight: 700;
}

.footer-logo-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #bdc1c6;
}

.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdc1c6;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.footer-links a:hover {
  color: white;
  gap: 15px;
}

.footer-contact p {
  color: #bdc1c6;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #bdc1c6;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* =====================
   UTILITIES
===================== */
.hidden {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.text-center {
  text-align: center;
}

/* =====================
   RESPONSIVE DESIGN - MIS À JOUR POUR LE GRAND LOGO
===================== */
@media (max-width: 1200px) {
  .header .container {
    padding: 0 25px;
  }
  
  .logo-img {
    height: 110px;
  }
  
  .logo-text strong {
    font-size: 34px;
  }
  
  .logo-text span {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .header .container {
    height: 130px;
    padding: 0 20px;
  }
  
  .logo-img {
    height: 100px;
  }
  
  .logo-text strong {
    font-size: 32px;
  }
  
  .logo-text span {
    font-size: 16px;
  }
  
  .main-nav a {
    font-size: 15px;
    padding: 8px 14px;
  }
  
  .btn-book {
    padding: 12px 28px !important;
    font-size: 15px !important;
  }
  
  .hero {
    padding: 200px 20px 90px;
    margin-top: 130px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
    min-height: 160px;
  }
  
  .logo-img {
    height: 90px;
  }
  
  .logo-text strong {
    font-size: 28px;
  }
  
  .logo-text span {
    font-size: 15px;
  }
  
  .main-nav {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .main-nav a {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .btn-book {
    padding: 10px 22px !important;
    font-size: 14px !important;
  }
  
  .language-selector select {
    padding: 10px 18px;
    font-size: 13px;
    min-width: 130px;
  }
  
  .hero {
    padding: 180px 20px 80px;
    margin-top: 160px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .booking-box {
    margin: -60px 20px 40px;
    padding: 30px;
  }
  
  .booking-box h2 {
    font-size: 28px;
  }
  
  .footer-logo img {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 80px;
  }
  
  .logo-text strong {
    font-size: 24px;
  }
  
  .logo-text span {
    font-size: 13px;
  }
  
  .hero {
    padding: 170px 15px 70px;
    margin-top: 160px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 15px;
    padding: 0 10px;
  }
  
  .badge {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .booking-box {
    padding: 25px 15px;
  }
  
  .booking-box h2 {
    font-size: 24px;
  }
  
  .btn-book {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }
  
  .footer-logo img {
    height: 60px;
  }
  
  .footer-logo-text h3 {
    font-size: 22px;
  }
  
  .footer-logo-text p {
    font-size: 14px;
  }
}

/* Animation pour les notifications */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-box,
.booking-details,
.contact-card,
.review-card {
  animation: fadeInUp 0.6s ease;
}

/* =====================
   SERVICES SECTION
===================== */
.services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.services-section .subtitle {
  text-align: center;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
  font-size: 48px;
  margin-bottom: 20px;
  color: white;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.service-card p {
  opacity: 0.9;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

/* ===================== PRIX ESTIMÉ - STYLE CORRIGÉ ===================== */
.price-estimate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 12px 20px;
    margin: 20px 0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.price-label {
    font-weight: 600;
    color: var(--dark);
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.price-value::after {
    content: "€";
    margin-left: 5px;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .price-estimate-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px;
    }
    
    .price-value {
        font-size: 22px;
    }
}
.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

/* Ou si vous voulez un léger effet de zoom */
.logo-link:hover .logo-img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}
/* =====================
   FLOATING REVIEW BUTTON - MODERNE
===================== */
.floating-review-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.review-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.review-icon i {
    color: #1a73e8;
    font-size: 24px;
    transition: transform 0.2s ease;
}

.review-icon:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.review-icon:hover i {
    transform: rotate(5deg);
}

/* Tooltip minimaliste */
.review-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: white;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.review-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #2c3e50;
}

.floating-review-btn:hover .review-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* =====================
   REVIEW MODAL - MINIMALISTE
===================== */
.review-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.review-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f3f4;
    color: #5f6368;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.close-modal:hover {
    background: #e8eaed;
    color: #202124;
}

.review-modal-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.review-modal-content .subtitle {
    color: #5f6368;
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* =====================
   FORMULAIRE NOIR ET BLANC ÉLÉGANT
===================== */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    letter-spacing: -0.2px;
}

.form-group label::after {
    content: '';
    margin-left: 4px;
}

.form-control {
    padding: 12px 16px;
    border: 1.5px solid #e8eaed;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: white;
    color: #202124;
}

.form-control:hover {
    border-color: #dadce0;
}

.form-control:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.form-control::placeholder {
    color: #9aa0a6;
    font-size: 14px;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
}

/* =====================
   ÉTOILES HORIZONTALES JAUNES
===================== */
.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 8px;
    margin: 8px 0 4px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 32px;
    color: #dadce0;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #fbbc04;
    transform: scale(1.1);
}

.rating-stars label:active {
    transform: scale(0.95);
}

/* =====================
   UPLOAD DE PHOTO MINIMALISTE
===================== */
.file-upload {
    position: relative;
    margin: 4px 0;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #f8f9fa;
    border: 1.5px dashed #dadce0;
    border-radius: 40px;
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-label:hover {
    background: #f1f3f4;
    border-color: #9aa0a6;
    color: #202124;
}

.file-label i {
    font-size: 18px;
    color: #5f6368;
}

.photo-preview {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 200px;
}

.photo-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* =====================
   CHECKBOX MINIMALISTE
===================== */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 8px 0;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid #dadce0;
    border-radius: 6px;
    cursor: pointer;
    accent-color: #1a73e8;
}

.checkbox label {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.checkbox a:hover {
    text-decoration: underline;
}

/* =====================
   BOUTON SUBMIT ÉLÉGANT
===================== */
.submit-review {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-review:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.submit-review:active {
    transform: translateY(0);
}

.submit-review i {
    font-size: 18px;
}

.submit-review:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* =====================
   SUCCESS MESSAGE
===================== */
.review-success {
    text-align: center;
    padding: 30px 20px;
}

.review-success i {
    font-size: 60px;
    color: #34a853;
    margin-bottom: 20px;
}

.review-success h3 {
    font-size: 24px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 12px;
}

.review-success p {
    color: #5f6368;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.review-success .btn-primary {
    background: #f1f3f4;
    color: #202124;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-success .btn-primary:hover {
    background: #e8eaed;
}

.hidden {
    display: none !important;
}

/* =====================
   RTL SUPPORT
===================== */
body.rtl .floating-review-btn {
    right: auto;
    left: 30px;
}

body.rtl .review-tooltip {
    right: auto;
    left: 70px;
}

body.rtl .review-tooltip::after {
    right: auto;
    left: -8px;
    transform: translateY(-50%) rotate(180deg);
}

body.rtl .floating-review-btn:hover .review-tooltip {
    right: auto;
    left: 80px;
}

body.rtl .rating-stars {
    flex-direction: row;
}

body.rtl .checkbox {
    flex-direction: row-reverse;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .floating-review-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .review-icon {
        width: 48px;
        height: 48px;
    }
    
    .review-icon i {
        font-size: 20px;
    }
    
    .review-tooltip {
        display: none;
    }
    
    .review-modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .review-modal-content h2 {
        font-size: 24px;
    }
    
    .rating-stars label {
        font-size: 28px;
    }
    
    .file-label {
        width: 100%;
        justify-content: center;
    }
}

/* =====================
   INTÉGRATION DANS LA SECTION REVIEWS EXISTANTE
===================== */
.reviews-section .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.2s ease;
    animation: cardFadeIn 0.4s ease;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #e8eaed;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f3f4;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
}

.review-info .date {
    font-size: 13px;
    color: #5f6368;
}

.review-text {
    color: #3c4043;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.review-rating {
    color: #fbbc04;
    font-size: 18px;
    letter-spacing: 2px;
}
/* =====================
   REVIEWS CAROUSEL - AMÉLIORÉ
===================== */
.slider {
    position: relative;
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    margin: 30px 0;
}

.slide {
    display: none;
    width: 100%;
    animation: slideFade 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.review-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.review-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
}

.review-rating {
    color: #fbbc04;
    font-size: 16px;
    letter-spacing: 2px;
    margin: 4px 0;
}

.review-date {
    font-size: 13px;
    color: #5f6368;
    display: block;
    margin-top: 2px;
}

.review-text {
    color: #3c4043;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: #e8eaed;
    font-family: Georgia, serif;
}

/* Indicateurs de position */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dadce0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 24px;
    border-radius: 4px;
    background: #1a73e8;
}

.indicator:hover {
    background: #9aa0a6;
}

/* Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dadce0;
    background: white;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    background: #f1f3f4;
    border-color: #9aa0a6;
    color: #202124;
}

.carousel-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .review-box {
        padding: 20px;
    }
    
    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .review-info h4 {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 14px;
    }
}
/* =====================
   CAROUSEL NAVIGATION
===================== */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px;
}

.carousel-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: white;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carousel-nav button:hover {
    background: #1a73e8;
    border-color: #1a73e8;
    color: white;
    transform: scale(1.1);
}

/* Indicateurs */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 30px;
    border-radius: 10px;
    background: #1a73e8;
}

.indicator:hover {
    background: #999;
}
/* =====================
   TOP DESTINATIONS SECTION
===================== */
.top-destinations-section {
    padding: 80px 20px;
    background: white;
}

.top-destinations-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.15);
    border-color: #1a73e8;
}

.destination-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 2px solid white;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #202124;
    font-weight: 600;
}

.destination-route {
    color: #5f6368;
    font-size: 12px;
    margin-bottom: 8px;
}

.destination-time {
    color: #5f6368;
    font-size: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f3f4;
}

.destination-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a73e8;
}

.destination-price-note {
    font-size: 11px;
    color: #5f6368;
}

.destination-book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.destination-book-btn:hover {
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.view-all-rates {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-block;
    background: white;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .destination-image {
        height: 120px;
    }
    
    .destination-content {
        padding: 15px;
    }
    
    .destination-price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr !important;
  }
}
/* FORCE FIX - NE PAS SUPPRIMER */
.booking-box .grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
}

.booking-box .grid .form-group {
    margin: 0 !important;
    padding: 0 !important;
}

.booking-box .grid .form-group:nth-child(5),
.booking-box .grid .form-group:nth-child(6) {
    grid-column: auto !important;
}

@media (max-width: 700px) {
    .booking-box .grid {
        grid-template-columns: 1fr !important;
    }
}
