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

:root {
  --navy: #1A3A8C;
  --red: #CC0000;
  --blue: #4A7BC4;
  --ink: #1A1A1A;
  --text: #2B3340;
  --text-light: #5a6478; /* ratio ~5.1:1 WCAG AA ✅ */
  --white: #FFFFFF;
  --gray: #F4F7FB;
  --soft-blue: #EAF1FB;
  --border: #DDE5F1;
  --dark: #1A3A8C;
  --dark2: #10275F;
  --shadow: 0 18px 50px rgba(26, 58, 140, .12);
  --shadow-hover: 0 24px 70px rgba(26, 58, 140, .18);
  --gradient: linear-gradient(135deg, #1A3A8C 0%, #4A7BC4 100%);
  --sidebar-w: 42px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px 0 calc(var(--sidebar-w) + 24px); }

/* SIDE BRAND */
.side-brand {
  position: fixed;
  left: 0;
  top: 0;
  width: 42px;
  height: 100vh;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #10275F, #1A3A8C);
  box-shadow: 8px 0 28px rgba(16, 39, 95, .16);
}
.side-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 0 42%, rgba(255,255,255,.18) 43% 45%, transparent 46%),
    linear-gradient(35deg, transparent 0 63%, rgba(204,0,0,.7) 64% 66%, transparent 67%);
}
.side-brand span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.side-brand .sa-suffix {
  font-size: inherit;
  letter-spacing: inherit;
  padding-inline-start: 14px;
  opacity: .85;
}

/* TOPBAR */
.topbar {
  background: #10275F;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  padding: 8px 0;
}
.topbar .container,
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar i { color: var(--red); }
.topbar .sep { color: rgba(255,255,255,.24); }

/* HEADER / NAV */
.header {
  position: sticky;
  top: 0;
  z-index: 990;
  padding: 12px 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(26,58,140,.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(16,39,95,.08);
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
}
.header.is-scrolled {
  padding: 7px 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 16px 48px rgba(16,39,95,.15);
  border-bottom-color: rgba(26,58,140,.14);
}
.logo img { width: auto; object-fit: contain; }
nav ul { display: flex; align-items: center; gap: 2px; }
nav ul li { position: relative; }
nav ul li a {
  display: block;
  padding: 12px 13px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .35px;
  border-radius: 6px;
  white-space: nowrap;
}
nav ul li a:hover,
nav ul li.active > a { color: var(--navy); background: rgba(74,123,196,.1); }
nav ul li.active > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
}
nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 10px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(26,58,140,.1);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s ease;
}
nav ul li:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
nav ul li .submenu li a {
  padding: 11px 14px;
  font-size: 12px;
  border-radius: 5px;
  border-bottom: 1px solid rgba(26,58,140,.07);
}
nav ul li .submenu li:last-child a { border-bottom: 0; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 12px 18px !important;
  border-radius: 6px !important;
  box-shadow: 0 12px 26px rgba(204,0,0,.22);
}
.nav-cta:hover { background: #a90000 !important; transform: translateY(-2px); }

/* HERO */
.hero {
  position: relative;
  min-height: 680px;
  height: calc(100vh - 112px);
  max-height: 820px;
  overflow: hidden;
  background: #10275F;
  isolation: isolate;
}
.page-hero::before,
.dg-section::before,
.counters-section::before,
.devis-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 48%, rgba(255,255,255,.08) 48.15% 48.6%, transparent 48.75%),
    linear-gradient(150deg, transparent 0 63%, rgba(204,0,0,.45) 63.15% 63.45%, transparent 63.65%);
  background-size: 360px 240px, 420px 280px;
  opacity: .68;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .85s ease, transform 1.2s ease;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,39,.42) 0%, rgba(7,16,39,.18) 36%, rgba(7,16,39,.02) 62%, transparent 100%);
}
.slide-1 {
  background: url("../img/transit.jpg") center / 100% 100% no-repeat, linear-gradient(135deg, #10275F, #4A7BC4);
}

.slide-2 {
  background: url("../img/transport.jpg") center / 100% 100% no-repeat, linear-gradient(135deg, #10275F, #4A7BC4);
}
.slide-3 {
  background: url("../img/logistique.jpg") center / cover no-repeat, linear-gradient(135deg, #10275F, #4A7BC4);
}
.slide-4 {
  background: url("../img/livraison.jpg") center / cover no-repeat, linear-gradient(135deg, #10275F, #4A7BC4);
}
.slide-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 90px));
  padding-left: max(82px, calc((100vw - 1240px) / 2 + 66px));
  color: #fff;
}
.slide-tag,
.section-subtitle,
.blog-cat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.slide-tag::before,
.section-subtitle::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}
.slide-content h1 {
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(42px, 6.3vw, 82px);
  line-height: .96;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 760px;
  text-shadow: 0 4px 24px rgba(0,0,0,.32);
}
.slide-content p {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.84);
  background: rgba(0,0,0,.42);
  padding: 12px 14px;
  border-radius: 10px;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: 16px;
  line-height: 1.9;
  text-shadow: 0 2px 10px rgba(0,0,0,.28);
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.slider-dots {
  position: absolute;
  left: max(82px, calc((100vw - 1240px) / 2 + 66px));
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.dot {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  cursor: pointer;
  transition: all .25s ease;
}
.dot.active { width: 58px; background: var(--red); }

/* PAGE HERO */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 88px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(16,39,95,.82), rgba(16,39,95,.42)),
    url("../img/service-hero.svg") right 9% center / 420px no-repeat,
    linear-gradient(135deg, #10275F, #1A3A8C);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}
.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  flex-wrap: wrap;
}
.breadcrumb a { color: #fff; font-weight: 800; }
.breadcrumb a:hover { color: var(--red); }

/* BUTTONS */
.btn-primary,
.btn-white,
.footer-cta,
button.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 26px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(204,0,0,.22);
  overflow: hidden;
}
.btn-primary::after,
.btn-white::after,
.footer-cta::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
}
.btn-primary:hover,
.footer-cta:hover,
button.btn-primary:hover {
  background: #a90000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(204,0,0,.28);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 26px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 6px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: #fff; color: var(--navy) !important; border-color: #fff !important; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 16px 36px rgba(0,0,0,.16); }
.btn-white:hover { color: var(--navy); transform: translateY(-2px); }

/* SECTIONS */
.section { position: relative; padding: 92px 0; }
.section:nth-of-type(even) { background: linear-gradient(180deg, #fff, #F7FAFE); }
.section-header { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.section-header .section-subtitle { justify-content: center; }
.section-title {
  color: #3366CC;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-title span { color: #3366CC; }
.title-line {
  position: relative;
  width: 86px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 35%, var(--blue) 35% 100%);
}
.title-line::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -4px;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  transform: rotate(45deg);
}
.title-line.left { margin-left: 0; }

/* GRIDS / CARDS */
.services-grid,
.activities-grid,
.partners-grid,
.blog-grid,
.value-grid {
  display: grid;
  gap: 26px;
}
.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.activities-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.partners-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 32px 0; }

.service-card,
.activity-card,
.partner-card,
.blog-card,
.value-card,
.contact-form,
.contact-info-card,
.faq-item,
.politique-content > div,
.services-right {
  border-radius: 8px !important;
  border: 1px solid rgba(26,58,140,.1) !important;
  background: rgba(255,255,255,.98) !important;
  box-shadow: var(--shadow);
}
.service-card,
.activity-card,
.value-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::before,
.activity-card::before,
.value-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--blue));
  opacity: .95;
}
.service-card:hover,
.activity-card:hover,
.partner-card:hover,
.blog-card:hover,
.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(74,123,196,.28) !important;
}
.service-icon,
.info-icon {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: #fff;
  font-size: 28px;
  background: var(--gradient);
  box-shadow: 0 18px 36px rgba(26,58,140,.22);
}
.service-card:hover .service-icon { background: var(--red); color: #fff; }
.service-card h4,
.activity-card h4,
.value-card h4,
.blog-body h5,
.contact-form h3,
.contact-info-card h3,
.politique-content h3 {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.35;
}
.service-card h4 { font-size: 14px; margin-bottom: 12px; }
.service-card p,
.activity-card p,
.value-card p,
.blog-body p,
.politique-content p,
.politique-content li {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}
.service-link,
.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--navy) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.service-link::after { content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--red); }
.service-link:hover,
.blog-more:hover { color: var(--red) !important; }

