:root {
  /* Deep Green Palette */
  --deep-green:  #081617;
  --green:       #10292B;
  --green-light: #17393C;

  /* Gold Palette */
  --gold:        #C9A86A;
  --gold-soft:   #D8BB84;
  --gold-dark:   #A8874E;
  --white:       #F8F8F6;
  --bg-light:    #FFFDF9;
  --bg-ivory:    #FBF7F1;
  --bg-sand:     #F5F0E6;

  --gradient-gold: linear-gradient(135deg, #A8874E 0%, #C9A86A 50%, #E0C48D 100%);

  --font-disp:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  
  --shadow-s:    0 4px 20px rgba(0,0,0,0.3);
  --shadow-m:    0 10px 40px rgba(0,0,0,0.4);
  --shadow-l:    0 20px 60px rgba(0,0,0,0.5);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--deep-green);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

p {
  text-align: justify;
}

/* ── PATTERNS ─────────────────────────────────────── */
.pat-losange {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 3L45 24L24 45L3 24Z' fill='none' stroke='%23C9A86A' stroke-opacity='0.1' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}

.pat-kente {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='16' height='16' fill='%23C9A86A' fill-opacity='0.05'/%3E%3Crect x='16' y='16' width='16' height='16' fill='%23C9A86A' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 32px 32px;
}

.pat-chevron {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='24' viewBox='0 0 40 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24L20 4L40 24' fill='none' stroke='%23C9A86A' stroke-opacity='0.15' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 40px 24px;
}

.pat-wave {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='20' viewBox='0 0 60 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10Q15 0 30 10Q45 20 60 10' fill='none' stroke='%23C9A86A' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 20px;
}

.pat-dot {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1.2' fill='%23C9A86A' fill-opacity='0.15'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}

/* ── NAVIGATION ────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Priorité absolue sur les overlays du hero */
  padding: 1rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

#nav.scrolled {
  background: rgba(8, 22, 23, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 168, 106, 0.1), var(--shadow-s);
  padding: 0.7rem 6%;
  border-bottom: 1px solid var(--gold);
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(1.1) contrast(1.05); /* Améliore le contraste et la luminosité */
  transition: height 0.3s ease;
}

.hero-projects-page {
  padding: 0;
  min-height: 60vh; 
  align-items: flex-start !important; /* Force l'alignement en haut pour éviter que le centrage vertical ne pousse le contenu sous le menu fixe */
}

.hero-projects-page .hero-inner {
  grid-template-columns: 1fr;
  padding-top: 8rem; /* Espace de sécurité pour la navbar fixe (~100px) */
  align-items: flex-start;
  flex-grow: 1; /* Permet au contenu interne de prendre l'espace vertical disponible */
  padding-bottom: 5rem;
}

#nav.scrolled .logo-img {
  height: 72px;
}

.logo-mark {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  color: rgba(255,255,255,0.82);
}

.nav-links a:hover {
  color: var(--gold);
}

.btn-nav {
  background: var(--gold);
  color: var(--deep-green);
  padding: 0.62rem 1.5rem;
  border-radius: 2px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(201,168,106,0.15);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-nav:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201,168,106,0.25);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
/* ... suite de la restructuration du CSS ... */

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}

/* Hero Slider */
.hero-slider-wrapper {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,22,23,0.9) 0%, rgba(16,41,43,0.7) 55%, rgba(23,57,60,0.4) 100%);
  z-index: 1; /* Ensure it's above the slider images but below other hero content */
}

.hero-slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3; /* Above everything else */
  display: flex;
  gap: 0.75rem;
}

.hero-slider-nav .dot {
  width: 10px; height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%; cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero-slider-nav .dot.active { background-color: var(--gold); transform: scale(1.2); }

.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events: none;
}
.hero-accent-line {
  position: absolute; top: 120px; right: 15%; width: 2px; height: calc(100% - 120px);
  background: linear-gradient(to bottom, transparent 0%, var(--gold-dark) 25%, var(--gold) 75%, transparent);
  z-index: 2; 
}
.hero-geo {
  position: absolute; bottom: -1px; right: 0; width: 45%; height: 55%;
  background: linear-gradient(135deg, transparent 49%, var(--deep-green) 50%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative; z-index: 10;
  width: 100%; padding: 0 6%; padding-top: 5rem;
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 2rem;
}
.ey-line { width: 36px; height: 1.5px; background: var(--gold); }
.ey-txt {
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 500;
}
.hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.02;
  color: var(--white); margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-projects-page h1 {
  max-width: 900px;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(248,248,246,0.8);
  max-width: 500px; line-height: 1.75; font-weight: 300; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-gold); color: var(--deep-green); text-decoration: none;
  padding: 1rem 2.2rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; border-radius: 2px;
  border: none; transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(168,135,78,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 14px 40px rgba(168,135,78,0.45);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); color: var(--white); text-decoration: none;
  padding: 1rem 2.2rem; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase; border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.35); transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-avatars { display: flex; }
.trust-av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--deep-green);
  font-family: var(--font-disp); margin-left: -8px;
}
.trust-av:first-child { margin-left: 0; }
.trust-txt { font-size: 0.78rem; color: rgba(248,248,246,0.75); line-height: 1.4; }
.trust-txt strong { display: block; color: var(--gold-soft); font-weight: 600; }

