/* ...autres styles... */

.realisation-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 32px;
}
.realisation-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(124,58,237,0.07);
  padding: 32px 28px 28px 28px;
  max-width: 420px;
  min-width: 320px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.realisation-card:hover {
  box-shadow: 0 8px 40px rgba(124,58,237,0.13);
  transform: translateY(-6px) scale(1.03);
}
.realisation-card img {
  width: 100%;
  max-width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(124,58,237,0.10);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), box-shadow 0.3s;
  margin-bottom: 18px;
}
.realisation-card img:hover {
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(124,58,237,0.18);
}
.realisation-text {
  font-size: 1.08rem;
  color: #444;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 0 8px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.cta-btn {
  background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(124,58,237,0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #a78bfa 0%, #7c3aed 100%);
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(124,58,237,0.18);
}

/* Galerie 2 par 2 */
.gallerie-images {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.gallerie-image {
  width: 48%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(124,58,237,0.10);
  opacity: 1;
  transition: opacity 0.5s;
  display: none;
}
.gallerie-image.active {
  display: block;
  opacity: 1;
}
.gallerie-arrow {
  background: none;
  border: none;
  padding: 0;
  margin: 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.gallerie-arrow svg {
  display: block;
  width: 38px;
  height: 38px;
}
.gallerie-arrow:hover svg circle {
  fill: #7c3aed;
  opacity: 0.35;
}
.gallerie-arrow:active svg path {
  stroke: #fff;
}
@media (max-width: 900px) {
  .realisation-row {
    flex-direction: column;
    gap: 24px;
  }
  .realisation-card {
    max-width: 95vw;
    min-width: 220px;
    padding: 22px 10px 18px 10px;
  }
  .realisation-card img, .gallerie-image {
    max-width: 95vw;
    height: 160px;
  }
  .gallerie-images {
    height: 160px;
    gap: 8px;
  }
}

.section-title,.gallerie-text {
  width: 100%;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 36px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(124,58,237,0.08);
  animation: fadeInDown 1s;
}