:root {
      --primary-color: #003366;
      --accent-color: #28a745;
      --bg-color: #F9FAFB;
      --text-color: #333;
      --section-padding: 70px;
      --card-radius: 12px;
      --card-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    body {
      margin: 0;
      font-family: "Roboto", Arial, sans-serif;
      background: var(--bg-color);
      color: var(--text-color);
      line-height: 1.7;
      scroll-behavior: smooth;
    }



    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        color: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-img {
      background: #fff;
      border-radius: 6px;
      padding: 4px;
      height: 27px;
    }

    .logo-text {
      font-size: 22px;
      font-weight: bold;
      color: #fff;
    }

    .nav-container {
        width: 98%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }
       nav ul {
        display: flex;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
      }

      nav ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
      }
      nav ul li a:hover {
        color: var(--accent-color);
      }

      .menu-toggle {
        display: none;
         cursor: pointer;
         font-size: 32px;
      }

      /* ======= Responsive ======= */
      @media (max-width: 768px) {
        nav ul {
          flex-direction: column;
          background: var(--primary-color);
          position: absolute;
          top: 70px;
          right: 0;
          width: 200px;
          display: none;
          padding: 20px;
          border-radius: 8px;
        }
        nav ul.show {
          display: flex;
        }
        .menu-toggle {
          display: block; /* ✅ bouton menu visible */
        }
      }



    /* HERO */
    .hero {
      background: url("/images/background.jpg") center/cover no-repeat;
      color: #fff;
      max-height: 30%;
      text-align: center;
      padding: 120px 20px;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
    }
    .hero h1, .hero p, .hero .btn, .hero .stats {
      position: relative;
      z-index: 1;
      animation: fadeIn 1.2s ease forwards;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero h1 {
      font-size: 52px;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero p {
      font-size: 20px;
      max-width: 700px;
      margin: 0 auto 25px;
    }
    .highlight {
      display: block;
      font-weight: bold;
      color: var(--accent-color);
      margin-top: 10px;
    }
    .hero .btn {
      background: var(--accent-color);
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .hero .btn:hover {
      background: #1e7e34;
      transform: translateY(-3px);
    }
    .hero .stats {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    .hero .stats div {
      background: rgba(255,255,255,0.1);
      padding: 10px 20px;
      border-radius: 6px;
    }

    /* TITLES & SECTIONS */
    section {
      padding: var(--section-padding) 20px;
      max-width: 70%;
      margin: auto;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease forwards;
    }
    @media (max-width: 768px) {
     section {
           padding: var(--section-padding) 20px;
           max-width: 95%;
           margin: auto;
           opacity: 0;
           transform: translateY(30px);
           animation: slideUp 1s ease forwards;
         }
    }
    section:nth-of-type(even) {
      background: #fff;
      border-radius: var(--card-radius);
      padding: calc(var(--section-padding) - 20px) 20px;
      box-shadow: var(--card-shadow);
    }
    @keyframes slideUp {
      to { opacity: 1; transform: translateY(0); }
    }
    section h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
      text-transform: uppercase;
      color: var(--primary-color);
      letter-spacing: 1px;
    }

    /* CARDS */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .card {
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: var(--card-shadow);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px) scale(1.02);
    }
    .card i {
      font-size: 52px;
      color: var(--primary-color);
      margin-bottom: 10px;
    }
    .card h3 {
      color: var(--primary-color);
      font-size: 20px;
      margin-bottom: 10px;
    }
    .card p {
      color: #555;
      font-size: 15px;
    }


    /* FAQ ACCORDION */
    .faq {
      max-width: 90%;
      margin: auto;
    }
    .faq-item {
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: var(--card-shadow);
      margin-bottom: 10px;
      padding: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .faq-item h4 {
      color: var(--primary-color);
      margin: 0;
      position: relative;
    }
    .faq-item h4::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 0;
      font-size: 20px;
      transition: transform 0.3s ease;
    }
    .faq-item.active h4::after {
      content: "-";
    }
    .faq-item p {
      max-height: 0;
      overflow: hidden;
      font-size: 14px;
      color: #555;
      transition: max-height 0.3s ease;
    }
    .faq-item.active p {
      max-height: 100px;
      margin-top: 8px;
    }

    /* FOOTER */
    footer {
      background: var(--primary-color);
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
    footer a {
      color: var(--accent-color);
      text-decoration: none;
      margin: 0 5px;
    }
    footer a:hover {
      text-decoration: underline;
    }

    /* SCROLL TO TOP */
    #toTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--accent-color);
      color: #fff;
      padding: 10px 14px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: none;
      transition: opacity 0.3s ease;
    }
    #toTop:hover {
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
      }
      nav ul {
        flex-wrap: wrap;
        justify-content: center;
      }
      .hero h1 {
        font-size: 36px;
      }
      .hero p {
        font-size: 16px;
      }
    }
    /* ======= CLIENTS SECTION ======= */
.clients-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.clients-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.clients-photo {
  flex: 0 0 350px;
  text-align: center;
}

.clients-photo img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

/* ✅ Responsive : l'image passe en haut */
@media (max-width: 768px) {
  .clients-layout {
    flex-direction: column-reverse;
    align-items: center;
  }
  .clients-photo {
    width: 100%;
  }
}
.clients-photo {
  flex: 0 0 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 10px;
  transition: transform 0.3s ease;
}

.photo-card img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin: auto;
}

.photo-title {
  margin-top: 8px;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
}

.photo-card:hover {
  transform: translateY(-5px) scale(1.02);
}
.washers-section {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
}

.washer-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.washer-photo {
  flex: 1 1 45%;
}
.washer-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.washer-text {
  flex: 1 1 45%;
}
.washer-text h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.washer-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.washer-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}
.washer-btn:hover {
  background: #1e7e34;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .washer-content {
    flex-direction: column;
    text-align: center;
  }
  .washer-text h2 {
    font-size: 28px;
  }
}
.laundries-section {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
}

.laundry-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.laundry-text {
  flex: 1 1 45%;
}
.laundry-text h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.laundry-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.laundry-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}
.laundry-btn:hover {
  background: #1e7e34;
  transform: translateY(-3px);
}

.laundry-photo {
  flex: 1 1 45%;
}
.laundry-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

@media (max-width: 768px) {
  .laundry-content {
    flex-direction: column-reverse; /* IMAGE EN BAS SUR MOBILE */
    text-align: center;
  }
  .laundry-text h2 {
    font-size: 28px;
  }
}
.download-invite {
  text-align: center;
  margin-top: 30px;
}

.download-invite p {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}

.highlight-app {
  color: var(--accent-color);
}

.contact-section {
    background: #f7f9fc;
    padding: 50px 20px;
    text-align: center;
  }
  .contact-section h2 {
    font-size: 28px;
    color: #002244;
    margin-bottom: 30px;
  }
  .contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: auto;
  }
  .contact-item {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
  }
  .contact-item i {
    font-size: 30px;
    color: #004aad;
    margin-bottom: 10px;
  }
  .contact-item p {
    margin: 0;
    font-size: 15px;
    color: #444;
  }
  .contact-item a {
    text-decoration: none;
    color: #004aad;
    font-weight: bold;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }

 @media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center; /* ✅ Centre les blocs */
    gap: 20px;
  }
  .contact-item {
    width: 90%;
    max-width: 350px;
    padding: 15px;
  }
  .contact-item i {
    font-size: 34px;
  }
  .contact-section {
    padding: 35px 15px;
  }
}
