body,
html {
  margin: 0;
  padding: 0;
  height: auto;
  overflow: visible !important;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #f4ebdd;
  color: #1e355e;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;

}

html {
  scroll-behavior: smooth;
}

#pub {
  font-size: 2rem;
  font-weight: 700;
  color: #1e355e;
  text-align: center;
  opacity: 0;
  animation: strategicReveal 1.5s ease-out forwards;
  animation-delay: 0.4s;
  letter-spacing: 0.5px;
  transform: scale(0.95) translateY(40px);
}

/* Animation plus expressive */
@keyframes strategicReveal {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
    filter: blur(8px);
  }

  40% {
    opacity: 0.5;
    transform: scale(1.02) translateY(-5px);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

main {
  max-width: 1400px;
  margin: 0 auto;

}

section {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  section {
    animation: none;
  }
}

@keyframes fadeInUp {
  from {
    filter: opacity(0);
    transform: translateY(20px);
  }

  to {
    filter: opacity(1);
    transform: translateY(0);
  }
}

#map-legende {
 text-align: left;
  background: white;
  border: 1px solid #ccc;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #1e355e;

  /* centrer horizontalement */
  position: relative;
  margin: 1rem auto;  /* <-- centrage automatique */
  display: table;     /* nécessaire pour margin auto */
}

/* Barre flottante mobile */
.contact-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 999;
}

.contact-bar a {
  background-color: #007b5e;
  color: white;
  font-size: 1.5em;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.contact-bar a:hover {
  background-color: #005f47;
}

.contact-bar i {
  color: white;
  font-size: 1.8em;
}

.contact-whatsapp i {
  color: white;
  font-size: 1.5em;

}

.contact-whatsapp {
  background-color: #25D366;
  padding: 10px;
  margin: 16px 0 0 0;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

/* Texte animé */
.fade-text {
  opacity: 0;
  animation: fadeInText 1s forwards;
}

@keyframes fadeInText {
  to {
    filter: opacity(1);
  }
}

/* Instagram-style filter */
.instagram-style {
  filter: contrast(1.1) brightness(1.05) saturate(1.2);
}

.instagram-style:hover {
  filter: contrast(1.2) brightness(1.1) saturate(1.3) sepia(0.1);
}





/* =====================
   TYPOGRAPHIE / HEADINGS
===================== */
h1,
h2 {
  color: #8B2E2C;
  margin: 0;
  padding: 10px 0;
  text-align: center;
}

a {
  color: #F6871F;
  text-decoration: none;
}

/* =====================
   NAVIGATION STICKY + RESPONSIVE
===================== */
.nav-contact-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ff7a59;
  padding: 10px 20px;
  border-bottom: 2px solid #ffe2d2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 40px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 20px;
  transition: transform 0.3s ease;
  z-index: 1001;
  /* Ensure it stays above other elements */
  position: relative;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 122, 89, 0.8);
  /* Semi-transparent background */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  /* Optional: adds a blur effect */
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-items: right;

}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 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(5px, -5px);
}

.nav-menu {
  display: flex;
  justify-content: center;
  flex: 0 1 auto;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.contact-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  padding: 6px 10px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.btn.whatsapp {
  background: #25D366;
}

.btn.call {
  background: #009688;
}

.btn.messenger {
  background: #0084FF;
}

.btn.mailto {
  background: #b71c1c;
}

.contact-buttons .btn:hover {
  filter: brightness(1.1);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    background: rgba(255, 122, 89, 0.95);
    border-radius: 10px;
    padding: 1rem;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
  }

  .nav-contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
  }

  .contact-buttons .btn {
    width: 100%;
    text-align: left;
  }
}

/* Stars */
.stars {
  font-size: 1.5em;
  color: gold;
}

/* Parallax */
.parallax {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2em;
  text-shadow: 2px 2px 4px #000;
}

#faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px 40px 20px !important;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FAQ */
details {
  margin-bottom: 10px;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 6px;
}

