:root {
  --green: #6bbf3d;
  --dark: #0f172a;
  --light: #ffffff;
}

body { margin: 0; font-family: 'Segoe UI', Arial, sans-serif; color: var(--dark); line-height: 1.6; }

/* Navigation */
header { background: linear-gradient(135deg, #eafff0, #ffffff); padding: 20px; border-bottom: 1px solid #eee; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: auto; }
nav img { height: 50px; width: auto; mix-blend-mode: multiply; }
nav a { text-decoration: none; color: var(--dark); font-weight: 600; margin-left: 20px; }

/* Formulaire Harmonisé */
input, select, textarea {
  width: 100%; padding: 14px; margin-top: 15px; border-radius: 10px;
  border: 1px solid #c7e8c2; font-size: 15px; box-sizing: border-box; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 5px rgba(107,191,61,0.2); }

select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236bbf3d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}

/* Slider Hero */
.hero-slider {
  width: 100%;
  height: 60vh; /* Hauteur ajustée pour laisser voir la map en dessous */
  background: #000;
}

/* Container de la Map */
.map-section-container {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

#map-reduced {
  height: 400px; /* La hauteur fixe que vous avez demandée */
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 1;
}

/* Points animés */
.presence-icon {
  background: #10b981;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}


/* Trends block */
.trends-section { padding: 40px 0; background: #fff; }

.trends-slider { width: 100%; height: 250px; border-radius: 15px; }

.trend-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* Texte en bas */
  padding: 20px;
}

/* Voile sombre pour la lisibilité */
.trend-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* White gradient: very light at the bottom, invisible at the top */
  background: linear-gradient(to top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.trend-content {
  position: relative;
  z-index: 2;
}

/* Texte en vert Ultra Defense */
.trend-content h3 {
  color: #10b981; /* Le vert demandé */
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.trend-content p {
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.4;
}

.section-title {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 15px;
  border-left: 4px solid #10b981;
  padding-left: 10px;
}

/* Responsive : On empile sur mobile */
@media (max-width: 992px) {
  .hero-map-combined {
    flex-direction: column;
    height: auto;
  }
  .hero-left, .map-right {
    height: 400px;
    flex: none;
    width: 100%;
  }
}

/* debut section */
.expert-mission-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

.mission-wrapper {
  display: flex;
  gap: 80px; /* Espace entre les deux blocs */
  align-items: flex-start;
}

/* Bloc de gauche avec espace supplémentaire */
.mission-block {
  flex: 1;
  padding-left: 50px; /* L'espace demandé à gauche */
}

.section-title-alt {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 25px;
}

.section-title-alt span {
  color: #10b981;
  font-weight: 800;
}

.mission-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
}

/* Bloc de droite : Étapes de la chaîne de valeur */
.value-chain-block {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step:last-child { margin-bottom: 0; }

.step-number {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-weight: 800;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.step-info h3 {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 5px;
}

.step-info p {
  font-size: 0.95rem;
  color: #64748b;
}

.expertise-tags span {
  display: inline-block;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  color: #64748b;
  margin-right: 10px;
}

/* Tablette et Mobile */
@media (max-width: 992px) {
  .mission-wrapper { flex-direction: column; gap: 40px; }
  .mission-block { padding-left: 0; }
}
/* Fin  */

.btn { display: inline-block; background: var(--green); color: white; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; margin-top: 15px; }