/* INDEX SPECIAL SECTIONS */
.services-three-col {
  display: grid !important;
  grid-template-columns: 280px 670px !important;
  gap: 44px !important;
  align-items: center !important;
  max-width: 994px;
  margin: 0 auto;
  position: relative;
}
.services-left {
  transform: translateX(-44px);
}
.services-left h2 {
  color: var(--ink) !important;
  font-size: clamp(26px, 2.6vw, 38px) !important;
  line-height: 1.08 !important;
}
.services-left > div[style*="background"] { background: linear-gradient(90deg, var(--red), var(--blue)) !important; }
.services-image {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  justify-content: flex-start !important;
  z-index: 1;
}
.services-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 464px;
  width: 0;
  height: 0;
  border-top: 26px solid var(--red);
  border-left: 26px solid transparent;
  z-index: 2;
}
.services-image img {
  width: 490px !important;
  max-width: none !important;
  height: 680px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #EAF1FB;
  border-radius: 8px !important;
  box-shadow: var(--shadow-hover) !important;
}
.services-right {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center;
  justify-self: end;
  width: 340px;
  max-width: none;
  z-index: 3;
  padding: 26px !important;
  transform: none;
}
.about-section { background: #F7FAFE; }
.about-grid,
.dg-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.dg-grid.dg-grid-page { align-items: start; }
.about-img-wrap { position: relative; }
.about-img-wrap > div:first-child,
.dg-grid > div:first-child > div,
.faq-grid > div:last-child > div {
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #1A3A8C, #4A7BC4) !important;
  box-shadow: var(--shadow-hover);
}
.about-img-wrap > div:first-child {
  background:
    linear-gradient(135deg, rgba(16,39,95,.2), rgba(26,58,140,.08)),
    url("../img/equipe.jpg") center / cover no-repeat,
    linear-gradient(135deg, #1A3A8C, #4A7BC4) !important;
  min-height: 460px;
  background-position: center !important;
}
.about-img-wrap > div:first-child i { display: none !important; }
.dg-grid:not(.dg-grid-page) > div:first-child > div {
  background:
    linear-gradient(135deg, rgba(16,39,95,.18), rgba(26,58,140,.08)),
    url("../img/directeur-general.jpg") center / cover no-repeat,
    linear-gradient(135deg, #1A3A8C, #4A7BC4) !important;
  min-height: 520px;
  height: 520px !important;
  background-position: center top !important;
}
.dg-grid.dg-grid-page > div:first-child > div {
  background:
    linear-gradient(135deg, rgba(16,39,95,.18), rgba(26,58,140,.08)),
    url("../img/directeur-general.jpg") center / cover no-repeat,
    linear-gradient(135deg, #1A3A8C, #4A7BC4) !important;
  height: 520px !important;
  background-position: center top !important;
}
.dg-grid > div:first-child > div i { display: none !important; }
.faq-images-wrap .faq-img-1 {
  background: none !important;
}
.faq-images-wrap .faq-img-2 {
  background: none !important;
}
.about-img-wrap i,
.dg-grid i,
.faq-grid > div:last-child i { color: rgba(255,255,255,.24) !important; }
.years-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 126px;
  height: 126px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 40px rgba(204,0,0,.25);
}
.years-badge .num { font-size: 42px; font-weight: 900; line-height: 1; }
.years-badge .lbl { max-width: 100px; font-size: 10px; font-weight: 900; text-align: center; text-transform: uppercase; letter-spacing: 1px; line-height: 1.25; }
.about-features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.feature-item i { color: var(--red); }

.dg-section,
.counters-section {
  position: relative;
  overflow: hidden;
  padding: 36px 0;
  background: linear-gradient(135deg, #10275F, #1A3A8C 62%, #4A7BC4);
  color: #fff;
}
.dg-section .section-title,
.dg-section h2 { color: #fff !important; }
.dg-section p { color: rgba(255,255,255,.78) !important; }

.activity-num {
  color: rgba(26,58,140,.1);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}
.devis-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #8F0000);
}
.devis-section .pre { font-size: 12px; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; opacity: .9; }
.devis-section h2 { margin: 10px 0 30px; font-size: clamp(28px, 4vw, 46px); line-height: 1.1; font-weight: 900; text-transform: uppercase; }

.counters-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; position: relative; z-index: 1; align-items: center; }
.counter-item { text-align: center; color: #fff; padding: 6px 12px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.counter-icon { margin-bottom: 4px; color: #fff; font-size: 22px; opacity: .85; }
.counter-num { font-size: clamp(24px, 2.6vw, 34px); font-weight: 900; line-height: 1; }
.counter-sup { color: var(--red); font-size: 16px; font-weight: 800; margin-left: 4px; }
.counter-label { margin-top: 2px; color: rgba(255,255,255,.72); font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }

/* GALLERY / BLOG */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  height: 210px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-bg,
.blog-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.gallery-item:hover .gallery-bg,
.blog-card:hover .blog-bg { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(26,58,140,.72);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0,0,0,.66));
}
.bg-ship {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.55), rgba(74,123,196,.26)),
    url("../img/gallery-fret-maritime.jpg"),
    linear-gradient(135deg, #10275F, #4A7BC4);
}
.bg-truck {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.52), rgba(74,123,196,.2)),
    url("../img/gallery-fret-routier.jpg"),
    linear-gradient(135deg, #1A1A1A, #4A7BC4);
}
.bg-plane {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.48), rgba(74,123,196,.2)),
    url("../img/gallery-fret-aerien.jpg"),
    linear-gradient(135deg, #4A7BC4, #CDE0F8);
}
.bg-port {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(204,0,0,.16)),
    url("../img/gallery-services-maritimes.jpg"),
    linear-gradient(135deg, #1A3A8C, #CC0000);
}
.bg-warehouse {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery-entreposage.jpg"),
    linear-gradient(135deg, #1A3A8C, #6D7F99);
}
.bg-handling {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.52), rgba(204,0,0,.14)),
    url("../img/expertise-logistique.jpg"),
    linear-gradient(135deg, #1A1A1A, #1A3A8C);
}
.bg-containers {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.46), rgba(74,123,196,.16)),
    url("../img/article-transitaire.jpg"),
    linear-gradient(135deg, #1A3A8C, #6D7F99);
}
.bg-gallery1 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/phot1.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery2 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/photo2.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery3 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/photo3.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery4 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/photo4.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery5 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/photo5.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery6 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/photo6.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery7 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/photo7.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery8 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/d.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery9 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/image2.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery10 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/image6.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery11 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/images3.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery12 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/images4.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-gallery13 {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.5), rgba(74,123,196,.2)),
    url("../img/gallery/images5.jpeg"),
    linear-gradient(135deg, #1A3A8C, #4A7BC4);
}
.bg-dark { background: linear-gradient(135deg, #1A1A1A, #1A3A8C); }
.bg-article-transitaire {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.35), rgba(74,123,196,.1)),
    url("../img/article-transitaire.jpg"),
    linear-gradient(135deg, #10275F, #4A7BC4);
}
.bg-article-groupage {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.34), rgba(74,123,196,.1)),
    url("../img/article-groupage.jpg"),
    linear-gradient(135deg, #1A3A8C, #6D7F99);
}
.bg-article-fret-aerien {
  background-image:
    linear-gradient(135deg, rgba(16,39,95,.32), rgba(74,123,196,.08)),
    url("../img/article-fret-aerien.jpg"),
    linear-gradient(135deg, #4A7BC4, #CDE0F8);
}
.bg-ship::after,
.bg-truck::after,
.bg-plane::after,
.bg-port::after,
.bg-warehouse::after,
.bg-handling::after,
.bg-containers::after,
.bg-dark::after { content: ""; }

.media-photo {
  position: relative;
  min-height: 350px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-hover);
}
.media-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,39,95,.42), rgba(204,0,0,.12));
}
.media-photo i { display: none !important; }
.media-transit { background-image: url("../img/article-transitaire.jpg"); }
.media-project { background-image: url("../img/gallery-services-maritimes.jpg"); }
.media-transport { background-image: url("../img/gallery-fret-routier.jpg"); }
.media-groupage { background-image: url("../img/article-groupage.jpg"); }
.media-fcl { background-image: url("../img/gallery-fret-maritime.jpg"); }
.media-air { background-image: url("../img/article-fret-aerien.jpg"); }
.media-ship { background-image: url("../img/hero-transit.jpg"); }

