* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, sans-serif;
  color: #1f1f1f;
  background: #ffffff;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── TOPBAR ── */
.topbar {
  background: #c00000;
  color: #ffffff;
  font-size: 14px;
}

.topbar-content {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── HEADER ── */
.header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.logo-zone {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
}

.logo-zone img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.brand-text h1 {
  color: #034a2e;
  font-size: 32px;
  margin-bottom: 4px;
}

.brand-text p {
  color: #666666;
  font-size: 14px;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  color: #034a2e;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: #c00000;
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav a:hover { color: #c00000; }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: #c00000; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: #034a2e;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
  background: #022f1d;
  box-shadow: 0 12px 25px rgba(3,74,46,0.3);
}

.btn-header { white-space: nowrap; }

.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ffffff;
  color: #034a2e;
  transform: translateY(-3px);
}

.btn-light {
  background: #ffffff;
  color: #034a2e;
}

.btn-light:hover { background: #f0f0f0; }

.btn-white {
  background: #ffffff;
  color: #034a2e;
  border: 2px solid #ffffff;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  border-radius: 999px;
  background: #034a2e;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #022f1d;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(3,74,46,0.3);
}

/* ── SECTION TITLES ── */
.section-title {
  text-align: center;
  margin-bottom: 46px;
}

.section-title h2 {
  color: #034a2e;
  font-size: 40px;
  margin-bottom: 10px;
}

.section-title p {
  color: #555555;
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
}

.small-title {
  display: inline-block;
  color: #c00000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-size: 13px;
}

/* ══════════════════════════════════════
   HERO ACCUEIL
══════════════════════════════════════ */
.hero {
  position: relative;
  background: url("images/hero-accueil.png") center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 760px;
  color: #ffffff;
  padding: 80px 0;
}

.hero-text h2 {
  font-size: 64px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-text p {
  font-size: 21px;
  color: #e7e7e7;
  margin-bottom: 30px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
  padding: 90px 0;
  background: #f9f9f9;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(196,0,0,0.12);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 4px;
  background: #c00000;
  transition: width 0.35s ease;
  z-index: 3;
}

.service-card:hover::before { width: 100%; }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.10);
  border-color: rgba(196,0,0,0.28);
}

.service-image {
  height: 260px;
  overflow: hidden;
  background: #eee;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img { transform: scale(1.08); }

.service-card-content { padding: 28px; }

.service-card-content h3 {
  color: #034a2e;
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card-content p {
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  color: #c00000;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 2px;
  background: #c00000;
  transition: width 0.3s ease;
}

.service-card:hover .service-link::after { width: 100%; }

/* ══════════════════════════════════════
   PRODUCTS SLIDER
══════════════════════════════════════ */
.products {
  padding: 95px 0;
  background: #f3f5f4;
}

.products-title { margin-bottom: 34px; }

.products-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.65s ease;
}

.product-slide {
  min-width: calc((100% - 48px) / 3);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: transparent;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.product-slide:hover { transform: translateY(-8px); }

.product-slide-image {
  position: relative;
  height: 470px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

.product-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.35s ease;
}

.product-slide:hover .product-slide-image img {
  transform: scale(1.07);
  filter: brightness(0.92);
}

.product-slide-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 24px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.48) 40%, rgba(0,0,0,0.05) 100%);
}

.product-slide-overlay h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 90%;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.slider-btn {
  border: none;
  background: transparent;
  color: #c00000;
  font-size: 74px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
  padding: 0 8px;
  opacity: 0.9;
}

