body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}
header {
  background-color: #fff;
  padding: 1em 2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Animation d'apparition fluide */
.animated .fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.animated .delay-1 {
  animation-delay: 0.3s;
}
.animated .delay-2 {
  animation-delay: 0.6s;
}
.animated .delay-3 {
  animation-delay: 0.9s;
}

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

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2em;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .logo {
  font-weight: bold;
  color: #003366;
  font-size: 1.2em;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}
.navbar .nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar .nav-links li a:hover {
  color: #f47c3c;
}
.burger {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

/* MOBILE MENU */
@media screen and (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 70px;
    right: 20px;
    padding: 1em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  .nav-links.show {
    display: flex;
  }
}
.navbar .logo img {
  height: 120px;          /* Ajuste ici selon ton visuel */
  width: auto;
  display: block;
  vertical-align: middle;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* ← Important pour alignement vertical */
  padding: 1.2em 2em;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


/* HERO */
.hero {
  background: url('https://cdn.pixabay.com/photo/2017/01/17/03/57/desktop-1985856_1280.jpg') center/cover no-repeat;
  padding: 6em 2em;
  color: white;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
}
.hero span {
  color: #f47c3c;
}
.cta-bttn {
  background: #f47c3c;
  color: white;
  padding: 1em 2em;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1em;
  display: inline-block;
  justify-content: center
}

/* SECTIONS */
section {
  padding: 4em 2em;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 2em;
}

/* GRID */
.advantage-grid, .service-grid {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card, .service-card {
  background: #f0f6f2;
  padding: 2em;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.card img {
  width: 100px;
  margin-bottom: 1em;
}

.btn-small {
  background: #003366;
  color: white;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1em;
}

/* TÉMOIGNAGES */
#temoignages {
  text-align: center;
  background-color: #f0f6f2;
  padding: 50px 20px;
  border-radius: 12px;
  margin-top: 60px;
}

.carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-item {
  display: none;
  font-style: italic;
  color: #444;
  font-size: 18px;
  line-height: 1.8;
  transition: opacity 0.5s ease;
}

.carousel-item.active {
  display: block;
}

.author {
  margin-top: 15px;
  font-weight: 600;
  color: #4a7f66;
}

.carousel-controls {
  margin-top: 20px;
}

.carousel-controls button {
  background: #f47c3c;
  color: white;
  border: none;
  padding: 10px 18px;
  margin: 0 10px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}

.carousel-controls button:hover {
  background: #5f9c73;
}

.client-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  display: block;
}

/* CTA */
.cta-section {
  background: #003366;
  color: white;
  text-align: center;
  padding: 3em 1em;
}

footer {
  background: #eee;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
}
.advanced-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.advanced-services .service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto;
  flex-wrap: wrap;
  text-align: center;
}

.cta-btn {
  background-color: #7BB88F;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.cta-btn:hover {
  background-color: #5f9c73;
}

.cta-btn.alt {
  background-color: #ffffff;
  color: #7BB88F;
  border: 2px solid #7BB88F;
}

.cta-btn.alt:hover {
  background-color: #eaf3ec;
}

/* #contact-page {
  padding: 60px 20px;
}

#contact-page h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #4a7f66;
}

#contact-page p {
  text-align: center;
  margin-bottom: 40px;
  color: #444;
}

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

.contact-form,
.contact-info {
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

.contact-form label {
  margin-top: 15px;
  margin-bottom: 5px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8em;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #7BB88F;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #5f9c73;
}

.contact-info h3 {
  margin-top: 20px;
  color: #4a7f66;
}

.contact-info p {
  margin-bottom: 8px;
}

.map iframe {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
} */

.accordion {
  background-color: #A8D5BA;
  color: #333;
  cursor: pointer;
  padding: 14px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.accordion:hover {
  background-color: #7BB88F;
  color: white;
}

.panel {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f8f9f4;
  border-left: 4px solid #7BB88F;
  margin-bottom: 10px;
  border-radius: 0 0 8px 8px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.portfolio-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
}

.portfolio-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.badges {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.badge.green {
  background-color: #4caf50;
}

.badge.orange {
  background-color: #ff9800;
}

.badge.gold {
  background-color: #ffd700;
  color: #333;
}

.badge.muted {
  background-color: #999;
}

.portfolio-actions {
  margin-top: 15px;
}

.btn {
  padding: 8px 16px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}

.btn:hover {
  background-color: #388e3c;
}

.btn.disabled {
  background-color: #ccc;
  pointer-events: none;
  cursor: not-allowed;
}
.filter-buttons {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 14px;
  background-color: #d7f2e3;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: #2e7d32;
  transition: background-color 0.3s;
}

.filter-btn:hover {
  background-color: #b2dfdb;
}