.hero-card {
  background: var(--green); border-radius: 4px;
  box-shadow: var(--shadow-l);
  overflow: hidden; position: relative;
  border: 1px solid rgba(201,168,106,0.1);
}
.hero-card-head {
  background: var(--green-light); padding: 1.25rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hch-title { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 500; }
.hch-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-card-body { padding: 1.75rem; }
.hcb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.hcb-num {
  font-family: var(--font-disp); font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.hcb-num .unit, .stat-num .unit, .ms-n .unit {
  font-size: 0.6em;
  margin-left: 2px;
  vertical-align: baseline;
  font-weight: 400;
}
.hcb-lbl { font-size: 0.7rem; color: rgba(248,248,246,0.6); margin-top: 2px; line-height: 1.4; font-weight: 400; }
.hcb-div { height: 1px; background: rgba(255,255,255,0.05); margin-bottom: 1.25rem; }
.hcb-flags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.f-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(201,168,106,0.05); border: 1px solid rgba(201,168,106,0.2);
  padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; color: var(--gold);
  font-weight: 500;
}
.hcb-cta {
  display: block; margin-top: 1.25rem; text-align: center;
  background: var(--gold); color: var(--deep-green); text-decoration: none;
  padding: 0.85rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px;
  transition: background 0.3s; box-shadow: 0 4px 14px rgba(201,168,106,0.3);
}
.hcb-cta:hover { background: var(--gold-soft); }

/* ── TRUST CINEMATIC ──────────────────────────────── */
.trust-cinematic {
  position: relative;
  padding: 2rem 5% 4.5rem;
  background: #0B1617;
  color: var(--white);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-l);
}

.trust-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,22,23, 0.95) 0%, rgba(16,41,43, 0.85) 100%);
  z-index: 1;
}
.trust-overlay::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 3L45 24L24 45L3 24Z' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}

.trust-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-card {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--shadow-l);
}

.trust-card .icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }
.trust-card h3 { font-family: var(--font-disp); font-size: 1.6rem; font-weight: 700; color: var(--gold-soft); margin-bottom: 0.8rem; }
.trust-card p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; font-weight: 300; }

.trust-cinematic .rule { background: var(--white); }

/* ── COMMUN SECTIONS ──────────────────────────────── */
section { padding: 4.5rem 6%; position: relative; }
.sec-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.t-line { width: 28px; height: 1.5px; background: var(--gold); }
.t-txt { font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.sec-title {
  font-family: var(--font-disp); font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700; color: var(--white); line-height: 1.1; letter-spacing: -0.01em;
}
.sec-title em { font-style: italic; color: var(--gold); font-weight: 400; }

/* Overrides pour sections claires (About, Services, Projects, Contact) */
.about .sec-title, .services .sec-title, .projects .sec-title, .immobilier .sec-title, .contact h2 {
  color: var(--deep-green);
}
.about .sec-title em, .services .sec-title em, .projects .sec-title em, .immobilier .sec-title em, .contact h2 em {
  color: var(--gold-dark);
}
.about .body-t, .services .body-t, .projects .body-t, .immobilier .body-t, .contact .con-l > p {
  color: var(--deep-green);
  opacity: 0.85;
}

.sec-title.light { color: var(--white); }
.sec-title.light em { color: var(--gold-soft); }
.rule { width: 44px; height: 2.5px; background: var(--gold); margin: 1.25rem 0; border-radius: 2px; }
.body-t { font-size: 0.95rem; color: rgba(248,248,246,0.7); line-height: 1.8; font-weight: 300; }
.body-t.light { color: var(--white); }

/* ── À PROPOS ─────────────────────────────────────── */
.about {
  background: var(--bg-ivory); overflow: hidden;
  color: var(--deep-green);
}
.about::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 3L45 24L24 45L3 24Z' fill='none' stroke='%23C9A86A' stroke-opacity='0.1' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}
.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 7rem; 
  align-items: start; 
  position: relative; 
  z-index: 1; 
}

.about-photo {
  position: relative;
  border-radius: 4px;
  overflow: visible; /* Permet au badge de déborder légèrement */
  box-shadow: var(--shadow-l);
  aspect-ratio: 4/5;
  width: 90%;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 22, 23, 0.2), transparent);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 3rem;
  right: -3rem;
  background: var(--gold);
  padding: 2.5rem;
  max-width: 260px;
  box-shadow: var(--shadow-m);
  z-index: 2;
}

