:root {
  --sand-light: #faf5eb;
  --sand: #f0e6cc;
  --sand-mid: #e4d0a8;
  --sand-deep: #c9a87c;
  --cream: #fbf8f2;
  --green-dark: #1b4332;
  --green-main: #2d6a4f;
  --green-mid: #40916c;
  --green-light: #74c69d;
  --green-pale: #d8f3dc;
  --gold: #b8960c;
  --dark: #2c2416;
  --dark-mid: #4a3728;
  --text-body: #5c4a35;
  --text-light: #8a7460;
  --white: #ffffff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  color: var(--dark);
  line-height: 1.2;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
#loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ld-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ld-logo .logo img {
  height: 70px;
  width: auto;
}
.ld-logo span {
  color: var(--green-light);
}
.ld-symbol {
  width: 70px;
  height: 70px;
  animation: ldSpin 1.8s linear infinite;
}

.ld-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes ldSpin {
  to {
    transform: rotate(405deg);
  }
}
.ld-bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.ld-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  animation: ldFill 1.4s ease forwards;
}
@keyframes ldFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ── NAV ── */
/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.4s ease;
  animation: navDrop 0.7s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navDrop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  box-shadow: 0 2px 30px rgba(44, 36, 22, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding-left: 0; 
}

/* 🔥 LOGO FIX */

/* 🔥 LOGO NAVBAR FIX */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 35px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

/*  scroll */
nav.scrolled .logo img {
  height: 35px;
  width: auto;
  max-width: 280px;
 
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-light);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

nav.scrolled .nav-links a {
  color: var(--dark-mid);
}

nav.scrolled .nav-links a::after {
  background: var(--green-main);
}

.nav-cta {
  padding: 10px 22px;
  background: var(--green-main);
  color: var(--white) !important;
  font-size: 11px !important;
  letter-spacing: 2px;
}

.nav-cta::after {
  display: none !important;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
section {
  padding: 100px 0;
}

/* ── BADGE / BTNS ── */
.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 18px;
}
.badge-label::before,
.badge-label::after {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--green-mid);
}
.btn-primary-m {
  display: inline-block;
  padding: 14px 34px;
  background: var(--green-main);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--green-main);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.btn-primary-m::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}
.btn-primary-m span {
  position: relative;
  z-index: 1;
}
.btn-primary-m:hover::after {
  transform: scaleX(1);
}
/* Ripple */
.btn-primary-m .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  background: rgba(255, 255, 255, 0.22);
  z-index: 2;
  pointer-events: none;
}
@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.btn-outline-m {
  display: inline-block;
  padding: 13px 33px;
  background: transparent;
  color: var(--dark);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--sand-deep);
  transition: all 0.3s ease;
}
.btn-outline-m:hover {
  background: var(--sand-mid);
  border-color: var(--sand-mid);
}
.btn-outline-light {
  display: inline-block;
  padding: 13px 33px;
  background: transparent;
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--green-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(27, 67, 50, 0.95) 0%,
      rgba(45, 106, 79, 0.85) 50%,
      rgba(27, 67, 50, 0.92) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23C2A27C' opacity='1.5'%3E%3Cpolygon points='60,3 117,60 60,117 3,60'/%3E%3Cpolygon points='60,20 100,60 60,100 20,60'/%3E%3Cpolygon points='60,37 83,60 60,83 37,60'/%3E%3Cline x1='60' y1='3' x2='60' y2='117'/%3E%3Cline x1='3' y1='60' x2='117' y2='60'/%3E%3Cline x1='3' y1='3' x2='117' y2='117'/%3E%3Cline x1='117' y1='3' x2='3' y2='117'/%3E%3C/g%3E%3C/svg%3E");
  background-size:
    cover,
    120px 120px;
  animation: bgDrift 24s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  from {
    background-position:
      center,
      0 0;
  }
  to {
    background-position:
      center,
      60px 60px;
  }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--green-light);
  border-radius: 50%;
  opacity: 0;
  animation: ptFloat var(--d) var(--dl) ease-in infinite;
}
@keyframes ptFloat {
  0% {
    transform: translateY(110vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-10vh) scale(1.4);
    opacity: 0;
  }
}

