/*--------------------------------------------------------------
# IMPORT CSS
--------------------------------------------------------------*/
@import url('default.epaphrodites.style.css');

/*--------------------------------------------------------------
  # MAIN
--------------------------------------------------------------*/

html,
body {
    background: #fff;
}

    :root {
      --soft-bleu: #6C7EE1;
      --soft-marron: #8B5A2B;
      --soft-orange: #F4B97C;
      --soft-blanc: #FAFAFA;
      --bleu-ocean: #0056b3;
      --cyan: #00aaff;
    }

    * { margin:0; padding:0; box-sizing:border-box; }
    body { 
      font-family: 'Poppins', sans-serif; 
      background: var(--soft-blanc); 
      color: var(--bleu-ocean); 
      overflow-x: hidden; 
    }

    /* HEADER STYLE */
    nav {
      background: rgba(108, 126, 225, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(108, 126, 225, 0.3);
      border-radius: 50px;
      padding: 0.7rem 2rem;
      margin: 0.5rem auto; /* ← Réduit (avant 1rem auto) */
      width: fit-content;
      max-width: 90%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      box-shadow: 0 8px 25px rgba(108, 126, 225, 0.1);
      position: sticky; 
      top: 0.5rem; /* ← Réduit (avant 1rem) */
      z-index: 100;
      transition: all 0.3s ease;
    }
    nav:hover { box-shadow: 0 12px 40px rgba(108, 126, 225, 0.3); }
nav.hide {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

    .logo-img {
      height: 40px;
      width: auto;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 85, 179, 0.3);
      transition: transform 0.3s ease;
    }
    .logo-img:hover { transform: scale(1.1); }

    nav ul {
      display: flex; list-style: none; gap: 2rem; margin: 0;
    }
    nav a {
      color: var(--bleu-ocean); 
      text-decoration: none; 
      font-weight: 500;
      padding: 0.5rem 1rem; 
      border-radius: 20px; 
      transition: 0.3s;
    }
    nav a:hover {
      color: var(--soft-orange);
      background: rgba(244, 185, 124, 0.2);
    }

    .nav-left, .nav-right {
      flex: 1; display: flex;
    }
    .nav-left { justify-content: flex-end; }
    .nav-right { justify-content: flex-start; }

    /* HERO SECTION */
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 2rem 8% 10rem; /* ← Réduit fortement en haut (avant 6rem → 2rem) */
      gap: 6rem;
      overflow: hidden;
      margin-top: -1rem; /* ← Compensation négative pour coller au nav */
    }

    .hero-content {
      text-align: left;
      max-width: 600px;
      z-index: 3;
    }

    .hero-content h1 {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(90deg, var(--bleu-ocean), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-content h1 span { color: var(--soft-marron); }

    .hero-content p {
      font-size: 1.1rem;
      color: var(--soft-marron);
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .badges {
      display: flex; gap: 2.5rem; margin: 1.5rem 0;
    }
    .badge {
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    }
    .badge i { color: var(--soft-orange); font-size: 1.4rem; }
    .badge span { font-weight: 600; font-size: 0.95rem; color: var(--soft-marron); }

    .cta-buttons {
      display: flex; gap: 1rem; flex-wrap: wrap;
    }
    .btn {
      padding: 0.9rem 2rem; 
      border-radius: 50px; 
      font-weight: 600; 
      text-decoration: none;
      transition: 0.3s; 
      font-size: 1rem;
    }
    .btn-primary {
      background: var(--soft-orange); 
      color: #000; 
      box-shadow: 0 0 20px rgba(244, 185, 124, 0.4);
    }
    .btn-primary:hover { 
      transform: translateY(-3px); 
      box-shadow: 0 0 30px rgba(244, 185, 124, 0.6); 
    }

    .btn-secondary {
      border: 2px solid var(--soft-bleu); 
      color: var(--soft-bleu);
      background-color: var(--soft-blanc);
    }
    .btn-secondary:hover { 

      color: var(--soft-blanc); 
    }

    /* VISUAL */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      z-index: 1;
    }

    .circle-container {
      position: absolute;
      width: 500px;
      height: 500px;
    }

    .circle {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 3px solid;
      animation: pulse 5s infinite ease-in-out;
    }

    .c1 { width: 500px; height: 500px; border-color: rgba(108, 126, 225, 0.15); }
    .c2 { width: 400px; height: 400px; border-color: rgba(0, 170, 255, 0.25); animation-delay: 0.6s; }
    .c3 { width: 300px; height: 300px; border-color: rgba(244, 185, 124, 0.35); animation-delay: 1.2s; }
    .c4 { width: 200px; height: 200px; border-color: rgba(139, 90, 43, 0.45); animation-delay: 1.8s; }

    @keyframes pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
      50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
    }

    .hero-silhouette {
      position: relative;
      width: 420px;
      height: auto;
      z-index: 2;
      filter: drop-shadow(0 0 35px rgba(108, 126, 225, 0.5));
      animation: float 6s infinite ease-in-out;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem 5% 8rem; /* ← Ajusté pour mobile */
        margin-top: -0.5rem;
      }
      .hero-content { text-align: center; margin: 0 auto; }
      .hero-visual { margin-top: 2rem; }
      .circle-container { width: 400px; height: 400px; }
      .c1 { width: 400px; height: 400px; }
      .c2 { width: 320px; height: 320px; }
      .c3 { width: 240px; height: 240px; }
      .c4 { width: 160px; height: 160px; }
      .hero-silhouette { width: 320px; }
      .hero-content h1 { font-size: 3rem; }
    }

    @media (max-width: 768px) {
      nav { 
        flex-direction: column; 
        gap: 1rem; 
        padding: 1rem; 
        margin: 0.3rem auto;
        top: 0.3rem;
      }
      .nav-left, .nav-right { justify-content: center; }
      .hero-content h1 { font-size: 2.5rem; }
      .hero { padding-top: 1rem; }
    }


   /* === SECTION ATOUTS === */
  .atouts {
    position: relative;
    padding: 120px 8% 100px;
    background: linear-gradient(145deg, #0b0b1a, #11112a);
    overflow: hidden;
    clip-path: ellipse(130% 100% at 50% 0%);
  }

  /* Effet lumineux animé */
  .atouts::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at center, rgba(0,170,255,0.08), transparent 70%);
    animation: rotate-bg 25s linear infinite;
    z-index: 0;
  }

  @keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .atouts h2 {
    font-size: 2.7rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--soft-orange), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    position: relative;
  }

  .atouts-container {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    padding: 25px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    position: relative;
    z-index: 2;
  }

  .atouts-container::-webkit-scrollbar { display: none; }

  .atout-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    scroll-snap-align: start;
    transition: transform 0.4s ease, background 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
  }

  .atout-item.active {
    opacity: 1;
    transform: translateY(0);
  }

  .atout-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
  }

  .atout-item svg {
    width: 30px;
    height: 30px;
    fill: var(--soft-orange);
    transition: fill 0.3s ease, transform 0.3s ease;
  }

  .atout-item:hover svg {
    fill: var(--cyan);
    transform: rotate(-10deg);
  }

  .atout-item span {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--soft-blanc);
  }

  .separator {
    width: 1px;
    height: 40px;
    background: linear-gradient(transparent, #333, transparent);
    flex-shrink: 0;
  }

  /* === RESPONSIVE === */
  @media (max-width: 900px) {
    .atouts {
      clip-path: ellipse(140% 90% at 50% 0%);
    }
    .atouts h2 {
      font-size: 2rem;
    }
  }

  @media (max-width: 600px) {
    .atouts {
      padding: 100px 5% 80px;
      clip-path: ellipse(160% 90% at 50% 0%);
    }
    .atouts-container {
      gap: 25px;
    }
    .atout-item {
      border-radius: 40px;
      padding: 8px 15px;
    }
    .atout-item svg {
      width: 26px;
      height: 26px;
    }
  }

.nos-services-section *,
.nos-services-section *::before,
.nos-services-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.batiims-section {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  padding: 100px 0;
}

.batiims-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;              /* ✅ passage en flex */
  align-items: stretch;       /* ✅ égalise les hauteurs */
  gap: 80px;
}

