/* ================================================================
   LA DIVINE HEALTHCARE — v2 PREMIUM STYLESHEET
   Stack: Bootstrap 5 + AOS + Custom
   ================================================================ */

/* ── Google Fonts via preconnect (linked in HTML) ── */
:root {
  /* Brand */
  --green:        #00b570;
  --green-dark:   #009660;
  --green-xdark:  #007a4d;
  --navy:         #0d1b35;
  --navy-mid:     #162548;
  --navy-light:   #1e3460;

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #f8fafd;
  --light:        #f0f4f9;
  --border:       #e2e8f0;
  --text:         #1a202c;
  --text-mid:     #4a5568;
  --text-light:   #718096;

  /* UI */
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow:       0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.15);
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }

/* ── Typography scale ── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.75; }

/* ── Section tag / eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.transparent { background: transparent; }
#navbar.solid {
  background: rgba(13,27,53,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
#navbar.light-bg {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}
.nav-logo .cross {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-logo:hover .cross { transform: rotate(15deg); }
.nav-logo .cross svg { fill: white; width: 18px; height: 18px; }
.nav-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-logo:hover .nav-logo-img { transform: rotate(8deg) scale(1.08); box-shadow: 0 0 0 3px rgba(0,181,112,.35); }
.nav-logo span em { font-style: normal; color: var(--green); }
#navbar.light-bg .nav-logo { color: var(--navy); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
#navbar.light-bg .nav-links a { color: var(--text-mid); }
#navbar.light-bg .nav-links a:hover { color: var(--navy); }
#navbar.light-bg .nav-links a.active { color: var(--navy); }

/* Right controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.lang-toggle {
  border: 1.5px solid rgba(255,255,255,.3);
  background: transparent;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Roboto', sans-serif;
}
.lang-toggle:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
#navbar.light-bg .lang-toggle {
  border-color: var(--border);
  color: var(--text-mid);
}
#navbar.light-bg .lang-toggle:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.nav-cta {
  background: var(--green);
  color: white !important;
  border-radius: var(--radius-sm);
  padding: 8px 20px !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.light-bg .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 32px;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--green); background: rgba(255,255,255,.03); }
.mobile-nav .lang-toggle {
  margin: 16px 32px 0;
  width: calc(100% - 64px);
  text-align: center;
}

/* ────────────────────────────────────────────
   HERO — full screen with parallax
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Parallax layer */
.hero-bg {
  position: absolute;
  inset: -10%;   /* overshoot for parallax movement */
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

/* Gradient overlay - Transparent & Elegant */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 53, 0.75) 0%,
    rgba(13, 27, 53, 0.65) 50%,
    rgba(0, 181, 112, 0.15) 100%
  );
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Animated green line accent */
.hero-accent-line {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px 100px;
  width: 100%;
}
.hero-content .eyebrow { color: var(--green); }
.hero-content h1 {
  color: var(--white);
  max-width: 820px;
  margin: 0 0 24px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.hero-content p.lead {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 580px;
  margin: 0 0 40px;
}

/* Hero CTAs */
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 80px; }

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 780px;
}
.hero-stat {
  padding: 24px 28px;
  background: rgba(255,255,255,.04);
  transition: background var(--transition);
}
.hero-stat:hover { background: rgba(0,181,112,.08); }
.hero-stat .num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .lbl {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .5;
  animation: bounce 2s infinite;
}
.scroll-cue span { font-size: .7rem; color: white; letter-spacing: .1em; text-transform: uppercase; }
.scroll-cue svg { fill: none; stroke: white; stroke-width: 2; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Mini hero (sub-pages) ── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--navy);
}
.page-hero .hero-bg { inset: -15%; }
.page-hero .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(8,16,31,.95) 0%,
    rgba(13,27,53,.65) 60%,
    rgba(13,27,53,.40) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.page-hero-content .eyebrow { color: var(--green); }
.page-hero-content h1 { color: white; max-width: 700px; }
.page-hero-content p.lead {
  color: rgba(255,255,255,.65);
  max-width: 520px;
  font-size: 1.1rem;
  margin-top: 16px;
}

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.breadcrumb-bar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.breadcrumb-bar a { color: rgba(255,255,255,.55); }
.breadcrumb-bar a:hover { color: var(--green); }
.breadcrumb-bar .sep { color: rgba(255,255,255,.2); }
.breadcrumb-bar .current { color: var(--green); font-weight: 600; }

