/* ==========================================================================
   FEUILLE DE STYLE POUR LA PAGE SECTEURS D'ACTIVITÉ (secteurs.css)
   ========================================================================== */

.sectors-hero {
  position: relative;
  background-color: var(--color-primary, #02182b);
  padding: 160px 24px 100px;
  text-align: center;
  overflow: hidden;
}

/* Lueur verte chartée */
.sectors-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(80, 184, 72, 0.18) 0%, rgba(80, 184, 72, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.sectors-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
  letter-spacing: -1px;
}

.sectors-hero-title .text-highlight {
  color: var(--color-green, #50B848);
}

.sectors-hero-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #a0aec0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Sections des secteurs détaillés */
.sectors-detail-section {
  padding: 100px 24px;
  background-color: #fafafa;
}

.sectors-detail-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sectors-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.sector-detail-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(2, 24, 43, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sector-detail-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-green, #50B848);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.sector-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(2, 24, 43, 0.08);
  border-color: rgba(80, 184, 72, 0.3);
}

.sector-detail-card:hover::after {
  transform: scaleX(1);
}

.sector-detail-header {
  margin-bottom: 24px;
}

.sector-detail-badge {
  display: inline-block;
  background-color: rgba(80, 184, 72, 0.1);
  color: var(--color-green, #50B848);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sector-detail-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary, #02182b);
  margin: 0 0 16px 0;
}

.sector-detail-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
  margin: 0;
}

.sector-detail-specs {
  margin-top: 30px;
  border-top: 1px solid #edf2f7;
  padding-top: 24px;
}

.sector-spec-group {
  margin-bottom: 20px;
}

.sector-spec-group:last-child {
  margin-bottom: 0;
}

.sector-spec-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary, #02182b);
  text-transform: uppercase;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.sector-spec-list {
  margin: 0;
  padding-left: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.sector-spec-list li {
  margin-bottom: 4px;
}

.sector-spec-list li strong {
  color: #333333;
}

.sector-detail-cta {
  margin-top: 35px;
}

.btn-sector-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-primary, #02182b);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-sector-order:hover {
  background-color: var(--color-green, #50B848);
  transform: translateY(-1px);
}

.btn-sector-order .arrow {
  transition: transform 0.2s ease;
}

.btn-sector-order:hover .arrow {
  transform: translateX(4px);
}

/* Section CTA global */
.sectors-cta-section {
  background-color: var(--color-primary, #02182b);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sectors-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.1) 0%, rgba(0, 174, 239, 0) 75%);
  z-index: 1;
  pointer-events: none;
}

.sectors-cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sectors-cta-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.sectors-cta-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #a0aec0;
  margin: 0 0 40px 0;
}

.btn-cta-global {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-green, #50B848);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(80, 184, 72, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-global:hover {
  background-color: #40a038;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(80, 184, 72, 0.35);
}

.btn-cta-global .arrow {
  transition: transform 0.2s ease;
}

.btn-cta-global:hover .arrow {
  transform: translateX(5px);
}

/* Responsivité */
@media (max-width: 1024px) {
  .sectors-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .sectors-hero {
    padding: 120px 20px 70px;
  }
  .sectors-hero-title {
    font-size: 36px;
  }
  .sector-detail-card {
    padding: 30px;
  }
  .sectors-cta-title {
    font-size: 28px;
  }
}
