@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.header-top {
  background: #0D1F3C;
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.header-top a { color: #F5A623; font-weight: 700; }

/* ===== NAVBAR ===== */
.navbar {
  background: #1A3A6B;
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: #F5A623;
  color: #0D1F3C;
}
.nav-phone {
  background: #F5A623;
  color: #0D1F3C !important;
  font-weight: 800 !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
}
.nav-phone:hover { background: #e09410 !important; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0D1F3C;
  padding: 20px;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 20px;
}
.mobile-menu a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu a:hover { color: #F5A623; }
.mobile-phone-bar {
  background: #F5A623;
  text-align: center;
  padding: 10px;
  font-weight: 800;
  font-size: 18px;
  color: #0D1F3C;
  border-radius: 8px;
  margin-top: 20px;
}

/* ===== HERO (accueil) ===== */
.hero {
  background: linear-gradient(135deg, #0D1F3C 0%, #1A3A6B 60%, #1a5ba8 100%);
  padding: 70px 0 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: rgba(245,166,35,.08);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: #F5A623;
  color: #0D1F3C;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
}
.hero h1 span { color: #F5A623; }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
  display: inline-block;
  background: #F5A623;
  color: #0D1F3C;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background .2s, transform .2s;
  text-align: center;
}
.btn-primary:hover { background: #e09410; transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: #F5A623; background: rgba(245,166,35,.1); }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.trust-icon { font-size: 20px; }
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: #F5A623;
  color: #0D1F3C;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ===== PAGE HEADER (pages internes) ===== */
.page-header {
  background: linear-gradient(135deg, #0D1F3C 0%, #1A3A6B 100%);
  padding: 48px 0 40px;
  color: #fff;
}
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
}
.page-header h1 span { color: #F5A623; }
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  max-width: 680px;
  margin-bottom: 20px;
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: #F5A623; }
.breadcrumb span { color: rgba(255,255,255,.4); margin: 0 6px; }

/* ===== FEATURED SNIPPET ===== */
.featured-snippet {
  background: #fffbe6;
  border-left: 5px solid #F5A623;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 28px 0;
  box-shadow: 0 2px 12px rgba(245,166,35,.15);
}
.snippet-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0D1F3C;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.featured-snippet p { color: #333; font-size: 15px; }
.featured-snippet ul { margin: 8px 0 0 16px; list-style: disc; }
.featured-snippet ul li { color: #333; font-size: 15px; margin-bottom: 4px; }

/* ===== SECTIONS ===== */
.section { padding: 56px 0; }
.section-white { background: #fff; }
.section-light { background: #f8fafd; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #0D1F3C;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #F5A623;
  display: inline-block;
}
.section-title h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: #0D1F3C;
  text-transform: uppercase;
}

/* ===== SEO TEXT ===== */
.seo-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #1A3A6B;
  text-transform: uppercase;
  margin: 28px 0 12px;
  border-left: 4px solid #F5A623;
  padding-left: 14px;
}
.seo-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 700;
  color: #1A3A6B;
  margin: 22px 0 10px;
}
.seo-text p { color: #333; font-size: 15px; margin-bottom: 16px; line-height: 1.8; }
.seo-text ul, .seo-text ol { margin: 10px 0 16px 20px; }
.seo-text ul { list-style: disc; }
.seo-text ol { list-style: decimal; }
.seo-text li { color: #333; font-size: 15px; margin-bottom: 6px; line-height: 1.7; }
.seo-text strong { color: #1A3A6B; }

/* ===== ORANGE BAND ===== */
.orange-band {
  background: #F5A623;
  text-align: center;
  padding: 18px 20px;
}
.orange-band a {
  color: #0D1F3C;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.orange-band a:hover { text-decoration: underline; }

/* ===== IMG SECTION ===== */
.img-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.img-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  background: #fff;
}
.img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.img-card:hover img { transform: scale(1.03); }
.img-label {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #1A3A6B;
  background: #fff;
  border-top: 3px solid #F5A623;
}

/* ===== FAQ ===== */
.faq-container { margin-top: 16px; }
.faq-item {
  border: 1px solid #dde8f5;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A3A6B;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-question:hover { background: #f0f6ff; }
.faq-icon {
  font-size: 22px;
  font-weight: 700;
  color: #F5A623;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .3s;
}
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  border-top: 1px solid #eef2f8;
}
.faq-answer strong { color: #1A3A6B; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== SIDEBAR LAYOUT ===== */
.main-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.sidebar { position: sticky; top: 90px; }
.sidebar-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.09);
  padding: 24px;
  margin-bottom: 24px;
  border-top: 4px solid #1A3A6B;
}
.sidebar-box.cta-card {
  background: linear-gradient(135deg, #1A3A6B, #0D1F3C);
  color: #fff;
}
.cta-card h3 { color: #F5A623; border-color: #F5A623; }
.cta-card p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 14px; }
.sidebar-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1A3A6B;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F5A623;
}
.btn-sidebar {
  display: block;
  background: #F5A623;
  color: #0D1F3C;
  font-weight: 800;
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
  transition: background .2s;
}
.btn-sidebar:hover { background: #e09410; }
.sidebar-hours { color: rgba(255,255,255,.7); font-size: 13px; text-align: center; }
.sidebar-links { padding: 0; }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links a {
  color: #1A3A6B;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  display: block;
  border-bottom: 1px solid #eef2f8;
  transition: color .2s;
}
.sidebar-links a:hover, .sidebar-links a.active { color: #F5A623; }
.map-address { font-size: 13px; color: #555; margin-top: 10px; line-height: 1.5; }

/* ===== SERVICES GRID ===== */
.services-section { background: #f8fafd; padding: 60px 0; }
.section-sub { text-align: center; color: #666; margin-bottom: 40px; font-size: 16px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  border-top: 4px solid #1A3A6B;
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.14); }
.service-icon { font-size: 40px; margin-bottom: 14px; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: #1A3A6B;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-card p { color: #555; font-size: 14px; margin-bottom: 16px; }
.service-link {
  display: inline-block;
  color: #F5A623;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid #F5A623;
  padding-bottom: 2px;
}

/* ===== WHY US ===== */
.why-section { padding: 60px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.why-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-bottom: 3px solid #F5A623;
}
.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-card h3 { font-size: 17px; color: #1A3A6B; margin-bottom: 8px; font-weight: 700; }
.why-card p { font-size: 14px; color: #555; }

/* ===== REVIEWS ===== */
.reviews-section { background: #0D1F3C; padding: 60px 0; }
.reviews-section .section-title { color: #fff; }
.reviews-section .section-sub { color: rgba(255,255,255,.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
}
.review-stars { color: #F5A623; font-size: 20px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
.review-author { font-weight: 700; color: #F5A623; font-size: 14px; }
.review-source { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ===== STATS ===== */
.stats-section { background: #1A3A6B; padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #F5A623;
  display: block;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.8); }

/* ===== ZONES ===== */
.zones-section { padding: 50px 0; background: #f8fafd; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.zone-tag {
  background: #fff;
  border: 1px solid #dde8f5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1A3A6B;
  text-align: center;
  transition: background .2s;
}
.zone-tag:hover { background: #1A3A6B; color: #fff; }

/* ===== FOOTER ===== */
.footer { background: #0D1F3C; color: #fff; padding: 50px 0 0; }
.footer-inner { padding-bottom: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand { }
.footer-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; margin-bottom: 14px; }
.footer-col p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }
.footer-phone {
  display: inline-block;
  color: #F5A623;
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
}
.footer-col h4, .footer-brand h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  color: #F5A623;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(245,166,35,.3);
  padding-bottom: 6px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul a:hover { color: #F5A623; }
.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 16px 0;
  text-align: center;
  margin-top: 0;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-bottom a { color: #F5A623; }

/* ===== STICKY CALL ===== */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.sticky-call a {
  display: block;
  background: #F5A623;
  color: #0D1F3C;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,166,35,.5);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.sticky-call a:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(245,166,35,.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links a { font-size: 12px; padding: 7px 8px; }
}
@media (max-width: 900px) {
  .main-content { grid-template-columns: 1fr; }
  .sidebar { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .img-section { grid-template-columns: 1fr; }
  .sticky-call a { font-size: 13px; padding: 12px 16px; }
}