summary {
  font-weight: bold;
  cursor: pointer;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */



.scroll-up {
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  z-index: 100;
  font-size: 3rem;
  padding: 0.6rem;
  background: var(--accent-color, #E64522);
  /* Palette branding quartier */
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-up:hover {
  transform: scale(1.1);
  background: var(--accent-hover, #c32e14);
  /* Hover branding */
}

.scroll-up.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-up:focus {
  outline: 2px solid white;
  outline-offset: 4px;
}

.with-tooltip {
  position: relative;
  display: inline-block;
}

.tooltip {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.with-tooltip:hover .tooltip {
  opacity: 1;
}

/* Accessibility */
:focus {
  outline: 2px solid #007b5e;
  outline-offset: 2px;
}

.contact-bar i {
  font-size: 1.8em;
}


@keyframes zoomIn {
  from {
    transform: scale(0.9);
    filter: opacity(0);
  }

  to {
    transform: scale(1);
    filter: opacity(1);
  }
}


body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #F4EBDD;
  color: #1E355E;
  margin: 0;
  padding: 60px;
  height: auto !important;
  overflow: visible !important;
}

/* --- NAVIGATION --- */
.nav-contact-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ff7a59;
  border-bottom: 2px solid #ffe2d2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
}


.nav-contact-bar .logo img {
  height: 40px;
  margin-right: 32px;
}

.hamburger {
  display: none;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: 20px;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    display: block;
  }
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  top: 0;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-menu ul li {
  position: relative;

}

.nav-menu ul li a:hover {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 122, 89, 0.97);
    padding: 1rem;
    display: none;
    z-index: 999;
    border-radius: 0 0 8px 8px;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
  }
}

.contact-buttons {
  display: flex;
  gap: 10px;

}

.contact-buttons .btn {
  background-color: #ff7a59;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 1.1em;
  text-decoration: none;
  transition: background-color 0.3s;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.contact-buttons .btn.whatsapp {
  background-color: #25D366;
}

.contact-buttons .btn.call {
  background-color: #009688;
}

.contact-buttons .btn.messenger {
  background-color: #0084FF;
}

.contact-buttons .btn.mailto {
  background-color: #b71c1c;
}

.contact-buttons .btn:hover {
  filter: brightness(1.15);
}

@media (max-width: 900px) {
  .nav-contact-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ff7a59;
    border-bottom: 2px solid #ffe2d2;

    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
  }

  .contact-buttons {
    width: 100%;
    align-items: flex-start;
    margin-top: 8px;
  }
}

#tarif {
  text-align: center !important;
  margin-top: 20px;
  padding: 20px;
  background-color: #f4ebdd;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

:root {
  --color-primary: #ff7a59;
  --color-primary-dark: #8b2e2c;
  --color-bg-light: #f4ebdd;
  --color-white: #ffffff;
  --color-dark: #8b2e2c;
  --radius: 8px;
  --font-main: 'Inter', sans-serif;
}

.simulateur-parcelle {
  font-family: var(--font-main);
  background-color: var(--color-white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 640px;
  margin: 40px auto;
  color: var(--color-dark);
}

.simulateur-parcelle h2 {
  font-size: 1.5em;
  margin-bottom: 16px;
 text-align: center ;
}

.simulateur-parcelle label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
}

.simulateur-parcelle select,
.simulateur-parcelle input[type="number"],
.simulateur-parcelle input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1em;
}

#progression-bar {
  background: #eee;
  width: 100%;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}

#progression-bar-fill {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #81c784);
  transition: width 0.5s ease;
}

.simulateur-parcelle .cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.simulateur-parcelle .cta:hover {
  background-color: var(--color-primary-dark);
}

.simulateur-parcelle h2 {
  font-size: 1.5em;
  margin-bottom: 16px;
}

.simulateur-parcelle label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
}

.simulateur-parcelle select,
.simulateur-parcelle input[type="number"],
.simulateur-parcelle input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1em;
}

#progression-bar {
  background: #eee;
  width: 100%;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}

#progression-bar-fill {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #81c784);
  color: #fff;
  text-align: center;
  line-height: 20px;
  transition: width 0.5s ease;
}

.simulateur-parcelle .cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.simulateur-parcelle .cta:hover {
  background-color: var(--color-primary-dark);
}

#progression {
  margin-top: 16px;
}

#progression small {
  display: block;
  margin-top: 6px;
  font-size: 0.85em;
}

#progression {
  margin-top: 16px;
}

#progression>div {
  height: 20px;
  background: #eee;
  border-radius: var(--radius);
  overflow: hidden;
}

