/* HERO */
.ambassador-hero {
  background: linear-gradient(135deg, #013759, #025f86);
  padding: 6rem 1rem 8rem;
  position: relative;
}

.ambassador-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

.ambassador-hero p {
  font-size: 1.2rem;
  opacity: .9;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 120px;
  display: block;
}

/* CARDS */
.ambassador-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ambassador-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.ambassador-card .icon {
  font-size: 2.2rem;
  background: rgba(241,196,15,0.15);
  color: #f1c40f;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.ambassador-card h5 {
  font-weight: 700;
  color: #013759;
  margin-bottom: .5rem;
}
.ambassador-card p {
  color: #5b677a;
  font-size: .95rem;
}

/* CTA */
.ambassador-cta {
  background: linear-gradient(135deg, #f1c40f, #d4ac0d);
  padding: 4rem 1rem;
}
.ambassador-cta h2 {
  font-size: 2rem;
  font-weight: 800;
}
.ambassador-cta p {
  font-size: 1.1rem;
}





/* Témoignages ambassadeurs */
.testimonial-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #013759;
  position: relative;
}

.testimonial-card .quote::before {
  content: "“";
  font-size: 2rem;
  color: #f1c40f;
  position: absolute;
  left: -10px;
  top: -10px;
}

.testimonial-card .author h6 {
  margin: 0;
  font-weight: 700;
  color: #013759;
}

.testimonial-card .author span {
  font-size: 0.9rem;
  color: #5b677a;
}


.ambassador-cta {
  background: linear-gradient(135deg, #0a4d6e, #013759);
  overflow: hidden;
}

.ambassador-cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.ambassador-cta h2,
.ambassador-cta p,
.ambassador-cta a {
  position: relative;
  z-index: 2;
}

/* Icônes flottantes */
.decor-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.decor-icon-1 { top: 20%; left: 10%; }
.decor-icon-2 { bottom: 25%; right: 15%; animation-delay: 2s; }
.decor-icon-3 { top: 50%; right: 40%; animation-delay: 4s; }

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