/* ────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: 'Roboto', sans-serif;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,181,112,.35);
  color: white;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  border: 1.5px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Roboto', sans-serif;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
  color: white;
}
.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  border: 1.5px solid var(--green);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Roboto', sans-serif;
}
.btn-outline-green:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

/* ────────────────────────────────────────────
   SECTION LAYOUT UTILITIES
──────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--navy); color: white; }
.section-mid  { background: var(--navy-mid); color: white; }
.section-light { background: var(--off-white); }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-head { margin-bottom: 60px; }
.section-head h2 { margin-top: 6px; color: var(--navy); }
.section-dark .section-head h2,
.section-mid .section-head h2 { color: white; }
.section-dark .eyebrow,
.section-mid .eyebrow { color: var(--green); }

/* ────────────────────────────────────────────
   PARALLAX DIVIDER (quote/stat bands)
──────────────────────────────────────────── */
.parallax-band {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: var(--navy);
}
.parallax-band .band-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
  filter: brightness(.25) saturate(.8);
}
.parallax-band .band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,53,.88), rgba(0,150,96,.4));
  z-index: 1;
}
.parallax-band .band-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.parallax-band blockquote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: white;
  max-width: 760px;
  line-height: 1.4;
}
.parallax-band blockquote em {
  font-style: normal;
  color: var(--green);
}
.parallax-band cite {
  display: block;
  margin-top: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-style: normal;
}

/* ────────────────────────────────────────────
   STATS BAR
──────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  display: block;
}
.stat-item .lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
  display: block;
}

/* ────────────────────────────────────────────
   CARDS — services
──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.svc-card {
  background: white;
  padding: 44px 36px;
  position: relative;
  transition: background var(--transition);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.svc-card:hover { background: var(--off-white); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  background: rgba(0,181,112,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition), transform var(--transition);
}
.svc-card:hover .svc-icon {
  background: var(--green);
  transform: scale(1.05);
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--green); transition: stroke var(--transition); }
.svc-card:hover .svc-icon svg { stroke: white; }
.svc-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.1rem; }
.svc-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.75; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: gap var(--transition);
}
.svc-link:hover { gap: 12px; }

/* ────────────────────────────────────────────
   TEAM CARDS
──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card-avatar {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  position: relative;
  overflow: hidden;
}
.team-card-avatar::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px; right: -20px;
  height: 60px;
  background: white;
  border-radius: 50%;
}
.team-card-body { padding: 24px 24px 28px; }
.team-card .role {
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.team-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.team-card p { font-size: .84rem; color: var(--text-mid); line-height: 1.7; }
.team-card .langs {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .75rem;
  color: var(--text-light);
}

/* Featured team card */
.team-card.featured {
  border-color: var(--green);
  border-width: 2px;
}
.team-card.featured .team-card-avatar::before {
  content: '★';
  position: absolute;
  top: 12px; right: 12px;
  z-index: 1;
  background: var(--green);
  color: white;
  font-size: .7rem;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: .05em;
}

/* ────────────────────────────────────────────
   CLIENT LOGOS SECTION
──────────────────────────────────────────── */
.clients-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.client-tile {
  background: white;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background var(--transition);
}
.client-tile:hover { background: var(--off-white); }
.client-initials {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  transition: background var(--transition);
}
.client-tile:hover .client-initials { background: var(--green); }
.client-tile h4 { font-size: .88rem; color: var(--navy); text-align: center; font-weight: 700; }
.client-tile p { font-size: .75rem; color: var(--text-light); }

/* ────────────────────────────────────────────
   ABOUT — split layout
──────────────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse { }
.split-visual {
  position: relative;
}
.visual-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,181,112,.25), transparent);
}
.visual-card .vc-badge {
  background: var(--green);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 24px;
}
.visual-card .vc-large {
  font-size: 4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.visual-card .vc-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.visual-card .vc-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.visual-card .vc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.visual-card .vc-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: rgba(0,181,112,.2);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text side */