#progression>div>div {
  background: var(--color-primary);
  width: 50%;
  color: var(--color-white);
  text-align: center;
  line-height: 20px;
}

#progression small {
  display: block;
  margin-top: 6px;
  font-size: 0.85em;
}

#resultat {
  margin-top: 20px;
}

#resultat p {
  margin: 6px 0;
}

.simulateur-parcelle form {
  margin-top: 24px;
}

.simulateur-parcelle form input {
  margin-bottom: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
}

.social-links p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: #333;

}

.social-icons,
.contact-shortcuts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.5em;
}


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

/* Couleurs natives par réseau */
.social-links a[aria-label="Facebook"] {
  color: #1877F2;
}

.social-links a[aria-label="Instagram"] {
  color: #E4405F;
}

.social-links a[aria-label="YouTube"] {
  color: #FF0000;
}

.social-links a[aria-label="LinkedIn"] {
  color: #0077B5;
}

.social-links a[aria-label="Telegram"] {
  color: #0088CC;
}

.social-links a[aria-label="TikTok"] {
  color: #000000;
}

.social-links a[aria-label="WhatsApp"] {
  color: #25D366;
}

.social-links a[aria-label="Messenger"] {
  color: #0084FF;
}

.social-links a[aria-label="Appel"] {
  color: #4CAF50;
}


h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #8B2E2C;
}

/* Flèches navigation */
.swiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  color: #070253;
  width: 45px;
  height: 45px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 30px;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #1e355e;
  opacity: 1;
}

footer {
  width: 100%;
  padding: 2rem 1rem;
  margin: 0;
  border: none;
  border-radius: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: #444;
  background: linear-gradient(135deg, #f4ebdd, #f2f2f2);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.footer-social-links {
  margin-bottom: 1rem;
}

.footer-social-links a {
  margin: 0 8px;
  font-size: 1.2rem;
  color: #F6851F;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-social-links a:hover {
  color: #8B2E2C;
  transform: scale(1.2);
}

footer p {
  margin: 0.2rem 0;
}

footer a {
  color: #F6851F;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #8B2E2C;
}


/* =============================
   === FOOTER STYLING AJOUTÉ ===
   ============================= */


.footer-social-links {
  margin-bottom: 1rem;
}

.footer-social-links a {
  margin: 0 8px;
  font-size: 1.2rem;
  color: #F6851F;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-social-links a:hover {
  color: #8B2E2C;
  transform: scale(1.2);
}

footer p {
  margin: 0.2rem 0;
}

footer a {
  color: #F6851F;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #8B2E2C;
}


/* === Slider principal avec vidéo === */
.floating-video-slider {
  width: 100%;
  height: 80vh;
  margin: 0 auto;

  position: relative;
  overflow: visible;
  /* nécessaire pour les flèches extérieures */
}

@media (max-width: 768px) {
  .floating-video-slider {
    height: auto;
  }

  .swiper-slide iframe {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .swiper-button-prev {
    left: 10px !important;
    right: auto !important;
  }

  .swiper-button-next {
    right: 10px !important;
    left: auto !important;
  }
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fcf8f2;
}

/* === Swiper Styles === */
@import url('https://unpkg.com/swiper/swiper-bundle.min.css');

/* === Swiper Core === */
.swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === Flèches de navigation === */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* Flèche gauche ⬅️ - déplacée à l'extérieur */
.swiper-button-prev {
  left: -55px;
  /* ← ajustable selon tes marges */
  background-image: url('https://cdn-icons-png.flaticon.com/512/271/271220.png');
}

/* Flèche droite ➡️ - déplacée à l'extérieur */
.swiper-button-next {
  right: -55px;
  background-image: url('https://cdn-icons-png.flaticon.com/512/271/271228.png');
}

/* Supprimer le contenu ::after inutilisé (Swiper) */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

/* === Pagination === */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #1e355e;
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .swiper-button-prev {
    left: -40px;
    /* Ajusté pour mobile */
  }

  .swiper-button-next {
    right: -40px;
    /* Ajusté pour mobile */
  }
}


.map-options label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}


#map {
  position: relative;
  height: 600px;
  /* ou 400px si tu préfères une hauteur fixe */
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: zoomIn 0.8s ease;

}



#start-tour {
  padding: 8px 12px;
  font-size: 14px;
  background-color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