/* Arch */
.hero-arch {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 650px;
  opacity: 0.07;
  animation: archFloat 8s ease-in-out infinite;
}
@keyframes archFloat {
  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-52%) rotate(1.5deg);
  }
}

/* Hero content stagger */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 30px;
  opacity: 0;
  animation: hIn 0.9s 1.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green-light);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
  opacity: 0;
  animation: hIn 1s 1.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 strong {
  font-weight: 700;
  display: block;
  color: var(--sand);
}
.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.8;
  opacity: 0;
  animation: hIn 1s 2.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hIn 1s 2.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes hIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-stat {
  position: absolute;
  right: 80px;
  bottom: 80px;
  background: rgba(250, 245, 235, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 40px;
  text-align: center;
  opacity: 0;
  animation: hIn 1s 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.hero-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.hero-stat .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 70px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  display: block;
}
.hero-stat .num sup {
  font-size: 28px;
  color: var(--green-light);
}
.hero-stat .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  display: block;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: hIn 1s 2.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.scroll-hint .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ── ABOUT ── */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
  height: 75%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(44, 36, 22, 0.15);
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}
.about-img-main:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(44, 36, 22, 0.22);
}
.about-img-accent {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 52%;
  height: 58%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(44, 36, 22, 0.2);
  border: 6px solid var(--cream);
  transition: transform 0.6s ease;
}
.about-img-accent:hover {
  transform: scale(1.03);
}
.about-ornament {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  border: 2px solid var(--sand-mid);
  z-index: 0;
  animation: ornSpin 20s linear infinite;
}
@keyframes ornSpin {
  to {
    transform: rotate(360deg);
  }
}
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.3;
}
.about-text h2 em {
  font-style: italic;
  color: var(--green-main);
}
.about-text p {
  margin-bottom: 18px;
  font-size: 15.5px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--sand-light);
  border-left: 3px solid var(--green-mid);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.value-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.1);
  border-color: var(--green-dark);
}
.value-item .icon {
  width: 36px;
  height: 36px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.4s;
}
.value-item:hover .icon {
  background: var(--green-dark);
  transform: rotate(15deg);
}
.value-item .icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}
.value-item h5 {
  font-family: "Jost", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.value-item p {
  font-size: 12.5px;
  margin: 0;
}

/* ── EXPERTISES ── */
.expertises-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.expertises-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%2340916C' stroke-width='0.5' opacity='0.12'%3E%3Cpolygon points='40,2 78,40 40,78 2,40'/%3E%3Cpolygon points='40,18 62,40 40,62 18,40'/%3E%3Cline x1='40' y1='2' x2='40' y2='78'/%3E%3Cline x1='2' y1='40' x2='78' y2='40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  animation: bgDrift 28s linear infinite;
}
.expertises-section .container {
  position: relative;
  z-index: 1;
}
.section-header {
  margin-bottom: 60px;
}
.section-header .sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  opacity: 0.7;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 500;
}
.section-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-top: 16px;
}
.expertise-list {
  list-style: none;
}
.expertise-item {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s;
  cursor: default;
  position: relative;
}
.expertise-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--green-mid), var(--green-light));
  transition: height 0.45s ease;
}
.expertise-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.expertise-item:hover {
  background: rgba(64, 145, 108, 0.07);
  padding-left: 20px;
  padding-right: 16px;
  margin: 0 -16px;
}
.expertise-item:hover::before {
  height: 100%;
}
.expertise-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  transition:
    color 0.3s,
    transform 0.3s;
}
.expertise-item:hover .expertise-num {
  color: var(--green-light);
  transform: scale(1.1);
}
.expertise-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
}
.expertise-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── PARTNERS ── */
.partners-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.partners-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(64, 145, 108, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
.partners-section .section-header h2 {
  color: var(--white);
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
}
.partner-card {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 200px;
  flex-shrink: 0;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.partner-logo-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 50px;
}
.partner-logo-wrap img {
  max-width: 200px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  transform: scaleX(0);
  transition: transform 0.35s;
}
/* Shine */
.partner-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.partner-card:hover::after {
  left: 125%;
}
.partner-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.partner-card:hover::before {
  transform: scaleX(1);
}
.partner-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  font-weight: 600;
}
.partner-name small {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── APPROACH ── */
.approach-section {
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}
.approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='none' stroke='%23C9A87C' stroke-width='0.6' opacity='0.18'%3E%3Cpolygon points='30,2 58,30 30,58 2,30'/%3E%3Cpolygon points='30,14 46,30 30,46 14,30'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.approach-section .container {
  position: relative;
  z-index: 1;
}
.approach-section .section-header h2 {
  color: var(--dark);
}
.approach-section .section-header p {
  color: var(--text-body);
}
.approach-section .section-header .sub {
  color: var(--green-main);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.step-list {
  display: flex;
  flex-direction: column;
}
.step-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid white;
}
.step-item:first-child {
  padding-top: 0;
}
.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 2px solid var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-main);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.15);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.step-item:hover .step-num {
  background: var(--green-main);
  color: var(--white);
  transform: scale(1.08);
}
.step-line {
  width: 1px;
  flex: 1;
  background: rgba(45, 106, 79, 0.2);
  margin-top: 8px;
  min-height: 40px;
}
.step-item:last-child .step-line {
  display: none;
}
.step-content {
  padding-top: 10px;
}
.step-content h4 {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.step-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.approach-visual {
  position: sticky;
  top: 120px;
}
.approach-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(44, 36, 22, 0.12);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(44, 36, 22, 0.18);
}
.approach-card-header {
  background: var(--green-dark);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.approach-card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%2340916C' stroke-width='0.5' opacity='0.2'%3E%3Cpolygon points='40,2 78,40 40,78 2,40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  animation: bgDrift 20s linear infinite;
}
.approach-card-header h3 {
  font-size: 2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.approach-card-body {
  padding: 36px 40px;
}
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
  transition:
    background 0.25s,
    padding-left 0.3s;
}
.stat-row:last-child {
  border: none;
  padding-bottom: 0;
}
.stat-row:hover {
  background: rgba(45, 106, 79, 0.04);
  padding-left: 10px;
}
.stat-row .stat-label {
  font-size: 13px;
  color: var(--text-light);
}
.stat-row .stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-main);
  line-height: 1;
}

