/* ================================================================
   AZ E.SOLUTIONS — Feuille de style principale
   Couleurs: Orange #F7941D | Bleu foncé #1B2A4A
================================================================ */

:root {
  --primary:     #F7941D;
  --primary-dark:#D97E10;
  --dark:        #1B2A4A;
  --dark-light:  #243560;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FA;
  --gray-100:    #F1F3F5;
  --gray-200:    #E9ECEF;
  --gray-500:    #ADB5BD;
  --gray-700:    #495057;
  --gray-900:    #212529;
  --text:        #2D3748;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.15);
  --transition:  .3s ease;
  --font-main:   'Poppins', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: #fff; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

/* ======================== SCROLLBAR ======================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ======================== TOP BAR ======================== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--primary);
}
.topbar-left { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left span { white-space: nowrap; }
.topbar-right .presence-badge {
  background: rgba(247,148,29,.15);
  color: var(--primary);
  border: 1px solid rgba(247,148,29,.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
}
.flag-item img { vertical-align: middle; border-radius: 2px; }

/* ======================== NAVBAR ======================== */
.navbar-custom {
  background: #fff;
  box-shadow: 0 2px 20px rgba(27,42,74,.12);
  padding: 12px 0;
  transition: all .35s ease;
}
.navbar-custom.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(27,42,74,.18);
}
.logo-wrapper { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  position: relative;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-az { color: #fff; font-weight: 800; font-size: 1.1rem; letter-spacing: -1px; z-index: 1; }
.logo-grid {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 14px; height: 14px;
  background: rgba(27,42,74,.6);
  border-radius: 3px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-weight: 700; font-size: 1.1rem; color: var(--dark); letter-spacing: -.3px; }
.logo-sub  { font-size: .65rem; color: var(--primary); font-weight: 500; letter-spacing: .3px; text-transform: uppercase; }

.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: rgba(247,148,29,.08);
}
.btn.nav-cta {
  background: var(--primary);
  color: #fff !important;
  border: none;
  padding: 9px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
}
.btn.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* MEGA MENU */
.mega-dropdown { position: static; }
.mega-menu {
  width: 100%;
  left: 0 !important;
  border: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  padding: 0;
  margin-top: 12px !important;
}
.mega-menu-inner { padding: 24px; }
.mega-menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--dark);
  transition: var(--transition);
}
.mega-menu-item:hover { background: var(--gray-100); color: var(--primary); }
.mega-menu-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.mega-menu-title { font-size: .85rem; font-weight: 600; }
.mega-menu-footer {
  border-top: 1px solid var(--gray-200);
  margin-top: 16px;
  padding-top: 16px;
}

/* ======================== BUTTONS ======================== */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 26px;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,148,29,.35);
}
.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 26px;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--dark);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  border: none;
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 26px;
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-outline-secondary { border-radius: 50px; }