#fly-control {
  position: absolute;
  bottom: 30px;
  left: 10px;
  z-index: 999;
}

/* Styles slider simples */
.slider-wrapper {
  display: flex;
  align-items: center;
}

.slider-container {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.instagram-style {
  max-width: 150px;
  border-radius: 50%;
  border: 2px solid #007bff;
}

.fade-text {
  margin-top: 10px;
  font-style: italic;
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .nav-contact-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ff7a59;
    border-bottom: 2px solid #ffe2d2;

    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
  }

  .nav-menu {
    display: none;
    width: 100%;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    padding: 0 1rem;
  }

  .contact-buttons {
    flex-direction: column;
    width: 100%;
  }

  .contact-buttons .btn {
    width: 100%;
    text-align: left;
  }
}

.logo img {
  height: 40px;
  margin: 0 !important;
  /* supprime la marge */
  padding: 0 !important;
  /* supprime les paddings invisibles */
}

.logo {
  margin-left: 0 !important;
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 122, 89, 0.97);
    padding: 1rem;
    z-index: 999;
    border-radius: 0 0 8px 8px;
  }

  .nav-menu.active {
    display: block;
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .mobile-menu-content .logo {
    text-align: center;
  }

  .mobile-menu-content .logo img {
    height: 40px;
  }

  .mobile-left,
  .mobile-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .mobile-left .btn {
    width: 100%;
    text-align: left;
  }

  .mobile-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
  }

  .mobile-right ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
  }
}

/* Par défaut */
.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

/* En mobile */
@media (max-width: 900px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}

body {
  margin: 0;
  font-family: sans-serif;
}