.about-badge h3 {
  font-family: var(--font-disp);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-badge p {
  font-size: 0.85rem;
  color: var(--deep-green);
  font-weight: 600;
  line-height: 1.4;
}
.av-badge-txt {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(8,22,23,0.7); font-weight: 500; text-align: center; padding: 0 8px; line-height: 1.4;
}
.av-vignette {
  position: absolute; top: 2rem; right: -3rem;
  background: var(--white); border-radius: 3px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-m); min-width: 140px; border: 1px solid rgba(201,168,106,0.1);
}
.av-vign-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.35rem; }
.av-vign-val { font-family: var(--font-disp); font-size: 1.5rem; font-weight: 700; color: var(--deep-green); line-height: 1; }
.av-vign-sub { font-size: 0.7rem; color: var(--deep-green); opacity: 0.6; margin-top: 2px; }
.av-deco { position: absolute; top: 20%; left: -1.5rem; width: 2px; height: 50%; background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-dark) 60%, transparent 100%); border-radius: 2px; }
.val-list { 
  margin-top: 2.5rem; 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 0.75rem; 
}
.vl { 
  display: flex; align-items: center; gap: 1rem; padding: 0.85rem; 
  border-radius: 3px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
  cursor: default; border: 1px solid transparent;
}
.vl:hover { 
  background: rgba(201,168,106,0.08); 
  transform: translateX(8px);
  border-color: rgba(201,168,106,0.15);
}
.vl-ico {
  width: 42px; height: 42px; border-radius: 3px; flex-shrink: 0;
  background: rgba(201,168,106,0.05); border: 1.5px solid rgba(201,168,106,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: all 0.3s;
  color: var(--gold);
}
.vl-ico i, .vl-ico svg { width: 18px; height: 18px; stroke-width: 2.2px; }
.vl:hover .vl-ico { background: var(--gold); border-color: var(--gold); color: var(--deep-green); }
.vl-name { font-size: 0.9rem; font-weight: 600; color: var(--deep-green); flex: 1; }
.vl-name strong { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); margin-bottom: 2px; }
.vl-desc { font-size: 0.76rem; color: var(--deep-green); opacity: 0.6; text-align: right; max-width: 170px; line-height: 1.4; }

/* ── CHIFFRES / STATS ─────────────────────────────── */
.stats-bar {
  background: var(--green-light); padding: 4rem 6%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,168,106,0.1);
  border-bottom: 1px solid rgba(201,168,106,0.1);
}
.stats-bar::before {
  content: '';  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='30' viewBox='0 0 60 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30L30 0L60 30' fill='none' stroke='%23C9A86A' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 30px;
}
.stat-item {
  text-align: center; padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-disp); font-size: 3.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.stat-lbl { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 500; }
.stat-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 300; }

/* ── SERVICES ─────────────────────────────────────── */
.services {
  background: var(--bg-sand);
}
.services::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='24' viewBox='0 0 40 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24L20 4L40 24' fill='none' stroke='%23C9A86A' stroke-opacity='0.1' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 40px 24px;
}
.srv-header {
  display: grid; grid-template-columns: 1fr auto; align-items: flex-end;
  margin-bottom: 3.5rem; position: relative; z-index: 1;
}
.srv-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.srv-card {
  background: var(--green); border-radius: 4px;
  box-shadow: var(--shadow-s); padding: 2.25rem 1.75rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.4s ease;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  width: auto !important;
  max-width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.05);
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-bottom-color: var(--gold);
  border-color: rgba(201,168,106,0.3);
}
.srv-card:hover::before { transform: scaleX(1); }
.srv-card::after {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  transform: translateY(-22%) rotate(-6deg);
  font-family: var(--font-disp);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(
    180deg,
    rgba(201,168,106,0.18) 0%,
    rgba(201,168,106,0.03) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.3px);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.srv-card:hover::after {
  transform:
    translateY(-22%)
    rotate(-6deg)
    scale(1.08)
    translateX(-10px);
}

.srv-card > * {
  position: relative;
  z-index: 1;
}

.srv-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.srv-ico { color: var(--gold); margin-bottom: 0; }

.srv-name {
  font-family: var(--font-disp);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.4rem;
  max-width: 80%;
}
.srv-desc { font-size: 0.82rem; color: rgba(248,248,246,0.6); line-height: 1.6; margin-bottom: 0.75rem; font-weight: 300; flex-grow: 1; }

.srv-features {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-left: 0;
}
.srv-features li {
  font-size: 0.82rem;           /* Identique à .srv-desc */
  font-weight: 300;            /* Identique à .srv-desc */
  line-height: 1.55;           /* Identique à .srv-desc */
  color: var(--gold-soft);     /* Doré pour renforcer l'identité premium */
  margin-bottom: 0.35rem;       /* Meilleur espacement vertical */
  padding-left: 1.2rem;
  position: relative;
}
.srv-features li::before {
  content: '•';
  color: var(--gold);          /* Bullet doré */
  position: absolute;
  left: 0;
  font-weight: 400; /* Puce légère pour un rendu architectural */
}

.srv-header-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  max-width: 250px;
  text-align: right;
  font-weight: 300;
  line-height: 1.7;
}

.srv-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; font-weight: 600;
  transition: transform 0.2s ease, gap 0.3s;
}
.srv-link:hover { transform: translateX(4px); gap: 12px; }

.srv-link i, .srv-link svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
}

/* SAFETY FIX */
.services .srv-grid {
  display: grid !important;
}
.services .srv-card {
  flex: unset !important;
}

/* ── TRANSITION PROJETS (BREAK SECTION) ───────────── */
.proj-transition {
  background: #081617;
  padding: 3.5rem 6%;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 106, 0.1);
  border-bottom: 1px solid rgba(201, 168, 106, 0.1);
}

.proj-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23C9A86A' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  pointer-events: none;
}