.split-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: .95rem;
}
.split-text h2 { color: var(--navy); margin-bottom: 20px; }
.info-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.info-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: .85rem;
}
.info-pill .pill-label { color: var(--text-light); font-weight: 500; }
.info-pill .pill-value { font-weight: 700; color: var(--navy); }

/* Certified badge */
.cert-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(0,181,112,.08);
  border: 1px solid rgba(0,181,112,.2);
  border-radius: var(--radius-sm);
  color: var(--green-xdark);
  font-size: .85rem;
  font-weight: 600;
}
.cert-strip svg { flex-shrink: 0; }

/* ────────────────────────────────────────────
   VALUES GRID
──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: white;
}
.value-icon {
  width: 52px; height: 52px;
  background: rgba(0,181,112,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 24px; height: 24px; stroke: var(--green); }
.value-card h4 { color: var(--navy); font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: .8rem; color: var(--text-mid); line-height: 1.6; }

/* ────────────────────────────────────────────
   LOCATIONS
──────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.loc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.loc-card:hover { box-shadow: var(--shadow); }
.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.loc-badge.branch { background: var(--green); }
.loc-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 4px; }
.loc-card .sub { color: var(--text-light); font-size: .85rem; margin-bottom: 24px; }
.loc-addresses { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.loc-addresses li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-mid);
}
.loc-addresses li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 7px;
}
.loc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.loc-stat-item { text-align: center; }
.loc-stat-item .num { font-size: 1.6rem; font-weight: 800; color: var(--navy); display: block; }
.loc-stat-item .lbl { font-size: .72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }

/* ────────────────────────────────────────────
   CTA BAND
──────────────────────────────────────────── */
.cta-band {
  background: var(--green);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: white; max-width: 560px; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 8px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--green-xdark);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  color: var(--green-xdark);
}