.nav-contact-bar {
  background: #ff7a59;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

.nav-menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.contact-buttons a {
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 5px;

  color: white;
  text-decoration: none;
}

.btn.whatsapp {
  background: #25D366;
}

.btn.call {
  background: #009688;
}

.btn.messenger {
  background: #0084FF;
}

.btn.mailto {
  background: #b71c1c;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

@media (max-width: 900px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.mobile-only {
    display: none;
    background: #ff7a59;
    padding: 1rem;
  }

  .nav-menu.mobile-only.active {
    display: block;
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .mobile-left,
  .mobile-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-left a {
    text-align: left;
  }

  .mobile-right ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: right;
  }
}

/* === PATCH MENU BURGER CSS === */

/* === Menu hamburger pur CSS === */
input#toggle-menu {
  display: none;
}

.hamburger {
  cursor: pointer;
  display: none;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: none;
    background: rgba(255, 122, 89, 0.9);
    border-radius: 5px;
    z-index: 1001;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  #toggle-menu:checked~.nav-menu {
    display: block !important;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 122, 89, 0.95);
    border-radius: 0 0 10px 10px;
    z-index: 1000;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* === STRUCTURE GÉNÉRALE === */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #f4ebdd;
  color: #1e355e;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* === HEADER STICKY === */
.nav-contact-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ff7a59;
  border-bottom: 2px solid #ffe2d2;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* === BOUTONS CONTACT MOBILES FIXES === */
.contact-bar-mobile {
  position: fixed;
  top: 80px;
  right: 12px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-bar-mobile a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contact-bar-mobile .whatsapp {
  background-color: #25D366;
}

.contact-bar-mobile .call {
  background-color: #009688;
}

.contact-bar-mobile .messenger {
  background-color: #0084FF;
}

.contact-bar-mobile .mailto {
  background-color: #b71c1c;
}

/* === MENU HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 122, 89, 0.9);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 35px;
  height: 5px;
  background: white;
  margin: 5px 0;
  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(5px, -5px);
}

/* === MENU MOBILE === */
.nav-menu.mobile-only {
  display: none;
  flex-direction: column;
  background: rgba(255, 122, 89, 0.95);
  padding: 1rem;
  border-radius: 0 0 8px 8px;
}

.nav-menu.mobile-only.active {
  display: flex;
}

.nav-menu.mobile-only ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.nav-menu.mobile-only ul li {
  margin-bottom: 1rem;
}

.nav-menu.mobile-only a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

/* === RÉACTIF === */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

@media (min-width: 901px) {
  .mobile-only {
    display: none;
  }
}



/* === FOOTER GLOBAL === */
footer {
  width: 100%;
  max-width: 1500px;
  margin: 0;
  display: block;
  border: none;
  border-radius: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: #444;
  background: linear-gradient(135deg, #f4ebdd, #f2f2f2);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* === MENU DE NAVIGATION DANS LE FOOTER === */
.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
}

.footer-nav a {
  color: #1E355E;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #F6851F;
}

/* === RÉSEAUX SOCIAUX === */
.footer-social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-social-links a {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.footer-social-links a:hover {
  transform: scale(1.2);
}

.footer-social-links i {
  color: inherit;
}

.footer-social-links a[aria-label="Facebook"] {
  color: #1877F2;
}

.footer-social-links a[aria-label="Instagram"] {
  color: #E1306C;
}

.footer-social-links a[aria-label="YouTube"] {
  color: #FF0000;
}

.footer-social-links a[aria-label="LinkedIn"] {
  color: #0A66C2;
}

.footer-social-links a[aria-label="Telegram"] {
  color: #0088cc;
}

.footer-social-links a[aria-label="TikTok"] {
  color: #000000;
}

.footer-social-links a[aria-label="WhatsApp"] {
  color: #25D366;
}

.footer-social-links a[aria-label="Messenger"] {
  color: #00B2FF;
}

/* === COPYRIGHT === */
footer p {
  margin: 0.2rem 0;
}

footer a {
  color: #F6851F;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #8B2E2C;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.infra-cards {
  padding: 3rem 1rem;
  background: #fcf8f2;
  text-align: center;
}

.infra-cards h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #1e355e;
  font-weight: 700;
  align-items: center;
}

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

.infra-cards .card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.infra-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.infra-cards .card i {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.infra-cards .card p {
  margin: 0;
  font-weight: 600;
  color: #333;
}
@media (max-width: 600px) {
  .infra-cards .card {
    width: 100%;
    max-width: 300px;
  }
}
.location-section {
  background: #ffffff;
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
  line-height: 1.6;
}

.location-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #1E355E;
}

.location-section .gps,
.location-section .address {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.location-section .description {
  font-size: 1.1rem;
  color: #444;
  margin-top: 1rem;
}

.location-section .advantages {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  max-width: 600px;
  margin-inline: auto;
}

.location-section .advantages li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-section .conclusion {
  font-weight: bold;
  color: #1e355e;
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .location-section {
    padding: 2rem 1rem;
  }

  .location-section .advantages {
    align-items: center;
  }
}

    .swiper {
      width: 100%;
      max-width: 900px;
      margin: auto;
      padding: 0 1rem;
      box-sizing: border-box;
    }
    .swiper-slide {
      background: linear-gradient(to bottom, #fffdf8, #f2f2f2);
      padding: 2rem;
      border-radius: 16px;
      border: 1px solid #eee;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.5s ease;
      text-align: center;
    }
    .swiper-slide-active {
      transform: scale(1.02);
    }
    blockquote {
      font-size: 1.2rem;
      line-height: 1.5;
      position: relative;
      margin-bottom: 1rem;
    }
    blockquote::before {
      content: "“";
      font-size: 4rem;
      color: #f6851f;
      position: absolute;
      left: 10px;
      top: -20px;
      opacity: 0.2;
    }
    .stars {
      color: gold;
      margin: 0.5rem 0;
    }
    footer {
      margin-top: 1rem;
      font-weight: bold;
      color: #1e355e;
    }
    .avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 1rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .avatar img {
      width: 100%;
      height: auto;
    }
    .swiper-pagination-bullet-active {
      background: #1e355e !important;
    }
.about-premium {
  padding: 3rem 1rem;
  background: #fff;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.about-text {
  flex: 1 1 60%;
}
.about-text h2 {
  font-size: 2rem;
  color: #1e355e;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about-image {
  flex: 1 1 35%;
  text-align: center;
}
.about-image img {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.why-premium {
  background: #fcf8f2;
  padding: 3rem 1rem;
  text-align: center;
}
.why-premium h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1e355e;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}
.why-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
}
.why-card i {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.why-card h3 {
  color: #1e355e;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 1rem;
  color: #555;
}
.why-closing {
  margin-top: 2rem;
  font-weight: bold;
  color: #1e355e;
  max-width: 800px;
  margin-inline: auto;
}
