/* ===== GKL LOGISTICS - SHARED STYLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --yellow: #F5C800;
  --yellow-dark: #D4AC00;
  --blue: #1A3A6B;
  --blue-dark: #0F2347;
  --blue-mid: #1E4A8A;
  --white: #FFFFFF;
  --gray-light: #F4F6FA;
  --text-dark: #0F2347;
  --text-muted: #6B7A99;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #fff; overflow-x: hidden; }

/* ===== TOPBAR ===== */
.topbar { background: var(--blue-dark); padding: 8px 0; border-bottom: 2px solid var(--yellow); }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.topbar-item:hover { color: var(--yellow); }
.topbar-item svg { width: 14px; height: 14px; fill: var(--yellow); flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-social { display: flex; }
.topbar-social a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: rgba(255,255,255,0.08); border-radius: 4px; color: rgba(255,255,255,0.65); font-size: 12px; text-decoration: none; transition: all 0.2s; margin-left: 4px; font-weight: 700; }
.topbar-social a:hover { background: var(--yellow); color: var(--blue-dark); }
.topbar-lang { color: rgba(255,255,255,0.65); font-size: 12px; padding: 3px 10px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; cursor: pointer; }

/* ===== HEADER ===== */
header { position: sticky; top: 0; z-index: 999; background: #fff; box-shadow: 0 2px 20px rgba(15,35,71,0.10); transition: all 0.3s; }
header.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; height: 80px; gap: 24px; position: relative; }
.logo { flex-shrink: 0; display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 56px; height: 56px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-gkl { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--blue); letter-spacing: 1px; }
.logo-subtitle { font-size: 11px; font-weight: 600; color: var(--yellow-dark); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
nav { flex: 1; display: flex; justify-content: center; }
.nav-list { list-style: none; display: flex; gap: 2px; align-items: center; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 14px; font-size: 13.5px; font-weight: 700; color: var(--text-dark); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 4px; transition: all 0.2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--blue-mid); background: rgba(26,58,107,0.06); }
.nav-link.active { border-bottom: 2px solid var(--yellow); border-radius: 4px 4px 0 0; }
.nav-link svg { width: 10px; height: 10px; fill: currentColor; transition: transform 0.2s; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 4px); left: 0; min-width: 200px; background: #fff; border-radius: 8px; box-shadow: 0 12px 40px rgba(15,35,71,0.15); border-top: 3px solid var(--yellow); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.22s; z-index: 100; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 18px; font-size: 13.5px; font-weight: 500; color: var(--text-dark); text-decoration: none; transition: all 0.15s; border-left: 3px solid transparent; }
.dropdown a:hover { color: var(--blue-mid); background: var(--gray-light); border-left-color: var(--yellow); padding-left: 22px; }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.header-phone { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.phone-icon { width: 38px; height: 38px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-icon svg { width: 16px; height: 16px; fill: var(--blue-dark); }
.phone-info { display: flex; flex-direction: column; }
.phone-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.phone-number { font-size: 14px; font-weight: 700; color: var(--blue); }
.btn-quote { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--blue); color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 4px; transition: all 0.25s; white-space: nowrap; position: relative; overflow: hidden; }
.btn-quote::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--yellow); transition: left 0.3s ease; z-index: 0; }
.btn-quote:hover::before { left: 0; }
.btn-quote span, .btn-quote svg { position: relative; z-index: 1; }
.btn-quote:hover { color: var(--blue-dark); }
.btn-quote svg { width: 14px; height: 14px; fill: currentColor; }

/* ===== HAMBURGER ===== */
.mobile-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; margin-left: auto; flex-shrink: 0; }
.mobile-toggle span { display: block; width: 24px; height: 2.5px; background: var(--blue); border-radius: 3px; transition: all 0.3s; transform-origin: center; }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(10,20,50,0.65); z-index: 1998; backdrop-filter: blur(3px); }

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px; max-width: 88vw;
  height: 100%; height: 100dvh;
  z-index: 1999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(10,20,50,0.2);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--blue-dark); border-bottom: 3px solid var(--yellow); flex-shrink: 0; }
