/* ==============================
   STYLE GLOBAL - KEEP SHINE GLOW
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --blue-primary: #007BFF;
  --blue-dark: #002E5D;
  --gray-light: #F4F4F4;
  --gray-dark: #1E1E1E;
  --gray-medium: #808080;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
}

body {
  color: var(--gray-dark);
  background-color: var(--white);
  line-height: 1.6;
}

/* ==============================
   HEADER + NAVIGATION
   ============================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

.navbar img {
  height: 50px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-primary);
}
nav a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--blue);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--navy);
  z-index: 1001;
}

/* Responsive menu */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

/* ==============================
   HERO SECTION
   ============================== */

.hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  color: var(--white);
  text-align: center;
  padding: 160px 10% 120px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.hero-point {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 12px;
}

/* ==============================
   SECTIONS GÉNÉRALES
   ============================== */

section {
  padding: 100px 8%;
}

section:nth-of-type(odd) {
  background-color: var(--white);
}

section:nth-of-type(even) {
  background-color: var(--gray-light);
}

section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--blue-primary);
}

section p.lead {
  text-align: center;
  margin: 0 auto 50px auto;
  max-width: 900px;
  color: var(--gray-medium);
  font-size: 1.1rem;
}

/* ==============================
   PROMOTIONS
   ============================== */

.promotions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.promo-card {
  background: var(--white);
  border: 2px solid var(--blue-primary);
  border-radius: 15px;
  padding: 1.5rem;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ============================== */
/* 🌟 SECTION TARIFS — STYLE FINAL KEEP SHINE GLOW */
/* ============================== */

#tarifs {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F4 100%);
  padding: 80px 20px;
  text-align: center;
  color: #1E1E1E;
}

#tarifs .section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #002E5D;
}

#tarifs .lead {
  font-size: 1.1rem;
  color: #808080;
  margin-bottom: 50px;
}

/* --- Catégories de formules --- */
.tarif-category {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.tarif-category h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #007BFF;
  text-align: center;
  font-weight: 600;
}

/* --- Grille des formules --- */
.tarif-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  width: 100%;
}

/* --- Carte individuelle --- */
.tarif-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 46, 93, 0.08);
  padding: 30px 18px 25px 18px;
  width: 100%;
  max-width: 340px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border-top: 4px solid #007BFF; /* 🌟 Bordure supérieure arrondie */
}

.tarif-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #007BFF;
}

.tarif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 46, 93, 0.12);
}

/* --- Titre de la formule --- */
.tarif-card h4 {
  font-size: 1.4rem;
  color: #002E5D;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
}

/* --- Liste des services --- */
.tarif-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.tarif-card ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #1E1E1E;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.tarif-card ul li::before {
  content: "✔";
  color: #007BFF;
  font-weight: bold;
}

/* ❌ Services exclus : croix grise + texte barré */
.tarif-card ul li.excluded {
  color: #808080;
  text-decoration: line-through; /* <-- Texte barré */
  opacity: 0.8;
}

.tarif-card ul li.excluded::before {
  content: "✖";
  color: #B0B0B0;
  font-weight: bold;
  opacity: 0.7;
}

/* ============================== */
/* 🌟 Prix des suppléments + infobulle — version stable et isolée */
/* ============================== */

/* Étiquette de supplément */
.sup-price-wrapper {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  vertical-align: middle;
}

/* Le prix lui-même */
.sup-price {
  display: inline-block;
  background: #EAF3FF;
  color: #007BFF;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid #CFE3FF;
  box-shadow: 0 1px 4px rgba(0, 123, 255, 0.08);
  white-space: nowrap;
  text-decoration: none !important;
  line-height: 1.3;
}

/* Empêche tout héritage du barré du parent */
li.excluded {
  text-decoration: line-through;
  color: #808080;
  opacity: 0.85;
}

li.excluded .sup-price-wrapper {
  text-decoration: none !important;
  position: relative;
  z-index: 5;
}

li.excluded .sup-price {
  text-decoration: none !important;
  background: #FFFFFF;
  color: #007BFF;
  border: 1px solid #CFE3FF;
}

/* --- Info-bulle --- */
.sup-price-wrapper .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #002E5D;
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  pointer-events: none;
}

/* Flèche de la bulle */
.sup-price-wrapper .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #002E5D transparent transparent transparent;
}

/* Apparition fluide au survol */
.sup-price-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  bottom: 135%;
}


/* --- Tableau des prix --- */
.price-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: auto;
  position: relative;
}

.price-item {
  background: #EAF3FF;
  border: 1px solid #CFE3FF;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #002E5D;
  font-weight: 500;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.3;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.1);
}

.price-item span {
  font-weight: 500;
}

.price-item strong {
  color: #007BFF;
  font-weight: 600;
}

/* --- Options --- */
#tarifOptions {
  margin-top: 60px;
  text-align: center;
}

