/* ============================================================
   ABC AFRICAN BUSINESS COMPANY - Stylesheet Principal
   Design : Professionnel, Import-Export, Afrique de l'Ouest
   Palette : Vert forêt #1B5E20, Or #F9A825, Blanc, Gris doux
   ============================================================ */

/* ---------- Reset & Variables ---------- */
:root {
  --vert:        #1B5E20;
  --vert-clair:  #2E7D32;
  --vert-pale:   #E8F5E9;
  --or:          #F9A825;
  --or-fonce:    #F57F17;
  --blanc:       #FFFFFF;
  --gris-clair:  #F5F5F5;
  --gris:        #757575;
  --gris-fonce:  #424242;
  --texte:       #212121;
  --ombre:       0 4px 20px rgba(0,0,0,.10);
  --ombre-forte: 0 8px 40px rgba(0,0,0,.18);
  --radius:      8px;
  --transition:  .3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--gris-fonce);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

/* ---------- Utilitaires ---------- */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section { padding: 80px 0; }
.section-alt { background: var(--gris-clair); }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 { color: var(--vert); margin-bottom: .5rem; }
.section-title .underline {
  width: 60px;
  height: 4px;
  background: var(--or);
  margin: 0 auto 1rem;
  border-radius: 2px;
}
.section-title p { color: var(--gris); font-size: 1.05rem; max-width: 650px; margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--or);
  color: var(--vert);
  border-color: var(--or);
}
.btn-primary:hover {
  background: var(--or-fonce);
  border-color: var(--or-fonce);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,168,37,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--blanc);
  border-color: var(--blanc);
}
.btn-secondary:hover {
  background: var(--blanc);
  color: var(--vert);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--vert);
  border-color: var(--vert);
}
.btn-outline:hover {
  background: var(--vert);
  color: var(--blanc);
  transform: translateY(-2px);
}

.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}
.badge-or    { background: var(--or);       color: var(--vert); }
.badge-vert  { background: var(--vert);     color: var(--blanc); }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--vert);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--or);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar-left, .topbar-right { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--or); }
.topbar i { margin-right: 4px; color: var(--or); }
.topbar-socials a {
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: background var(--transition);
}
.topbar-socials a:hover { background: var(--or); color: var(--vert); }

/* ============================================================
   HEADER / NAV – Responsive complet
   ============================================================ */

/* ----- Header principal ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.16); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 1.5rem;
}

/* ----- Logo ----- */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--vert);
  letter-spacing: .3px;
  white-space: nowrap;
}
.logo-tagline {
  font-size: .68rem;
  color: var(--gris);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

/* ----- Navigation desktop ----- */
.main-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.main-nav a {
  padding: .48rem .9rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gris-fonce);
  white-space: nowrap;
  transition: background .25s, color .25s;
  position: relative;
}
.main-nav a:hover { background: var(--vert-pale); color: var(--vert); }
.main-nav a.active {
  background: var(--vert-pale);
  color: var(--vert);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 12px; right: 12px;
  height: 3px;
  background: var(--or);
  border-radius: 2px;
}
.nav-cta {
  background: var(--or) !important;
  color: var(--vert) !important;
  margin-left: .4rem;
  border-radius: 7px !important;
}
.nav-cta:hover { background: var(--or-fonce) !important; color: var(--vert) !important; }
.nav-cta.active::after { display: none; }