@media (max-width: 992px) {
  .batiims-container {
    flex-direction: column;
    gap: 50px;
  }
}

/* Image */
.batiims-image-wrapper {
  flex: 1;
  display: flex;
}

.batiims-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;          /* ✅ garde les proportions */
}

/* Contenu */
.batiims-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.batiims-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4a574;
  margin-bottom: 12px;
  font-weight: 600;
}

.batiims-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .batiims-title {
    font-size: 2.4rem;
  }
}

.batiims-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Services */
.batiims-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .batiims-services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.batiims-service-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.batiims-service-item h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #d4a574;
}

.batiims-service-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Service 3D */
.batiims-service-3d {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .batiims-service-3d {
    grid-column: span 1;
    flex-direction: column;
    gap: 20px;
  }
}

.batiims-service-3d h4 {
  margin: 0;
  flex-shrink: 0;
  min-width: 120px;
  
}

.batiims-mini-image {
  flex: 1;
  max-width: 300px;
}

.batiims-mini-image img {
  width: 100%;
  height: auto;
  border-radius: 1px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  
}

.batiims-3d-text {
  flex: 1 1 100%;
  margin-top: 20px;
}

.batiims-3d-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}.batiims-cta-link {
  display: inline-block; /* bordure suit la largeur du texte */
  font-size: 1rem;       /* taille du texte */
  font-weight: 500;      
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;   /* espace entre texte et soulignement */
  transition: all 0.3s ease;
}

