/* ================================================
   DIAB TRANSIT – Main Stylesheet
   Professional Freight & Logistics – West Africa
   ================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #1A2E50;
  --navy-light: #2A4878;
  --navy-mid: #243D68;
  --orange: #E8863A;
  --orange-dark: #C96F28;
  --orange-light: #F09D5E;
  --white: #FFFFFF;
  --off-white: #F4F6FA;
  --gray-100: #EEF1F8;
  --gray-200: #D8DEF0;
  --gray-400: #8A96B8;
  --gray-600: #4A5578;
  --gray-800: #1E2640;
  --text: #1E2640;
  --text-light: #5A6480;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow-sm: 0 2px 8px rgba(13,33,73,0.08);
  --shadow-md: 0 8px 32px rgba(13,33,73,0.12);
  --shadow-lg: 0 24px 64px rgba(13,33,73,0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --container: 1280px;
}

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

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-top {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 7px 0;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-top-info { display: flex; align-items: center; gap: 12px; }
.header-top-info .sep { opacity: 0.4; }
.header-top-info a { color: rgba(255,255,255,0.7); }
.header-top-info a:hover { color: var(--orange); }
.header-top-links { display: flex; align-items: center; gap: 16px; }
.header-top-links a { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.header-top-links a:hover { color: var(--orange); }
.btn-top {
  background: var(--orange);
  color: white !important;
  padding: 4px 14px;
  border-radius: 3px;
  font-weight: 600;
  transition: background var(--transition);
}
.btn-top:hover { background: var(--orange-dark) !important; }

.navbar { padding: 0; background: var(--white); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--orange);
  background: rgba(245,124,32,0.06);
}
.chevron { font-size: 0.7rem; opacity: 0.6; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: color var(--transition), padding var(--transition);
}
.dropdown li a:hover { color: var(--orange); padding-left: 26px; }

.btn-devis {
  flex-shrink: 0;
  background: var(--orange);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-devis:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(245,124,32,0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,124,32,0.45); }

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-primary-sm:hover { background: var(--orange-dark); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,124,32,0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(13,33,73,0.97) 0%, rgba(27,58,107,0.92) 50%, rgba(13,33,73,0.98) 100%),
    url('https://images.unsplash.com/photo-1494412519316-9f8f8b5b4a7d?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(245,124,32,0.12) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, rgba(13,33,73,0.5) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.hero-content { max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  background: rgba(255,255,255,0.07);
  padding: 6px 16px 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  animation: fadeInDown 0.8s ease both;
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,124,32,0.5)} 50%{box-shadow:0 0 0 6px rgba(245,124,32,0)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.15s ease both;
}
.hero-title .accent { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s 0.45s ease both;
}

.hero-countries {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.6s ease both;
}
.hero-countries span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-indicator {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:0.3} 50%{opacity:1} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow-md);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--gray-100);
}
.stats-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.stat-item {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid var(--gray-100);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================================================
   SERVICES
   ================================================ */
.services { padding: 96px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
}
.service-card.featured::before { display: none; }
.service-card.featured h3, .service-card.featured p { color: white; }
.service-card.featured .card-link { color: var(--orange-light); }
.service-card.featured .service-icon { color: var(--orange); }

.service-card.service-cta-card {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-color: transparent;
  color: white;
}
.service-card.service-cta-card h3,
.service-card.service-cta-card p { color: white; }
.service-card.service-cta-card .service-icon { color: white; }

.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--orange);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  margin-top: 8px;
  transition: gap var(--transition);
}

/* ================================================
   SERVICE GALLERY
   ================================================ */
.service-gallery { padding: 96px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item--large {
  grid-column: 1 / 3;
}
.gallery-item .service-img-card { aspect-ratio: 4/3; }
.gallery-item--large .service-img-card { aspect-ratio: 16/9; }

.gallery-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: inline-block;
  width: 100%;
}
.gallery-note code {
  background: rgba(0,0,0,0.06);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.8rem;
}

/* ================================================
   ================================================ */