/* ----- Hamburger ----- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: var(--vert-pale);
  border: none;
  border-radius: 8px;
  padding: 9px;
  flex-shrink: 0;
  transition: background .25s;
}
.hamburger:hover { background: var(--vert); }
.hamburger:hover .ham-line { background: #fff; }
.ham-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vert);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Overlay ----- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 950;
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

/* ----- Drawer mobile ----- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #fff;
  z-index: 960;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 40px rgba(0,0,0,.18);
  overflow: hidden;
}
.mobile-drawer.open { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--vert);
  border-bottom: 3px solid var(--or);
  flex-shrink: 0;
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
}
.drawer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.drawer-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.28); }

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: .75rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  border-radius: 10px;
  color: var(--gris-fonce);
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.drawer-link i {
  width: 20px;
  text-align: center;
  color: var(--vert);
  font-size: 1rem;
}
.drawer-link:hover { background: var(--vert-pale); color: var(--vert); }
.drawer-link.active {
  background: var(--vert);
  color: #fff;
}
.drawer-link.active i { color: var(--or); }

.drawer-footer {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex-shrink: 0;
}
.drawer-contact-btn,
.drawer-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s;
}
.drawer-contact-btn { background: var(--vert-pale); color: var(--vert); }
.drawer-wa-btn      { background: #25D366;         color: #fff; }
.drawer-contact-btn:hover,
.drawer-wa-btn:hover { opacity: .88; }

/* ---------- HERO ---------- */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(135deg, rgba(27,94,32,.88) 0%, rgba(46,125,50,.75) 60%, rgba(249,168,37,.25) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--blanc));
}
.hero-content { position: relative; z-index: 1; padding: 3rem 1rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(249,168,37,.2);
  border: 1px solid var(--or);
  color: var(--or);
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: .5px;
}
.hero h1 { color: var(--blanc); margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.hero h1 span { color: var(--or); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: .9;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--or);
  display: block;
  line-height: 1;
}
.hero-stat .label { font-size: .8rem; opacity: .8; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- ABOUT STRIP ---------- */
.about-strip {
  padding: 60px 0;
  background: var(--vert-pale);
  border-top: 4px solid var(--or);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.strip-icon {
  width: 50px;
  height: 50px;
  background: var(--vert);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.strip-item h4 { color: var(--vert); margin-bottom: .25rem; font-size: 1rem; }
.strip-item p { color: var(--gris); font-size: .9rem; margin: 0; }

/* ---------- SERVICES (cards) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: var(--blanc);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  box-shadow: var(--ombre);
  border-top: 4px solid var(--or);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--vert-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-forte); }
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 60px;
  height: 60px;
  background: var(--vert);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.service-card h3 { color: var(--vert); margin-bottom: .6rem; }
.service-card p { color: var(--gris); font-size: .95rem; margin: 0; }
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--or-fonce);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.service-card:hover .read-more { gap: .6rem; }

/* ---------- PRODUITS (catalogue) ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}
.product-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ombre);
  background: var(--blanc);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--ombre-forte); }
.product-img {
  height: 200px;
  overflow: hidden;
  background: var(--vert-pale);
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img .product-badge {
  position: absolute;
  top: 12px; left: 12px;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--vert);
  gap: .5rem;
}
.product-img-placeholder i { font-size: 2.5rem; opacity: .4; }
.product-img-placeholder span { font-size: .8rem; color: var(--gris); }
.product-body { padding: 1.25rem; }
.product-body h4 { color: var(--gris-fonce); margin-bottom: .35rem; }
.product-body p { color: var(--gris); font-size: .88rem; margin-bottom: .75rem; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  border-top: 1px solid var(--gris-clair);
  padding-top: .75rem;
}
.product-origin { font-size: .8rem; color: var(--gris); display: flex; align-items: center; gap: .3rem; }
.product-origin i { color: var(--or); }

/* ---------- CATEGORIES TABS ---------- */
.cat-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.cat-tab {
  padding: .5rem 1.3rem;
  border-radius: 30px;
  border: 2px solid var(--vert);
  color: var(--vert);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.cat-tab.active,
.cat-tab:hover {
  background: var(--vert);
  color: var(--blanc);
}

/* ---------- ACTUALITES ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.news-card {
  background: var(--blanc);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--ombre-forte); }
.news-img {
  height: 200px;
  overflow: hidden;
  background: var(--vert-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-img-placeholder { color: var(--vert); opacity: .3; font-size: 3rem; }
.news-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.news-date { color: var(--gris); font-size: .82rem; display: flex; align-items: center; gap: .3rem; }
.news-date i { color: var(--or); }
.news-body h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.news-body h3 a:hover { color: var(--vert); }
.news-body p { color: var(--gris); font-size: .92rem; flex: 1; }
.news-body .lire-plus {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--vert);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.news-body .lire-plus:hover { gap: .6rem; color: var(--or-fonce); }

/* ---------- TEMOIGNAGES ---------- */
.temoignages { background: var(--vert); color: var(--blanc); }
.temoignages .section-title h2 { color: var(--or); }
.temoignages .section-title p { color: rgba(255,255,255,.8); }
.temo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}
.temo-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(249,168,37,.3);
  border-radius: 12px;
  padding: 2rem;
}
.temo-stars { color: var(--or); margin-bottom: .75rem; letter-spacing: 2px; }
.temo-card p { color: rgba(255,255,255,.85); font-style: italic; margin-bottom: 1.25rem; }
.temo-author { display: flex; align-items: center; gap: .75rem; }
.temo-avatar {
  width: 44px; height: 44px;
  background: var(--or);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--vert);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.temo-name { font-weight: 700; font-size: .95rem; }
.temo-role { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ---------- PARTENAIRES ---------- */
.partenaires-strip {
  background: var(--gris-clair);
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
}
.partenaires-label {
  text-align: center;
  color: var(--gris);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.partenaires-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.partenaire-item {
  padding: .6rem 1.4rem;
  background: var(--blanc);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--vert);
  font-size: .9rem;
  border: 1px solid #e0e0e0;
  letter-spacing: .5px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-clair) 100%);
  color: var(--blanc);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(249,168,37,.12);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(249,168,37,.08);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--blanc); margin-bottom: .6rem; }