#tarifOptions h3 {
  font-size: 1.4rem;
  color: #002E5D;
  margin-bottom: 20px;
}

/* Conteneur global des étiquettes */
.option-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 10px 0;
}

/* Étiquette individuelle */
.option-tag {
  background: #FFFFFF;
  border: 1px solid #CFE3FF;
  box-shadow: 0 3px 6px rgba(0, 123, 255, 0.12);
  border-radius: 25px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px; /* 🔹 espace entre le nom et le prix */
  transition: all 0.25s ease;
  font-weight: 500;
  color: #002E5D;
  cursor: default;
}

/* Effet au survol */
.option-tag:hover {
  background: #007BFF;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 46, 93, 0.18);
  transform: translateY(-2px);
}

/* Nom de l’option */
.option-name {
  font-weight: 500;
  color: inherit;
  font-size: 0.95rem;
}

/* Prix de l’option */
.option-price {
  background: #EAF3FF;
  color: #007BFF;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

/* Effet inversé au survol */
.option-tag:hover .option-price {
  background: #FFFFFF;
  color: #002E5D;
}

/* --- Zones de déplacement --- */
#tarifZones {
  margin-top: 60px;
}

#tarifZones h4 {
  font-size: 1.4rem;
  color: #002E5D;
  margin-bottom: 20px;
}

.zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  align-items: stretch;
  justify-items: center;
  margin-top: 18px;
  width: 100%;
  box-sizing: border-box;
  padding: 6px 0;
}

/* Carte individuelle pour chaque zone */
.zone-card {
  background: #FFFFFF;
  border: 1px solid #E6F0FF;          /* léger trait clair */
  box-shadow: 0 6px 14px rgba(0, 46, 93, 0.06); /* ombre bleutée douce */
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  max-width: 320px;
  width: 100%;
  box-sizing: border-box;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

/* Hover effect */
.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 46, 93, 0.12);
}

/* Titres / distance / prix */
.zone-card strong {
  display: block;
  color: #007BFF;
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.zone-card p {
  margin: 0;
  color: #1E1E1E;
  font-size: 0.95rem;
}

/* Style pour le prix (rendre plus visible) */
.zone-card p:last-child {
  margin-top: 8px;
  font-weight: 700;
  color: #002E5D;
  background: #EAF3FF;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid #CFE3FF;
  box-shadow: 0 2px 6px rgba(0,123,255,0.08);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  #tarifs {
    padding: 60px 15px;
  }

  .tarif-cards {
    flex-direction: column;
    align-items: center;
  }

  .tarif-card {
    width: 95% !important;
    max-width: 420px;
    padding: 25px 18px;
  }

  .price-table {
    grid-template-columns: 1fr;
  }

  .price-item {
    font-size: 0.95rem;
    text-align: center;
  }

  .option-tags {
    gap: 10px;
  }
  .option-tag {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .option-price {
    font-size: 0.85rem;
    padding: 3px 8px;
  }

  .zones {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 6px;
  }

  .zone-card {
    max-width: 95%;
    padding: 14px;
  }

  .zone-card p {
    font-size: 0.96rem;
  }
}

/* --- Sécurité globale : visibilités forcées --- */
#tarifs, #tarifCategories, .tarif-cards, .tarif-card {
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
  transform: none !important;
}



/* --- Galerie --- */
/* --- Galerie --- */
#gallery {
  background: var(--light);
  padding: 60px 0;
}

#gallery .container {
  max-width: 1200px; /* ✅ largeur maximale */
  margin: 0 auto;
  padding: 0 20px;
}

/* Groupes de photos */
.gallery-group {
  margin-bottom: 50px;
  text-align: center;
}

/* Titre de chaque véhicule / prestation */
.gallery-group h3 {
  margin-bottom: 20px;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}

/* Slider horizontal */
.gallery-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  justify-content: center; /* ✅ centre les photos */
  padding: 10px 0;
  margin: 0 auto;
  max-width: 1000px; /* ✅ largeur max du slider */
}

/* Chaque photo */
.gallery-slide {
  flex: 0 0 auto;
  width: 280px; /* ✅ largeur fixe et raisonnable */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.gallery-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.gallery-slide:hover {
  transform: scale(1.05);
}

/* Barre de défilement stylisée */
.gallery-slider::-webkit-scrollbar {
  height: 8px;
}

.gallery-slider::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
}

.gallery-slider::-webkit-scrollbar-track {
  background: var(--light);
}

/* ✅ Responsive : réduit les images sur petits écrans */
@media (max-width: 768px) {
  .gallery-slide {
    width: 220px;
  }
  #gallery .container {
    padding: 0 10px;
  }
}


/* === Galerie : correction visibilité premières vignettes & flèches === */

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px; /* espace intérieur pour respirer */
}

/* Le slider aligne les vignettes à gauche (première visible),
   et on réserve un padding latéral pour que flèches n'écrasent pas les images */