.batiims-cta-link:hover {
  color: #d4a574;
  border-color: #d4a574;
}







.batiims-3d-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Conteneur gauche : liens + texte */
.batiims-3d-links-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 600px;
}

/* Liens sur une seule ligne */
.batiims-3d-links {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap; /* interdit le retour à la ligne */
  overflow-x: auto;  /* scroll horizontal si nécessaire */
  margin-bottom: 20px;
}

.batiims-3d-links a {
  text-decoration: none;
  color: #0056b3;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap; /* empêche le retour à la ligne dans le lien */
}

.batiims-3d-links a.active,
.batiims-3d-links a:hover {
  color: #f4a261;
  border-bottom: 2px solid #f4a261;
}

/* Texte aligné face à l'image */
.batiims-3d-text {
  min-height: 200px;
}

.batiims-3d-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Bloc droit : image */
.batiims-mini-image {
  flex-shrink: 0;
  max-width: 300px;
  display: flex;
  align-items: flex-start;
}

.batiims-mini-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .batiims-3d-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .batiims-3d-links-container,
  .batiims-mini-image {
    max-width: 100%;
  }
  .batiims-3d-text {
    min-height: auto;
  }
}







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

        .nous {
            margin-bottom: 70px;
        }

        .nous h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2d2d2d;
            margin-bottom: 14px;
        }

        .nous p {
            font-size: 1.1rem;
            color: #666;
            max-width: 720px;
            margin: 0 auto;
        }

        /* Lignes séparées */
        .features-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .feature-block {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-block:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
        }

        /* Hauteur commune */
        .block-common-height {
            height: 300px;
        }

        /* Bloc image : rectangle large */
        .block-img {
            width: 520px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .block-img::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.15), transparent);
            border-radius: 20px;
        }

        /* Bloc contenu : carré orange */
        .block-content {
            width: 300px;
            background-color: #f4a261;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 36px;
            border-radius: 20px;
        }

        .block-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .block-desc {
            font-size: 1rem;
            opacity: 0.94;
            line-height: 1.6;
        }

        /* Ligne 1 : Image à gauche, carré à droite */
        .row-1 {
            justify-content: center;
        }

        /* Ligne 2 : Carré AVANT le rectangle → ordre normal (pas de row-reverse) */
        .row-2 {
            justify-content: center;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .features-row {
                flex-direction: column;
                align-items: center;
                gap: 28px;
            }

            .block-img,
            .block-content {
                width: 100%;
                max-width: 520px;
            }

            .block-content {
                max-width: 400px;
                padding: 28px;
            }

            .nous h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .block-common-height {
                height: 240px;
            }

            .block-img {
                height: 180px;
            }

            .block-content {
                height: 240px;
                padding: 24px;
            }
        }
 /* Animation d’entrée depuis les extrémités */
.animate-left, .animate-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}

.animate-left {
  transform: translateX(-100px);
}

.animate-show {
  opacity: 1;
  transform: translateX(0);
}
/* Bloc image avec texte */
.block-img {
  position: relative;
  width: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

/* Dégradé sombre à gauche */
.block-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  z-index: 1;
}

/* Texte sur image */
.img-overlay-text {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 300px;
}

.img-overlay-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.img-overlay-text p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}


.footer {
  background: #0e0e0e;
  color: var(--soft-blanc);
  padding: 4rem 6%;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Bloc gauche */
.footer-about {
  flex: 1 1 280px;
  max-width: 350px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--soft-orange);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-btn {
  background: var(--soft-orange);
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.footer-btn:hover {
  background: var(--soft-bleu);
  color: #fff;
}

/* Bloc du milieu */
.footer-links {
  display: flex;
  flex: 2 1 400px;
  justify-content: space-around;
}

.footer-links h4 {
  font-size: 1.1rem;
  color: var(--soft-orange);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--soft-orange);
}

/* Bloc contact */
.footer-contact {
  flex: 1 1 280px;
}

.footer-contact h4 {
  font-size: 1.1rem;
  color: var(--soft-orange);
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--soft-orange);
}