/* ── SECTORS ── */
.sectors-section {
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}
.sectors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%23C9A87C' stroke-width='0.5' opacity='0.1'%3E%3Cpolygon points='50,3 97,50 50,97 3,50'/%3E%3Cpolygon points='50,22 78,50 50,78 22,50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  animation: bgDrift 28s linear infinite;
}
.sectors-section .container {
  position: relative;
  z-index: 1;
}
.sectors-section .section-header h2 {
  color: var(--white);
}
.sectors-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}
.sectors-section .section-header .sub {
  color: var(--sand-deep);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201, 168, 124, 0.15);
}
.sector-card {
  background: var(--dark);
  padding: 130px 26px 26px;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  text-align: center;
  transition: all 0.4s;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}
.sector-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  transition: transform 0.6s;
}
.sector-card:hover .sector-img {
  transform: scale(1.08);
}
.sector-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(64, 145, 108, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  z-index: 1;
}
.sector-card:hover::before {
  width: 300px;
  height: 300px;
}
.sector-card:hover {
  background: rgba(45, 106, 79, 0.2);
  border-bottom-color: var(--green-mid);
  transform: translateY(-6px);
}
.sector-card h4 {
  font-family: "Jost", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 3em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* ── CASES ── */
.cases-section {
  background: var(--cream);
}
.cases-section .section-header h2 {
  color: var(--dark);
}
.cases-section .section-header p {
  color: var(--text-body);
}
.cases-section .section-header .sub {
  color: var(--green-main);
}
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--sand);
  margin-bottom: 52px;
}
.tab-btn {
  padding: 16px 32px;
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s;
}
.tab-btn.active {
  color: var(--green-main);
  border-bottom-color: var(--green-main);
  background: rgba(45, 106, 79, 0.04);
}
.tab-btn:hover:not(.active) {
  color: var(--dark);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: tabIn 0.5s ease forwards;
}
@keyframes tabIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.case-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 70px;
  align-items: center;
}
.case-image {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  background: var(--green-dark);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 60px rgba(27, 67, 50, 0.22);
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;   
  object-position: center;
  display: block;
  border-radius: 14px;
  background: var(--green-dark);
}
.case-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(27, 67, 50, 0.3);
}
.case-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-main) 100%
  );
}
.case-image-placeholder svg {
  opacity: 0.2;
}
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 18px;
}
.case-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--green-main);
  border-radius: 50%;
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}
.case-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.case-content p {
  font-size: 15px;
  margin-bottom: 16px;
}
.case-meta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.case-meta-item h5 {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.case-meta-item p {
  font-size: 13.5px;
  color: var(--dark);
  margin: 0;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cg fill='none' stroke='%2340916C' stroke-width='0.6' opacity='0.18'%3E%3Cpolygon points='45,3 87,45 45,87 3,45'/%3E%3Cpolygon points='45,20 68,45 45,70 22,45'/%3E%3Cline x1='45' y1='3' x2='45' y2='87'/%3E%3Cline x1='3' y1='45' x2='87' y2='45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 90px 90px;
  animation: bgDrift 22s linear infinite;
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.35;
}
.contact-info p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.8;
}
.contact-divider {
  width: 50px;
  height: 1px;
  background: var(--green-light);
  margin: 28px 0;
  opacity: 0.5;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field.full {
  grid-column: 1/-1;
}
.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px 18px;
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green-light);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  margin-top: 8px;
}
.btn-submit {
  display: inline-block;
  padding: 15px 40px;
  background: var(--sand-deep);
  color: var(--dark);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sand-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.btn-submit span {
  position: relative;
  z-index: 1;
}
.btn-submit:hover::after {
  transform: scaleX(1);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}
.footer-brand .logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 6px;
}
.footer-brand .logo-text span {
  color: var(--green-light);
}
.footer-brand .tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.footer-col h5 {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition:
    color 0.25s,
    padding-left 0.25s;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--green-light);
  padding-left: 6px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.footer-bottom-left,
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-legal a:hover {
  color: var(--green-light);
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom .ornament {
  color: var(--sand-deep);
  opacity: 0.5;
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGES LÉGALES (Mentions légales, Confidentialité, CGV)
═══════════════════════════════════════════════════════════════════ */
.legal-hero {
  background: var(--green-dark);
  padding: 160px 0 60px;
  color: var(--white);
}
.legal-hero .container {
  max-width: 900px;
}
.legal-hero .badge-label {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 10px;
}
.legal-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}
.legal-hero .legal-updated {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}
.legal-back:hover {
  color: var(--green-light);
}
.legal-body {
  background: var(--cream);
  padding: 70px 0 100px;
}
.legal-body .container {
  max-width: 820px;
}
.legal-section {
  margin-bottom: 42px;
}
.legal-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
}
.legal-section p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 12px;
  font-size: 15px;
}
.legal-section ul {
  margin: 0 0 14px 20px;
}
.legal-section li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 7px;
  font-size: 15px;
}
.legal-section strong {
  color: var(--green-dark);
}
[dir="rtl"] .footer-bottom-left,
[dir="rtl"] .footer-bottom-right {
  flex-direction: row-reverse;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  height: 100px;   /* taille idéale */
  width: auto;
  margin-bottom: 10px;
}
/* ── STICKY CTA ── */
.sticky-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 500;
  writing-mode: vertical-lr;
}
.sticky-bar a {
  display: block;
  padding: 18px 12px;
  background: var(--green-main);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition:
    background 0.3s,
    padding 0.3s;
}
.sticky-bar a:hover {
  background: var(--green-dark);
  padding: 22px 14px;
}

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 30px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  display: flex;
  animation: mFade 0.3s ease forwards;
}
@keyframes mFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-box {
  background: var(--cream);
  max-width: 680px;
  width: 100%;
  padding: 50px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  border-top: 4px solid var(--green-main);
  animation: mSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Modal élargi pour Qui sommes-nous */
.modal-box--wide {
  max-width: 820px;
}
.modal-box--wide .modal-section p {
  margin-bottom: 12px;
}
.modal-box--wide .modal-section ul {
  padding-left: 0;
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-box--wide .modal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.6;
}
.modal-box--wide .modal-section ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--green-main);
  border-radius: 50%;
  margin-top: 7px;
}
@keyframes mSlide {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  transition:
    color 0.2s,
    transform 0.3s;
}
.modal-close:hover {
  color: var(--dark);
  transform: rotate(90deg);
}
.modal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 12px;
  display: block;
}
.modal-box h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  line-height: 1.3;
}
.modal-section {
  margin-bottom: 24px;
}
.modal-section h4 {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sand);
}
.modal-section p,
.modal-section ul {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.8;
}
.modal-section ul {
  padding-left: 0;
  list-style: none;
}
.modal-section ul li::before {
  content: "◆ ";
  color: var(--green-main);
  font-size: 8px;
}