.blog-card {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-img { height: 215px; overflow: hidden; }
.blog-body { padding: 26px; }
.blog-body h5 { margin: 10px 0 12px; font-size: 14px; }

/* FAQ */
.faq-grid { align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; box-shadow: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.faq-q i { color: var(--red); transition: transform .25s ease; }
.faq-item.open .faq-q { background: var(--navy); color: #fff; }
.faq-item.open .faq-q i { color: #fff; transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 240px; padding: 18px 22px; }

/* PARTNERS */
.partners-section { background: #F7FAFE; padding: 84px 0; }
.partner-card {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.partner-card span { color: var(--navy); font-size: 17px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; }
.world-map-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(26,58,140,.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 44%, rgba(74,123,196,.16), transparent 36%),
    linear-gradient(180deg, #FFFFFF, #EDF5FF);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.world-map-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(26,58,140,.08);
  border-radius: 8px;
  pointer-events: none;
}
.world-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.map-grid path {
  fill: none;
  stroke: rgba(26,58,140,.07);
  stroke-width: 1;
}
.map-land path {
  fill: #1EA7E1;
  stroke: rgba(255,255,255,.72);
  stroke-width: 1.6;
  filter: drop-shadow(0 12px 20px rgba(26,58,140,.13));
}
.map-borders path {
  fill: none;
  stroke: rgba(255,255,255,.38);
  stroke-width: 1.2;
}
.map-lines path {
  fill: none;
  stroke: rgba(204,0,0,.5);
  stroke-width: 2;
  stroke-dasharray: 7 7;
}
.map-point circle:not(.pulse) {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 3;
}
.map-point .pulse {
  fill: rgba(204,0,0,.18);
  transform-origin: center;
  animation: mapPulse 2s ease-out infinite;
}
.map-point.origin circle:not(.pulse) {
  fill: var(--navy);
}
.map-point.origin .pulse {
  fill: rgba(26,58,140,.18);
}
.map-point text {
  fill: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(255,255,255,.96);
  stroke-width: 6px;
  stroke-linejoin: round;
}
.map-countries {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.map-countries span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(26,58,140,.1);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
}
@keyframes mapPulse {
  0% { opacity: .75; transform: scale(.75); }
  100% { opacity: 0; transform: scale(2.2); }
}
/* CONTACT / FORMS */
.contact-grid { align-items: start; }
.contact-info-card {
  padding: 38px;
  color: #fff;
  background: linear-gradient(135deg, #10275F, #1A3A8C) !important;
}
.contact-info-card h3 { color: #fff; margin-bottom: 26px; font-size: 22px; }
.info-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.info-icon { flex-shrink: 0; width: 48px; height: 48px; margin: 0; background: var(--red); font-size: 17px; }
.info-text h5 { margin-bottom: 4px; color: rgba(255,255,255,.64); font-size: 12px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.info-text p, .info-text a { color: #fff; font-size: 14px; }
.contact-form { padding: 38px; }
.contact-form h3 { margin-bottom: 26px; font-size: 22px; }
.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.quote-panel {
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #10275F, #1A3A8C);
  box-shadow: var(--shadow);
}
.quote-panel h3 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.quote-benefits li {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.7;
}
.quote-benefits i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  color: var(--red);
}
.whatsapp-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #19A863;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.whatsapp-quote:hover { background: #12834d; transform: translateY(-2px); }
.quote-note {
  margin-top: 18px;
  color: rgba(255,255,255,.62);
  font-size: 12.5px;
  line-height: 1.75;
}
.quote-form-card { box-shadow: 0 15px 50px rgba(0,0,0,.1); }
.quote-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.quote-actions .btn-primary {
  flex: 1 1 260px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 16px;
}
.quote-actions .quote-mail {
  flex: 0 0 auto;
  border-color: var(--dark);
  color: var(--dark);
}
.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { color: var(--ink); font-size: 12px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-group textarea { min-height: 135px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(74,123,196,.14);
}

/* CONTENT */
.politique-content { max-width: 920px; margin: 0 auto; }
.politique-content h3 { margin: 34px 0 12px; font-size: 21px; }
.politique-content p { margin-bottom: 15px; }
.politique-content ul { padding-left: 22px; margin: 12px 0 18px; }
.politique-content ul li { list-style: disc; margin-bottom: 8px; }
.value-card { border-left: 0 !important; }

/* FOOTER */
footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  color: rgba(255,255,255,.72);
  background:
    linear-gradient(135deg, rgba(10,24,59,.98), rgba(16,39,95,.98)),
    linear-gradient(120deg, transparent 0 55%, rgba(204,0,0,.18) 55.2% 55.6%, transparent 55.8%);
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,.06) 48.2% 48.45%, transparent 48.7%);
  background-size: 420px 280px;
}
footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.15fr 1.25fr 1.45fr; gap: 46px; padding-bottom: 54px; }
.footer-col h4 {
  display: inline-block;
  margin-bottom: 22px;
  padding-bottom: 11px;
  border-bottom: 3px solid var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a,
.footer-hours li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
}
.footer-col ul li a:hover { color: #fff; transform: translateX(3px); }
.footer-col ul li a i,
.footer-hours i { color: var(--red); margin-top: 4px; font-size: 10px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: rgba(255,255,255,.1);
}
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.46);
  text-align: center;
  font-size: 12px;
}
.footer-bottom a { color: #fff; }

/* ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
[data-animate="slide-left"]  { transform: translateX(-40px); }
[data-animate="slide-right"] { transform: translateX(40px); }
[data-animate="scale-up"]    { transform: scale(0.9); opacity: 0; }
[data-animate="slide-left"].is-visible,
[data-animate="slide-right"].is-visible { transform: translateX(0); }
[data-animate="scale-up"].is-visible    { transform: scale(1); opacity: 1; }

/* Stagger grilles */
.services-grid [data-animate]:nth-child(1)  { transition-delay:  0ms; }
.services-grid [data-animate]:nth-child(2)  { transition-delay: 80ms; }
.services-grid [data-animate]:nth-child(3)  { transition-delay:160ms; }
.services-grid [data-animate]:nth-child(4)  { transition-delay:240ms; }
.activities-grid [data-animate]:nth-child(odd)  { transition-delay:  0ms; }
.activities-grid [data-animate]:nth-child(even) { transition-delay: 80ms; }
.value-grid [data-animate]:nth-child(1) { transition-delay:  0ms; }
.value-grid [data-animate]:nth-child(2) { transition-delay: 80ms; }
.value-grid [data-animate]:nth-child(3) { transition-delay:160ms; }
.gallery-item:nth-child(1) { transition-delay:  0ms; }
.gallery-item:nth-child(2) { transition-delay: 60ms; }
.gallery-item:nth-child(3) { transition-delay:120ms; }
.gallery-item:nth-child(4) { transition-delay:180ms; }
.gallery-item:nth-child(5) { transition-delay:240ms; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; position: relative; z-index: 10001; border: none; background: transparent; }
.hamburger span { width: 28px; height: 2px; border-radius: 999px; background: var(--navy); transition: all .25s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* RESPONSIVE */
@media (max-width: 1120px) {
  .container { padding-left: 58px; padding-right: 24px; }
  nav ul li a { padding: 11px 9px; font-size: 11px; }
  .services-grid, .activities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-three-col {
    grid-template-columns: 260px minmax(580px, 1fr) !important;
    gap: 38px !important;
    max-width: 880px;
  }
  .services-left {
    transform: translateX(-22px);
  }
  .services-image {
    grid-column: 2;
  }
  .services-image::after {
    left: 424px;
  }
  .services-image img {
    width: 450px !important;
    height: 620px;
  }
  .services-right {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 330px;
    max-width: none;
    transform: none;
  }
}

@media (max-width: 820px) {
  .side-brand { display: none; }
  .container { padding: 0 20px; }
  .topbar { display: none; }
  .header { padding: 10px 0; }
  .logo img { max-height: 48px; }
  nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    width: 100%;
    height: 100vh;
    padding: 88px 28px 34px;
    overflow-y: auto;
    background: #fff;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav ul li a { padding: 15px 0; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 14px; }
  nav ul li.active > a::after { display: none; }
  nav ul li .submenu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 16px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #fff;
  }
  .hamburger { display: flex; }
  .hero { min-height: 620px; height: auto; }
  .slide-content {
    width: 100%;
    padding: 110px 22px 90px;
  }
  .slide-content h1 { font-size: clamp(40px, 13vw, 58px); }
  .slider-dots { left: 22px; bottom: 24px; }
  .section, .partners-section, .dg-section { padding: 68px 0; }
  .counters-section { padding: 28px 0; }
  .world-map-wrap { padding: 18px; }
  .map-point text { font-size: 20px; }
  .map-countries span { font-size: 11px; }
  .services-three-col,
  .quote-layout,
  .about-grid,
  .dg-grid,
  .faq-grid,
  .contact-grid,
  .form-row { grid-template-columns: 1fr !important; gap: 32px; }
  .services-image {
    grid-column: auto;
    grid-row: auto;
  }
  .services-left {
    transform: none;
  }
  .services-image::after {
    left: auto;
    right: 0;
  }
  .services-image img {
    width: 100% !important;
    height: 420px;
  }
  .services-right {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    max-width: none;
  }
  .dg-grid > div:first-child > div {
    min-height: 430px;
    height: 430px !important;
  }
  .services-grid,
  .activities-grid,
  .partners-grid,
  .blog-grid,
  .value-grid,
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .years-badge { right: 14px; }
}

@media (max-width: 560px) {
  .slide-btns,
  .btn-primary,
  .btn-outline,
  .btn-white { width: 100%; }
  .services-grid,
  .activities-grid,
  .partners-grid,
  .blog-grid,
  .value-grid,
  .counters-grid,
  .gallery-grid,
  .about-features { grid-template-columns: 1fr; }
  .page-hero { padding: 72px 0 66px; }
  .quote-panel,
  .quote-form-card { padding: 26px 20px; }
  .quote-actions .btn-primary,
  .quote-actions .quote-mail { width: 100%; flex-basis: 100%; }
  .world-map { min-width: 760px; }
  .world-map-wrap { overflow-x: auto; }
  .map-countries { justify-content: flex-start; }
  .contact-form,
  .contact-info-card { padding: 26px 20px; }
  .section-title { font-size: 28px; }
  .dg-grid > div:first-child > div {
    min-height: 360px;
    height: 360px !important;
  }
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--blue));
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* FLOATING BUTTONS */
.scroll-top,
.dark-toggle {
  position: fixed;
  bottom: 28px;
  width: 44px; height: 44px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(26,58,140,.28);
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
  z-index: 997;
}
.scroll-top { right: 28px; opacity: 0; transform: translateY(12px); }
.dark-toggle { right: 82px; opacity: 1; transform: translateY(0); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover,
.dark-toggle:hover { background: var(--red); transform: translateY(-2px); }

/* DARK MODE */
[data-theme="dark"] {
  --ink: #F0F4FF;
  --text: #CBD5E8;
  --text-light: #9AA8C0;
  --white: #0F1724;
  --gray: #151F30;
  --soft-blue: #1A2744;
  --border: #253354;
}
[data-theme="dark"] body { background: var(--white); color: var(--text); }
[data-theme="dark"] .header { background: rgba(15,23,36,.92) !important; border-bottom-color: rgba(74,123,196,.15); }
[data-theme="dark"] .header.is-scrolled { background: rgba(15,23,36,.82) !important; }
[data-theme="dark"] nav ul li a { color: var(--text); }
[data-theme="dark"] nav ul li .submenu { background: rgba(15,23,36,.98); border-color: rgba(74,123,196,.18); }
[data-theme="dark"] .service-card,
[data-theme="dark"] .activity-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .partner-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-form { background: rgba(21,31,48,.98) !important; border-color: rgba(74,123,196,.15) !important; }
[data-theme="dark"] .faq-q { color: var(--text); background: transparent; }
[data-theme="dark"] .section:nth-of-type(even) { background: linear-gradient(180deg, #0F1724, #111D2E); }
[data-theme="dark"] .about-section,
[data-theme="dark"] .partners-section { background: #111D2E; }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select { background: #1A2744; border-color: var(--border); color: var(--ink); }
[data-theme="dark"] .section-title { color: #3366CC; }
[data-theme="dark"] .service-card h4,
[data-theme="dark"] .activity-card h4,
[data-theme="dark"] .value-card h4,
[data-theme="dark"] .feature-item { color: var(--ink); }
[data-theme="dark"] footer { background: linear-gradient(135deg, rgba(5,10,24,.99), rgba(10,18,42,.99)); }
[data-theme="dark"] .topbar { background: #060d1e; }

/* NOS-SERVICES RESPONSIVE + FAQ IMAGES */
@media (max-width: 820px) {
  #transit, #projets-industriels, #transport,
  #lcl, #fcl, #fret-aerien, #affretement {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 50px !important;
  }
  .faq-images-wrap { height: 300px !important; }
  .faq-images-wrap .faq-img-1 { width: 78% !important; height: 190px !important; left: 10px !important; }
  .faq-images-wrap .faq-img-2 { width: 82% !important; height: 150px !important; }
}
@media (max-width: 560px) {
  .scroll-top { bottom: 16px; right: 16px; }
  .dark-toggle { bottom: 16px; right: 70px; }
  .faq-images-wrap { height: 240px !important; }
  .faq-images-wrap .faq-img-1 { width: 88% !important; height: 148px !important; }
  .faq-images-wrap .faq-img-2 { width: 92% !important; height: 118px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   STYLE SOBRE — inspiré Promaritime / Flightwatch
   ============================================================ */

/* HERO STATIQUE */
.hero-static {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0E1F4A;
}
.hero-static-bg {
  position: absolute;
  inset: 0;
  background: url("../img/transit.jpg") center / cover no-repeat;
  filter: brightness(.85) saturate(1.05);
  z-index: 0;
}
.hero-static-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(14, 31, 74, .72) 0%, rgba(14, 31, 74, .48) 45%, rgba(14, 31, 74, .18) 100%);
  z-index: 1;
}
.hero-static-inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #fff;
  max-width: 1240px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 28px;
}
.hero-static h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.5px;
  margin: 0 0 22px;
  max-width: 780px;
  color: #fff;
}
.hero-static p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .82);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-static-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 2px;
  transition: background .25s ease, border-color .25s ease;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .08); border-color: #fff; }

/* STATS BANDEAU */
.stats-row {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.stat-item {
  text-align: left;
  padding: 6px 0;
  border-left: 2px solid var(--red);
  padding-left: 18px;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 4px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* SECTIONS SOBRES */
.section-sober { background: #fff; padding: 80px 0; }
.section-sober::before { display: none !important; }

.section-title-sober {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.3px;
  color: var(--dark);
  margin: 14px 0 0;
}
.section-header-sober {
  margin-bottom: 50px;
  max-width: 720px;
}
.section-header-sober .section-subtitle { margin-bottom: 4px; }
.section-header-sober .section-subtitle::before { display: none; }
.section-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-top: 18px;
}

/* INTRO GRID (expertise) */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.intro-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* SERVICES GRID SOBRE */
.services-sober-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.services-sober-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .services-sober-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-sober-grid--4 { grid-template-columns: 1fr; }
}
.service-sober {
  display: block;
  padding: 36px 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background .25s ease;
  color: inherit;
}
.service-sober:hover { background: #FAFBFD; }
.service-sober:hover .service-sober-link { color: var(--red); }
.service-sober:hover .service-sober-link i { transform: translateX(4px); }
.service-sober-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.service-sober h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-sober p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 18px;
}
.service-sober-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .25s ease;
}
.service-sober-link i { transition: transform .25s ease; font-size: 11px; }

/* MOT DG SOBRE */
.dg-sober { background: var(--gray); }
.dg-sober-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.dg-sober-img img {
  width: 100%;
  border-radius: 4px;
  filter: saturate(.85);
}
.dg-sober p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
  margin: 16px 0;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--red);
  margin-top: 8px;
  transition: gap .25s ease;
}
.link-arrow:hover { gap: 14px; }

/* PARTENAIRES SOBRE */
.partners-sober { background: #fff; }
.partners-sober .section-header-sober { margin-bottom: 36px; max-width: 720px; }

/* FAQ SOBRE */
.faq-sober {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-sober .faq-item {
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  margin-bottom: 0;
}
.faq-sober .faq-q {
  background: transparent;
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  padding: 22px 4px;
  border-radius: 0;
}
.faq-sober .faq-q:hover { background: transparent; color: var(--red); }
.faq-sober .faq-item.open .faq-q { background: transparent; color: var(--red); }
.faq-sober .faq-item.open .faq-q i { color: var(--red); }
.faq-sober .faq-a {
  padding: 0 4px;
  background: transparent;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-light);
}
.faq-sober .faq-item.open .faq-a {
  padding: 0 4px 22px;
  max-height: 240px;
}

/* BLOG CARD SOBRE */
.blog-card-sober {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
  color: inherit;
}
.blog-card-sober:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.blog-card-sober .blog-img { height: 180px; }
.blog-card-sober-body { padding: 24px 22px; }
.blog-card-sober .blog-cat { margin-bottom: 12px; }
.blog-card-sober h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: none;
}

/* CTA DEVIS SOBRE */
.cta-sober {
  background: #0E1F4A;
  padding: 60px 0;
  color: #fff;
}
.cta-sober-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-sober h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-sober p {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  margin: 0;
}

/* RESPONSIVE — STYLE SOBRE */
@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .services-sober-grid { grid-template-columns: repeat(2, 1fr); }
  .dg-sober-grid { grid-template-columns: 1fr; gap: 30px; }
  .dg-sober-img { max-width: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 640px) {
  .hero-static { min-height: 440px; }
  .hero-static-inner { padding-top: 70px; padding-bottom: 70px; }
  .services-sober-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stat-num { font-size: 26px; }
  .section-sober { padding: 56px 0; }
  .cta-sober-inner { justify-content: flex-start; }
}

/* ========================================
   READ-MORE / EXPAND (Mot PDG, DG, etc.)
   ======================================== */
.readmore { position: relative; }
.readmore-rest {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .55s ease, opacity .35s ease;
}
.readmore.open .readmore-rest {
  max-height: 3000px;
  opacity: 1;
}
.readmore:not(.open) .readmore-preview {
  position: relative;
}
.readmore:not(.open) .readmore-preview::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--readmore-fade, #fff));
  pointer-events: none;
}
.readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 22px;
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .25s ease, color .25s ease;
}
.readmore-btn:hover { background: var(--red); color: #fff; }
.readmore-btn i { transition: transform .35s ease; font-size: 11px; }
.readmore.open .readmore-btn i { transform: rotate(180deg); }
.readmore-btn .lbl-hide { display: none; }
.readmore.open .readmore-btn .lbl-show { display: none; }
.readmore.open .readmore-btn .lbl-hide { display: inline; }

/* ========================================
   FOOTER LOGO — fond transparent, intégration directe
   ======================================== */
footer .footer-grid > div:first-child > img[src*="ada-logo"] {
  height: 44px !important;
  width: auto !important;
  margin-bottom: 18px;
}

/* ========================================
   PAGES SERVICES DÉTAIL (4 métiers)
   ======================================== */

/* HERO SERVICE — image immersive + accent couleur par métier */
.service-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #0E1F4A;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.85) saturate(1.05);
  z-index: 0;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 31, 74, .75) 0%, rgba(14, 31, 74, .45) 55%, rgba(14, 31, 74, .15) 100%);
  z-index: 1;
}
.service-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 70px;
  color: #fff;
  width: 100%;
}
.service-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.service-hero-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 8px 14px;
  border-radius: 2px;
}
.service-hero-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.service-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.8px;
  margin: 0 0 22px;
  max-width: 880px;
  color: #fff;
}
.service-hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  max-width: 680px;
  margin-bottom: 30px;
}
.service-hero-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-hero-breadcrumb a { color: rgba(255,255,255,.65); }
.service-hero-breadcrumb a:hover { color: #fff; }
.service-hero-breadcrumb i { font-size: 9px; opacity: .6; }

/* Variantes par métier (couleurs d'accent côté chiffres-clés / process) */
.svc-logistique .service-hero-bg { background-image: url("../img/logistique.jpg"); }
.svc-aerien .service-hero-bg { background-image: url("../img/article-fret-aerien.jpg"); }
.svc-maritime .service-hero-bg { background-image: url("../img/gallery-fret-maritime.jpg"); }
.svc-transport .service-hero-bg { background-image: url("../img/gallery-fret-routier.jpg"); }

/* SUB-NAV STICKY interne aux pages service */
.svc-subnav {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(16, 39, 95, .05);
}
.svc-subnav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-subnav-inner::-webkit-scrollbar { display: none; }
.svc-subnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  transition: color .2s ease;
}
.svc-subnav a i { font-size: 12px; opacity: .7; }
.svc-subnav a:hover { color: var(--dark); }
.svc-subnav a.active {
  color: var(--red);
}
.svc-subnav a.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 2px;
  background: var(--red);
}