.proj-transition::after {
  content: 'BSI';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-disp);
  font-size: 30vw;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.02;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.proj-trans-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.proj-transition .sec-tag { justify-content: center; margin-bottom: 2rem; }
.proj-transition .sec-title { color: var(--white) !important; font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom: 1.5rem; }
.proj-transition .sec-title em { color: var(--gold) !important; }
.proj-transition .body-intro { color: rgba(255,255,255,0.6); font-size: 1.1rem; font-weight: 300; line-height: 1.8; max-width: 520px; margin: 0 auto; }

/* ── PROJETS ──────────────────────────────────────── */
.projects { background: var(--bg-ivory); position: relative; padding: 6rem 6% 8rem; }
.projects::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1' fill='%23C9A86A' fill-opacity='0.1'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}

.projects-catalog {
  padding-top: 3rem;
  background: var(--bg-ivory);
  position: relative;
}

.projects-search-overlay {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  margin-left: 6%;
  margin-right: 6%;
  background: var(--green);
}

.proj-sub-section { margin-bottom: 6rem; }
.proj-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; position: relative; z-index: 1;
}
.proj-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto;
  gap: 1.5rem; position: relative; z-index: 1;
}
.pc { 
  position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; 
  box-shadow: var(--shadow-s); border: 1px solid rgba(255,255,255,0.05);
  background: var(--green); /* Fond cohérent pour les infos sous image */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pc.feat { grid-row: span 2; }
.pb {
  width: 100%; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.pb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ── PARTENAIRES ──────────────────────────────────── */
.partners-section {
  background: var(--green);
  padding: 4rem 6%;
  border-top: 1px solid rgba(201, 168, 106, 0.1);
  border-bottom: 1px solid rgba(201, 168, 106, 0.1);
  overflow: hidden;
}

.partners-head {
  margin-bottom: 2.5rem;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}

/* Masques dégradés avec effet de flou gaussien pour une transition premium */
.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.partners-slider::before {
  left: 0;
 background: linear-gradient(to right, var(--green) 5%, rgba(16, 41, 43, 0.4) 60%, transparent 100%);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--green) 5%, rgba(16, 41, 43, 0.4) 60%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scrollLogos 40s linear infinite;
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 3rem)); }
}

.partner-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
}

.partner-logo {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.45;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-item:hover .partner-logo {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.08);
}

.pc:hover .pb img {
  transform: scale(1.05);
}

/* ── SKELETON LOADER ──────────────────────────────── */
.skeleton-item {
  pointer-events: none;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--green);
  border-radius: 4px;
  overflow: hidden;
}

.skeleton-shimmer {
  background: linear-gradient(
    90deg,
    var(--green-light) 25%,
    rgba(201, 168, 106, 0.05) 50%,
    var(--green-light) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite linear;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-line {
  height: 12px;
  margin-bottom: 10px;
  border-radius: 2px;
}

/* ── PROJECT DETAILS PAGE ─────────────────────────── */
.project-details-content {
  background: var(--bg-ivory);
  padding: 6rem 6%;
}

.project-main-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 5rem;
  align-items: start;
}

.project-info-sidebar {
  background: var(--green);
  padding: 2.5rem;
  border-radius: 4px;
  border-top: 4px solid var(--gold);
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-m);
}

.sidebar-stat {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.sidebar-stat:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.sidebar-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
}

.sidebar-value {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.project-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

.spec-list-title {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--deep-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-s); height: 350px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-column: span 8; }
.gallery-item.tall { grid-column: span 4; }

@media (max-width: 900px) {
  .project-main-grid { grid-template-columns: 1fr; gap: 3rem; }
  .project-info-sidebar { position: static; }
  .project-specs-grid { grid-template-columns: 1fr; }
  .gallery-item.large, .gallery-item.tall { grid-column: span 12; height: 250px; }
}

/* --- Project Detailed Page Navigation --- */
.project-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.project-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.breadcrumb .active {
  color: var(--gold);
  font-weight: 700;
}

/* Correction spécifique pour la page projet-detaille.html */
.project-details-page .hero-inner {
  padding-top: 8rem; /* Espace suffisant pour le breadcrumb sous la navbar */
  align-items: flex-start !important;
}

.project-details-page .breadcrumb {
  margin-bottom: 1rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-back i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-back:hover {
  background: var(--gold);
  color: var(--deep-green);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201, 168, 106, 0.25);
  transform: translateX(-5px);
}

.btn-back:hover i {
  transform: translateX(-4px);
}