.drawer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.drawer-logo img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; background: var(--yellow); padding: 3px; }
.drawer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.drawer-logo-gkl { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: #fff; }
.drawer-logo-sub { font-size: 10px; font-weight: 600; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; }
.drawer-close { width: 36px; height: 36px; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.2s; flex-shrink: 0; }
.drawer-close:hover { background: var(--yellow); color: var(--blue-dark); }
.drawer-close svg { width: 18px; height: 18px; fill: currentColor; }

.drawer-contact-strip { background: var(--gray-light); border-bottom: 1px solid rgba(26,58,107,0.08); flex-shrink: 0; }
.drawer-contact-item { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: 13px; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid rgba(26,58,107,0.06); transition: background 0.15s; }
.drawer-contact-item:last-child { border-bottom: none; }
.drawer-contact-item:hover { background: rgba(245,200,0,0.12); }
.drawer-contact-item svg { width: 15px; height: 15px; fill: var(--blue); flex-shrink: 0; }
.drawer-contact-item span { font-weight: 600; }

/* ===== DRAWER NAV — SECTION CRITIQUE ===== */
.drawer-nav {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  /* Pas de height fixe pour permettre le flex de s'ajuster */
}
.drawer-nav-item {
  display: block;
  border-bottom: 1px solid rgba(26,58,107,0.08);
}
/* Ciblage explicite des deux types de liens (a et button) */
a.drawer-nav-link,
button.drawer-nav-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #0F2347 !important;
  background: #ffffff !important;
  border: none;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a.drawer-nav-link:hover,
a.drawer-nav-link:active,
button.drawer-nav-link:hover,
button.drawer-nav-link:active {
  color: var(--blue-mid) !important;
  background: rgba(26,58,107,0.05) !important;
}
a.drawer-nav-link.active-link {
  color: var(--blue-mid) !important;
  background: rgba(26,58,107,0.04) !important;
  border-left: 3px solid var(--yellow);
  padding-left: 17px;
}
a.drawer-nav-link svg,
button.drawer-nav-link svg {
  width: 16px; height: 16px;
  fill: #6B7A99;
  transition: transform 0.25s;
  flex-shrink: 0;
}
button.drawer-nav-link.sub-open svg {
  transform: rotate(180deg);
  fill: var(--yellow-dark);
}

/* Sous-menu */
.drawer-submenu { display: none; background: #F4F6FA; border-top: 1px solid rgba(26,58,107,0.07); }
.drawer-submenu.open { display: block; }
.drawer-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px 13px 32px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7A99;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,58,107,0.05);
  transition: all 0.15s;
}
.drawer-submenu a:last-child { border-bottom: none; }
.drawer-submenu a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow-dark); flex-shrink: 0; }
.drawer-submenu a:hover { color: var(--blue); background: rgba(245,200,0,0.08); }

.drawer-footer { padding: 20px; background: var(--blue-dark); flex-shrink: 0; }
.drawer-btn-quote { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--yellow); color: var(--blue-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 6px; text-decoration: none; margin-bottom: 12px; transition: all 0.2s; font-family: 'Barlow', sans-serif; }
.drawer-btn-quote:hover { background: #fff; }
.drawer-btn-quote svg { width: 15px; height: 15px; fill: currentColor; }
.drawer-socials { display: flex; gap: 8px; justify-content: center; }
.drawer-socials a { width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 12px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.drawer-socials a:hover { background: var(--yellow); color: var(--blue-dark); }

/* ===== SCROLLED INDICATOR ===== */
.scrolled-indicator { display: block; width: 100%; height: 2px; background: linear-gradient(90deg, var(--yellow) 0%, var(--blue) 100%); position: absolute; bottom: 0; left: 0; }

/* ===== PAGE BANNER ===== */
.page-banner { position: relative; padding: 80px 0; background: var(--blue-dark); overflow: hidden; }
.page-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--yellow), var(--blue-mid)); }
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(34px,5vw,56px); font-weight: 800; color: #fff; text-transform: uppercase; margin-bottom: 12px; }
.page-banner h1 em { font-style: normal; color: var(--yellow); }
.breadcrumb { display: flex; align-items: center; gap: 8px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.3); }
.breadcrumb span:last-child { color: var(--yellow); font-weight: 700; }

