/* ═══════════════════════════════════════════════
   VARIABLES & RESET
════════════════════════════════════════════════ */
:root {
  --green:      #1a7a4a;
  --green-dark: #145f38;
  --green-light:#e8f5ee;
  --gold:       #d4a017;
  --text:       #1c1c1c;
  --text-muted: #6b7280;
  --bg:         #ffffff;
  --bg-light:   #f8faf9;
  --border:     #e5e7eb;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --font-head:  'Playfair Display', serif;
  --font-body:  'DM Sans', sans-serif;
  --nav-h:      70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ═══════════════════════════════════════════════
   LAYOUT HELPERS
════════════════════════════════════════════════ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.section { padding: 5rem 0; }
.section-light { background: var(--bg-light); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-top: .5rem; }
.section-tag { display: inline-block; background: var(--green-light); color: var(--green); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 99px; }

/* ═══════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.5rem; border-radius: 99px;
  font-weight: 600; font-size: .9rem; cursor: pointer;
  border: 2px solid transparent; transition: all .2s;
}
.btn-primary  { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-outline  { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }

/* ═══════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h); display: flex; align-items: center;
  transition: box-shadow .2s;
  overflow: visible;
}
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; gap: 1.5rem; width: 100%; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-img { height: 60px; width: auto; max-width: 60px; object-fit: contain; display: block; flex-shrink: 0; }
.logo-content { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--text); }
.logo-full { font-size: .65rem; color: var(--text-muted); font-weight: 500; max-width: 180px; }
.accent { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: .2rem; flex-wrap: wrap; }
.nav-links li a {
  padding: .45rem .8rem; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--text);
  transition: background .15s, color .15s;
}
.nav-links li a:hover { background: var(--green-light); color: var(--green); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ═══════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-h); position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--green-light) 0%, #fff 60%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 4rem 1.25rem; }
.hero-badge { display: inline-block; background: var(--green); color: #fff; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem 1rem; border-radius: 99px; margin-bottom: 1rem; }
.hero-title{
  font-size: clamp(2.8rem, 4.5vw, 4rem);

  line-height: 1;

  letter-spacing: -0.05em;

  max-width: 580px;
}
.hero-sub { font-size: 1.1rem; color: var(--green); font-weight: 600; margin: .75rem 0 1rem; }
.hero-desc { color: var(--text-muted); max-width: 480px; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-image { display: flex; justify-content: center; }
.hero-img-placeholder {
  width: 100%; max-width: 480px; aspect-ratio: 4/3;
  background: var(--green-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .9rem; border: 2px dashed var(--green);
}

/* ═══════════════════════════════════════════════
   STATS
════════════════════════════════════════════════ */
.stats-bar { background: var(--green); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-value { display: block; font-family: var(--font-head); font-size: 2.5rem; color: #fff; font-weight: 900; }
.stat-label { display: block; color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 500; margin-top: .25rem; }

/* ═══════════════════════════════════════════════
   APROPOS CARDS
════════════════════════════════════════════════ */
.apropos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.apropos-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center; transition: transform .2s, box-shadow .2s;
}
.apropos-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.apropos-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--green); }
.apropos-icon i { display: inline-block; width: 56px; height: 56px; background: var(--green-light); border-radius: 50%; line-height: 56px; text-align: center; }
.apropos-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: .75rem; }
.apropos-card p { color: var(--text-muted); font-size: .95rem; }