/* ======================== HERO ======================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 40%, #0d1b33 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(247,148,29,.15) 0%, transparent 60%);
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-badge {
  display: inline-block;
  background: rgba(247,148,29,.15);
  border: 1px solid rgba(247,148,29,.4);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 20px 0;
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 36px;
}
.btn-hero { padding: 14px 32px; font-size: 1rem; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-plus { color: var(--primary); font-weight: 700; font-size: 1.5rem; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* Hero graphic */
.hero-graphic {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 460px;
}
.hero-circle-bg {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(247,148,29,.3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: rotateBorder 20s linear infinite;
}
.hero-circle-inner {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247,148,29,.2), rgba(27,42,74,.5));
  border: 2px solid rgba(247,148,29,.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-logo-big { font-size: 3rem; font-weight: 900; color: var(--primary); }
.hero-esol { font-size: .7rem; color: rgba(255,255,255,.8); letter-spacing: 3px; text-transform: uppercase; }
.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  font-size: .85rem; font-weight: 500;
  animation: floatCard 3s ease-in-out infinite;
}
.hero-card-float i { font-size: 1.3rem; }
.card-1 { top: 60px; left: -20px; animation-delay: 0s; }
.card-2 { top: 50%; right: -30px; transform: translateY(-50%); animation-delay: 1s; }
.card-3 { bottom: 80px; left: 20px; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-2 { animation: floatCard2 3s ease-in-out infinite 1s; }
@keyframes floatCard2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}
@keyframes rotateBorder {
  0% { border-top-color: var(--primary); }
  100% { border-top-color: rgba(247,148,29,.3); }
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator a {
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  animation: bounce 2s ease infinite;
  display: block;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ======================== SECTION COMMONS ======================== */
.section-header { margin-bottom: 20px; }
.section-badge {
  display: inline-block;
  background: rgba(247,148,29,.12);
  color: var(--primary);
  border: 1px solid rgba(247,148,29,.3);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-top: 10px;
  line-height: 1.3;
}
.section-desc {
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-text { color: var(--gray-700); margin-bottom: 16px; font-size: .97rem; }

/* ======================== SECTEURS ======================== */
.section-sectors {
  padding: 90px 0;
  background: var(--gray-50);
}
.sector-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.sector-card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.sector-card:hover .sector-card-icon { transform: scale(1.1); }
.sector-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.sector-card-desc { font-size: .83rem; color: var(--gray-700); margin-bottom: 16px; line-height: 1.5; }
.sector-card-arrow {
  font-size: .85rem;
  font-weight: 600;
  transition: transform .3s ease;
}
.sector-card:hover .sector-card-arrow { transform: translateX(4px); }
.sector-card-border {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}
.sector-card:hover .sector-card-border { transform: scaleX(1); }

/* ======================== ABOUT HOME ======================== */
.section-about-home {
  padding: 100px 0;
  background: #fff;
}
.about-image-grid {
  position: relative;
  height: 450px;
}
.about-img-main {
  width: 85%;
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  position: absolute; top: 0; left: 0;
  overflow: hidden;
}
.about-img-main::after {
  content: '\f0c0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(247,148,29,.3);
}
.about-img-accent {
  position: absolute;
  bottom: 20px; right: 0;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}
.about-img-accent i { font-size: 1.8rem; }
.about-experience-badge {
  position: absolute;
  top: -20px; right: 60px;
  background: var(--dark);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary);
}
.exp-years { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); }
.exp-text { font-size: .72rem; opacity: .8; }
.about-features { display: flex; flex-direction: column; gap: 10px; }
.about-feature-item { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.about-feature-icon {
  width: 24px; height: 24px;
  background: rgba(247,148,29,.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
}

/* ======================== PRODUCTS ======================== */
.section-products-home { padding: 90px 0; background: var(--gray-50); }
.product-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  color: var(--text);
  position: relative;
  transition: all .35s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.product-card-header {
  padding: 24px 22px 16px;
  position: relative;
  min-height: 90px;
}
.product-sector-badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-icon-big {
  font-size: 2.5rem;
  opacity: .6;
  position: absolute;
  right: 22px; bottom: 10px;
}
.product-card-body { padding: 0 22px 22px; }
.product-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.product-card-desc { font-size: .83rem; color: var(--gray-700); line-height: 1.5; margin-bottom: 14px; }
.product-card-link { font-size: .85rem; font-weight: 600; display: flex; align-items: center; }
.product-card-hover-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}
.product-card:hover .product-card-hover-bar { transform: scaleX(1); }
.product-featured-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
}
.product-card-small { height: auto; }
.product-card-small h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.product-card-small p { font-size: .82rem; color: var(--gray-700); margin-bottom: 10px; }

/* Sector products */
.product-card-sector { padding: 0; }
.product-card-sector .product-card-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.product-card-sector .product-card-number {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.product-card-sector { padding: 24px; }
.product-mini-features { list-style: none; padding: 0; font-size: .8rem; margin: 12px 0; }
.product-mini-features li { margin-bottom: 5px; color: var(--gray-700); }
.product-card-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  margin-top: 16px;
  transition: opacity .3s;
}
.product-card:hover .product-card-cta { opacity: .9; }

/* Products page */
.section-filters { background: #fff; padding: 20px 0; border-bottom: 1px solid var(--gray-200); z-index: 100; }
.sticky-filters { position: sticky; top: 70px; }
.sector-quick-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.quick-filter-badge {
  padding: 5px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .78rem;
  color: var(--gray-700);
  background: #fff;
  transition: var(--transition);
  display: inline-flex; align-items: center;
}
.quick-filter-badge:hover, .quick-filter-badge.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.products-group { margin-bottom: 60px; }
.products-group-header {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 4px solid;
  margin-bottom: 8px;
}
.products-group-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.products-group-title { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 0; }
.products-group-link { font-size: .8rem; font-weight: 600; }
.products-group-count {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ======================== STATS ======================== */
.section-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
}
.stats-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(247,148,29,.15) 1px, transparent 1px);
  background-size: 30px 30px;
}
.stat-item { color: #fff; position: relative; }
.stat-icon {
  width: 60px; height: 60px;
  background: rgba(247,148,29,.15);
  border: 1px solid rgba(247,148,29,.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 16px;
}
.stat-counter { font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 8px; font-weight: 500; }

/* ======================== NEWS ======================== */
.section-news-home { padding: 90px 0; background: #fff; }
.news-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  color: var(--text);
  transition: all .35s ease;
  height: 100%;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: var(--text); }
.news-card-img { height: 180px; background: linear-gradient(135deg, var(--dark), var(--dark-light)); display: flex; align-items: center; justify-content: center; }
.news-img-placeholder i { font-size: 3rem; color: rgba(247,148,29,.4); }
.news-card-body { padding: 22px; }
.news-date { font-size: .75rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.news-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.news-excerpt { font-size: .83rem; color: var(--gray-700); line-height: 1.5; }
.news-read-more { font-size: .83rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; margin-top: 12px; }
.news-card:hover .news-read-more { gap: 4px; }

/* ======================== CTA ======================== */
.section-cta { padding: 80px 0; background: var(--gray-50); }
.cta-inner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, #0d1b33 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(247,148,29,.2);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(247,148,29,.2), transparent);
  border-radius: 50%;
}
.cta-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-desc { color: rgba(255,255,255,.7); font-size: .97rem; }
.section-cta-mini { padding: 70px 0; background: var(--gray-50); }
.section-cta-mini h3 { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.section-cta-mini p { color: var(--gray-700); margin-bottom: 24px; }

/* ======================== PAGE HERO ======================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 60%, #0d1b33 100%);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(247,148,29,.1) 1px, transparent 1px);
  background-size: 25px 25px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 16px 0 10px;
  line-height: 1.2;
}
.page-hero-desc { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 600px; }
.page-hero-sector-icon {
  width: 70px; height: 70px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  margin-bottom: 16px;
}
.page-hero-meta span {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .82rem;
}
.product-hero-sector {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .82rem;
  margin-bottom: 12px;
}
.product-hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item.active { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ======================== SECTION CONTENT ======================== */
.section-content { padding: 80px 0; }
.mt-6 { margin-top: 4rem !important; }

/* ======================== SECTEUR DÉTAIL ======================== */
.sector-detail-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  height: 100%;
}
.sector-detail-header {
  padding: 28px;
  display: flex; align-items: center; gap: 18px;
  color: #fff;
}
.sector-detail-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.sector-detail-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
.sector-detail-count { font-size: .78rem; background: rgba(255,255,255,.2); padding: 2px 10px; border-radius: 20px; }
.sector-detail-body { padding: 24px; background: #fff; }
.sector-detail-body p { color: var(--gray-700); font-size: .9rem; line-height: 1.6; }

.section-other-sectors { padding: 50px 0; background: var(--gray-50); }
.other-sector-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  transition: var(--transition);
}
.other-sector-btn:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  color: var(--dark);
}

/* ======================== PRODUCT DETAIL ======================== */
.product-description-box, .product-features-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.product-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  padding-left: 16px;
  position: relative;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.title-line {
  width: 4px; height: 28px;
  border-radius: 2px;
  flex-shrink: 0;
}
.product-full-desc { color: var(--gray-700); font-size: .95rem; line-height: 1.8; }
.feature-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid;
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
}
.feature-item:hover { background: var(--gray-100); transform: translateX(3px); }
.feature-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .7rem;
  flex-shrink: 0;
}
.product-sidebar-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.sidebar-card-header {
  padding: 16px 20px;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
}
.sidebar-card-body { padding: 20px; background: #fff; }
.sidebar-card-body p { font-size: .85rem; color: var(--gray-700); margin-bottom: 16px; }
.sticky-sidebar { position: sticky; top: 100px; }
.sector-link-btn {
  display: flex; align-items: center;
  padding: 12px 16px;
  border: 1px solid;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
}
.related-products { padding-top: 60px; border-top: 1px solid var(--gray-200); }

/* ======================== ABOUT ======================== */
.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.value-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon {
  width: 44px; height: 44px;
  background: rgba(247,148,29,.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.value-card h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: .82rem; color: var(--gray-700); margin: 0; line-height: 1.5; }

.section-presence { padding: 80px 0; background: var(--gray-50); }
.presence-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex; gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
  height: 100%;
}
.presence-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.presence-ci { border-top: 4px solid #F77F00; }
.presence-cg { border-top: 4px solid #009A44; }
.presence-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.presence-city { color: var(--primary); font-size: .85rem; font-weight: 600; margin-bottom: 12px; }
.presence-info p { font-size: .88rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 16px; }
.presence-contact a { color: var(--dark); font-weight: 600; font-size: .9rem; }
.presence-contact a:hover { color: var(--primary); }

.section-services-about { padding: 80px 0; }
.expertise-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.expertise-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.expertise-icon {
  width: 65px; height: 65px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 18px;
}
.expertise-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.expertise-card p { font-size: .83rem; color: var(--gray-700); line-height: 1.6; margin: 0; }

/* ======================== CONTACT ======================== */
.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-form-title { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-form .form-control, .contact-form .form-select {
  border-radius: var(--radius);
  border-color: var(--gray-200);
  padding: 10px 14px;
  font-size: .9rem;
  transition: var(--transition);
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(247,148,29,.15);
}
.contact-info-box { position: sticky; top: 100px; }
.contact-info-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.contact-office-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex; gap: 18px;
  align-items: flex-start;
}
.ci-card { border-top: 3px solid #F77F00; }
.cg-card { border-top: 3px solid #009A44; }
.office-details h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.office-item { display: flex; gap: 10px; margin-bottom: 8px; font-size: .85rem; color: var(--gray-700); }
.office-item i { color: var(--primary); width: 16px; flex-shrink: 0; margin-top: 2px; }
.office-item a { color: var(--gray-700); }
.office-item a:hover { color: var(--primary); }
.contact-social h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-link.linkedin { background: #0077B520; color: #0077B5; }
.social-link.facebook { background: #18549620; color: #185496; }
.social-link.twitter  { background: #1DA1F220; color: #1DA1F2; }
.social-link:hover { transform: translateX(4px); }

/* ======================== FOOTER ======================== */
.footer { background: var(--dark); }
.footer-top { padding: 70px 0 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.logo-icon-footer { background: rgba(247,148,29,.2); border: 1px solid rgba(247,148,29,.3); }
.logo-icon-footer .logo-az { color: var(--primary); }
.footer-desc { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 3px; }
.footer-contact-item { display: flex; gap: 12px; color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-icon { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--primary); }

/* ======================== BACK TO TOP ======================== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: 0 4px 15px rgba(247,148,29,.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all .35s ease;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px); }

/* ======================== 404 ======================== */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-code { font-size: 8rem; font-weight: 900; color: var(--primary); line-height: 1; }

/* ======================== ARTICLE ======================== */
.article-box { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.article-content { font-size: .95rem; color: var(--gray-700); line-height: 1.8; }
.article-content p { margin-bottom: 16px; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 991px) {
  .topbar-left { font-size: .72rem; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 14px; }
  .section-about-home { padding: 70px 0; }
  .about-image-grid { height: 300px; display: none; }
  .about-values-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 30px 24px; }
  .contact-form-box { padding: 24px; }
  .products-group-header { flex-wrap: wrap; }
  .products-group-count { margin-left: 0; }
}
@media (max-width: 767px) {
  .page-hero { padding: 80px 0 50px; }
  .section-content { padding: 50px 0; }
  .hero-stats { gap: 0; justify-content: flex-start; overflow-x: auto; }
  .hero-stat { min-width: 80px; }
  .product-hero-actions { flex-direction: column; }
  .product-hero-actions .btn { width: 100%; text-align: center; }
  .presence-card { flex-direction: column; }
  .footer-top { padding: 50px 0 30px; }
  .mega-menu-inner { padding: 16px; }
  .back-to-top { bottom: 15px; right: 15px; }
}
@media (max-width: 576px) {
  .stat-number { font-size: 1.8rem; }
  .hero-title { font-size: 1.7rem; }
  .hero-badge { font-size: .75rem; }
  .topbar .flag-item { display: none; }
  .cta-inner { padding: 24px 16px; }
  .contact-form-box { padding: 16px; }
}
