/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #2d8a2d;
  --gl: #4caf50;
  --gd: #1a5c1a;
  --blk: #111;
  --gray: #f4f4f2;
  --muted: #555;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, .logo-t { font-family: 'Barlow', sans-serif; }
a { color: inherit; text-decoration: none; }

/* ===== NAVIGATION ===== */
nav {
  background: rgba(10,10,10,0.97);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  border-bottom: 2px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-nav { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-nav img { height: 52px; object-fit: contain; }
.nav-links { display: flex; }
.nb {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  padding: 0 16px;
  height: 72px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.nb:hover { color: #fff; }
.nb.active { color: var(--gl); border-bottom-color: var(--gl); }
.nav-burger { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.nav-cta {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.nav-cta:hover { background: #111; border-color: #111; }

/* ===== BOUTONS VERTS → NOIRS AU SURVOL ===== */
.btn-g {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 9px;
  padding: 12px 26px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}
.btn-g:hover { background: #111; border-color: #111; }

/* ===== PAGES ===== */
.page { display: none; animation: fi .3s ease; }
.page.active { display: block; }
@keyframes fi { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== BANNIÈRE SLIDER ===== */
.banner { position: relative; height: 420px; overflow: hidden; background: #000; }
.slides { display: flex; height: 100%; transition: transform .7s ease; }
.slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; }
.slide img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .45;
}
.slide-ov {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 65%, transparent);
}
.slide-txt { position: relative; z-index: 2; padding: 0 3.5rem; max-width: 560px; }
.s-badge {
  display: inline-block;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 13px; border-radius: 4px;
  margin-bottom: .9rem;
}
.slide-txt h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 40px; font-weight: 900;
  font-style: italic; color: #fff;
  line-height: 1.1; margin-bottom: .6rem;
}
.slide-txt h2 span { color: var(--gl); }
.slide-txt p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; margin-bottom: 1.25rem; }
.b-dots {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer; border: none;
  transition: all .2s;
}
.dot.active { background: var(--gl); width: 20px; border-radius: 4px; }
.b-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; font-size: 22px; line-height: 1;
  transition: background .2s;
}
.b-arr:hover { background: var(--green); }
.b-arr.l { left: 14px; }
.b-arr.r { right: 14px; }

/* ===== HERO ===== */
.hero {
  background: #0f0f0f;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.h-badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(76,175,80,.4); border-radius: 20px;
  padding: 5px 14px; font-size: 11px; font-weight: 600;
  color: var(--gl); letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: 44px; font-weight: 900; font-style: italic;
  color: #fff; line-height: 1.05;
  letter-spacing: -1px; margin-bottom: .85rem;
}
.hero h1 span { color: var(--gl); font-style: normal; }
.hero-left > p { font-size: 15px; color: #999; line-height: 1.7; margin-bottom: 1.75rem; font-weight: 300; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.h-stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.sn { font-family: 'Barlow', sans-serif; font-size: 25px; font-weight: 900; color: var(--gl); }
.sl { font-size: 12px; color: #555; margin-top: 2px; }

/* ===== PICTOGRAMMES VRAIS (fichiers découpés) ===== */
.picto-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2.5px solid var(--gl);
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.picto-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.picto-circle.picto-svg {
  background: rgba(45,138,45,.06);
  padding: 0;
}

/* Pictos dans les cards services */
.sc-picto {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid var(--gl);
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.sc-picto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sc-picto.picto-svg {
  background: rgba(45,138,45,.06);
  padding: 0;
}

/* ===== PILLS ===== */
.pills { display: flex; flex-direction: column; gap: 10px; }
.pill {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 11px; padding: 11px 15px;
  display: flex; align-items: center; gap: 14px;
  transition: all .2s;
}
.pill:hover { background: rgba(45,138,45,.12); border-color: rgba(76,175,80,.35); }
.pill strong { display: block; color: #fff; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; }
.pill span { font-size: 12px; color: #666; }

/* ===== BANDE CONTACT ===== */
.cstrip {
  background: var(--gd);
  display: flex; justify-content: center;
  gap: 3rem; padding: 13px 2rem;
}
.cstrip a { color: #fff; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.cstrip a:hover { color: #9be49b; }

/* ===== EN-TÊTE DE PAGE ===== */
.ph { background: #0f0f0f; padding: 3rem 3rem 2.5rem; text-align: center; }
.ph h2 { font-family: 'Barlow', sans-serif; font-size: 36px; font-weight: 900; font-style: italic; color: #fff; margin-bottom: .4rem; }
.ph h2 span { color: var(--gl); }
.ph p { color: #666; font-size: 14px; }

/* ===== GRILLE SERVICES ===== */
.srv-grid {
  padding: 2.5rem 3rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.sc { border: 1.5px solid #e0e0e0; border-radius: 13px; overflow: hidden; transition: all .25s; }
.sc:hover { border-color: var(--green); transform: translateY(-3px); }
.sc-top { background: #0f0f0f; padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: 14px; }
.sc-title { font-family: 'Barlow', sans-serif; font-size: 17px; font-weight: 700; color: #fff; }
.sc-sub { font-size: 11px; color: #555; margin-top: 2px; }
.sc-body { padding: 1.1rem 1.4rem; }
.sc-body p { font-size: 13px; color: #555; line-height: 1.7; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: .8rem; }
.tag { background: #eaf4ea; color: #1a5c1a; font-size: 11px; font-weight: 600; border-radius: 20px; padding: 3px 10px; }
.cta-wrap { padding: 0 3rem 2.5rem; }
.cta-block {
  width: 100%; background: var(--green); color: #fff;
  border: 2px solid var(--green); border-radius: 11px;
  padding: 15px; font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .2s;
}
.cta-block:hover { background: #111; border-color: #111; }

/* ===== QUI SOMMES-NOUS ===== */
.ah { background: #0f0f0f; padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ah h2 { font-family: 'Barlow', sans-serif; font-size: 36px; font-weight: 900; font-style: italic; color: #fff; margin-bottom: .9rem; }
.ah h2 span { color: var(--gl); }
.ah-text p { color: #888; font-size: 15px; line-height: 1.8; font-weight: 300; margin-bottom: .7rem; }
.ah-img { display: flex; justify-content: center; }
.ah-img img { width: 280px; object-fit: contain; }
.vals { padding: 2.5rem 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.vc { background: var(--gray); border-radius: 13px; padding: 1.4rem; }
.vn { font-family: 'Barlow', sans-serif; font-size: 36px; font-weight: 900; color: var(--gl); opacity: .3; line-height: 1; }
.vt { font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 700; margin: .4rem 0 .35rem; }
.vp { font-size: 13px; color: var(--muted); line-height: 1.6; }
.eng { background: var(--gd); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.eng h3 { font-family: 'Barlow', sans-serif; font-size: 22px; font-weight: 900; color: #fff; }
.eng p { color: rgba(255,255,255,.5); font-size: 13px; margin-top: .2rem; }
.eng-items { display: flex; gap: 2.5rem; }
.ei { text-align: center; }
.ei-n { font-family: 'Barlow', sans-serif; font-size: 25px; font-weight: 900; color: #9be49b; }
.ei-l { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px; }

/* ===== CONTACT ===== */
.cb { padding: 2.5rem 3rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
.ci h3 { font-family: 'Barlow', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: .4rem; }
.ci > p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.citem { display: flex; align-items: center; gap: 12px; padding: .85rem 1rem; background: var(--gray); border-radius: 10px; margin-bottom: .7rem; }
.cion { width: 37px; height: 37px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0; }
.cl { font-size: 11px; color: #888; }
.cv { font-size: 14px; font-weight: 600; }
.cv a { color: inherit; }
.zone { margin-top: 1rem; padding: 1rem; background: rgba(45,138,45,.06); border: 1.5px solid rgba(45,138,45,.2); border-radius: 10px; }
.zone-title { font-size: 13px; color: var(--gd); font-weight: 600; margin-bottom: 3px; }
.zone small { font-size: 12px; color: #777; }
.zone-map { margin-top: .7rem; background: #e8f5e9; border-radius: 8px; padding: .85rem; text-align: center; }
.zone-map strong { display: block; font-family: 'Barlow', sans-serif; font-size: 16px; color: var(--gd); font-weight: 700; }
.zone-map span { font-size: 12px; color: #555; }
.cfw { background: #0f0f0f; border-radius: 15px; padding: 1.75rem; }
.cfw h3 { font-family: 'Barlow', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 1.2rem; }
.cf { display: flex; flex-direction: column; gap: 10px; }
.cf label { font-size: 12px; color: #666; display: block; margin-bottom: 3px; }
.cf input, .cf select, .cf textarea {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 10px 13px;
  font-size: 14px; color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none; transition: border .2s;
}
.cf input:focus, .cf select:focus, .cf textarea:focus { border-color: rgba(76,175,80,.6); }
.cf input::placeholder, .cf textarea::placeholder { color: rgba(255,255,255,.25); }
.cf select option { background: #1a1a1a; color: #fff; }
.cf textarea { height: 80px; resize: none; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cf-btn {
  width: 100%; background: var(--green); color: #fff;
  border: 2px solid var(--green); border-radius: 9px;
  padding: 13px; font-size: 15px; font-weight: 700;
  font-family: 'Barlow', sans-serif; cursor: pointer;
  transition: all .2s; margin-top: 4px;
}
.cf-btn:hover { background: #111; border-color: #111; }

/* ===== FOOTER ===== */
footer { background: #0a0a0a; border-top: 2px solid var(--green); padding: 2rem 3rem 1rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 1.5rem; }
.footer-logo img { height: 58px; object-fit: contain; }
.footer-info p { font-size: 13px; color: #777; margin-bottom: 4px; }
.footer-info a { color: #aaa; }
.footer-info a:hover { color: var(--gl); }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links span { font-size: 13px; color: #666; cursor: pointer; transition: color .2s; }
.footer-links span:hover { color: var(--gl); }
.footer-copy { font-size: 12px; color: #444; text-align: center; border-top: 1px solid #1a1a1a; padding-top: 1rem; }

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: #0a0a0a; border-bottom: 2px solid var(--green); z-index: 99; }
  .nav-links.open { display: flex; }
  .nb { height: 48px; border-bottom: 1px solid #1a1a1a; border-left: 3px solid transparent; }
  .nb.active { border-left-color: var(--gl); border-bottom-color: #1a1a1a; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .hero h1 { font-size: 34px; }
  .pills { display: none; }
  .banner { height: 300px; }
  .slide-txt { padding: 0 1.5rem; }
  .slide-txt h2 { font-size: 28px; }
  .srv-grid { grid-template-columns: 1fr; padding: 1.5rem; }
  .vals { grid-template-columns: 1fr; padding: 1.5rem; }
  .ah { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .ah-img { display: none; }
  .eng { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
  .eng-items { justify-content: center; }
  .cb { grid-template-columns: 1fr; padding: 1.5rem; }
  .cstrip { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cf-row { grid-template-columns: 1fr; }
  .cta-wrap { padding: 0 1.5rem 2rem; }
  .ph { padding: 2rem 1.5rem; }
  .ph h2 { font-size: 28px; }
}