/* SECTION ANCHOR offset pour sticky */
.svc-anchor { scroll-margin-top: 150px; }

/* OVERVIEW BLOCK — 2 colonnes */
.svc-overview {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}
.svc-overview-content .section-subtitle { margin-bottom: 8px; }
.svc-overview-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -.4px;
  margin-bottom: 22px;
}
.svc-overview-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 14px;
}
.svc-overview-figure {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.svc-overview-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(16,39,95,.18), rgba(16,39,95,.0) 55%);
}
.svc-overview-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

/* SOUS-SERVICES GRID — Cartes détaillées avec icône & liste */
.svc-sublist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
#prestations .container { max-width: 1440px; }
.svc-sublist--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border: none;
}
.svc-sublist--4 .svc-subcard {
  padding: 34px 26px;
  border: 1px solid var(--border);
  border-radius: 6px;
}
@media (max-width: 1100px) { .svc-sublist--4 { grid-template-columns: repeat(2, 1fr); } }
.svc-subcard {
  padding: 38px 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background .25s ease;
}
.svc-subcard:hover { background: #FAFBFD; }
.svc-subcard-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.svc-subcard-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-blue);
  color: var(--dark);
  border-radius: 4px;
  font-size: 22px;
  flex-shrink: 0;
}
.svc-subcard h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0;
}
.svc-subcard-lead {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 18px;
}
.svc-subcard-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-subcard-list li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
  padding: 7px 0 7px 22px;
  position: relative;
}
.svc-subcard-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 2px;
  background: var(--red);
}