/* ────────────────────────────────────────────
   CONTACT SECTION
──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 44px;
  color: white;
}
.contact-info-panel h3 { color: white; margin-bottom: 32px; }
.ci-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.ci-row:last-child { margin-bottom: 0; }
.ci-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(0,181,112,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon-wrap svg { width: 20px; height: 20px; stroke: var(--green); }
.ci-row h5 { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.ci-row p, .ci-row a { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.ci-row a:hover { color: var(--green); }

/* Form */
.contact-form-panel { }
.contact-form-panel h3 { color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,181,112,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-note { font-size: .78rem; color: var(--text-light); margin-top: 12px; }

/* ────────────────────────────────────────────
   PROCESS / STEPS
──────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(0,181,112,.3);
}
.process-step h4 { color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: .85rem; color: var(--text-mid); }

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.site-footer {
  background: #070d1a;
  color: rgba(255,255,255,.55);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .nav-logo { margin-bottom: 16px; font-size: 1.2rem; }
.footer-brand p { font-size: .85rem; line-height: 1.75; max-width: 280px; }
.footer-col h5 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--green); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list .item {
  display: flex;
  gap: 10px;
  font-size: .85rem;
  align-items: flex-start;
}
.footer-contact-list .item svg { width: 16px; height: 16px; stroke: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list .item a { color: rgba(255,255,255,.55); }
.footer-contact-list .item a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--green); }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-layout .contact-info-panel { order: 2; }
}

@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-strip { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .cta-band-inner { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .hero-content { padding: 110px 20px 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { min-height: 50vh; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .clients-strip { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────
   AOS OVERRIDES (smooth)
──────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ────────────────────────────────────────────
   SCROLL PROGRESS BAR
──────────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--green);
  z-index: 2000;
  width: 0%;
  transition: width .1s linear;
}

/* ────────────────────────────────────────────
   HERO PHOTO SLOT
   — Replace gradient with real photo:
     .hero-bg { background-image: url('assets/img/hero-home.jpg'); }
──────────────────────────────────────────── */
.hero-bg,
.page-hero .hero-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* ────────────────────────────────────────────
   SOCIAL MEDIA — FLOATING SIDEBAR
──────────────────────────────────────────── */
.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: white;
  transition: width var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.social-float a svg { width: 18px; height: 18px; flex-shrink: 0; fill: white; }
.social-float a.sf-fb       { background: #1877f2; }
.social-float a.sf-ig       { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.social-float a.sf-tiktok   { background: #010101; }
.social-float a.sf-linkedin { background: #0a66c2; }
.social-float a:hover { width: 56px; }

/* Footer social row */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition), transform var(--transition);
}
.footer-social a svg { width: 17px; height: 17px; fill: rgba(255,255,255,.6); transition: fill var(--transition); }
.footer-social a:hover { transform: translateY(-3px); }
.footer-social a.sf-fb:hover       { background: #1877f2; }
.footer-social a.sf-ig:hover       { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.footer-social a.sf-tiktok:hover   { background: #010101; }
.footer-social a.sf-linkedin:hover { background: #0a66c2; }
.footer-social a:hover svg { fill: white; }

/* ────────────────────────────────────────────
   GALERIE / PRODUITS
──────────────────────────────────────────── */
.galerie-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  align-items: center;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-mid);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Roboto', sans-serif;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: 0 4px 14px rgba(0,181,112,.3);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden { display: none; }

/* Product image slot */
.product-img {
  height: 220px;
  background: var(--light);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: .75rem;
  font-weight: 500;
}
.product-img-placeholder svg { width: 40px; height: 40px; stroke: var(--text-light); opacity: .5; }
/* When photo is set, hide placeholder */
.product-img[style*="url("] .product-img-placeholder { display: none; }

.product-img:hover .product-overlay { opacity: 1; }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,53,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-overlay a {
  background: white;
  color: var(--navy);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 700;
  transition: background var(--transition);
}
.product-overlay a:hover { background: var(--green); color: white; }

/* Badges */
.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.badge-cat {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--navy);
  color: white;
  display: inline-block;
}
.badge-available { background: var(--green); }
.badge-order     { background: var(--navy-light); }

/* Product body */
.product-body { padding: 18px 20px 22px; }
.product-category {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 6px;
}
.product-name { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.product-desc { font-size: .8rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}
.product-cta:hover { background: var(--green); transform: translateY(-1px); color: white; }

/* ────────────────────────────────────────────
   CONSEILS / BLOG
──────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.article-img {
  height: 200px;
  background: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-cat-badge {
  position: absolute;
  bottom: 12px; left: 16px;
  background: var(--green);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 4px;
}
.article-body { padding: 22px 22px 26px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.article-meta span { display: flex; align-items: center; gap: 4px; }
.article-meta svg { width: 13px; height: 13px; stroke: var(--text-light); }
.article-title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.article-excerpt { font-size: .82rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.article-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.article-link:hover { gap: 10px; }

/* Featured article (wide) */
.article-card.featured-article {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.article-card.featured-article .article-img { height: 100%; min-height: 260px; }

/* YouTube embed widget */
.yt-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.yt-embed .yt-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition);
}
.yt-embed:hover .yt-thumb { transform: scale(1.04); }
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 68px; height: 68px;
  background: rgba(255,0,0,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 1;
}
.yt-embed:hover .yt-play-btn { background: #ff0000; transform: translate(-50%,-50%) scale(1.1); }
.yt-play-btn svg { fill: white; width: 26px; height: 26px; margin-left: 4px; }

/* Videos section grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-card .yt-embed { border-radius: 0; }
.video-card .video-info { padding: 16px 18px 20px; }
.video-card .video-info h4 { font-size: .92rem; color: var(--navy); margin-bottom: 6px; font-weight: 700; }
.video-card .video-info p  { font-size: .78rem; color: var(--text-mid); line-height: 1.6; }

/* Social share row */
.social-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.social-share span { font-size: .78rem; color: var(--text-light); font-weight: 600; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 700;
  color: white;
  transition: transform var(--transition), opacity var(--transition);
}
.share-btn:hover { transform: translateY(-2px); opacity: .9; color: white; }
.share-fb       { background: #1877f2; }
.share-ig       { background: linear-gradient(135deg,#833ab4,#fd1d1d); }
.share-tiktok   { background: #010101; }
.share-linkedin { background: #0a66c2; }
.share-btn svg  { width: 14px; height: 14px; fill: white; }

/* ────────────────────────────────────────────
   RESPONSIVE — NEW PAGES
──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured-article { grid-column: span 1; grid-template-columns: 1fr; }
  .article-card.featured-article .article-img { min-height: 220px; }
  .social-float { display: none; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid  { grid-template-columns: 1fr; }
  .product-img  { height: 170px; }
}
@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
}