/* ═══════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.5rem; }
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--green); }
.team-photo-placeholder {
  width: 120px; height: 120px; border-radius: 50%; background: var(--green-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  font-size: 2rem; color: var(--green); font-weight: 700; border: 3px solid var(--green);
}
.team-card h4 { font-weight: 600; font-size: .95rem; }
.team-card p { color: var(--text-muted); font-size: .82rem; }

/* ═══════════════════════════════════════════════
   CARDS (projets / actualités)
════════════════════════════════════════════════ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-img-placeholder { height: 200px; background: var(--green-light); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .85rem; }
.card-body { padding: 1.5rem; }
.card-meta { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.card-tag { display: inline-block; background: var(--green-light); color: var(--green); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .7rem; border-radius: 99px; }
.card-date { color: var(--text-muted); font-size: .8rem; }
.card-body h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .5rem; }
.card-body h3 a:hover { color: var(--green); }
.card-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.card-link { color: var(--green); font-weight: 600; font-size: .9rem; }
.card-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════ */
.cta-section { background: var(--green); color: #fff; text-align: center; }
.cta-section h2 { font-family: var(--font-head); font-size: 2rem; color: #fff; }
.cta-section p { color: rgba(255,255,255,.85); max-width: 520px; margin: 1rem auto; }
.cta-icon { font-size: 2.5rem; margin-bottom: 1rem; color: rgba(255,255,255,.9); }
.cta-section .btn-primary { background: #fff; color: var(--green); border-color: #fff; }
.cta-section .btn-primary:hover { background: var(--green-light); border-color: var(--green-light); }

/* ═══════════════════════════════════════════════
   FORMS (contact, adhésion, don)
════════════════════════════════════════════════ */
.form-section { padding: 6rem 0; }
.form-card {
  max-width: 640px; margin: 0 auto;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem; transition: border-color .15s;
  background: var(--bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,74,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* Tarifs adhésion */
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.plan-card {
  border: 2px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; cursor: pointer; transition: border-color .15s, background .15s;
}
.plan-card.active { border-color: var(--green); background: var(--green-light); }
.plan-card .plan-price { font-family: var(--font-head); font-size: 1.8rem; color: var(--green); font-weight: 700; }
.plan-card .plan-period { font-size: .8rem; color: var(--text-muted); }

/* Montants don */
.montants-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-bottom: 1.25rem; }
.montant-btn {
  border: 2px solid var(--border); background: var(--bg); border-radius: 8px;
  padding: .75rem; font-size: .95rem; font-weight: 600; cursor: pointer; transition: .15s;
}
.montant-btn.active, .montant-btn:hover { border-color: var(--green); background: var(--green-light); color: var(--green); }

/* ═══════════════════════════════════════════════
   FLASH MESSAGES
════════════════════════════════════════════════ */
.flash-container { position: fixed; top: calc(var(--nav-h) + 1rem); right: 1rem; z-index: 2000; display: flex; flex-direction: column; gap: .5rem; }
.flash { padding: .85rem 1.5rem; border-radius: 8px; font-size: .9rem; font-weight: 500; animation: slideIn .3s ease; }
.flash-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.flash-danger  { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.flash-warning { background: #fef3c7; color: #92400e; border-left: 4px solid #f59e0b; }
.flash-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }
@keyframes slideIn { from { opacity:0; transform:translateX(20px) } to { opacity:1; transform:none } }

/* ═══════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: var(--text); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { color: #fff; font-size: 1.4rem; margin-bottom: .5rem; }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer h4 { color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.footer ul li { margin-bottom: .5rem; }
.footer ul li a { font-size: .88rem; transition: color .15s; }
.footer ul li a:hover { color: #fff; }
.social-contact-links{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.5rem;
}

.social-contact-links a{
  display:flex;
  align-items:center;
  gap:.35rem;

  color:var(--green);

  font-weight:500;
}

.social-contact-links a:hover{
  text-decoration:underline;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; margin-top: 3rem; text-align: center; font-size: .82rem; }

/* ═══════════════════════════════════════════════
   PAGE HERO (pages internes)
════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 6rem 0 4rem; margin-top: var(--nav-h); text-align: center; color: #fff;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,.8); margin-top: .75rem; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════
   HERO EXTRAS
════════════════════════════════════════════════ */
.hero-badges-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.badge-info { background: rgba(26,122,74,.1); color: var(--green); font-size: .75rem; font-weight: 600; padding: .25rem .75rem; border-radius: 99px; border: 1px solid rgba(26,122,74,.2); }
.hero-img-text { text-align: center; color: var(--text-muted); }
.hero-img-text p { margin-top: .5rem; font-weight: 600; }

/* ═══════════════════════════════════════════════
   TWO-COL LAYOUT
════════════════════════════════════════════════ */
.two-col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

/* ═══════════════════════════════════════════════
   INFO TABLE (présentation / mentions légales)
════════════════════════════════════════════════ */
.info-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.info-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: .6rem .5rem; vertical-align: top; }
.info-table td:first-child { color: var(--text-muted); font-weight: 500; width: 40%; white-space: nowrap; }
.info-table td:last-child { font-weight: 600; color: var(--text); }

/* ═══════════════════════════════════════════════
   CONTACT INFO LIST
════════════════════════════════════════════════ */
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.contact-icon-box {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--green); color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(26,122,74,.25);
}

.contact-info-item strong { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .2rem; color: var(--text); }
.contact-info-item p { color: var(--text-muted); font-size: .9rem; line-height: 1.5; }
.contact-info-item a { color: var(--green); font-weight: 500; }
.contact-info-item a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   FOOTER EXTRAS
════════════════════════════════════════════════ */
.footer-name { color: rgba(255,255,255,.9); font-weight: 600; font-size: .9rem; margin: .25rem 0; }
.footer-legal { color: rgba(255,255,255,.4); font-size: .75rem; margin-top: .5rem; }
.footer-contact-item { font-size: .85rem; margin-bottom: .35rem; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color .15s; }
.footer-contact-item a:hover { color: #fff; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-badges-row { justify-content: center; }
  .hero-image { display: none; }
  .apropos-grid, .cards-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 1rem;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .apropos-grid, .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .montants-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}



.logo-img{
  width:64px;
  height:64px;

  object-fit:cover;

  border-radius:50%;

  border:3px solid rgba(22,163,74,.12);

  background:white;

  box-shadow:
    0 4px 14px rgba(0,0,0,.08);
}



/* ======================================
   ICONES FONT AWESOME
====================================== */

.contact-icon-box{
  width:48px;
  height:48px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background:var(--green-light);

  color:var(--green);

  font-size:1.1rem;

  flex-shrink:0;

  box-shadow:
    0 4px 14px rgba(22,163,74,.10);
}

.apropos-icon i,
.cta-icon i,
.card-icon i,
.mission-icon i{
  color:var(--green);
}

.social-links i{
  font-size:1rem;
}

.btn i{
  font-size:.9rem;
}

.hero-image{
  width:100%;
  max-width:600px;

  border-radius:32px;

  overflow:hidden;

  box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.hero-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;
}


/* HERO IMAGE HOVER */

.hero-image{
  overflow:hidden;

  border-radius:32px;

  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.hero-image img{
  width:100%;

  display:block;

  transition:
    transform .6s ease,
    filter .6s ease;
}

.hero-image:hover{
  transform: translateY(-6px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.18);
}

.hero-image:hover img{
  transform: scale(1.04);

  filter: brightness(1.03);
}


/* ======================================
   HERO SLIDER
====================================== */

.hero-slider{
  position:relative;

  width:100%;
  max-width:620px;

  height: 420px;

  overflow:hidden;

  border-radius:32px;

  box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.slides{
  position:relative;

  width:100%;
  height:100%;
}

.slide{
  position:absolute;

  width:100%;
  height:100%;

  object-fit:cover;

  opacity:0;

  transition:
    opacity 1s ease,
    transform 8s ease;

  transform:scale(1);
}

.slide.active{
  opacity:1;

  transform:scale(1.05);
}

.hero-inner{
  display:grid;

  grid-template-columns:
    1fr 1.2fr;

  gap:5rem;

  align-items:center;
}

.hero-image img,
.hero-slider img{
  width:100%;

  height:100%;

  object-fit:cover;

  display:block;
}



.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.team-card-modern {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  transition: .3s ease;
}

.team-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.team-photo-wrap {
  height: 220px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-modern .team-photo,
.team-card-modern .team-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  object-fit: cover;
}

.team-card-modern .team-photo-placeholder {
  font-size: 3rem;
  color: var(--green);
  background: var(--green-light);
}

.team-card-body {
  padding: 1.4rem;
}

.team-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.team-card-body p {
  color: var(--green);
  font-weight: 600;
}

.team-photo-wrap{
  height:260px;

  overflow:hidden;

  border-bottom:
    1px solid var(--border);
}

.team-photo{
  width:100%;

  height:100%;

  object-fit:cover;

  object-position:center top;

  display:block;
}

.social-links a{
  display:flex;
  align-items:center;
  gap:.5rem;
}



/* RESET TEAM MODERN */
.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
}

.team-card-modern {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: .3s ease;
}

.team-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.team-photo-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--green-light);
  border-bottom: 1px solid var(--border);
}

.team-card-modern .team-photo,
.team-card-modern .team-photo-placeholder {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  border: none !important;
  object-fit: cover;
  object-position: center top;
}

.team-card-modern .team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 3rem;
  font-weight: 700;
}

.team-card-body {
  padding: 1.4rem;
}

.team-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.team-card-body p {
  color: var(--green);
  font-weight: 600;
}

/* ================================
   BUREAU FINAL — SANS CONFLIT
================================ */

.bureau-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap:1.8rem !important;
}