/* ===== LAYOUT ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--gray-light); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow-dark); margin-bottom: 12px; }
.section-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--yellow); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--blue-dark); line-height: 1.15; margin-bottom: 18px; }
.section-title em { font-style: normal; color: var(--blue-mid); }
.section-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--yellow); color: var(--blue-dark); font-size: 14px; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: all 0.25s; white-space: nowrap; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; fill: currentColor; }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px; background: transparent; color: var(--blue); font-size: 14px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 4px; border: 2px solid var(--blue); transition: all 0.25s; }
.btn-secondary:hover { background: var(--blue); color: #fff; }
.btn-secondary svg { width: 16px; height: 16px; fill: currentColor; }

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); color: #fff; }
.footer-top { background: var(--yellow); padding: 30px 0; }
.footer-top-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-top-text h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--blue-dark); }
.footer-top-text p { font-size: 14px; color: rgba(15,35,71,0.65); }
.footer-top-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--blue-dark); color: #fff; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; border-radius: 4px; white-space: nowrap; transition: all 0.2s; }
.footer-top-btn:hover { background: var(--blue); transform: translateY(-2px); }
.footer-top-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; text-decoration: none; }
.footer-brand .footer-logo img { width: 52px; height: 52px; object-fit: contain; }
.footer-logo-gkl { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.footer-logo-sub { font-size: 10px; font-weight: 600; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 12px; text-decoration: none; transition: all 0.2s; font-weight: 700; }
.footer-socials a:hover { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); display: inline-block; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.footer-links li a::before { content: '›'; color: var(--yellow); font-size: 16px; }
.footer-links li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item-icon { width: 36px; height: 36px; border-radius: 6px; background: rgba(245,200,0,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(245,200,0,0.2); }
.footer-contact-item-icon svg { width: 16px; height: 16px; fill: var(--yellow); }
.footer-contact-item p { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.footer-contact-item a, .footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom p a { color: var(--yellow); text-decoration: none; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 28px; right: 28px; z-index: 500; width: 44px; height: 44px; border-radius: 6px; background: var(--yellow); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 20px rgba(245,200,0,0.4); opacity: 0; transform: translateY(20px); transition: all 0.3s; text-decoration: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-dark); }
.back-to-top svg { width: 18px; height: 18px; fill: var(--blue-dark); }
.back-to-top:hover svg { fill: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos="fade-left"] { transform: translateX(-36px); }
[data-aos="fade-right"] { transform: translateX(36px); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos].aos-animate { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 1100px) {
  .header-phone { display: none; }
  .nav-link { padding: 10px 10px; font-size: 12.5px; }
}
@media (max-width: 900px) {
  nav { display: none; }
  .header-phone { display: none; }
  .btn-quote { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner { padding: 0 20px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .header-inner { height: 66px; }
  .logo-img { width: 46px; height: 46px; }
  .logo-gkl { font-size: 22px; }
}
@media (max-width: 480px) {
  .logo-subtitle { display: none; }
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top-inner { flex-direction: column; text-align: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ===== MOBILE NAV OVERRIDE — FORCE AFFICHAGE ===== */
/* Ciblage ultra-spécifique pour écraser tout reset navigateur mobile */
.mobile-drawer .drawer-nav {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
}
.mobile-drawer .drawer-nav .drawer-nav-item {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(26,58,107,0.09);
}
.mobile-drawer .drawer-nav .drawer-nav-item a,
.mobile-drawer .drawer-nav .drawer-nav-item button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #0F2347;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  line-height: 1.3;
}
.mobile-drawer .drawer-nav .drawer-nav-item a.active-link {
  color: #1E4A8A;
  background-color: rgba(26,58,107,0.05);
  border-left: 3px solid #F5C800;
  padding-left: 17px;
}
.mobile-drawer .drawer-nav .drawer-nav-item button svg {
  width: 16px;
  height: 16px;
  fill: #6B7A99;
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: auto;
}
.mobile-drawer .drawer-nav .drawer-nav-item button.sub-open svg {
  transform: rotate(180deg);
}
.mobile-drawer .drawer-nav .drawer-submenu {
  display: none;
  background: #F4F6FA;
  border-top: 1px solid rgba(26,58,107,0.07);
}
.mobile-drawer .drawer-nav .drawer-submenu.open {
  display: block;
}
.mobile-drawer .drawer-nav .drawer-submenu a {
  min-height: 44px;
  padding: 0 20px 0 32px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7A99;
  background-color: #F4F6FA;
  border-bottom: 1px solid rgba(26,58,107,0.05);
  text-transform: none;
  letter-spacing: 0;
  justify-content: flex-start;
  gap: 8px;
}
.mobile-drawer .drawer-nav .drawer-submenu a:last-child { border-bottom: none; }
.mobile-drawer .drawer-nav .drawer-submenu a::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D4AC00;
  flex-shrink: 0;
}