.btn-back.dark {
  background: var(--green);
  border: 1px solid rgba(201, 168, 106, 0.4);
  color: var(--gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-back.dark:hover {
  background: var(--green-light);
  color: var(--gold-soft);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(-5px);
}

@media (max-width: 640px) {
  .project-details-page .hero-inner { padding-top: 11rem; padding-bottom: 4rem; }
  .project-details-content { padding: 4rem 6%; }
  .project-specs-grid { gap: 2rem; }
  .project-footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .project-nav-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .btn-back {
    width: 100%;
    justify-content: center;
  }
}

/* Utilitaire pour le filtrage : priorité absolue pour masquer les projets */
.pc.is-filtered, .ongoing-card.is-filtered, .prop-card.is-filtered {
  display: none !important;
}

/* ── PAGINATION ────────────────────────────────────── */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.pagination-btn {
  background: var(--green);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.6rem;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--deep-green);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.pagination-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 0.75rem;
}

.page-number {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: var(--green-light);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.page-number.active {
  background: var(--gold);
  color: var(--deep-green);
  border-color: var(--gold);
}

.page-number:hover:not(.active) {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.1);
}
/* Correction de la couleur du texte body-t sur fond sombre dans les cartes projets */
.projects .pc .ongoing-info .body-t {
  color: rgba(248,248,246,0.8); /* Blanc avec 80% d'opacité pour une meilleure lisibilité sur fond vert foncé */
}

.p-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,22,23,0.95) 0%, rgba(8,22,23,0.4) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.p-cat { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; font-weight: 600; }
.p-name { font-family: var(--font-disp); font-size: 1.7rem; font-weight: 700; color: #FFFFFF; line-height: 1.1; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.p-meta { display: flex; gap: 0.6rem; font-size: 0.7rem; color: rgba(255,255,255,0.7); flex-wrap: wrap; }
.ps { color: var(--gold-dark); opacity: 0.4; }
.p-tag-badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: var(--gold); color: var(--deep-green);
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; font-weight: 600; z-index: 2;
}

/* ── PROJETS EN COURS ──────────────────────────────── */
.proj-sub-header {
  margin-top: 0;
  margin-bottom: 2rem;
}

.sub-title {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-green);
}

.sub-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.proj-ongoing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.ongoing-card {
  background: var(--green);
  padding: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 4px solid var(--gold-dark);
  transition: transform 0.3s;
}

.ongoing-carousel {
  position: relative;
  width: 100%;
  background: #000;
}

.carousel-viewer {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.main-img-wrap {
  width: 100%; height: 100%;
  overflow: hidden;
}

.carousel-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
}

.ongoing-card:hover .carousel-main-img {
  transform: scale(1.08);
}

.carousel-nav {
  position: absolute; inset: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 1rem; z-index: 5; pointer-events: none;
}

.c-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(8, 22, 23, 0.6); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  pointer-events: all; transition: all 0.3s; backdrop-filter: blur(4px);
}
.c-nav-btn:hover { background: var(--gold); color: var(--deep-green); border-color: var(--gold); }

.carousel-thumbs {
  display: flex; gap: 8px; padding: 12px;
  background: var(--green); overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}
.carousel-thumbs::-webkit-scrollbar { display: none; }

.thumb {
  flex: 0 0 70px; aspect-ratio: 1; border-radius: 2px;
  overflow: hidden; cursor: pointer; opacity: 0.5;
  border: 2px solid transparent; transition: all 0.3s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { opacity: 1; border-color: var(--gold); }
.thumb:hover { opacity: 1; }

.proj-header {
  margin-bottom: 2rem;
}

.ongoing-card:hover { transform: translateY(-5px); }

.ongoing-info {
  padding: 1.5rem 2rem;
}

.ongoing-name {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.4rem 0 0.8rem;
}

.progress-wrap {
  width: 100%;
  max-width: 280px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.progress-bar { height: 100%; background: var(--gradient-gold); border-radius: 10px; }
.progress-txt { font-size: 0.72rem; color: rgba(248,248,246,0.6); font-weight: 500; }

.ongoing-badge {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,106,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

/* ── IMMOBILIER ────────────────────────────────────── */
.immobilier { background: var(--bg-sand); }

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.prop-card {
  background: var(--green);
  border-radius: 4px;
  box-shadow: var(--shadow-s);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.prop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-m); }

.prop-visual { position: relative; height: 240px; overflow: hidden; }
.prop-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.prop-card:hover .prop-visual img { transform: scale(1.08); }

.prop-badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  padding: 6px 12px; border-radius: 2px; font-size: 0.65rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; z-index: 2;
}
.prop-badge.rental { background: var(--gold); color: var(--deep-green); }
.prop-badge.sale { background: var(--gold-dark); color: var(--white); }

.prop-info { 
  padding: 1.75rem; 
  display: flex; 
  flex-direction: column; 
  flex-grow: 1; 
}

.prop-name {
  font-family: var(--font-disp); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin: 0.5rem 0 1rem; line-height: 1.2;
}

.prop-price {
  font-size: 1.15rem; font-weight: 700; color: var(--gold-dark);
  margin-bottom: 1.25rem; display: flex; align-items: baseline; gap: 4px;
}
.prop-price span { font-size: 0.75rem; color: rgba(248,248,246,0.5); font-weight: 400; }

.prop-specs {
  display: flex; justify-content: space-between;
  padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto; /* Pousse les specs et le bouton vers le bas pour l'alignement */
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: rgba(248,248,246,0.7); font-weight: 500;
}
.spec-item i { width: 14px; height: 14px; color: var(--gold); stroke-width: 2; }

/* Projects Catalog Grid for projets.html */
.projects-catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 3rem;
}

/* Standardisation de l'affichage des infos projets (PC = Project Card) */
.pc-info {
  background: transparent;
  border: none;
  padding: 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.pc-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.5rem;
}

.pc-spec-item {
  flex: 1;
  min-width: 140px;
}