.bureau-card{
  background:#fff !important;
  border:1px solid var(--border) !important;
  border-radius:24px !important;
  overflow:hidden !important;
  text-align:left !important;
  box-shadow:0 10px 30px rgba(0,0,0,.06) !important;
  transition:.3s ease !important;
}

.bureau-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,.1) !important;
}

.bureau-photo{
  width:100% !important;
  height:280px !important;
  background:var(--green-light) !important;
  overflow:hidden !important;
}

.bureau-photo img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center top !important;
  display:block !important;
  border-radius:0 !important;
  border:none !important;
  margin:0 !important;
}

.bureau-photo span{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:3rem;
  color:var(--green);
  font-weight:700;
}

.bureau-info{
  padding:1.4rem !important;
}

.bureau-info h4{
  font-size:1.05rem !important;
  margin-bottom:.35rem !important;
}

.bureau-info p{
  color:var(--green) !important;
  font-weight:600 !important;
}



/* ═══════════════════════════════════════════════
   HERO PLEIN ÉCRAN — OVERRIDE
════════════════════════════════════════════════ */

/* Le hero plein écran remplace complètement le hero standard */
.hero-fullscreen {
  position: relative !important;
  height: 100vh !important;
  min-height: 600px !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

/* Les slides occupent tout l'espace */
.hero-slides {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.hero-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  transition: opacity 1.2s ease !important;
}

.hero-slide.active { opacity: 1 !important; }

.hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-width: none !important;
  animation: kenBurns 8s ease forwards !important;
}