.social-icons a {
  color: var(--soft-blanc);
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--soft-orange);
}

/* Bas du footer */
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: var(--soft-orange);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}


/* === SECTION AVEC FORME & COULEUR === */
    .nl-trapeze {
      background: linear-gradient(180deg, var(--gris-soft) 0%, #eaefff 100%);
      padding: 120px 5% 100px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    /* Forme douce avec gradient intégré */
    .nl-trapeze::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 95%;
      max-width: 1600px;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,170,255,0.15) 0%, rgba(108,126,225,0.15) 100%);
      clip-path: polygon(
        0% 15%, 
        8% 0%, 
        92% 0%, 
        100% 15%, 
        100% 85%, 
        92% 100%, 
        8% 100%, 
        0% 85%
      );
      border-radius: 40px;
      z-index: 1;
    }

    /* Conteneur principal */
    .nl-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Cadre central */
    .nl-box {
      background: var(--soft-blanc);
      padding: 3rem 2.5rem;
      border-radius: 25px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,86,179,0.08);
      display: inline-block;
      width: 100%;
      position: relative;
    }

    /* Badge moderne */
    .nl-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--cyan), var(--soft-bleu));
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 0.55rem 1.4rem;
      border-radius: 50px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      box-shadow: 0 5px 15px rgba(0,86,179,0.25);
    }

    /* Titre et texte */
    .nl-box h2 {
      font-size: 2.6rem;
      color: var(--gris-texte);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .nl-box p {
      font-size: 1.15rem;
      color: #555;
      margin-bottom: 2.2rem;
      line-height: 1.7;
    }

    /* Formulaire */
    .nl-form {
      display: flex;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
      justify-content: center;
    }

    .nl-form input {
      flex: 1;
      padding: 1rem 1.5rem;
      border: 2px solid #ddd;
      border-radius: 50px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .nl-form input:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 8px rgba(0,170,255,0.2);
    }

    .nl-form button {
      padding: 1rem 2rem;
      background: linear-gradient(135deg, var(--soft-bleu), var(--cyan));
      color: #fff;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 15px rgba(108,126,225,0.25);
    }

    .nl-form button:hover {
      background: linear-gradient(135deg, var(--cyan), var(--bleu-ocean));
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(0,86,179,0.3);
    }

    /* Décoration légère */
    .nl-box::after {
      content: '';
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--soft-orange);
      opacity: 0.25;
      top: -25px;
      right: -25px;
      z-index: -1;
    }

    .nl-box::before {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--soft-bleu);
      opacity: 0.2;
      bottom: -20px;
      left: -20px;
      z-index: -1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nl-box { padding: 2.5rem 2rem; }
      .nl-box h2 { font-size: 2.2rem; }
      .nl-form { flex-direction: column; }
      .nl-form button { width: 100%; }
    }

    @media (max-width: 480px) {
      .nl-box h2 { font-size: 1.9rem; }
      .nl-badge { font-size: 0.75rem; padding: 0.4rem 1rem; }
    }

     /* === SECTION CHAT === */
    .chat-section {
      min-height: 100vh;
      padding: 120px 10%;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      background-color: #fff;
    }

    .chat-title {
      font-size: 3.2rem;
      margin-bottom: 80px;
      background: linear-gradient(90deg, var(--soft-orange), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
      font-weight: 800;
    }

    /* === Téléphone === */
    .phone {
      width: 380px;
      height: 780px;
      background: #fff;
      border-radius: 40px;
      padding: 20px;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
      position: relative;
    }

    .phone::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 150px;
      height: 30px;
      background: #eaeaea;
      border-radius: 0 0 20px 20px;
    }

    .chat {
      height: 100%;
      background: var(--soft-blanc);
      border-radius: 30px;
      padding: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .chat-header {
      text-align: center;
      padding: 15px;
      background: rgba(108, 126, 225, 0.1);
      border-radius: 20px;
      margin-bottom: 20px;
      font-size: 1.1rem;
      color: var(--bleu-ocean);
      font-weight: 600;
    }

    /* === BULLES === */
    .messages {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 10px 0;
    }

    .message {
      max-width: 80%;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.4s ease;
    }

    .message.received {
      align-self: flex-start;
    }
    .message.sent {
      align-self: flex-end;
    }

    /* Reçue */
    .message.received .bubble {
      background: var(--soft-orange);
      color: #222;
      border-radius: 18px 18px 18px 4px;
      position: relative;
      padding: 14px 18px;
    }

    .message.received .bubble::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: -8px;
      border: 10px solid transparent;
      border-right-color: var(--soft-orange);
      border-bottom: 0;
      border-left: 0;
    }

    /* Envoyée */
    .message.sent .bubble {
      background: var(--soft-bleu);
      color: white;
      border-radius: 18px 18px 4px 18px;
      padding: 14px 18px;
      position: relative;
    }

    .message.sent .bubble::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: -8px;
      border: 10px solid transparent;
      border-left-color: var(--soft-bleu);
      border-bottom: 0;
      border-right: 0;
    }

    .bubble {
      font-size: 1rem;
      line-height: 1.5;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* === Typing dots === */
    .typing {
      display: flex;
      gap: 6px;
      padding: 15px;
      opacity: 0;
      align-self: flex-start;
    }

    .typing span {
      width: 10px;
      height: 10px;
      background: var(--soft-marron);
      border-radius: 50%;
      animation: typing 1.4s infinite;
    }

    .typing span:nth-child(2) { animation-delay: 0.2s; }
    .typing span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes typing {
      0%, 100% { transform: translateY(0); opacity: 0.5; }
      50% { transform: translateY(-8px); opacity: 1; }
    }

    /* === Particules === */
    #particles-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }


/* Overlay sombre */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeBackdrop 0.4s ease;
}