/* ================================================================
   RESPONSIVE GLOBAL — correctifs mobile toutes pages
   ================================================================ */

/* ── Conteneur principal ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(24px, 6vw, 34px); }
}

/* ── Header : logo + hamburger sur mobile ── */
@media (max-width: 900px) {
  .header-inner { height: 64px; padding: 0 16px; }
  .logo-img { width: 44px; height: 44px; }
  .logo-gkl { font-size: 22px; }
  .logo-subtitle { display: none; }
  .header-cta { gap: 8px; }
  /* S'assurer que le toggle est toujours visible */
  .mobile-toggle {
    display: flex !important;
    order: 99;
    padding: 6px;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }
}

/* ── Page Banner ── */
@media (max-width: 768px) {
  .page-banner { padding: 52px 0 44px; }
  .page-banner h1 { font-size: clamp(26px, 8vw, 40px); }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .footer-top-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-top-text h3 { font-size: 20px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { justify-content: center; gap: 16px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 40px 0 24px; }
}

/* ── Back to top : ne pas couvrir le contenu ── */
@media (max-width: 480px) {
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ================================================================
   CORRECTIFS RESPONSIVES COMPLÉMENTAIRES — passe 2
   ================================================================ */

/* ── Section tag centré sur mobile ── */
@media (max-width: 768px) {
  .section-tag { font-size: 11px; }
  .btn-primary, .btn-secondary {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ── Topbar : ne pas dépasser sur petits écrans ── */
@media (max-width: 480px) {
  .topbar-inner { padding: 0 16px; }
  .topbar-left { gap: 12px; }
  .topbar-item { font-size: 12px; }
}

/* ── Header phone : réapparaît jamais sur mobile ── */
@media (max-width: 900px) {
  .header-phone { display: none !important; }
}

/* ── Drawer : garantit la largeur du texte des liens ── */
.mobile-drawer .drawer-nav .drawer-nav-item a,
.mobile-drawer .drawer-nav .drawer-nav-item button {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Page banner : breadcrumb wrap sur mobile ── */
@media (max-width: 480px) {
  .breadcrumb { flex-wrap: wrap; gap: 4px; }
  .breadcrumb a, .breadcrumb span { font-size: 12px; }
}

/* ── CTA band : padding mobile ── */
@media (max-width: 768px) {
  .cta-band { padding: 44px 0; }
  .cta-band-text h2 { font-size: clamp(20px,6vw,28px); }
  .cta-band-text p { font-size: 14px; }
}
@media (max-width: 480px) {
  .cta-band { padding: 36px 0; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn-dark,
  .cta-band-actions .btn-light { width: 100%; justify-content: center; }
}

/* ── Footer : liens trop serrés ── */
@media (max-width: 480px) {
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .footer-brand p { font-size: 13px; }
  .footer-col h4 { font-size: 16px; }
}