
.services-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: rgb(255, 255, 0);
}

/* Processus */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.process-step h3{
  color: rgb(255, 0, 0);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: -40px auto 1.5rem;
}


/* Grille de services */
.service-grid {
  display: grid;
  gap: 4rem;
  margin: 3rem 0;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.service-card.reverse {
  direction: rtl;
}

.service-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--card-radius);
}

.service-content {
  direction: ltr;
  padding: 2rem;
  color: black;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CTA */
.cta-banner {
  background: var(--secondary);
  color: white;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-card {
    grid-template-columns: 1fr;
  }
  
  .service-card.reverse {
    direction: ltr;
  }
  
  .service-card img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    height: 50vh;
    margin-top: 70px;
  }
  
  .process-steps {
    gap: 2rem;
  }
  
  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .service-content {
    padding: 1rem;
  }
  
  .btn-large {
    width: 100%;
    margin-bottom: 1rem;
  }
}