.slider-btn:hover {
  color: #8f0000;
  transform: scale(1.08);
  opacity: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c7c7c7;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.slider-dot.active {
  background: #c00000;
  transform: scale(1.2);
}

/* ══════════════════════════════════════
   ABOUT (accueil)
══════════════════════════════════════ */
.about {
  padding: 90px 0;
  background: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .small-title { margin-bottom: 12px; }

.about-text h2 {
  color: #034a2e;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-box {
  background: #f5f7f6;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid #e2e8e5;
  transition: all 0.3s ease;
}

.info-box:hover {
  border-color: rgba(192,0,0,0.3);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.info-box-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(3,74,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-box-top h3 {
  color: #034a2e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.info-box p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
  margin-left: 62px;
}

/* ══════════════════════════════════════
   CONTACT CTA
══════════════════════════════════════ */
.contact-section {
  padding: 90px 0;
  background: #f3f5f4;
}

.contact-box {
  background: linear-gradient(135deg, #034a2e 0%, #0b6d45 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(3,74,46,0.18);
}

.contact-box h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-box p {
  max-width: 640px;
  margin: 0 auto 32px auto;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

.contact-box-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   À PROPOS — HERO
══════════════════════════════════════ */
.about-hero {
  position: relative;
  background: url("images/hero-accueil.png") center/cover no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,74,46,0.85) 0%, rgba(0,0,0,0.65) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 80px 0;
}

.about-hero-tag {
  display: inline-block;
  color: #6ee7b7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
}

.about-hero-content h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.about-hero-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}

/* ══════════════════════════════════════
   À PROPOS — PRÉSENTATION
══════════════════════════════════════ */
.about-page {
  padding: 90px 0;
  background: #ffffff;
}

.about-page-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page-text h2 {
  color: #034a2e;
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-page-text p {
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-page-image img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ══════════════════════════════════════
   À PROPOS — DOMAINES D'INTERVENTION
══════════════════════════════════════ */
.domaines-section {
  padding: 90px 0;
  background: #f5f7f6;
}

.domaines-title {
  color: #034a2e;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
}

.domaines-intro {
  color: #555555;
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 680px;
}

.domaines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
  margin-bottom: 52px;
}

.domaines-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.domaines-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: #1f1f1f;
  line-height: 1.5;
  font-weight: 500;
}

.domaines-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.domaines-cta { text-align: center; }

/* ══════════════════════════════════════
   À PROPOS — VALEURS
══════════════════════════════════════ */
.values {
  padding: 90px 0;
  background: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.value-card {
  background: #f5f7f6;
  padding: 36px 24px;
  border-radius: 18px;
  text-align: center;
  border: 2px solid rgba(196,0,0,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #c00000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: #ffffff;
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(3,74,46,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: background 0.3s ease;
}

.value-card:hover .value-icon { background: rgba(192,0,0,0.08); }
.value-card:hover .value-icon svg { stroke: #c00000 !important; }

.value-card h3 {
  color: #034a2e;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  color: #555555;
  font-size: 15px;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   À PROPOS — EXPERTISE
══════════════════════════════════════ */
.about-expertise {
  padding: 90px 0;
  background: #f5f7f6;
}

.about-expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-expertise-image img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-expertise-text h2 {
  color: #034a2e;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}

.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
}

.expertise-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════
   PAGE CONTACT
══════════════════════════════════════ */
.contact-page-section {
  padding: 90px 0;
  background: #f5f7f6;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
  border: 1px solid #e2e8e5;
}

.contact-form-title {
  color: #034a2e;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form-desc {
  color: #555555;
  font-size: 15px;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: 0.2px;
}

.required { color: #c00000; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e2e8e5;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #1f1f1f;
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #034a2e;
  box-shadow: 0 0 0 3px rgba(3,74,46,0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23034a2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(3,74,46,0.08);
  color: #034a2e;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(3,74,46,0.2);
}

.form-success.show { display: flex; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }

.contact-info-title {
  color: #034a2e;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #e2e8e5;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(3,74,46,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(3,74,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-body h4 {
  color: #034a2e;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-body a,
.contact-info-body p {
  color: #555555;
  font-size: 15px;
  line-height: 1.5;
}

.contact-info-body a:hover { color: #034a2e; }

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(192,0,0,0.05);
  border: 1px solid rgba(192,0,0,0.18);
  padding: 16px 18px;
  border-radius: 12px;
}

.contact-note svg { flex-shrink: 0; margin-top: 2px; }
.contact-note p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   PAGE PRODUITS
══════════════════════════════════════ */
.produits-page-section {
  padding: 90px 0;
  background: #f5f7f6;
}

.produits-header {
  text-align: center;
  margin-bottom: 56px;
}

.produits-title {
  color: #034a2e;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
}

.produits-intro {
  color: #555555;
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.produit-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8e5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.produit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
  border-color: rgba(192,0,0,0.2);
}

.produit-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #eee;
}

.produit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.produit-card:hover .produit-card-img img {
  transform: scale(1.08);
}

.produit-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,74,46,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produit-card:hover .produit-card-overlay {
  opacity: 1;
}

.btn-devis-overlay {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #034a2e;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.produit-card:hover .btn-devis-overlay {
  transform: translateY(0);
}

.btn-devis-overlay:hover {
  background: #c00000;
  color: #ffffff;
}

.produit-card-body {
  padding: 22px 24px;
}

.produit-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(3,74,46,0.08);
  color: #034a2e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.produit-card-body h3 {
  color: #034a2e;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.produit-card-body p {
  color: #555555;
  font-size: 14px;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #111111;
  color: #ffffff;
  padding: 26px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-content p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .header-content { flex-direction: column; align-items: flex-start; }
  .nav { justify-content: flex-start; }
  .hero-text h2 { font-size: 52px; }
  .services-cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .product-slide { min-width: calc((100% - 24px) / 2); }
  .product-slide-image { height: 430px; }
  .about-content { grid-template-columns: 1fr; }
  .about-page-content { grid-template-columns: 1fr; }
  .about-expertise-content { grid-template-columns: 1fr; }
  .domaines-grid { grid-template-columns: 1fr; gap: 0; }
  .about-page-image img { height: auto; }
  .about-expertise-image img { height: auto; }
  .contact-page-layout { grid-template-columns: 1fr; }
  .produits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-content { justify-content: center; }
  .brand-text h1 { font-size: 26px; }
  .nav { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero { min-height: auto; }
  .hero-text { padding: 70px 0; }
  .hero-text h2 { font-size: 38px; }
  .about-hero-content h2 { font-size: 36px; }
  .section-title h2 { font-size: 32px; }
  .domaines-title { font-size: 30px; }
  .produits-title { font-size: 30px; }
  .contact-box h2 { font-size: 32px; }
  .services-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .product-slide { min-width: 100%; }
  .product-slide-image { height: 390px; }
  .slider-btn { font-size: 52px; padding: 0 4px; }
  .logo-zone { min-width: auto; }
  .about-boxes { grid-template-columns: 1fr; }
  .contact-box { padding: 40px 24px; }
  .contact-box-actions { flex-direction: column; align-items: center; }
  .info-box p { margin-left: 0; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .produits-grid { grid-template-columns: 1fr; }
}
/* ══════════════════════════════════════
   PAGE SERVICES
══════════════════════════════════════ */
.service-detail-section {
  padding: 90px 0;
  background: #ffffff;
}

.service-detail-alt {
  background: #f5f7f6;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-detail-reverse {
  direction: rtl;
}

.service-detail-reverse > * {
  direction: ltr;
}

.service-detail-img img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.service-detail-num {
  font-size: 80px;
  font-weight: 800;
  color: rgba(3,74,46,0.06);
  line-height: 1;
  margin-bottom: -20px;
}

.service-detail-text h2 {
  color: #034a2e;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 8px;
}

.service-detail-text p {
  color: #555555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #1f1f1f;
  line-height: 1.5;
}

.service-features-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .service-detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-reverse { direction: ltr; }
  .service-detail-img img { height: auto; }
}

@media (max-width: 768px) {
  .service-detail-text h2 { font-size: 28px; }
  .service-detail-num { font-size: 60px; }
}