.pc-spec-item .ey-txt {
  font-size: 0.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.pc-spec-item p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(248, 248, 246, 0.6);
  font-weight: 300;
  text-align: left;
  flex-grow: 1;
}

/* Filter Bar */
.filter-bar-wrapper {
  background: var(--green);
  padding: 2rem 6%;
  border-radius: 4px;
  box-shadow: var(--shadow-s);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-search-bar {
  margin-top: 3rem;
  margin-bottom: 0;
  background: rgba(16, 41, 43, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 106, 0.2);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  background: rgba(16, 41, 43, 0.85); /* Vert profond transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 106, 0.25); /* Bordure dorée subtile */
  box-shadow: var(--shadow-m);
  margin-bottom: 4rem;
}

.filter-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0 1.25rem;
  height: 52px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  appearance: none; /* Remove default arrow */
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  flex: 1 1 auto; /* Allow items to grow and shrink */
  min-width: 150px; /* Minimum width for select boxes */
}

.filter-select:focus {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201,168,106,0.1);
}

.filter-select option {
  background: var(--green);
  color: var(--white);
}

.btn-clear-filters {
  background: var(--gold);
  color: var(--deep-green);
  padding: 0 2rem;
  height: 52px;
  border: none;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  flex-shrink: 0; /* Prevent button from shrinking */
}

.btn-clear-filters:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.btn-prop {
  display: block; text-align: center; width: 100%;
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); padding: 0.8rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; text-decoration: none; border-radius: 2px;
  transition: all 0.3s;
}
.btn-prop:hover { background: var(--gold); color: var(--deep-green); }

@media (max-width: 1024px) {
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .prop-grid { grid-template-columns: 1fr; }
}

/* ── PRÉSENCE ─────────────────────────────────────── */
.presence {
  background: var(--deep-green); position: relative;
}
.presence::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 3L45 24L24 45L3 24Z' fill='none' stroke='%23C9A86A' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}
.pres-head { max-width: 600px; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.pres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.pres-card {
  background: var(--green); border-radius: 4px; padding: 2.5rem 2rem;
  box-shadow: var(--shadow-s); position: relative; overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: all 0.4s; border-left: 4px solid transparent; border: 1px solid rgba(255,255,255,0.05);
}
.pres-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-left-color: var(--gold); border-color: rgba(201,168,106,0.2); }
.pres-card::after {
  content: ''; position: absolute;
  bottom: -2rem; right: -2rem; width: 140px; height: 140px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.03; pointer-events: none; z-index: 0;
}
.pres-flag { 
  width: 48px; height: 32px; object-fit: cover;
  margin-bottom: 1.5rem; 
  display: block; 
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.pres-country { font-family: var(--font-disp); font-size: 1.7rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.pres-city { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-weight: 600; }
.pres-desc { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 400; margin-bottom: 1.75rem; flex-grow: 1; }
.pres-count {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--gold-dark); font-weight: 600;
  background: rgba(201,168,106,0.1); border: 1px solid rgba(201,168,106,0.2);
  padding: 6px 14px; border-radius: 20px;
}
.pres-count::before { content: ''; width: 18px; height: 1.5px; background: var(--gold); }

/* ── POURQUOI NOUS ────────────────────────────────── */
.why { background: var(--green); overflow: hidden; }
.why::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='30' viewBox='0 0 60 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30L30 0L60 30' fill='none' stroke='%23C9A86A' stroke-opacity='0.04' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 60px 30px;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; position: relative; z-index: 1; }

.why .t-line { background: var(--gold-soft); }
.why .t-txt { color: var(--gold-soft); }

.trust-cinematic .t-line { background: var(--white); }
.trust-cinematic .t-txt { color: var(--white); }

.wf {
  display: grid; grid-template-columns: 52px 1fr; gap: 1.25rem;
  padding: 1.5rem 1rem; border-radius: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.12); align-items: start;
  transition: background 0.3s, padding-left 0.3s;
}
.wf:hover { background: rgba(255,255,255,0.07); padding-left: 1.5rem; }
.wf-n {
  font-family: var(--font-disp); font-size: 1.7rem; font-weight: 700;
  color: rgba(255,255,255,0.2); line-height: 1; transition: color 0.3s; }