.cta-banner p { opacity: .85; max-width: 580px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- CONTACT ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--blanc);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--ombre);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-card .ci-icon {
  width: 48px; height: 48px;
  background: var(--vert);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h4 { color: var(--vert); margin-bottom: .3rem; }
.contact-info-card p,
.contact-info-card a { color: var(--gris); font-size: .92rem; margin: 0; }
.contact-info-card a:hover { color: var(--vert); }

.horaires-table { width: 100%; font-size: .9rem; border-collapse: collapse; }
.horaires-table td { padding: .3rem 0; color: var(--gris); }
.horaires-table td:first-child { font-weight: 600; color: var(--gris-fonce); width: 55%; }
.horaires-open { color: var(--vert) !important; font-weight: 600 !important; }
.horaires-closed { color: #c62828 !important; }

.contact-form-wrap {
  background: var(--blanc);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--ombre);
}
.contact-form-wrap h3 { color: var(--vert); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--gris-fonce);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--texte);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--blanc);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(27,94,32,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .95rem;
  margin-bottom: 1rem;
}
.alert-success { background: #E8F5E9; color: #1B5E20; border-left: 4px solid var(--vert); }
.alert-error   { background: #FFEBEE; color: #c62828; border-left: 4px solid #c62828; }

/* ---------- MAP ---------- */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ombre);
  margin-top: 3rem;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #111;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 { color: var(--or); margin-bottom: 1.1rem; font-size: 1rem; letter-spacing: .5px; }
.footer-about-logo {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.footer-about-logo .fl-icon {
  width: 44px; height: 44px;
  background: var(--vert);
  border: 2px solid var(--or);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--or); font-size: .9rem; font-weight: 900;
}
.footer-about-logo .fl-name { font-size: 1rem; font-weight: 700; color: var(--blanc); line-height: 1.2; }
.footer-about-logo .fl-tagline { font-size: .68rem; color: var(--or); letter-spacing: 1px; }
.footer-col p { font-size: .9rem; line-height: 1.8; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--or); color: var(--vert); transform: translateY(-2px); }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color var(--transition); display: flex; align-items: center; gap: .4rem; }
.footer-col ul a:hover { color: var(--or); padding-left: 4px; }
.footer-col ul a i { font-size: .75rem; }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .8rem; align-items: flex-start; }
.footer-contact-item i { color: var(--or); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,.75); }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--or); }

.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom .made-with { color: rgba(255,255,255,.4); font-size: .78rem; }
.footer-bottom a { color: var(--or); }

/* ---------- PAGE BANNER ---------- */
.page-banner {
  background:
    linear-gradient(135deg, rgba(27,94,32,.9) 0%, rgba(46,125,50,.8) 100%),
    url('../images/banner-bg.jpg') center/cover no-repeat;
  color: var(--blanc);
  padding: 80px 0 60px;
  text-align: center;
}
.page-banner h1 { color: var(--blanc); margin-bottom: .5rem; }
.page-banner p { opacity: .85; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.breadcrumb a { opacity: .8; }
.breadcrumb a:hover { opacity: 1; color: var(--or); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--or); }

/* ---------- TIMELINE (histoire) ---------- */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--vert-pale);
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-year {
  flex: 1;
  text-align: right;
  padding-right: 2.5rem;
  position: relative;
}
.tl-item:nth-child(even) .tl-year { text-align: left; padding-right: 0; padding-left: 2.5rem; }
.tl-dot {
  position: absolute;
  top: 6px;
  right: calc(-1.5rem - 7px);
  width: 16px; height: 16px;
  background: var(--or);
  border: 3px solid var(--vert);
  border-radius: 50%;
}
.tl-item:nth-child(even) .tl-dot { right: auto; left: calc(-1.5rem - 7px); }
.tl-year-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vert);
  line-height: 1;
}
.tl-content { flex: 1; padding: 1.25rem 1.5rem; background: var(--blanc); border-radius: 10px; box-shadow: var(--ombre); border-left: 3px solid var(--or); }
.tl-item:nth-child(even) .tl-content { border-left: none; border-right: 3px solid var(--or); }
.tl-content h4 { color: var(--vert); margin-bottom: .4rem; }
.tl-content p { color: var(--gris); font-size: .92rem; margin: 0; }