.gallery-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  justify-content: flex-start;   /* IMPORTANT: garder la première vignette visible */
  padding: 12px 60px;            /* réserve 60px de chaque côté pour les flèches */
  margin: 0 auto;
  max-width: 1000px;
  -webkit-overflow-scrolling: touch;
}

/* taille fixe raisonnable pour chaque vignette (garantit pas de "coupure") */
.gallery-slide {
  flex: 0 0 auto;
  width: 280px;   /* tu peux adapter : 280/300/320 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease;
}

/* image remplissant sa vignette */
.gallery-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* flèches positionnées *à l'intérieur* de la zone et non en dehors */
.arrow {
  background: rgba(0,46,93,0.75);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .12s ease;
}

/* places les flèches *au bord intérieur* du slider (ne couvrent pas les vignettes) */
.arrow.left  { position: absolute; left: 12px; }
.arrow.right { position: absolute; right: 12px; }

.arrow:hover { transform: translateY(-3px); background: rgba(0,123,255,0.9); }

/* cacher les flèches sur mobile si souhaité */
@media (max-width: 768px) {
  .arrow { display: none; }
  .gallery-slider { padding: 12px 16px; } /* moins de padding mobile */
  .gallery-slide { width: 220px; }
}

/* cache barre de défilement si tu veux un rendu plus propre (optionnel) */
.gallery-slider::-webkit-scrollbar { height: 8px; }
.gallery-slider::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 8px; }





/* ==============================
   FAQ
   ============================== */

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-medium);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: var(--gray-light);
}

.faq-answer {
  display: none;
  margin-top: 0.5rem;
  color: var(--gray-dark);
}

.faq-item.active .faq-answer {
  display: block;
}

/* === Section FAQ === */
#faq {
  background: var(--white);
  padding: 60px 0;
}

#faq .container {
  max-width: 900px;  /* ✅ largeur maximale */
  margin: 0 auto;
  padding: 0 20px;
}

#faq h2 {
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

#faq h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Chaque bloc question/réponse */
.faq-item {
  border-radius: 12px;
  background: var(--light);
  margin-bottom: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
}

/* Bouton question */
.faq-question {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--blue);
}

/* Réponse cachée par défaut */
.faq-answer {
  display: none;
  background: #fff;
  color: var(--dark);
  padding: 18px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Petite icône “+ / -” */
.faq-question::after {
  content: "+";
  font-weight: bold;
  font-size: 1.3rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}


/* ==============================
   CONTACT
   ============================== */

.contact-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  color: var(--white);
}

.contact-info {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info i {
  font-size: 1.5rem;
  margin: 0.5rem;
  cursor: pointer;
}

/* ==============================
   FOOTER
   ============================== */

footer {
  background: var(--gray-dark);
  color: var(--gray-medium);
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
}

/* ==============================
   BOUTON RETOUR HAUT
   ============================== */

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-5px);
  background: var(--blue-primary);
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Formulaire === */
#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 550px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 100%;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#bookingForm textarea {
  min-height: 100px;
  resize: vertical;
}
#bookingForm .btn-primary {
  align-self: center;
  background: linear-gradient(45deg, #0057ff, #4fa3ff);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
#bookingForm .btn-primary:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #0047dd, #3c8cff);
}
nav ul li a.active {
  color: #007BFF;
  font-weight: 600;
}

body {
  /*max-width: 1400px;*/
  margin: 0 auto;
  background-color: #f4f4f4;
}

.contact-hours {
  margin-top: 1.5rem;
}
.contact-hours h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.contact-hours ul {
  list-style: none;
  padding: 0;
}
.contact-hours ul li {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo img {
  height: 60px;
  display: block;
}

.company-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .company-name {
    font-size: 0.8rem;
  }
}

/* === Section Contact & Réseaux === */
.contact-section {
  padding: 80px 0;
}

.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  justify-content: center;
}

.contact-item i {
  font-size: 1.6rem;
  color: var(--blue);
}

.contact-item a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--blue);
}

/* Réseaux sociaux */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-links a {
  font-size: 1.8rem;
  color: var(--navy);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--blue);
  transform: scale(1.1);
}

/* Horaires */
.hours h3 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--dark);
  font-size: 0.95rem;
}

.hours li {
  margin-bottom: 4px;
}

/* Carte */
.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}

/* === SECTION AVIS === */
.reviews-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--blue) 0%, #007bff40 100%);
  color: #1E1E1E;
  text-align: center;
}

.reviews-section .section-title {
  color: var(--nav);
  margin-bottom: 10px;
}

.reviews-section .lead {
  color: var(--gray-dark);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.tagembed-widget {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 767px) {
  .reviews-section {
    padding: 60px 15px;
  }
  .reviews-section .lead {
    font-size: 0.95rem;
  }
  .tagembed-widget {
    padding: 10px;
  }
}