.wf:hover .wf-n { color: var(--gold); }
.wf-h { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.wf-p { font-size: 0.82rem; color: rgba(248,248,246,0.6); line-height: 1.65; font-weight: 300; }

.testi {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px; padding: 2.5rem; margin-bottom: 1.5rem;
  position: relative;
}
.testi::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2L38 20L20 38L2 20Z' fill='none' stroke='%23C9A86A' stroke-opacity='0.05' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 40px 40px; border-radius: 4px;
}
.q-mark { font-family: var(--font-disp); font-size: 5rem; color: var(--gold); opacity: 0.35; line-height: 0.8; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.q-text { font-family: var(--font-disp); font-size: 1.15rem; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 1.75rem; position: relative; z-index: 1; }
.q-auth { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); position: relative; z-index: 1; }
.av { width: 46px; height: 46px; background: var(--gold-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 1rem; font-weight: 700; color: var(--deep-green); flex-shrink: 0; }
.an { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.at { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ms {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px; padding: 1.5rem 1.25rem; text-align: center;
  transition: background 0.3s;
}
.ms:hover { background: rgba(255,255,255,0.18); }
.ms-n { font-family: var(--font-disp); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.ms-l { font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 5px; }

/* ── SLIDER TÉMOIGNAGES ────────────────────────────── */
.testi-slider-wrapper { position: relative; width: 100%; }
.testi-slider { position: relative; min-height: 250px; }
.testi-slide { 
  position: absolute; top: 0; left: 0; width: 100%; 
  opacity: 0; visibility: hidden; transition: opacity 0.6s ease, visibility 0.6s ease; 
}
.testi-slide.active { opacity: 1; visibility: visible; position: relative; }
.testi-nav { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.testi-dot { 
  width: 10px; height: 10px; border-radius: 50%; 
  background: rgba(255, 255, 255, 0.2); cursor: pointer; transition: all 0.3s ease; 
}
.testi-dot.active { background: var(--gold); transform: scale(1.2); }

/* ── CTA PRINCIPAL ────────────────────────────────── */
.cta-section {
  background: linear-gradient(rgba(8, 22, 23, 0.8), rgba(8, 22, 23, 0.8)), 
              url('../img/hero/cta-bg.jpeg') no-repeat center center / cover;
  padding: 0 6%; 
  position: relative; 
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='24' r='16' fill='none' stroke='%23C9A86A' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}
.cta-inner {
  background: var(--green-light);
  background: transparent;
  border-radius: 6px; padding: 5rem 5rem; text-align: center;
  position: relative; overflow: hidden; z-index: 1;
  box-shadow: var(--shadow-l); margin: 5rem 0; border: 1px solid rgba(201,168,106,0.2);
  box-shadow: none; margin: 5rem 0; border: none;
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 20L55 40L30 55L5 40L5 20Z' fill='none' stroke='%23C9A86A' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.cta-inner::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(201,168,106,0.03); border-radius: 50%;
}
.cta-inner h2 {
  font-family: var(--font-disp); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; color: var(--white); line-height: 1.08;
  margin-bottom: 1rem; letter-spacing: -0.01em;
}
.cta-inner h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
.cta-inner p { font-size: 1rem; color: rgba(248,248,246,0.6); max-width: 420px; margin: 0 auto 2.5rem; font-weight: 300; }
.btn-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-gold); color: var(--deep-green); text-decoration: none;
  padding: 1rem 2.5rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.35s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(168,135,78,0.4); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #FFFFFF; text-decoration: none;
  padding: 1rem 2.5rem; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase; border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.4); transition: all 0.35s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* ── CONTACT ──────────────────────────────────────── */
.contact {
  background: var(--bg-light); display: grid;
  grid-template-columns: 1fr 1.2fr; gap: 7rem; align-items: start;
}
.contact::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 3L45 24L24 45L3 24Z' fill='none' stroke='%23C9A86A' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 48px 48px;
}
.con-l { display: flex; flex-direction: column; align-items: flex-start; }
.con-l h2 { font-family: var(--font-disp); font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 700; color: var(--deep-green); line-height: 1.05; margin: 0.5rem 0 0; letter-spacing: -0.015em; position: relative; }
.con-l h2::after { content: ''; position: absolute; bottom: -12px; left: 0; width: 0; height: 4px; background: var(--gradient-gold); transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1); border-radius: 2px; }
.con-l h2:hover::after { width: 100px; }
.con-l .rule { margin: 1.5rem 0 2rem 0; width: 60px; height: 3px; }
.con-l > p { font-size: 1.05rem; color: var(--deep-green); opacity: 0.8; line-height: 1.7; font-weight: 300; margin-bottom: 3rem; max-width: 520px; }
.con-l .val-list { margin-top: 0; width: 100%; }
.form-wrap {
  background: var(--green); border-radius: 4px;
  box-shadow: var(--shadow-m); padding: 3rem;
  position: relative; z-index: 1; border-top: 4px solid var(--gold);
  border-left: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
}
.form-h { font-family: var(--font-disp); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.form-sub { font-size: 0.82rem; color: rgba(248,248,246,0.6); margin-bottom: 2rem; }
.fg label { display: block; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.5rem; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--green-light); border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 0.85rem 1rem; border-radius: 3px;
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,106,0.1);
}
.form-btn {
  width: 100%; background: var(--gradient-gold); color: var(--deep-green);
  border: none; padding: 1.1rem 2rem; font-family: var(--font-body);
  font-size: 0.84rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border-radius: 3px; transition: all 0.35s; margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(168,135,78,0.3);
}
.form-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(168,135,78,0.4); }
.form-note { font-size: 0.7rem; color: rgba(248,248,246,0.4); text-align: center; margin-top: 0.75rem; }
.form-note::before { content: '🔒 '; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--deep-green); padding: 5.5rem 6% 2.5rem; position: relative;
  border-top: 1px solid rgba(201,168,106,0.1);
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold);
}
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 4rem; }
.foot-logo-wrap .logo-mark { color: #FFFFFF; }
.foot-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.72; margin-top: 1rem; max-width: 240px; font-weight: 300; }
.foot-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.soc-a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none;
  transition: all 0.3s;
}
.soc-a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,106,0.08); }
.fc-t { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 600; }
.fc-ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.fc-ul li a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.84rem; transition: color 0.3s; font-weight: 300; }
.fc-ul li a:hover { color: var(--gold-soft); }
.foot-bot {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.foot-copy { font-size: 0.77rem; color: rgba(255,255,255,0.3); }
.foot-leg { display: flex; gap: 1.5rem; }
.foot-leg a { font-size: 0.77rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.foot-leg a:hover { color: var(--gold-dark); }

/* ── MOBILE MENU ──────────────────────────────────── */
.mob { position: fixed; inset: 0; background: var(--deep-green); z-index: 998; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.mob.open { opacity: 1; pointer-events: all; }
.mob a { font-family: var(--font-disp); font-size: 2.8rem; font-weight: 700; color: var(--white); text-decoration: none; transition: color 0.3s; }
.mob a:hover { color: var(--gold); }
.mob-x { position: absolute; top: 1.5rem; right: 6%; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; padding: 8px; }

/* ── ANIMATIONS ───────────────────────────────────── */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.48s; }

.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--gold); color: var(--deep-green);
  padding: 1rem 1.75rem; border-radius: 3px; font-size: 0.87rem; font-weight: 600;
  z-index: 9999; transform: translateY(80px); opacity: 0; transition: all 0.4s;
  box-shadow: var(--shadow-m); display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: none; opacity: 1; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2rem; }
  .stat-item:nth-child(2n) { border-bottom: none; }
  .trust-wrapper { grid-template-columns: repeat(2, 1fr); }
  .pres-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cinematic { padding: 4rem 6%; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact { grid-template-columns: 1fr; gap: 3.5rem; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-ongoing-grid { grid-template-columns: 1fr; }
  .pc.feat { grid-row: span 1; }
  .pres-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cta-inner { padding: 3.5rem 2.5rem; }
}
@media (max-width: 640px) {
  .srv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr; }
  .val-list { grid-template-columns: 1fr; }
  section { padding: 3.5rem 6%; }
  .form-wrap { padding: 2rem; }
  .pres-card { padding: 2rem 1.5rem; }
  .cta-btns { flex-direction: column; }
  .hero h1 { font-size: 2.2rem; }
  .trust-wrapper { grid-template-columns: 1fr; }
 }