@keyframes fadeBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Contenu du modal */
.modal-content {
  background: linear-gradient(145deg, var(--soft-blanc), #ffffff 80%);
  color: #333;
  padding: 2.5rem 3rem;
  border-radius: 25px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: fadeIn 0.4s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Animation d’apparition */
@keyframes fadeIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Croix de fermeture */
.close-modal {
  position: absolute;
  top: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--soft-bleu), var(--cyan));
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.close-modal:hover {
  background: var(--soft-orange);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Titre et texte */
.modal-content h2 {
  margin-bottom: 1.2rem;
  color: var(--bleu-ocean);
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}

.modal-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: var(--soft-orange);
}

.modal-content p {
  line-height: 1.7;
  text-align: justify;
  font-size: 1rem;
  color: #444;
  margin-top: 1.5rem;
}

/* Bouton d’action (optionnel) */
.modal-content .modal-btn {
  display: inline-block;
  margin-top: 1.8rem;
  background: linear-gradient(135deg, var(--soft-bleu), var(--cyan));
  color: white;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-content .modal-btn:hover {
  background: var(--soft-orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.notizie-wrapper {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1200&h=800&fit=crop&crop=entropy&auto=format&fm=jpg&q=80') center/cover fixed;
    position: relative;
  }
  .notizie-wrapper::after {
    content: ""; position: fixed; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #fff 100%);
    z-index: -1;
  }

  .notizie-main {
    max-width: 1200px; margin: 0 auto; padding: 120px 20px;
    display: flex; align-items: center; gap: 100px;
    position: relative;
  }

  /* Nouvelle classe : .device (anciennement .phone) */
  .device {
    flex: 1;
    text-align: center;
    position: relative;
    display: inline-block; /* Important pour centrer les items */
  }

  .device img {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
    display: block;
    margin: 0 auto;
  }

  .arc {
    flex: 1;
    height: 600px;
    position: relative;
  }
  .arc p{
    color: white;
  }
  /* LES BOULES PARTENT DU CENTRE DE L'IMAGE */
  .item {
    position: absolute;
    width: 240px;
    text-align: center;
    /* Point de départ : centre de la div .device */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .item i {
    width: 66px; height: 66px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
    box-shadow: 0 10px 25px rgba(255,107,53,0.35);
  }

  .item h3, .item p {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }

  .item h3 {
    font-size: small;
    color: var(--soft-orange);
  }

  /* Animation de vol */
  .item {
    animation: fly 0.45s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
  }

  @keyframes fly {
    0% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }

  /* Positions finales */
  .nf1 { animation-delay: 0.05s; }
  .nf1.final { top: 12%; left: 28%; transform: translate(-50%, -50%); }

  .nf2 { animation-delay: 0.10s; }
  .nf2.final { top: 22%; left: 68%; transform: translate(-50%, -50%); }

  .nf3 { animation-delay: 0.15s; }
  .nf3.final { top: 48%; left: 88%; transform: translate(-50%, -50%); }

  .nf4 { animation-delay: 0.20s; }
  .nf4.final { top: 75%; left: 68%; transform: translate(-50%, -50%); }

  .nf5 { animation-delay: 0.25s; }
  .nf5.final { top: 82%; left: 28%; transform: translate(-50%, -50%); }

  /* Texte apparaît après l'animation */
  .final h3, .final p {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .notizie-main { flex-direction: column; gap: 60px; text-align: center; }
    .device img { max-width: 300px; }
    .arc { height: auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
    .item { position: relative; top: auto !important; left: auto !important; transform: none !important; animation: none; }
    .item i { width: 60px; height: 60px; font-size: 1.4rem; }
    .item h3, .item p { opacity: 1; transform: none; }
  }


    

    /* === SECTION NOS SERVICES === */
  .batiims-nos-services {
    background-color: var(--soft-blanc);
    text-align: center;
    position: relative;
  }

  .services-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }


  .services-underline {
    width: 60px;
    height: 4px;
    background: var(--soft-orange);
    margin: 0 auto 30px;
    border-radius: 2px;
  }

  .services-desc {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    font-weight: 500;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .services-title {
      font-size: 2.2rem;
    }
    .services-desc {
      font-size: 1rem;
    }
    .services-underline {
      width: 40px;
    }
  }












   :root {
      --beige: #f9f5f0;
      --marron-clair: #d9c2a7;
      --marron-fonce: #8b6f47;
      --texte: #5d4037;
      --accent: #a1886f;
    }

    .page_contact { 
      font-family: 'Montserrat', sans-serif; 
      background: var(--beige); 
      color: var(--texte); 
      line-height: 1.7; 
      padding: 40px 20px; /* Ajout de marge pour éviter les coupures */
    }

    .section-contact {
      padding: 80px 0;
      position: relative;
      overflow: visible; /* Pas de débordement caché */
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-contact h2 {
      font-family: 'Dancing Script', cursive;
      font-size: 48px;
      color: var(--bleu-ocean);
      text-align: center;
      margin-bottom: 15px;
    }

    .section-contact p.subtitle {
      text-align: center;
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto 60px;
      color: var(--texte);
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      align-items: stretch;
      justify-content: center;
    }

    .form-card, .info-card, .map-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      overflow: visible;
      position: relative;
    }

    .form-card {
      flex: 1;
      min-width: 320px;
      max-width: 500px;
      padding: 50px 40px 40px; /* Plus d'espace en haut pour le badge */
    }

    .badge-devis {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: white;
      padding: 10px 24px;
      border-radius: 30px;
      font-size: 15px;
      font-weight: 600;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(161,136,111,0.4);
      z-index: 10;
    }

    .form-card h3 {
      font-family: 'Dancing Script', cursive;
      font-size: 32px;
      color: var(--marron-fonce);
      margin-bottom: 25px;
      text-align: center;
    }

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

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--texte);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #ddd;
      border-radius: 12px;
      font-size: 15px;
      font-family: 'Montserrat', sans-serif;
      transition: border 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent);
    }

    .form-row {
      display: flex;
      gap: 15px;
    }

    .form-row .form-group {
      flex: 1;
    }

    .btn-submit {
      background: var(--marron-fonce);
      color: white;
      border: none;
      padding: 16px 32px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      transition: all 0.3s;
      margin-top: 10px;
    }
.btn-submit::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.6s;
    }

    .btn-submit:hover::before {
      left: 100%;
    }

    .btn-submit:hover {
      background: var(--bleu-ocean);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,86,179,0.3);
    }

    .info-card {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 35px;
    }

    .info-card h3 {
      font-family: 'Dancing Script', cursive;
      font-size: 28px;
      color: var(--marron-fonce);
      margin-bottom: 25px;
      text-align: center;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
    }

    .info-item i {
      font-size: 22px;
      color: var(--accent);
      margin-right: 14px;
      margin-top: 2px;
    }

    .info-item a {
      color: var(--marron-fonce);
      text-decoration: none;
      font-weight: 500;
    }

    .info-item a:hover {
      text-decoration: underline;
    }

    .map-card {
      height: 300px;
      margin-top: 20px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .map-card iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .decor {
      position: absolute;
      bottom: -60px;
      right: -80px;
      width: 220px;
      height: 220px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23d9c2a7" opacity="0.12" d="M100,30 Q145,75 120,115 Q145,155 100,175 Q55,155 80,115 Q55,75 100,30Z"/></svg>') no-repeat;
      background-size: contain;
      pointer-events: none;
      z-index: 0;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .container { flex-direction: column; align-items: center; }
      .form-card, .info-card { max-width: 100%; }
    }

    @media (max-width: 576px) {
      .section-contact h2 { font-size: 36px; }
      .form-row { flex-direction: column; }
      .badge-devis { font-size: 14px; padding: 8px 18px; }
    }
  


/* ====== MENU 100% UNIQUE – OPTIMISÉ ====== */

.main-nav-container {
  background: rgba(108, 126, 225, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(108, 126, 225, 0.25);
  border-radius: 50px;
  padding: 0.7rem 2rem;
  margin: 0.5rem auto;
  width: fit-content;
  max-width: 92%;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;

  box-shadow: 0 8px 25px rgba(108, 126, 225, 0.12);

  position: sticky;
  top: 0.5rem;
  z-index: 200;

  transition: all 0.35s ease;
}

/* Effet hover doux */
.main-nav-container:hover {
  box-shadow: 0 12px 40px rgba(108, 126, 225, 0.28);
  transform: translateY(-2px);
}

/* LISTE */
.navigation-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

/* Liens */
.navigation-list a {
  color: var(--bleu-ocean);
  text-decoration: none;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

/* Hover */
.navigation-list a:hover {
  color: var(--soft-orange);
  background: rgba(244, 185, 124, 0.18);
}

/* Badge NEW */
.label-new {
  background: var(--soft-orange);
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
}

/* Icônes */
.navigation-list i {
  font-size: 17px;
  opacity: 0.9;
}

/* ----- MOBILE ------ */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--bleu-ocean);
  border-radius: 6px;
  transition: 0.3s ease;
}

@media (max-width: 780px) {
  .navigation-list {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* Animation burger ouvert (optionnel si tu ajoutes JS) */
.mobile-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.navigation-list.ouvert {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 65px;
  right: 10px;

  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  gap: 1.2rem;
  z-index: 300;
}


/* Bouton Remonter en Haut */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #0a7cff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1);
  background: #005fcc;
}




  /* === MOTIFS ANIMÉS === */
    .thm-floating-shape {
      position: absolute;
      opacity: 0.07;
      pointer-events: none;
      z-index: 0;
      animation: thm-float 20s infinite ease-in-out;
    }
    .thm-shape-1 { width: 300px; height: 300px; top: -100px; left: -120px; background: radial-gradient(circle, var(--soft-bleu), transparent 70%); border-radius: 50%; }
    .thm-shape-2 { width: 240px; height: 240px; bottom: -80px; right: -100px; background: radial-gradient(circle, var(--soft-orange), transparent 70%); border-radius: 40% 60%; animation-delay: -7s; }
    .thm-shape-3 { width: 180px; height: 180px; top: 30%; left: 5%; background: radial-gradient(circle, var(--cyan), transparent 70%); border-radius: 60% 40%; animation-delay: -14s; }

    @keyframes thm-float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-25px) rotate(6deg); }
    }

    .thm-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* === HERO === */
    .thm-hero {
      text-align: center;
      padding: 80px 20px 10px;
      background: linear-gradient(135deg, #faf8f5 0%, var(--soft-blanc) 100%);
      border-radius: 30px;
      margin-bottom: 80px;
      position: relative;
      overflow: hidden;
    }
    .thm-hero h1 {
      font-size: 52px;
      color: var(--soft-marron);
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .thm-hero p {
      font-size: 19px;
      max-width: 800px;
      margin: 0 auto 30px;
      color: var(--gris);
    }
    .thm-btn-cta {
      display: inline-block;
      background: var(--soft-marron);
      color: white;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(139,90,43,0.2);
    }
    .thm-btn-cta:hover {
      background: var(--bleu-ocean);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,86,179,0.25);
    }

    /* === À PROPOS === */
    .thm-about {
      display: flex;
      align-items: center;
      gap: 60px;
      margin-bottom: 100px;
      flex-wrap: wrap;
    }
    .thm-about-text {
      flex: 1;
      min-width: 300px;
    }
    .thm-about-text h2 {
      font-size: 40px;
      color: var(--soft-marron);
      margin-bottom: 20px;
    }
    .thm-about-text p {
      margin-bottom: 20px;
      font-size: 16px;
    }
    .thm-btn-meet {
      background: var(--soft-orange);
      color: var(--soft-marron);
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: 0.3s;
    }
    .thm-btn-meet:hover {
      background: #f0a86b;
      transform: translateY(-2px);
    }
    .thm-about-img {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }
    .thm-about-img {
  width: 50px;          /* ajuste selon ton design */
  height: 380px;         /* hauteur plus grande pour un bel ovale */
  object-fit: cover;     /* garde l’image propre sans déformation */
  overflow: hidden;
  display: block;
}

    .thm-about-img img {
      width: 100%;
      max-width: 420px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      object-fit: cover;
    }/* SECTION MARRON PLUS ÉTROITE */
.thm-resonate {
  background: #d7ccc0;
  padding: 70px 40px;
  margin: 0 auto 100px auto;
  position: relative;
  overflow: visible; /* permet à l'image de dépasser */
  max-width: 70%; /* section plus étroite */
}

/* CONTENU FLEX */
.thm-resonate-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
}