/* PROCESS TIMELINE — 5 étapes */
.svc-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 30px;
}
.svc-process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.svc-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
  z-index: 1;
}
.svc-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--dark);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--dark);
  transition: background .25s, color .25s;
}
.svc-step:hover .svc-step-num { background: var(--red); border-color: var(--red); color: #fff; }
.svc-step h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.svc-step p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* CHIFFRES-CLÉS sur fond sombre */
.svc-stats {
  background: linear-gradient(135deg, #10275F, #1A3A8C);
  padding: 70px 0;
  color: #fff;
}
.svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}
.svc-stat {
  text-align: left;
  padding: 8px 0 8px 20px;
  border-left: 2px solid var(--red);
}
.svc-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.svc-stat-value span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-left: 6px;
}
.svc-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.5;
}

/* AVANTAGES — pourquoi nous (3 colonnes feature) */
.svc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.svc-feature {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.svc-feature:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.svc-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 4px;
  margin-bottom: 22px;
}
.svc-feature h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.35;
}
.svc-feature p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

/* USE CASES — secteurs clients */
.svc-sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.svc-sector {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  text-align: center;
  transition: background .25s;
}
.svc-sector:hover { background: var(--soft-blue); }
.svc-sector i {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
  display: block;
}
.svc-sector span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .3px;
}

