/* Inner service pages — reuse home hero linear + image */
.service-page-hero {
  min-height: 65vh;
  min-height: 65dvh;
  justify-content: center;
  padding-top: calc(var(--site-navbar-offset, 4.5rem) + 1rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.service-page-hero__content {
  animation: service-hero-reveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-page-hero__title {
  margin: 0 0 0.65rem;
  color: var(--color-white, #fff);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.service-page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95em;
  font-weight: 500;
}

.service-page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.service-page-hero__breadcrumb a:hover,
.service-page-hero__breadcrumb a:focus {
  color: var(--color-green, #3dc978);
}

.service-page-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.45);
}

.service-page-hero__breadcrumb [aria-current="page"] {
  color: var(--color-green, #3dc978);
  font-weight: 600;
}

@keyframes service-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hero-section.service-page-hero {
    min-height: 48vh;
    min-height: 48dvh;
    padding-top: calc(var(--site-navbar-offset, 4.5rem) + 1rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  .service-page-hero__title {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }
}

@media (max-width: 575.98px) {
  .secteur-item {
    padding: 1.35rem 1.1rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-page-hero__content {
    animation: none;
  }
}

/* Service detail content */
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--color-navy, #034169);
  line-height: 1.45;
  font-weight: 500;
}

.service-detail-list i {
  color: var(--color-green, #3dc978);
  flex-shrink: 0;
  margin-top: 0.1em;
}

#nettoyage-bureaux .about-section__title {
  max-width: none;
}

#nettoyage-bureaux .about-section__text:last-of-type {
  margin-bottom: 0.65rem;
}

#nettoyage-industriel .about-section__title {
  max-width: none;
}

#nettoyage-industriel .about-section__text:last-of-type {
  margin-bottom: 0.65rem;
}

#nettoyage-apres-travaux .about-section__title {
  max-width: none;
}

#nettoyage-apres-travaux .about-section__text:last-of-type {
  margin-bottom: 0;
}

#nettoyage-vitres .about-section__title {
  max-width: none;
}

#nettoyage-vitres .about-section__text:last-of-type {
  margin-bottom: 0.65rem;
}

#nettoyage-tapis .about-section__title {
  max-width: none;
}

#nettoyage-tapis .about-section__text:last-of-type {
  margin-bottom: 0.65rem;
}

#entretien-piscines .about-section__title {
  max-width: none;
}

#entretien-piscines .about-section__text:last-of-type {
  margin-bottom: 0.65rem;
}

#desinfection .about-section__title {
  max-width: none;
}

#desinfection .about-section__text:last-of-type {
  margin-bottom: 0.65rem;
}

#desinsectisation .about-section__title {
  max-width: none;
}

#desinsectisation .about-section__text:last-of-type {
  margin-bottom: 0.65rem;
}

#deratisation .about-section__title {
  max-width: none;
}

#deratisation .about-section__text:last-of-type {
  margin-bottom: 0.65rem;
}

.about-section--alt {
  background: #ffffff;
}

/* Secteurs d'activité */
.secteurs-section {
  background: #f8f9fa;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.secteurs-section__intro {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.secteurs-section__title {
  margin: 0 0 0.85rem;
  color: var(--color-navy, #034169);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.secteurs-section__text {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--color-gray-600, #5c6670);
  line-height: 1.65;
}

.secteur-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem 1.15rem 1.35rem;
  background: var(--color-white, #fff);
  border: 1px solid rgba(var(--color-navy-rgb, 3, 65, 105), 0.08);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(var(--color-navy-rgb, 3, 65, 105), 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.secteur-item:hover {
  transform: translateY(-0.28rem);
  border-color: rgba(var(--color-green-rgb, 61, 201, 120), 0.35);
  box-shadow: 0 18px 40px rgba(var(--color-navy-rgb, 3, 65, 105), 0.1);
}

.secteur-item__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding-inline: 0.55rem;
  color: var(--color-navy, #034169);
  background: rgba(var(--color-green-rgb, 61, 201, 120), 0.18);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.secteur-item__title {
  margin: 0;
  color: var(--color-navy, #034169);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.secteur-item__text {
  margin: 0;
  color: var(--color-gray-600, #5c6670);
  line-height: 1.55;
  font-size: 0.95em;
}

/* À propos — mission / vision / valeurs / méthode */
.apropos-mv-values {
  background:
    radial-gradient(circle at top right, rgba(var(--color-green-rgb, 61, 201, 120), 0.1), transparent 42%),
    #f4f6f8;
  padding-block: clamp(3.25rem, 7vw, 5rem);
  border-top: 1px solid rgba(var(--color-navy-rgb, 3, 65, 105), 0.06);
}

.apropos-mv__card {
  padding: 1.75rem 1.5rem;
  background: var(--color-white, #fff);
  border: 1px solid rgba(var(--color-navy-rgb, 3, 65, 105), 0.08);
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(var(--color-navy-rgb, 3, 65, 105), 0.04);
}

.apropos-mv__title {
  margin: 0 0 0.75rem;
  color: var(--color-navy, #034169);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.apropos-mv__text {
  margin: 0;
  color: var(--color-gray-600, #5c6670);
  line-height: 1.65;
}

.apropos-values__panel {
  height: 100%;
  padding: 1.75rem 1.5rem;
  background: var(--color-white, #fff);
  border: 1px solid rgba(var(--color-navy-rgb, 3, 65, 105), 0.08);
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(var(--color-navy-rgb, 3, 65, 105), 0.04);
}

.apropos-values__heading {
  margin: 0 0 1.25rem;
  color: var(--color-navy, #034169);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.apropos-value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.1rem 0.9rem;
  background: #f8f9fa;
  border: 1px solid rgba(var(--color-navy-rgb, 3, 65, 105), 0.06);
  border-radius: 0.85rem;
}

.apropos-value__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding-inline: 0.4rem;
  color: var(--color-navy, #034169);
  background: rgba(var(--color-green-rgb, 61, 201, 120), 0.18);
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.apropos-value__title {
  margin: 0;
  color: var(--color-navy, #034169);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

#qui-sommes-nous .about-section__title {
  max-width: none;
}
