/* ==========================================================================
   Services Pages - Sections alternees design
   ========================================================================== */

/* Hero */
.service-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 20px;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.service-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.service-hero__title {
  font-size: 2.8em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.service-hero__title span {
  color: #ff5501;
}
.service-hero__subtitle {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Intro */
.service-intro {
  padding: 60px 20px;
  text-align: center;
}
.service-intro__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.8;
  color: #555;
}

/* Sections alternees */
.service-section {
  padding: 70px 0;
  overflow: hidden;
}
.service-section:nth-child(even) {
  background-color: #fafafa;
}
.service-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.service-section--reverse .container {
  flex-direction: row-reverse;
}
.service-section__text {
  flex: 1;
  min-width: 0;
}
.service-section__text h3 {
  font-size: 1.5em;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}
.service-section__text p {
  font-size: 1.05em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.service-section__text p:last-child {
  margin-bottom: 0;
}
.service-section__image {
  flex: 1;
  min-width: 0;
}
.service-section__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: block;
}

/* Bandeau accent */
.service-accent {
  background: #ff5501;
  padding: 50px 20px;
  text-align: center;
}
.service-accent__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.4em;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
}

/* CTA */
.service-cta {
  padding: 60px 20px;
}
.service-cta__box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: #fff0e6;
  border-radius: 12px;
}
.service-cta__title {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}
.service-cta__desc {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}
.service-cta__btn {
  display: inline-block;
  background: #ff5501;
  color: #fff !important;
  padding: 14px 40px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1.05em;
  transition: background 0.3s ease;
}
.service-cta__btn:hover,
.service-cta__btn:visited,
.service-cta__btn:active {
  background: #e04a00;
  color: #fff !important;
  text-decoration: none !important;
}

/* Responsive */
@media (max-width: 991px) {
  .service-hero {
    min-height: 40vh;
    padding: 60px 20px;
  }
  .service-hero__title {
    font-size: 2.2em;
  }
  .service-section .container {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .service-hero__title {
    font-size: 1.8em;
  }
  .service-hero__subtitle {
    font-size: 1.05em;
  }
  .service-section .container,
  .service-section--reverse .container {
    flex-direction: column;
    gap: 30px;
  }
  .service-section {
    padding: 40px 0;
  }
  .service-accent__text {
    font-size: 1.15em;
  }
  .service-cta__box {
    padding: 30px 20px;
  }
}
