/*
Theme Name: ILS Services
Theme URI: https://www.ilsgn.com
Author: ILS Services SAS
Author URI: https://www.ilsgn.com
Description: Thème WordPress personnalisé pour ILS Services SAS — Logistique Maritime & Terrestre en Guinée
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ils-services
Tags: logistics, maritime, custom-theme, multilingual
*/

<style>
/* =============================================
   DESIGN SYSTEM — ILS SERVICES
   Couleurs officielles: Bleu ILS + Rouge + Blanc
   ============================================= */
:root {
  --blue:        #1565C0;
  --blue-dark:   #0D47A1;
  --blue-deeper: #082B6B;
  --blue-light:  #1976D2;
  --blue-pale:   #E3F0FF;
  --red:         #D32F2F;
  --red-dark:    #B71C1C;
  --red-light:   #EF5350;
  --white:       #FFFFFF;
  --off-white:   #F5F8FF;
  --gray-100:    #EEF2F8;
  --gray-300:    #C5D1E8;
  --gray-500:    #7A90B5;
  --gray-700:    #3A4F72;
  --navy:        #0A1A3A;
  --font-head:   "Montserrat", sans-serif;
  --font-body:   "Roboto", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--navy); overflow-x: hidden; }

/* Hide/show language sections */
body[data-lang="fr"] [data-en], body[data-lang="fr"] [data-zh] { display: none !important; }
body[data-lang="en"] [data-fr], body[data-lang="en"] [data-zh] { display: none !important; }
body[data-lang="zh"] [data-fr], body[data-lang="zh"] [data-en] { display: none !important; }

/* ---- UTILITIES ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 10px;
  margin-bottom: 16px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.35); }
.btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border: none; cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-bar {
  background: var(--navy);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lang-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.lang-contact {
  display: flex; gap: 28px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.lang-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.lang-contact a:hover { color: var(--white); }
.lang-switcher { display: flex; gap: 4px; align-items: center; }
.lang-btn {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.lang-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 12px; }
.ops-badge {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 6px;
}
.ops-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(10,26,58,0.1);
  border-bottom: 3px solid var(--blue);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 80px;
  overflow: hidden;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; height: 80px; overflow: hidden; }
.nav-logo img { height: 76px; width: auto; object-fit: contain; max-width: 180px; display: block; }

.nav-menu { display: flex; list-style: none; gap: 0; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-700);
  text-decoration: none;
  padding: 28px 16px;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--blue); border-bottom-color: var(--blue); }
.chevron { font-size: 9px; opacity: 0.5; }

.dropdown {
  position: absolute; top: calc(100% + 3px); left: 0;
  min-width: 250px;
  background: var(--white);
  border-top: 3px solid var(--blue);
  border-left: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 12px 40px rgba(10,26,58,0.12);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-menu > li:hover .dropdown { opacity:1; pointer-events:all; transform:translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-700);
  text-decoration: none;
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.dropdown a::before { content: "›"; color: var(--blue); opacity: 0; transition: opacity 0.2s; }
.dropdown a:hover { color: var(--blue); background: var(--blue-pale); padding-left: 26px; }
.dropdown a:hover::before { opacity: 1; }

.nav-cta {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 13px 24px;
  margin-left: 16px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 90vh; min-height: 620px;
  overflow: hidden;
  background: var(--blue-deeper);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
  filter: brightness(0.38);
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.slide-1 .hero-slide-bg { background-image: url('https://www.ilsgn.com/wp-content/uploads/2026/02/1-Dechargement-nocturne-dun-bulldozer-au-port-de-Conakry.jpg'); }
.slide-2 .hero-slide-bg { background-image: url('https://www.ilsgn.com/wp-content/uploads/2026/02/2-Levage-dune-pelle-hydraulique-sur-la-terre-plein-portuaire.jpeg'); }
.slide-3 .hero-slide-bg { background-image: url('https://www.ilsgn.com/wp-content/uploads/2026/02/3-Visite-douaniere-dans-un-depot-sous-douane-chez-lun-de-nos-clients.jpeg'); }

/* Blue gradient overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(8,43,107,0.88) 0%, rgba(13,71,161,0.70) 45%, rgba(13,71,161,0.25) 100%);
  z-index: 1;
}
/* Bottom fade */
.hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  z-index: 2;
}

/* Red accent line */
.hero-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--red) 0%, transparent 100%);
  z-index: 3;
}

.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  justify-content: center;
  height: 100%; padding-bottom: 80px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow-line { width: 36px; height: 3px; background: var(--red); }
