/* ====================================
   STARTYPE - Énergie GN / GNL / SNG
   Stylesheet Principal
   ==================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:       #0B2447;
  --navy-dark:  #071730;
  --navy-mid:   #163466;
  --orange:       #D42020;
  --orange-dark:  #B01818;
  --orange-light: #F04444;
  --blue:       #1A6DB5;
  --blue-light: #2E9CCA;
  --gray-brand: #4A4A4A;
  --white:      #FFFFFF;
  --gray-light: #F4F6F9;
  --gray:       #9BA5B4;
  --gray-mid:   #DDE2EA;
  --dark:       #0D1B2A;
  --text:       #2D3748;
  --text-light: #718096;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 8px rgba(11,36,71,0.08);
  --shadow-md:  0 4px 20px rgba(11,36,71,0.14);
  --shadow-lg:  0 8px 40px rgba(11,36,71,0.2);
  --radius:     6px;
  --radius-lg:  12px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

html {
  overflow-y: scroll;
}

/* ====================================
   TOP BAR
   ==================================== */
.topbar {
  background: linear-gradient(90deg, #06152b 0%, #0b2447 50%, #06152b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 42px;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #cbd5e1;
  position: relative;
  z-index: 1000;
}
.topbar-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: #e2e8f0;
}
.topbar-left svg {
  color: var(--orange, #eb823c);
  filter: drop-shadow(0 0 4px rgba(235, 130, 60, 0.4));
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-right a {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  backdrop-filter: blur(4px);
}
.topbar-right a:hover {
  background: var(--orange, #eb823c);
  border-color: var(--orange, #eb823c);
  color: #ffffff !important;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(235, 130, 60, 0.35);
}
.topbar-right a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.topbar-right a:hover svg {
  transform: scale(1.1);
}

/* ====================================
   HEADER / NAVBAR
   ==================================== */
.header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(11,36,71,0.10);
  position: sticky;
  top: 0;
  z-index: 999;
  height: 96px;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}
.header.scrolled {
  box-shadow: 0 4px 28px rgba(11,36,71,0.18);
}
.navbar {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  box-sizing: border-box;
  gap: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 0;
  flex-shrink: 0;
  padding: 4px 0;
}
.logo img {
  height: 75px !important;
  max-height: 75px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.logo:hover img { opacity: 0.88; }
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.25;
  top: 6px;
  left: 6px;
}
.logo-mark svg { position: relative; z-index: 1; }
.logo-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-brand);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--orange); }
.logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