/* IMAGE CHEVAUCHE EXACTEMENT À MOITIÉ */
.thm-resonate-img {
  flex: 1;
  min-width: 300px;

  /* Décalage pour que la moitié de l'image dépasse */
  margin-left: calc(-50%); 
  z-index: 2;
}

.thm-resonate-img img {
  width: 100%; /* prend tout le bloc */
  max-width: 600px; /* tu peux ajuster selon la taille de ton image */
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* LISTE */
.thm-resonate-list {
  flex: 1;
  min-width: 300px;
  z-index: 3;
}

.thm-resonate-list h2 {
  font-size: 36px;
  color: var(--soft-marron);
  margin-bottom: 30px;
}

.thm-resonate-list ul {
  list-style: none;
}

.thm-resonate-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  font-size: 16px;
  color: var(--gris);
}

.thm-resonate-list li i {
  color: var(--soft-orange);
  font-size: 20px;
  margin-right: 15px;
  margin-top: 2px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .thm-resonate-content {
    flex-direction: column;
    gap: 30px;
  }
  .thm-resonate-img {
    margin-left: 0; /* plus de chevauchement sur mobile */
    width: 100%;
  }
  .thm-resonate-img img {
    width: 100%;
  }
}

    /* === ÉTAPES === */
    .thm-journey {
      text-align: center;
      margin-bottom: 100px;
    }
    .thm-journey h2 {
      font-size: 44px;
      color: var(--soft-marron);
      margin-bottom: 60px;
    }
    .thm-steps {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }.thm-step {
  position: relative; /* pour positionner le numéro par rapport au cadre */
  background: white;
  padding: 60px 30px 40px 30px; /* on ajoute du padding en haut pour espace */
  border-radius: 30px;
  width: 300px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.thm-step:hover {
  transform: translateY(-10px);
}

/* NUMÉRO FLOTANT */
.thm-step-number {
  position: absolute;
  top: -25px; /* moitié du diamètre du cercle pour chevauchement */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--soft-orange);
  color: var(--soft-marron);
  font-weight: 700;
  font-size: 20px;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .thm-step h3 {
      font-size: 26px;
      color: var(--soft-marron);
      margin-bottom: 15px;
    }
    .thm-step p {
      font-size: 15px;
      color: var(--gris);
    }

    /* === CTA FINAL === */
    .thm-final-cta {
      background: var(--soft-marron);
      color: white;
      padding: 80px 40px;
      border-radius: 30px;
      text-align: center;
    }
    .thm-final-cta h2 {
      font-family: 'Dancing Script', cursive;
      font-size: 40px;
      margin-bottom: 20px;
    }
    .thm-final-cta p {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 17px;
      opacity: 0.9;
    }
    .thm-final-cta .thm-btn-cta {
      background: white;
      color: var(--soft-marron);
    }
    .thm-final-cta .thm-btn-cta:hover {
      background: var(--soft-orange);
      color: var(--soft-marron);
    }

    /* === RESPONSIVE === */
    @media (max-width: 768px) {
      .thm-hero h1 { font-size: 38px; }
      .thm-about, .thm-resonate-content { flex-direction: column; text-align: center; }
      .thm-steps { gap: 30px; }
      .thm-step { width: 100%; max-width: 340px; }
    }




    .nature-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.nature-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.nature-title {
  text-align: left;
}

.nature-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--soft-marron);
  line-height: 1.2;
  margin: 0;
}

.nature-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.nature-item:nth-child(1) { animation-delay: 0.2s; }
.nature-item:nth-child(2) { animation-delay: 0.4s; }
.nature-item:nth-child(3) { animation-delay: 0.6s; }

.nature-icon {
  width: 50px;
  height: 50px;
  background: var(--soft-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.nature-item p {
  margin: 0;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  text-align: left;
}

/* Animation */
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .nature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nature-title { text-align: center; }
  .nature-item { justify-content: center; }
  .nature-title h2 { font-size: 2.3rem; }
}