/* AUTRES SERVICES — bandeau de cross-link */
.svc-related {
  background: var(--gray);
  padding: 70px 0;
}
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-related-card {
  display: block;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color .25s, transform .25s;
  color: inherit;
}
.svc-related-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.svc-related-card i {
  font-size: 22px;
  color: var(--red);
  margin-bottom: 14px;
}
.svc-related-card h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: .2px;
}
.svc-related-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0 0 14px;
}
.svc-related-card span.arrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.svc-related-card span.arrow i { font-size: 11px; margin-left: 6px; transition: margin .25s; }
.svc-related-card:hover span.arrow i { margin-left: 12px; }

/* ========================================
   NOS-SERVICES — Index 4 métiers
   ======================================== */
.svc-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.svc-index-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.svc-index-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.svc-index-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
}
.svc-index-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,39,95,.18) 0%, rgba(16,39,95,.55) 100%);
}
.svc-index-img-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 2px;
  z-index: 2;
}
.svc-index-img-title {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}
.svc-index-img-title h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.3px;
  margin: 0;
  line-height: 1.1;
}
.svc-index-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.svc-index-lead {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 20px;
}
.svc-index-sublist {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  border-top: 1px solid var(--border);
}
.svc-index-sublist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.svc-index-sublist li i {
  color: var(--red);
  font-size: 11px;
}
.svc-index-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 14px 22px;
  background: var(--dark);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .25s;
}
.svc-index-cta:hover { background: var(--red); }
.svc-index-cta i { font-size: 12px; transition: transform .25s; }
.svc-index-card:hover .svc-index-cta i { transform: translateX(4px); }

/* RESPONSIVE — pages service */
@media (max-width: 980px) {
  .svc-overview { grid-template-columns: 1fr; gap: 36px; }
  .svc-overview-figure { min-height: 320px; }
  .svc-sublist { grid-template-columns: 1fr; }
  .svc-process { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .svc-process::before { display: none; }
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .svc-features { grid-template-columns: 1fr; gap: 18px; }
  .svc-sectors { grid-template-columns: repeat(2, 1fr); }
  .svc-related-grid { grid-template-columns: 1fr; }
  .svc-index-grid { grid-template-columns: 1fr; }
  .svc-subnav { top: 68px; }
  .svc-anchor { scroll-margin-top: 140px; }
}
@media (max-width: 640px) {
  .service-hero { min-height: 440px; }
  .service-hero-inner { padding-top: 100px; padding-bottom: 50px; }
  .svc-process { grid-template-columns: 1fr; }
  .svc-stats-grid { grid-template-columns: 1fr; }
  .svc-sectors { grid-template-columns: 1fr 1fr; }
  .svc-index-img { height: 180px; }
  .svc-index-img-title h3 { font-size: 22px; }
}