/* ── WHATSAPP FLOATING BUTTON ─────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 3.75rem; /* 60px */
  height: 3.75rem; /* 60px */
  background: rgba(16, 41, 43, 0.85); /* Utilise --green avec opacité */
  color: var(--gold); /* Icône dorée */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Ombre douce */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 106, 0.4); /* Bordure dorée semi-transparente */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  background: rgba(16, 41, 43, 0.95); /* Intensification du vert au survol */
  transform: scale(1.1) translateY(-5px);
  color: var(--gold-soft); /* Légère mise en valeur de l'icône */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); /* Ombre plus prononcée */
}

.whatsapp-float::after {
  content: 'Discuter avec un conseiller';
  position: absolute;
  right: 75px;
  background: rgba(8, 22, 23, 0.9);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-10px);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.4); } /* Pulsation dorée */
  70% { box-shadow: 0 0 0 15px rgba(201, 168, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); }
}

/* ── AJUSTEMENTS RESPONSIVE WHATSAPP ──────────────── */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 3.375rem; height: 3.375rem; }
  .whatsapp-float::after { display: none; }
}

/* ── AJUSTEMENTS RESPONSIVE GÉNÉRAUX ──────────────── */
@media (max-width: 640px) {
  /* Ajustements Partenaires Mobile */
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  /* Ajustements Pagination Mobile */
  .pagination-container { 
    gap: 0.5rem; 
    margin-top: 3rem; 
    padding-bottom: 1.5rem;
  }
  .pagination-btn { padding: 0.6rem 0.8rem; font-size: 0.65rem; letter-spacing: 0.02em; }
  .page-numbers { gap: 0.35rem; }
  .page-number { width: 34px; height: 34px; font-size: 0.8rem; }
}

/* ── PROJECT CASE STUDY COMPONENTS ────────────────── */
.key-figures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 3.5rem 0;
}

.kf-card {
  background: var(--green);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  border-bottom: 3px solid var(--gold);
  text-align: center;
  transition: transform 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.kf-card:hover { transform: translateY(-5px); }
.kf-icon { color: var(--gold); margin-bottom: 1rem; }
.kf-icon i, .kf-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.kf-value { font-family: var(--font-disp); font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.kf-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); font-weight: 600; }

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 4.5rem 0;
  padding: 4rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cs-list { list-style: none; padding: 0; }
.cs-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--deep-green);
  line-height: 1.6;
  opacity: 0.85;
}

.cs-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.testimonial-section {
  margin-top: 6rem;
  padding: 4rem;
  background: var(--green);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-m);
}

.testimonial-section::before {
  content: '“';
  position: absolute;
  top: -2rem;
  left: 1rem;
  font-size: 18rem;
  font-family: var(--font-disp);
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
}

.testimonial-quote { font-family: var(--font-disp); font-size: 1.6rem; font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.ta-info { display: flex; flex-direction: column; gap: 4px; }
.ta-name { font-weight: 700; color: var(--gold); font-size: 1rem; }
.ta-role { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 900px) {
  .cs-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonial-section { padding: 2.5rem; }
}