.why-us { padding: 96px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why-map {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.why-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 40% 60%, rgba(245,124,32,0.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
}
.map-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  position: relative;
}
.country-pins { display: flex; flex-direction: column; gap: 16px; position: relative; }
.pin { display: flex; align-items: center; gap: 12px; }
.pin-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(245,124,32,0.3);
  animation: pinPulse 3s infinite;
}
.pin:nth-child(1) .pin-dot { animation-delay: 0s; }
.pin:nth-child(2) .pin-dot { animation-delay: 0.6s; }
.pin:nth-child(3) .pin-dot { animation-delay: 1.2s; }
.pin:nth-child(4) .pin-dot { animation-delay: 1.8s; }
.pin:nth-child(5) .pin-dot { animation-delay: 2.4s; }
@keyframes pinPulse { 0%,100%{box-shadow:0 0 0 3px rgba(245,124,32,0.3)} 50%{box-shadow:0 0 0 8px rgba(245,124,32,0)} }
.pin-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}
.pin-name small { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 400; }

.why-content { }
.why-content .section-tag { margin-bottom: 12px; }
.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-intro {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.why-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.wp-icon {
  width: 24px; height: 24px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.wp-text { display: flex; flex-direction: column; gap: 2px; }
.wp-text strong { font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.wp-text span { font-size: 0.87rem; color: var(--text-light); }

/* ================================================
   PROCESS
   ================================================ */
.process { padding: 96px 0; background: var(--off-white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.process-arrow {
  font-size: 1.8rem;
  color: var(--orange);
  opacity: 0.4;
  padding: 0 8px;
  margin-top: 40px;
  flex-shrink: 0;
}

/* ================================================
   ZONES
   ================================================ */
.zones { padding: 96px 0; background: var(--navy); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.zone-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  cursor: pointer;
}
.zone-card:hover {
  background: rgba(245,124,32,0.12);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.zone-flag { font-size: 2.5rem; line-height: 1; }
.zone-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.zone-info > p {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.zone-info ul { display: flex; flex-direction: column; gap: 5px; }
.zone-info ul li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding-left: 10px;
  position: relative;
}
.zone-info ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
}
.zone-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-display);
  letter-spacing: 0.3px;
  margin-top: auto;
}

/* ================================================
   FAQ
   ================================================ */
.faq-section { padding: 96px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro .section-tag { margin-bottom: 12px; }
.faq-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.faq-intro p { color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
  cursor: pointer;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-content { text-align: center; position: relative; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}
.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--gray-800); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: white; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--orange); }
.footer-hours {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange); }
.footer-cert { font-weight: 500; color: rgba(255,255,255,0.4); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-map { min-height: auto; }
  .country-pins { flex-direction: row; flex-wrap: wrap; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); align-self: center; margin: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro { position: static; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .nav-toggle { display: flex; }
  .btn-devis { display: none; }
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    gap: 4px;
  }
  .nav-menu.open { max-height: 80vh; overflow-y: auto; opacity: 1; }
  .nav-menu > li > a { padding: 12px 0; border-radius: 0; border-bottom: 1px solid var(--gray-100); }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; border: none; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .has-dropdown.open .dropdown { max-height: 400px; }

  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-white, .cta-actions .btn-outline-white { width: 100%; max-width: 320px; justify-content: center; }
  section { padding: 64px 0 !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .zones-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-countries { gap: 8px; }
  .hero-countries span { font-size: 0.78rem; }
}

/* Print */
@media print {
  .header, .hero-scroll, .footer-top { display: none; }
  body { color: black; }
}

/* ================================================
   IMAGE PLACEHOLDERS — Easy to swap later
   Replace src="assets/images/FILENAME.jpg" 
   with your own photos at any time
   ================================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.4s ease;
}
.img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.img-wrap:hover .img-placeholder { transform: scale(1.03); }

/* Service visual cards with images */
.service-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  background: var(--gray-100);
}
.service-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-img-card:hover img { transform: scale(1.04); }
.service-img-card .img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(26,46,80,0.85), transparent);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Zone photos */
.zone-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.img-wrap:hover .zone-photo { transform: scale(1.03); }

/* About page photo grid */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.about-photo-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  width: 100%;
  display: block;
}
.about-photo-sm {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  width: 100%;
  display: block;
}