/* Nav Links Centered */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  padding: 0;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  height: 40px !important;
  padding: 0 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
}
.nav-link:hover,
.nav-item.active .nav-link,
.nav-link.active {
  color: var(--orange) !important;
  background: rgba(212, 32, 32, 0.07) !important;
}
.nav-link svg {
  width: 12px !important;
  height: 12px !important;
  transition: transform 0.25s ease !important;
}
.nav-item:hover .nav-link svg { transform: rotate(180deg) !important; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  min-width: 260px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1000;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.dropdown-item a:hover {
  background: rgba(232,118,36,0.07);
  color: var(--orange);
}
.dropdown-item a svg { width: 16px; height: 16px; color: var(--orange); opacity: 0.8; }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.btn-search {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gray-mid);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.btn-search:hover { border-color: var(--orange); color: var(--orange); }
.btn-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(232,118,36,0.35);
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,118,36,0.45);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ====================================
   HERO SLIDER
   ==================================== */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,23,48,0.88) 0%,
    rgba(11,36,71,0.72) 50%,
    rgba(11,36,71,0.25) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
  width: 100%;
}
.hero-text { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,118,36,0.2);
  border: 1px solid rgba(232,118,36,0.4);
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-badge svg { width: 12px; height: 12px; }
.hero-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .highlight { color: var(--orange-light); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(232,118,36,0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,118,36,0.5); }
.btn-hero-secondary {
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* Slide card overlay (right side like APAVE) */
.hero-card {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 300px;
  color: var(--white);
}
.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 12px;
}
.hero-card-title {
  font-family: 'Barlow', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-card-value {
  font-size: 42px;
  font-weight: 900;
  color: var(--orange-light);
  font-family: 'Barlow', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-card-sub { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Hero nav arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
.hero-arrow svg { width: 20px; height: 20px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--orange); transform: scale(1.2); }

/* ====================================
   SECTION COMMONS
   ==================================== */
.section { padding: 88px 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--gray-light); }
.section-dark { background: var(--navy); }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-eyebrow {
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-subtitle.white { color: rgba(255,255,255,0.72); }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { margin: 0 auto 16px; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ====================================
   STATS BAND
   ==================================== */
.stats-band {
  background: var(--navy);
  padding: 0;
}
.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232,118,36,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { color: var(--orange); width: 22px; height: 22px; }
.stat-value {
  font-family: 'Barlow', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-value span { color: var(--orange); }
.stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ====================================
   ACTIVITIES / MÉTIERS
   ==================================== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.activity-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.activity-card:hover img { transform: scale(1.05); }
.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,36,71,0.1) 0%,
    rgba(11,36,71,0.55) 50%,
    rgba(7,23,48,0.92) 100%
  );
  transition: var(--transition);
}
.activity-card:hover .activity-overlay {
  background: linear-gradient(
    180deg,
    rgba(11,36,71,0.15) 0%,
    rgba(232,118,36,0.45) 50%,
    rgba(7,23,48,0.95) 100%
  );
}
.activity-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.activity-tag {
  display: inline-block;
  background: rgba(232,118,36,0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.activity-title {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.activity-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.activity-card:hover .activity-desc {
  opacity: 1;
  transform: translateY(0);
}
.btn-activity {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 25px;
  transition: var(--transition);
}
.btn-activity:hover { background: var(--orange); border-color: var(--orange); }
.btn-activity svg { width: 14px; height: 14px; }

/* ====================================
   SECTORS
   ==================================== */
.sectors-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.sector-card:hover::before { transform: scaleX(1); }
.sector-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.sector-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,118,36,0.12), rgba(232,118,36,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sector-icon svg { color: var(--orange); width: 24px; height: 24px; }
.sector-name {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sector-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-num {
  font-family: 'Barlow', sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: -1;
}
.about-content { padding-right: 20px; }
.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232,118,36,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-check svg { color: var(--orange); width: 12px; height: 12px; }
.about-item-text { font-size: 15px; color: var(--text); line-height: 1.5; }
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-navy svg { width: 16px; height: 16px; }

/* ====================================
   EXPERTISE / SERVICES
   ==================================== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.expertise-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.expertise-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(232,118,36,0.4);
  transform: translateY(-3px);
}
.exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(232,118,36,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exp-icon svg { color: var(--orange-light); width: 24px; height: 24px; }
.exp-title {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.exp-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(232,118,36,0.25);
}
.testimonial-quote {
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  opacity: 0.25;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  padding-top: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.author-role { font-size: 12px; color: var(--text-light); }
.stars { color: var(--orange); font-size: 13px; margin-bottom: 12px; }

/* ====================================
   NEWS / ACTUALITÉS
   ==================================== */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  cursor: pointer;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:first-child .news-img { height: 260px; }
.news-card:hover .news-img { transform: scale(1.04); }
.news-img-wrap { overflow: hidden; }
.news-body { padding: 20px; }
.news-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.news-title {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-card:first-child .news-title { font-size: 22px; }
.news-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--gray-mid);
}
.news-date { font-size: 12px; color: var(--text-light); }
.news-arrow { color: var(--orange); display: flex; }
.news-arrow svg { width: 16px; height: 16px; }

/* ====================================
   CTA BAND
   ==================================== */
.cta-band {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }
.btn-white {
  padding: 13px 28px;
  background: var(--white);
  color: var(--orange-dark);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-white-outline {
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 10px;
}
.footer-logo img {
  height: 44px !important;
  max-height: 44px !important;
  width: auto !important;
  display: block;
}
.footer-logo-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
}
.footer-logo-text span { color: var(--orange); }
.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.55);
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col-title {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item svg { color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  position: relative;
}
.footer-bottom .gestion-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ====================================
   SEARCH OVERLAY
   ==================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,23,48,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
}
.search-box input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--orange);
  color: var(--white);
  font-size: 28px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  padding: 16px 0;
  outline: none;
}
.search-box input::placeholder { color: rgba(255,255,255,0.35); }
.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.search-close:hover { background: var(--orange); }

/* ====================================
   MOBILE NAV OVERLAY
   ==================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  z-index: 9000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--orange); padding-left: 10px; }

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  animation: fadeUp 0.7s ease forwards;
}
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   UTILITIES
   ==================================== */
.text-orange { color: var(--orange); }
.fw-bold { font-weight: 700; }
.mt-4 { margin-top: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.view-all-wrap { text-align: center; margin-top: 44px; }
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-view-all:hover { background: var(--orange); color: var(--white); }
.btn-view-all svg { width: 16px; height: 16px; }

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1100px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-scroll { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-grid .news-card:last-child { display: none; }
  .expertise-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-content { padding-right: 0; order: -1; }
  .about-image-badge { bottom: 12px; right: 12px; }
  .hero-card { display: none; }
  .hero { height: 520px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .btn-cta { display: none; }
  .hamburger { display: flex; }
  .activities-grid { grid-template-columns: 1fr; }
  .sectors-scroll { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .topbar-left { display: none; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sectors-scroll { grid-template-columns: 1fr; }
  .hero { height: 460px; }
  .hero-title { font-size: 26px; }
}