/* Overlay */
.hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(
    135deg,
    rgba(10,50,28,.85) 0%,
    rgba(26,122,74,.55) 50%,
    rgba(10,50,28,.75) 100%
  ) !important;
}

/* Contenu centré */
.hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding: 0 2rem !important;
}

/* Navigation dots */
.hero-nav {
  position: absolute !important;
  bottom: 2rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 3 !important;
  display: flex !important;
  gap: .6rem !important;
  align-items: center !important;
}

.hero-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 99px !important;
  background: rgba(255,255,255,.4) !important;
  cursor: pointer !important;
  transition: all .3s !important;
  border: none !important;
  padding: 0 !important;
}

.hero-dot.active {
  background: #fff !important;
  width: 28px !important;
}

/* Barre progression */
.hero-progress {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  z-index: 3 !important;
  background: rgba(255,255,255,.15) !important;
}

.hero-progress-bar {
  height: 100% !important;
  background: #4ade80 !important;
}

/* Flèche scroll */
.hero-scroll {
  position: absolute !important;
  bottom: 4rem !important;
  right: 3rem !important;
  z-index: 3 !important;
  color: rgba(255,255,255,.6) !important;
  font-size: 1.5rem !important;
  cursor: pointer !important;
}

@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes slideProgress {
  from { width: 0% }
  to   { width: 100% }
}

@media (max-width: 768px) {
  .hero-fullscreen { height: 100svh !important; }
  .hero-content { padding: 0 1.5rem !important; }
  .hero-scroll { display: none !important; }
}