.hero-eyebrow span {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  animation: fadeUp 0.8s 0.15s ease both;
  max-width: 860px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero-title em { font-style: normal; color: var(--red); }
.hero-title .blue-hl { color: #90CAF9; }
.hero-sub {
  margin-top: 20px;
  font-size: 17px; font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-actions {
  margin-top: 36px;
  display: flex; gap: 14px;
  animation: fadeUp 0.8s 0.45s ease both;
}

/* Stats strip */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stat {
  padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 40px; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hero-stat-num sup { font-size: 18px; vertical-align: super; }
.hero-stat-num .red { color: var(--red-light); }
.hero-stat-label {
  font-family: var(--font-head);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 2px;
}

/* Slide controls */
.hero-dots {
  position: absolute; right: 48px; top: 50%;
  transform: translateY(-50%);
  z-index: 5; display: flex; flex-direction: column; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer; transition: all 0.3s;
}
.hero-dot.active { background: var(--red); border-color: var(--red); transform: scale(1.3); }

.hero-caption {
  position: absolute; bottom: 80px; right: 80px;
  z-index: 4; text-align: right; max-width: 280px;
}
.hero-caption p { font-size: 12px; color: rgba(255,255,255,0.45); font-style: italic; line-height: 1.5; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip { background: var(--red); padding: 12px 0; overflow: hidden; }
.marquee-track { display:flex; animation:marquee 30s linear infinite; white-space:nowrap; }
.marquee-item {
  display:inline-flex; align-items:center; gap:18px;
  font-family: var(--font-head);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); padding-right: 40px;
}
.marquee-item .sep { width:3px;height:3px;background:rgba(255,255,255,0.5);border-radius:50%; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =============================================
   ABOUT
   ============================================= */
.about { padding: 110px 0; background: var(--white); position: relative; overflow: hidden; }
.about::after {
  content: "ILS"; position: absolute;
  right: -20px; top: 40px;
  font-family: var(--font-head); font-size: 260px; font-weight: 900;
  color: rgba(21,101,192,0.03); pointer-events: none; user-select: none; line-height: 1;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; position: relative;
  border-radius: 2px;
  border-bottom: 4px solid var(--red);
}
.about-img-main img { width:100%;height:100%;object-fit:cover;transition:transform 0.6s; }
.about-img-main:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: -20px; left: 24px;
  background: var(--blue-dark); color: var(--white);
  padding: 18px 24px; border-left: 4px solid var(--red);
  min-width: 160px;
}
.about-badge strong { font-family: var(--font-head); font-size: 36px; font-weight: 900; display: block; line-height: 1; }
.about-badge span { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }
.about-img-accent {
  position: absolute; top: 24px; right: -24px;
  width: 160px; height: 130px;
  overflow: hidden; border: 4px solid var(--white);
  box-shadow: 0 8px 32px rgba(10,26,58,0.2);
}
.about-img-accent img { width:100%;height:100%;object-fit:cover; }
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(30px,3.5vw,48px); font-weight: 800;
  line-height: 1.1; color: var(--navy); margin-bottom: 18px;
}
.about-content h2 span { color: var(--blue); }
.about-content h2 .red { color: var(--red); }
.about-content p { font-size: 15.5px; line-height: 1.8; color: var(--gray-700); margin-bottom: 18px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.pillar {
  padding: 14px 16px; border-left: 3px solid var(--blue);
  background: var(--off-white); transition: all 0.25s; cursor: default;
}
.pillar:hover { background: var(--blue-dark); border-left-color: var(--red); }
.pillar:hover .pillar-title { color: var(--white); }
.pillar:hover .pillar-desc { color: rgba(255,255,255,0.6); }
.pillar-title { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 3px; transition: color 0.25s; }
.pillar-desc { font-size: 12.5px; color: var(--gray-500); transition: color 0.25s; }

/* =============================================
   SERVICES
   ============================================= */
.services { padding: 110px 0; background: var(--navy); position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red) 0%, var(--blue) 50%, var(--red) 100%);
}
.services-header { text-align: center; margin-bottom: 64px; }
.services-header h2 { font-family: var(--font-head); font-size: clamp(34px,4.5vw,64px); font-weight: 900; color: var(--white); margin-bottom: 14px; text-transform: uppercase; }
.services-header h2 span { color: var(--red-light); }
.services-header p { font-size: 15.5px; color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.service-card {
  background: rgba(255,255,255,0.03); padding: 44px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
  cursor: pointer; transition: background 0.3s;
  display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--red);
  transition: width 0.4s ease;
}
.service-card:hover { background: rgba(21,101,192,0.1); }
.service-card:hover::after { width: 100%; }
.service-num {
  font-family: var(--font-head); font-size: 64px; font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute; top: 12px; right: 24px;
  line-height: 1; user-select: none; transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(211,47,47,0.08); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(211,47,47,0.1);
  border: 1px solid rgba(211,47,47,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 20px;
}
.service-title { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.15; text-transform: uppercase; }
.service-desc { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); flex: 1; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.service-tag {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red-light); text-decoration: none;
  margin-top: 20px; transition: gap 0.2s;
}
.service-link:hover { gap: 14px; }
.service-card.featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  background: rgba(21,101,192,0.07);
  border-color: rgba(21,101,192,0.2); padding: 56px;
}
.service-card.featured .service-visual {
  background: var(--navy); aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.service-card.featured .service-visual img { width:100%;height:100%;object-fit:cover;opacity:0.7; }
.service-card.featured .service-visual::after {
  content: "PROJECT CARGO";
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; color: var(--white);
  background: var(--red); padding: 4px 10px;
}
.service-card.featured .service-body { display: flex; flex-direction: column; justify-content: center; }
.service-card.featured .service-title { font-size: 34px; }

/* =============================================
   DIFFÉRENCIATEURS
   ============================================= */
.diff { padding: 110px 0; background: var(--off-white); }
.diff-header { margin-bottom: 60px; }
.diff-header h2 { font-family: var(--font-head); font-size: clamp(30px,3.8vw,56px); font-weight: 800; color: var(--navy); max-width: 560px; text-transform: uppercase; }
.diff-header h2 span { color: var(--blue); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.diff-card {
  background: var(--white); padding: 36px 32px;
  border-top: 4px solid var(--gray-100);
  transition: border-top-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.diff-card:hover { border-top-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(21,101,192,0.12); }
.diff-num { font-family: var(--font-head); font-size: 44px; font-weight: 900; color: rgba(21,101,192,0.07); margin-bottom: 16px; line-height: 1; }
.diff-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.diff-desc { font-size: 14px; line-height: 1.75; color: var(--gray-500); }
.official-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 12px; margin-bottom: 10px;
}

/* =============================================
   PROJETS
   ============================================= */
.projects { padding: 110px 0; background: var(--white); }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.projects-header h2 { font-family: var(--font-head); font-size: clamp(30px,3.8vw,56px); font-weight: 800; color: var(--navy); max-width: 480px; text-transform: uppercase; line-height: 1.1; }
.projects-header h2 span { color: var(--blue); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { background: var(--navy); position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.project-bg { position: absolute; inset: 0; transition: transform 0.5s ease; }
.project-card:hover .project-bg { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,26,58,0.95) 0%, rgba(10,26,58,0.5) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.project-sector {
  display: inline-block;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 4px 10px; margin-bottom: 10px; align-self: flex-start;
}
.project-title { font-family: var(--font-head); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1.15; margin-bottom: 8px; }
.project-loc { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.project-card.big { grid-column: span 2; aspect-ratio: auto; min-height: 380px; }

/* =============================================
   COUVERTURE PORTS
   ============================================= */
.ports { padding: 100px 0; background: var(--blue-dark); position: relative; overflow: hidden; }
.ports::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red) 0%, transparent 60%);
}
.ports-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.ports-content h2 { font-family: var(--font-head); font-size: clamp(30px,3.8vw,52px); font-weight: 800; color: var(--white); margin-bottom: 14px; text-transform: uppercase; line-height: 1.1; }
.ports-content h2 span { color: #90CAF9; }
.ports-content p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.ports-list { display: flex; flex-direction: column; gap: 0; margin-top: 28px; }
.port-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left 0.2s; cursor: default;
}
.port-item:hover { padding-left: 8px; }
.port-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.port-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); flex: 1; }
.port-type { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.ports-map { display: flex; align-items: center; justify-content: center; }
.map-container { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 32px; }

/* =============================================
   PROCESSUS
   ============================================= */
.process { padding: 110px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header h2 { font-family: var(--font-head); font-size: clamp(30px,3.8vw,56px); font-weight: 800; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; }
.process-header h2 span { color: var(--red); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 35px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: var(--blue-pale); z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 70px; height: 70px;
  background: var(--white); border: 3px solid var(--blue);
  border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  color: var(--blue); position: relative;
  transition: all 0.3s;
}
.process-step:hover .step-circle { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 8px 24px rgba(21,101,192,0.3); }
.step-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 13px; line-height: 1.7; color: var(--gray-500); }

/* =============================================
   PARTENAIRES
   ============================================= */
.partners { padding: 72px 0; background: var(--gray-100); border-top: 1px solid var(--gray-300); }
.partners-label { text-align: center; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 36px; }
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; }
.partner-logo {
  width: 170px; height: 96px;
  display: flex; align-items: center; justify-content: center; padding: 14px;
  border: 1px solid var(--gray-300); margin: -1px;
  filter: grayscale(100%); opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
.partner-logo:hover { filter: none; opacity: 1; }
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band { padding: 100px 0; background: var(--blue-deeper); position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(211,47,47,0.12) 0%, transparent 55%);
}
.cta-band-inner { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(30px,4vw,58px); font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 1.05; }
.cta-band h2 span { color: var(--red-light); }
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.55); margin-top: 14px; max-width: 520px; line-height: 1.7; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: #040E22; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding: 64px 0 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin: 16px 0 24px; max-width: 280px; }
.footer-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 4px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 13px; border-radius: 2px;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.footer-col h4 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.45); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.footer-links a::before { content: "›"; color: var(--red-light); opacity: 0; transition: opacity 0.2s; font-size: 16px; }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; }
.contact-icon { width: 30px; height: 30px; background: rgba(21,101,192,0.2); border: 1px solid rgba(21,101,192,0.3); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.contact-info { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.contact-info a { color: rgba(255,255,255,0.45); text-decoration: none; }
.contact-info a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--white); }

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .about-grid, .ports-inner { grid-template-columns: 1fr; gap: 48px; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.big { grid-column: span 1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-steps::before { display: none; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .service-card.featured { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-stat-num { font-size: 28px; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ---- TEXT-BASED PARTNER LOGOS ---- */
.partner-logo-text {
  width: 170px; height: 96px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--gray-300); margin: -1px;
  transition: border-color 0.3s, background 0.3s;
  cursor: default; gap: 2px;
}
.partner-logo-text:hover {
  background: var(--c);
  border-color: var(--c);
}
.partner-logo-text:hover .plt-name { color: var(--white); }
.partner-logo-text:hover .plt-sub  { color: rgba(255,255,255,0.7); }
.plt-name {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c);
  line-height: 1;
  transition: color 0.3s;
}
.plt-sub {
  font-family: var(--font-head);
  font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s;
}


/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery { padding: 90px 0 100px; background: var(--off-white); }
.gallery-header { margin-bottom: 44px; }
.gallery-header h2 { font-family: var(--font-head); font-size: clamp(28px,3.5vw,48px); font-weight: 800; color: var(--navy); text-transform: uppercase; }
.gallery-header h2 span { color: var(--blue); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px;
  gap: 4px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item.big { grid-row: span 1; }
.gallery-img-wrap {
  width: 100%; height: 100%;
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-img-wrap:hover img { transform: scale(1.06); filter: brightness(0.55); }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(10,26,58,0.92) 0%, rgba(10,26,58,0.4) 50%, transparent 100%);
  padding: 0;
  pointer-events: none;
}
.gallery-caption-box {
  padding: 20px 22px;
  transform: translateY(6px);
  transition: transform 0.4s ease;
}
.gallery-img-wrap:hover .gallery-caption-box { transform: translateY(0); }
.gallery-tag {
  display: inline-block;
  font-family: var(--font-head); font-size: 9.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 3px 10px; margin-bottom: 8px;
}
.gallery-caption-text {
  font-size: 12.5px; font-weight: 400;
  color: rgba(255,255,255,0.82); line-height: 1.5;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.gallery-img-wrap:hover .gallery-caption-text {
  max-height: 80px; opacity: 1;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 240px; }
  .gallery-item.big { grid-column: span 2; height: 280px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.big { height: 220px; grid-column: span 1; }
}


/* =============================================
   CLIENTS GRID WITH HOVER LOGO TOOLTIP
   ============================================= */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.client-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 22px 16px 18px;
  cursor: default;
  transition: border-color 0.3s, background 0.3s;
  display: flex; flex-direction: column; align-items: center;
  overflow: visible;
}
.client-card:hover {
  border-color: var(--cc);
  background: var(--off-white);
  z-index: 10;
}
.client-name-row {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-align: center;
}
.client-name {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 900;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--cc, var(--navy));
  transition: color 0.2s;
  line-height: 1;
}
.client-sub {
  font-family: var(--font-head);
  font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.2s;
}
.client-card:hover .client-sub { color: var(--gray-700); }

/* Tooltip card */
.client-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%; transform: translateX(-50%) translateY(6px);
  width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-top: 3px solid var(--cc);
  box-shadow: 0 12px 40px rgba(10,26,58,0.18);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}
.client-card:hover .client-tooltip {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.client-tooltip-logo {
  width: 100%; height: 90px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  overflow: hidden;
}
.client-tooltip-info {
  padding: 10px 12px;
  border-top: 1px solid var(--gray-100);
}
.client-tooltip-info strong {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--navy);
  display: block; margin-bottom: 4px;
}
.client-tooltip-info p {
  font-size: 11.5px; line-height: 1.5;
  color: var(--gray-500);
}
@media (max-width: 900px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-tooltip { display: none; }
}


/* Projects Full Page */
.proj-full-card { position:relative; overflow:hidden; border-radius:2px; }
.proj-full-bg { width:100%;height:100%;min-height:280px;position:relative;transition:transform 0.5s; }
.proj-full-card:hover .proj-full-bg { transform:scale(1.03); }
.proj-full-overlay {
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(10,26,58,0.96) 0%, rgba(10,26,58,0.55) 55%, transparent 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:28px 28px 24px;
}
.proj-full-title { font-family:var(--font-head);font-size:20px;font-weight:800;text-transform:uppercase;color:var(--white);line-height:1.15;margin-bottom:8px; }
.proj-full-meta { display:flex;gap:16px;margin-bottom:10px; }
.proj-full-meta span { font-family:var(--font-head);font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:rgba(255,255,255,0.5); }
.proj-full-desc { font-size:13px;line-height:1.65;color:rgba(255,255,255,0.65);max-height:0;overflow:hidden;opacity:0;transition:max-height 0.4s,opacity 0.4s; }
.proj-full-card:hover .proj-full-desc { max-height:120px;opacity:1; }
@media(max-width:900px){
  #projects-page .container>div { grid-template-columns:1fr!important; }
  .proj-full-card[style*="grid-column"] { grid-column:span 1!important; }
}


/* =============================================
   QUOTE MODAL
   ============================================= */
.svc-opt {
  border: 2px solid var(--gray-300); padding: 18px 16px;
  cursor: pointer; transition: all 0.2s; position: relative;
  display: flex; flex-direction: column; gap: 4px;
  border-radius: 2px;
}
.svc-opt:hover { border-color: var(--blue); background: var(--blue-pale); }
.svc-opt.selected { border-color: var(--blue); background: var(--blue-pale); }
.svc-opt.selected::after {
  content: "✓"; position: absolute; top: 10px; right: 14px;
  width: 22px; height: 22px; background: var(--blue); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; line-height: 22px; text-align: center;
}
.svc-opt-icon { font-size: 22px; margin-bottom: 4px; }
.svc-opt-name { font-family: var(--font-head); font-size: 13px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.3px; }
.svc-opt-desc { font-size: 12px; color: var(--gray-500); line-height: 1.4; }
.qfield { display: flex; flex-direction: column; gap: 6px; }
.qlabel { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-700); }
.qinput {
  border: 1px solid var(--gray-300); padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px; color: var(--navy);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 2px; width: 100%;
}
.qinput:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }


/* =============================================
   INNER PAGE OVERLAY SYSTEM
   ============================================= */
.page-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 800;
  overflow-y: auto;
  animation: pgFadeIn 0.25s ease;
}
@keyframes pgFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.page-topbar {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.page-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-back-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-back-btn:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}
.page-title-bar {
  color: white;
}
.page-title-bar .pg-cat {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-light);
}
.page-title-bar h1 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  margin: 0;
  line-height: 1.1;
}
.page-close-btn {
  background: var(--red);
  border: none;
  color: white;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.page-close-btn:hover { background: #b71c1c; }

.page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}
.page-hero-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #040E22 100%);
  padding: 56px 40px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.page-hero-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.page-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(211,47,47,0.2);
  border: 1px solid rgba(211,47,47,0.4);
  color: #EF9A9A;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  line-height: 1.7;
}

/* Content blocks */
.pg-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 48px 0; }
.pg-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin: 48px 0; }
.pg-section { margin: 48px 0; }
.pg-section-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.pg-section-h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}
.pg-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.pg-p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.pg-card {
  border: 1px solid var(--gray-300);
  padding: 28px;
  position: relative;
}
.pg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blue);
}
.pg-card-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.pg-card-text { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; }
.pg-icon { font-size: 28px; margin-bottom: 14px; }
.pg-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 40px 0;
  background: var(--navy);
}
.pg-stat {
  background: #0A1A3A;
  padding: 28px 24px;
  text-align: center;
}
.pg-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: white;
  display: block;
}
.pg-stat-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 6px;
}
.pg-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin: 40px 0; }
.pg-team-card {
  text-align: center;
  border: 1px solid var(--gray-300);
  padding: 28px 20px;
}
.pg-team-avatar {
  width: 72px; height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.pg-team-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.pg-team-role {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}
.pg-team-desc { font-size: 12px; color: var(--gray-500); line-height: 1.6; }
.pg-divider { border: none; border-top: 1px solid var(--gray-300); margin: 40px 0; }
.pg-cta-box {
  background: var(--navy);
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
  position: relative;
}
.pg-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.pg-steps { counter-reset: steps; }
.pg-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  counter-increment: steps;
}
.pg-step-num {
  width: 40px; height: 40px;
  background: var(--blue);
  color: white;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pg-step-content {}
.pg-step-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.pg-step-text { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; }
.pg-news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 40px 0; }
.pg-news-card {
  border: 1px solid var(--gray-300);
  overflow: hidden;
}
.pg-news-head {
  background: var(--navy);
  padding: 20px 24px;
}
.pg-news-date {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.pg-news-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 1.2;
}
.pg-news-body {
  padding: 20px 24px;
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.7;
}
.pg-policy-block {
  background: var(--off-white);
  border-left: 4px solid var(--blue);
  padding: 24px 28px;
  margin: 20px 0;
}
.pg-policy-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.pg-policy-text { font-size: 13.5px; color: var(--gray-700); line-height: 1.75; }
.pg-hse-icon-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin: 40px 0;
}
.pg-hse-card {
  background: var(--off-white);
  padding: 28px 24px;
  text-align: center;
  border-top: 3px solid var(--blue);
}
.pg-hse-icon { font-size: 36px; margin-bottom: 12px; }
.pg-hse-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.pg-hse-text { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

@media(max-width:800px){
  .pg-grid-2,.pg-grid-3,.pg-team-grid,.pg-hse-icon-row,.pg-news-grid { grid-template-columns:1fr!important; }
  .pg-stat-row { grid-template-columns: 1fr 1fr; }
  .page-hero-title { font-size: 26px; }
  .page-body { padding: 32px 20px 60px; }
  .page-topbar-inner { padding: 0 20px; }
}


/* =============================================
   INNER PAGE OVERLAYS
   ============================================= */
.page-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: var(--white); overflow-y: auto;
}
.page-topbar {
  background: var(--navy); padding: 16px 0;
  position: sticky; top: 0; z-index: 10;
  border-bottom: 3px solid var(--blue);
}
.page-title {
  font-family: var(--font-head); font-size: 20px;
  font-weight: 900; color: var(--white);
  text-transform: uppercase; margin: 0;
}
.page-back-btn {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 18px; width: 40px; height: 40px;
  cursor: pointer; border-radius: 2px; line-height: 1;
  transition: background 0.2s;
}
.page-back-btn:hover { background: rgba(255,255,255,0.2); }
.page-close-btn {
  background: var(--red); border: none; color: white;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 20px; cursor: pointer; border-radius: 2px;
}
.page-body { padding: 56px 0 80px; }