/* ---------- EQUIPE ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--blanc);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ombre);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-forte); }
.team-avatar {
  height: 180px;
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-clair) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
  font-size: 4rem;
}
.team-body { padding: 1.25rem; }
.team-body h4 { color: var(--gris-fonce); margin-bottom: .2rem; }
.team-body .role { color: var(--vert); font-size: .88rem; font-weight: 600; margin-bottom: .75rem; }
.team-body p { color: var(--gris); font-size: .85rem; }

/* ---------- VALEURS ---------- */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.valeur-item {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--blanc);
  border-radius: 12px;
  box-shadow: var(--ombre);
  transition: transform var(--transition);
}
.valeur-item:hover { transform: translateY(-4px); }
.valeur-icon {
  width: 64px; height: 64px;
  background: var(--vert);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.valeur-item h4 { color: var(--vert); margin-bottom: .4rem; }
.valeur-item p { color: var(--gris); font-size: .88rem; margin: 0; }

/* ---------- CHIFFRES CLES ---------- */
.chiffres { background: var(--vert); color: var(--blanc); }
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.chiffre-item .num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--or);
  display: block;
  line-height: 1;
}
.chiffre-item .unite { font-size: 1.5rem; }
.chiffre-item .label { font-size: .9rem; opacity: .8; margin-top: .5rem; }

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--vert);
  color: var(--or);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 9999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--or); color: var(--vert); transform: translateY(-3px); }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--vert);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; color: var(--blanc); }
.preloader-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--or);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.preloader-bar {
  width: 180px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: var(--or);
  border-radius: 2px;
  animation: loadBar 1.5s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE – Breakpoints complets
   ============================================================ */

/* ----- Tablette large (max 1100px) : cache le texte du logo ----- */
@media (max-width: 1100px) {
  .main-nav a { padding: .46rem .72rem; font-size: .85rem; }
}

/* ----- Tablette (max 960px) : bascule vers hamburger + drawer ----- */
@media (max-width: 960px) {
  /* Cache la nav desktop */
  .main-nav { display: none !important; }
  /* Affiche le hamburger */
  .hamburger { display: flex; }
  /* Footer 2 colonnes */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  /* Contact wrapper */
  .contact-wrapper { grid-template-columns: 1fr; }
  /* Timeline */
  .timeline::before { left: 24px; }
  .tl-item, .tl-item:nth-child(even) { flex-direction: row; }
  .tl-year { flex: 0 0 80px; text-align: left; padding: 0 0 0 1rem; }
  .tl-dot, .tl-item:nth-child(even) .tl-dot { left: -1.35rem; right: auto; }
  .tl-item:nth-child(even) .tl-content { border-left: 3px solid var(--or); border-right: none; }
  .tl-item:nth-child(even) .tl-year { text-align: left; padding-left: 1rem; }
  /* Nouvelles grilles */
  .zones-grid    { grid-template-columns: repeat(2, 1fr); }
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* ----- Mobile (max 768px) ----- */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  /* Topbar : masque infos gauche */
  .topbar .topbar-left { display: none; }
  .topbar-hours { display: none; }
  /* Logo : réduit texte */
  .logo-name    { font-size: .92rem; }
  .logo-tagline { display: none; }
  .logo-img     { height: 42px; }
  /* Hero */
  .hero { min-height: 85vh; }
  .hero-stats   { gap: 1.2rem; }
  .hero-stat .num { font-size: 1.8rem; }
  /* Footer 1 colonne */
  .footer-grid { grid-template-columns: 1fr; }
  /* Formulaire */
  .form-row { grid-template-columns: 1fr; }
  /* Services grid */
  .services-grid { grid-template-columns: 1fr; }
  /* Products grid */
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  /* Nouvelles grilles */
  .zones-grid    { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: 1fr; }
  /* WhatsApp CTA */
  .whatsapp-cta-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  .whatsapp-cta-action { min-width: unset; }
}

/* ----- Petit mobile (max 480px) ----- */
@media (max-width: 480px) {
  .hero-btns  { flex-direction: column; align-items: stretch; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 1.5rem 1rem; }
  .chiffres-grid { grid-template-columns: 1fr; }
  .logo-name { font-size: .85rem; }
  /* WhatsApp flottant : icône seulement */
  .whatsapp-float-label { display: none; }
  .whatsapp-float {
    border-radius: 50%;
    padding: .75rem;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
  /* CTA banner social proof */
  .cta-social-proof { flex-direction: column; gap: .75rem; }
}

/* ============================================================
   NOUVELLES SECTIONS – Logo, WhatsApp, Zones, Chiffres, Pourquoi
   ============================================================ */

/* ---------- Preloader logo image ---------- */
.preloader-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin: 0 auto .75rem;
  display: block;
  border-radius: 8px;
}
.preloader-sub {
  font-size: .85rem;
  opacity: .7;
  margin-bottom: .75rem;
}
/* ---------- Footer logo image ---------- */
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ---------- WhatsApp flottant amélioré ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  border-radius: 50px;
  padding: .65rem 1rem .65rem .85rem;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9999;
  transition: all .3s ease;
  text-decoration: none;
}
.whatsapp-float i { font-size: 1.4rem; }
.whatsapp-float-label { white-space: nowrap; max-width: 0; overflow: hidden; transition: max-width .4s ease, opacity .3s ease; opacity: 0; }
.whatsapp-float:hover .whatsapp-float-label { max-width: 120px; opacity: 1; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,.55); }