/* ── SCROLL REVEAL ── */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
/* Stagger for expertise items */
.expertise-list.visible .expertise-item:nth-child(1) {
  animation: expIn 0.55s 0s ease both;
}
.expertise-list.visible .expertise-item:nth-child(2) {
  animation: expIn 0.55s 0.1s ease both;
}
.expertise-list.visible .expertise-item:nth-child(3) {
  animation: expIn 0.55s 0.2s ease both;
}
.expertise-list.visible .expertise-item:nth-child(4) {
  animation: expIn 0.55s 0.3s ease both;
}
.expertise-list.visible .expertise-item:nth-child(5) {
  animation: expIn 0.55s 0.4s ease both;
}
@keyframes expIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .about-grid,
  .approach-grid,
  .contact-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 350px;
    margin-bottom: 40px;
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-stat {
    position: static;
    margin-top: 48px;
    display: inline-block;
  }
  .nav-links {
    display: none;
  }
  .expertise-item {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }
  .expertise-desc {
    grid-column: 1/-1;
    padding-left: 70px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 70px 0;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .case-meta {
    grid-template-columns: 1fr;
  }
  .tabs-nav {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SÉLECTEUR DE LANGUE
═══════════════════════════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border-radius: 3px;
  line-height: 0;
}

.flag-icon {
  width: 22px;
  height: 15px;
  display: block;
  border-radius: 2px;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-btn:hover .flag-icon,
.lang-btn.active .flag-icon {
  opacity: 1;
}

.lang-btn.active {
  transform: scale(1.06);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.lang-btn.active {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
}

/* Navbar scrollée */
nav.scrolled .lang-btn {
  border-color: rgba(44, 36, 22, 0.25);
  color: var(--dark-mid);
}

nav.scrolled .lang-btn:hover {
  background: var(--sand-light);
  border-color: var(--green-mid);
  color: var(--green-dark);
}

nav.scrolled .lang-btn.active {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   LOADER — SYMBOLE ESENTIVE
═══════════════════════════════════════════════════════════════════ */
.ld-symbol {
  width: 70px;
  height: 70px;
  animation: ldSpin 1.8s linear infinite;
}

.ld-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════════
   RTL — SUPPORT ARABE
═══════════════════════════════════════════════════════════════════ */
[dir="rtl"] .nav-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-switcher {
  margin-left: 0;
  margin-right: 20px;
}

[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .hero-eyebrow::before {
  display: none;
}

[dir="rtl"] .hero-stat {
  right: auto;
  left: 80px;
}

[dir="rtl"] .badge-label::before {
  display: none;
}

[dir="rtl"] .about-grid {
  direction: rtl;
}

[dir="rtl"] .expertise-item {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .step-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .step-content {
  text-align: right;
}

[dir="rtl"] .stat-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .sector-card {
  text-align: right;
}

[dir="rtl"] .case-content {
  text-align: right;
}

[dir="rtl"] .case-tag {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-grid {
  direction: rtl;
}

[dir="rtl"] .contact-info {
  text-align: right;
}

[dir="rtl"] .form-grid {
  direction: rtl;
}

[dir="rtl"] .footer-grid {
  direction: rtl;
}

[dir="rtl"] .footer-brand {
  text-align: right;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .modal-box {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .modal-close {
  left: 24px;
  right: auto;
}

[dir="rtl"] .modal-section ul {
  padding-left: 0;
  padding-right: 20px;
}

/* Logo navbar après scroll */
nav.scrolled .logo img {
  height: 35px;
  width: auto;
  max-width: 280px;
}

.logo img {
  height: 35px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