/* Inner content layout */
.inner-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media(max-width:900px){ .inner-grid-2 { grid-template-columns:1fr; } }
.inner-section { margin-bottom: 32px; }
.inner-h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  text-transform: uppercase; color: var(--navy); margin-bottom: 16px;
}
.inner-p { font-size: 15px; line-height: 1.8; color: var(--gray-700); margin-bottom: 14px; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card {
  border: 1px solid var(--gray-300); padding: 16px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.value-icon { font-size: 22px; }
.value-card strong { font-family: var(--font-head); font-size: 12px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); }
.value-card p { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin: 0; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:900px){ .team-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .team-grid { grid-template-columns: 1fr; } }
.team-card {
  border: 1px solid var(--gray-300);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.team-avatar {
  height: 80px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 24px; font-weight: 900; color: white;
}
.team-info { padding: 16px; flex: 1; }
.team-name { font-family: var(--font-head); font-size: 14px; font-weight: 800;
  color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.team-bio { font-size: 12.5px; color: var(--gray-500); line-height: 1.6; }

/* Policy cards */
.policy-card { display: flex; gap: 16px; padding: 16px; border: 1px solid var(--gray-300);
  margin-bottom: 12px; }
.policy-icon { font-size: 24px; flex-shrink: 0; }
.policy-card h4 { font-family: var(--font-head); font-size: 13px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.policy-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* HSE cards */
.hse-card { padding: 16px 20px; margin-bottom: 12px; background: var(--off-white); }
.hse-card h4 { font-family: var(--font-head); font-size: 13px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px; }
.hse-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* Feature list (service pages) */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { font-size: 13.5px; color: var(--gray-700); line-height: 1.7;
  padding: 6px 0 6px 20px; position: relative; border-bottom: 1px solid var(--gray-100); }
.feature-list li::before { content: '→'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700; }

/* Process mini (service pages) */
.process-mini { display: flex; flex-direction: column; gap: 8px; }
.pstep { display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--gray-700); padding: 10px 14px;
  background: var(--off-white); border-left: 3px solid var(--blue); }
.pstep span { background: var(--blue); color: white; width: 24px; height: 24px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 12px; font-weight: 700; flex-shrink: 0; }

/* CTA inner */
.cta-inner { background: var(--navy); padding: 24px; margin-top: 8px; }
.cta-inner p { font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; color: rgba(255,255,255,0.7); margin: 0; }

/* Actualités */
.actu-card { padding: 28px 0; border-bottom: 1px solid var(--gray-300); }
.actu-date { font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.actu-title { font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.actu-body { font-size: 14px; color: var(--gray-500); line-height: 1.75; }


/* =============================================
   PAGE HFO — AVITAILLEMENT
   ============================================= */
.hfo-hero {
  background: var(--navy);
  padding: 40px 0 36px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-left: -48px;
  margin-right: -48px;
  padding-left: 48px;
  padding-right: 48px;
}
.hfo-hero-content { flex: 1; }
.hfo-hero-icon { font-size: 96px; opacity: 0.15; flex-shrink: 0; line-height: 1; }
.hfo-hero-title {
  font-family: var(--font-head); font-size: 28px; font-weight: 900;
  text-transform: uppercase; color: var(--white); margin: 8px 0 14px;
}
.hfo-hero-sub {
  font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 640px;
  margin-bottom: 28px;
}
.hfo-kpis { display: flex; gap: 0; border: 1px solid rgba(255,255,255,0.12); }
.hfo-kpi {
  flex: 1; padding: 14px 20px; border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 4px;
}
.hfo-kpi:last-child { border-right: none; }
.hfo-kpi-val {
  font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--white);
}
.hfo-kpi-lbl { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

.hfo-section-title {
  font-family: var(--font-head); font-size: 16px; font-weight: 900;
  text-transform: uppercase; color: var(--navy); letter-spacing: 1px;
  padding-bottom: 12px; margin-bottom: 24px;
  border-bottom: 3px solid var(--blue);
}

/* Specs table */
.hfo-specs-card {
  background: var(--off-white); padding: 24px; height: 100%;
}
.hfo-specs-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: 16px; letter-spacing: 1px;
}
.hfo-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.hfo-table thead tr:not(:first-child) { display: none; }
body[data-lang="fr"] .hfo-table thead tr:nth-child(1),
body[data-lang="en"] .hfo-table thead tr:nth-child(2),
body[data-lang="zh"] .hfo-table thead tr:nth-child(3) { display: table-row; }
.hfo-table th {
  background: var(--navy); color: white; padding: 8px 10px;
  font-family: var(--font-head); font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; text-align: left;
}
.hfo-table td { padding: 9px 10px; border-bottom: 1px solid var(--gray-300); }
.hfo-table tr:hover td { background: var(--blue-pale); }

/* Role band */
.hfo-role-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 32px 40px; margin: 0 -48px 48px; text-align: center;
}
.hfo-role-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 900;
  text-transform: uppercase; color: white; margin-bottom: 12px;
}
.hfo-role-sub {
  font-size: 14px; color: rgba(255,255,255,0.75); max-width: 720px;
  margin: 0 auto; line-height: 1.75;
}

/* Process steps */
.hfo-process-wrap { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.hfo-process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px; border: 1px solid var(--gray-300);
  border-bottom: none;
}
.hfo-process-step:first-child { border-top: 3px solid var(--blue); }
.hfo-process-step:last-child { border-bottom: 1px solid var(--gray-300); }
.hfo-process-arrow { text-align: center; font-size: 18px; color: var(--blue); padding: 4px 0; }
.hfo-step-num {
  font-family: var(--font-head); font-size: 40px; font-weight: 900;
  color: var(--blue-pale); line-height: 1; flex-shrink: 0; width: 60px; text-align: center;
  border-right: 2px solid var(--blue); padding-right: 20px; margin-right: 4px;
}
.hfo-step-body h4 {
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: 10px;
}
.hfo-step-body p { font-size: 13.5px; color: var(--gray-700); line-height: 1.8; margin: 0; }

/* Documents + compliance */
.hfo-doc-card {
  background: var(--off-white); padding: 28px; height: 100%;
}
.hfo-doc-title {
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: 18px;
}
.hfo-compliance-card { padding: 0; }
.hfo-compliance-title {
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: 16px;
}
.hfo-reg-item { padding: 16px; border-left: 4px solid var(--blue); margin-bottom: 12px;
  background: var(--off-white); }
.hfo-reg-badge {
  display: inline-block; background: var(--navy); color: white;
  font-family: var(--font-head); font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 3px 8px; margin-bottom: 8px;
}
.hfo-reg-item p { font-size: 13px; color: var(--gray-700); line-height: 1.7; margin: 0; }

/* Ports band */
.hfo-ports-band {
  background: var(--navy); padding: 40px; margin: 0 -48px 48px;
}
.hfo-ports-title {
  font-family: var(--font-head); font-size: 16px; font-weight: 900;
  text-transform: uppercase; color: white; margin-bottom: 28px; letter-spacing: 1px;
}
.hfo-ports-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media(max-width:900px){ .hfo-ports-grid { grid-template-columns: repeat(2, 1fr); } }
.hfo-port-item { padding: 20px 16px; background: rgba(255,255,255,0.06); }
.hfo-port-name { font-family: var(--font-head); font-size: 13px; font-weight: 800;
  color: white; margin-bottom: 8px; }
.hfo-port-detail { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* CTA section */
.hfo-cta-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 20px; }
@media(max-width:900px){ .hfo-cta-section { grid-template-columns: 1fr; } }
.hfo-cta-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 900;
  text-transform: uppercase; color: var(--navy); margin-bottom: 14px;
}
.hfo-cta-left p { font-size: 13.5px; color: var(--gray-700); margin-bottom: 12px; }
.hfo-cta-list { list-style: none; padding: 0; }
.hfo-cta-list li { font-size: 13.5px; color: var(--gray-700); padding: 6px 0 6px 20px;
  position: relative; border-bottom: 1px solid var(--gray-100); }
.hfo-cta-list li::before { content: "⛽"; position: absolute; left: 0; font-size: 11px; top: 8px; }
.hfo-contact-box { background: var(--navy); padding: 32px; height: 100%; }
.hfo-contact-label { font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.hfo-contact-email { display: block; font-size: 18px; font-weight: 700; color: var(--white);
  font-family: var(--font-head); text-decoration: none; margin-bottom: 16px; }
.hfo-contact-email:hover { color: var(--red-light); }
.hfo-contact-phones { display: flex; flex-direction: column; gap: 6px; }
.hfo-contact-phones a { font-size: 15px; color: rgba(255,255,255,0.7); text-decoration: none; }
.hfo-contact-phones a:hover { color: white; }


/* HFO notice */
.hfo-notice {
  display: flex; gap: 20px; align-items: flex-start;
  background: #FFF8E1; border-left: 4px solid #F9A825;
  padding: 20px 24px; margin-bottom: 40px;
}
.hfo-notice-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.hfo-notice-title {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  text-transform: uppercase; color: #5D4037; margin-bottom: 8px; letter-spacing: 0.5px;
}
.hfo-notice-body { font-size: 13.5px; color: #5D4037; line-height: 1.75; margin: 0; }

/* 3-col roles grid */
.hfo-roles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 16px; }
@media(max-width:900px){ .hfo-roles-grid { grid-template-columns: 1fr; } }
.hfo-role-card { border: 1px solid var(--gray-300); padding: 24px; }
.hfo-role-icon { font-size: 28px; margin-bottom: 12px; }
.hfo-role-card h4 {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--blue);
}

/* Docs grid */
.hfo-docs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 16px; }
@media(max-width:900px){ .hfo-docs-grid { grid-template-columns: 1fr 1fr; } }
.hfo-doc-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px;
  border: 1px solid var(--gray-300); }
.hfo-doc-badge {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 11px; font-weight: 900;
  letter-spacing: 0.5px; color: white;
}
.hfo-doc-item h5 {
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  text-transform: uppercase; color: var(--navy); margin-bottom: 4px;
}
.hfo-doc-item p { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin: 0; }

</style>