/* ---------- Bouton partage WhatsApp dans cartes news ---------- */
.btn-share-wa {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .8rem;
  border-radius: 20px;
  background: #25D36615;
  color: #1a9e50;
  border: 1px solid #25D36640;
  font-size: .8rem;
  font-weight: 600;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-share-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }

/* ---------- WhatsApp CTA section ---------- */
.whatsapp-cta-section { background: var(--vert-pale); }
.whatsapp-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--ombre);
  border-left: 6px solid #25D366;
}
.whatsapp-cta-text h2 { color: var(--vert); margin-bottom: .75rem; }
.whatsapp-cta-text p  { color: var(--gris); margin-bottom: 1.25rem; }
.whatsapp-cta-points  { list-style: none; padding: 0; }
.whatsapp-cta-points li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .95rem; font-weight: 600; color: var(--gris-fonce);
  margin-bottom: .5rem;
}
.whatsapp-cta-points li i { color: #25D366; font-size: 1rem; }
.whatsapp-cta-action { min-width: 240px; display: flex; flex-direction: column; align-items: stretch; }
.btn-wa-big {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa-big i { font-size: 2rem; flex-shrink: 0; }
.btn-wa-big span { display: flex; flex-direction: column; line-height: 1.3; }
.btn-wa-big strong { font-size: 1rem; }
.btn-wa-big small  { font-size: .75rem; opacity: .85; font-weight: 400; }
.btn-wa-big:hover  { background: #1da851; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,.45); color: #fff; }

/* ---------- Bouton WhatsApp dans CTA banner ---------- */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  color: #fff;
}

/* ---------- Zones d'intervention ---------- */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.zone-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--ombre);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  border-top: 3px solid transparent;
}
.zone-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-forte); border-top-color: var(--or); }
.zone-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.zone-card h4 { color: var(--gris-fonce); margin-bottom: .5rem; font-size: 1rem; }
.zone-card p  { color: var(--gris); font-size: .88rem; margin: 0; }

/* ---------- Chiffres clés ---------- */
.chiffres-section {
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-clair) 100%);
  position: relative;
  overflow: hidden;
}
.chiffres-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(249,168,37,.07);
}
.chiffres-section .section-title { position: relative; z-index: 1; }
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.chiffre-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(249,168,37,.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background .3s ease, transform .3s ease;
  backdrop-filter: blur(4px);
}
.chiffre-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.chiffre-icon { font-size: 2rem; color: var(--or); margin-bottom: .75rem; }
.chiffre-num  { font-size: 2.4rem; font-weight: 900; color: var(--or); line-height: 1; margin-bottom: .25rem; }
.chiffre-label{ font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.chiffre-desc { font-size: .82rem; color: rgba(255,255,255,.65); margin: 0; }

/* ---------- Pourquoi nous choisir ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: var(--ombre);
  transition: transform .3s ease, box-shadow .3s ease;
  border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--ombre-forte); border-bottom-color: var(--or); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--vert-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--vert);
  margin-bottom: 1rem;
}
.why-card h4 { color: var(--vert); margin-bottom: .5rem; font-size: 1rem; }
.why-card p  { color: var(--gris); font-size: .88rem; margin: 0; }

/* Responsive nouvelles sections géré dans le bloc RESPONSIVE global ci-dessus */
