/* =========================
   Base
   ========================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, sans-serif;
  color: #1f2a33;
  background: #f5f5f5;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }

:root{
  --blue:#004aad;
  --blue2:#00337a;
  --orange:#ff9933;
  --paper:#ffffff;
  --paper2:#fbfbfb;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   Topbar
   ========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.topbar-inner{
  max-width: 1900px; /* ✅ très large */
  margin: 0 auto;
  padding: 10px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: #111;
}
.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-name{ font-weight: 900; letter-spacing: .2px; }

.menu{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:flex-end;
}
.menu a{
  text-decoration:none;
  color:#111;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  transition: background .2s ease;
}
.menu a:hover{ background: rgba(0,0,0,0.08); }
.menu .menu-cta{
  background: var(--blue);
  color:#fff;
}
.menu .menu-cta:hover{ background: var(--blue2); }

/* =========================
   Hero FULL WIDTH (poster vidéo)
   ========================= */
.hero{
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media{ position:absolute; inset:0; }
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse at 20% 10%, rgba(0,0,0,0.22), rgba(0,0,0,0.62) 60%, rgba(0,0,0,0.76));
}
.hero-content{
  position: relative;
  padding: 120px 18px 70px;
  max-width: 1200px;
  text-align:center;
}
.hero-logo{
  width: 280px;
  max-width: 80vw;
  margin: 0 auto 10px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35));
}
.hero h1{
  margin: 8px 0 6px;
  font-size: 58px;
  letter-spacing: 0.5px;
  text-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.hero-subtitle{
  margin: 0 0 18px;
  opacity: 0.95;
  font-size: 18px;
}
.hero-divider{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(245,245,245,1) 100%);
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-block;
  background: var(--blue);
  color:#fff;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 900;
  transition: transform .15s ease, background .2s ease;
  box-shadow: 0 12px 30px rgba(0,74,173,0.25);
}
.btn:hover{ background: var(--blue2); transform: translateY(-1px); }
.btn-outline{
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: none;
}
.btn-outline:hover{ background: rgba(255,255,255,0.12); }
.btn-small{ padding: 10px 14px; font-size: 14px; }

.hero-actions{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.hero-badges{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.badge{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px 14px;
  text-align:left;
}
.badge strong{ display:block; }
.badge span{ opacity: 0.9; font-size: 13px; }

/* =========================
   Sections FULL WIDTH
   ========================= */
.section{
  width: 100%;
  padding: 78px 0;
  background: var(--paper);
}
.section-alt{
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}
.section-inner{
  max-width: 1900px;  /* ✅ FULL LARGEUR */
  margin: 0 auto;
  padding: 0 26px;
}
.section-head{ text-align:center; margin-bottom: 28px; }
.section-head h2{
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 38px;
}
.lead{
  margin: 0 auto;
  max-width: 980px;
  color: #52616b;
}
h3{ margin: 0 0 8px; color:#13202a; }
p{ margin: 0 0 12px; }
.muted{ color:#6a7a86; }

/* Intro split */
.split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.media-stack{ display:grid; gap: 14px; }
.media-stack img{
  border-radius: 18px;
  height: 240px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.card{
  background: var(--paper2);
  border-left: 6px solid var(--orange);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

/* Services */
.service-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.service-card{
  background: var(--paper2);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.service-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-body{ padding: 14px 16px 16px; }
.service-actions{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.link{
  color: var(--blue);
  font-weight: 900;
  text-decoration:none;
}
.link:hover{ text-decoration: underline; }

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.shot{
  margin:0;
  background: var(--paper2);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.shot img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.shot figcaption{
  padding: 12px 14px 14px;
  color: #5a6a76;
  font-size: 14px;
}

/* Steps + CTA */
.steps{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.step{
  background: var(--paper2);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--blue);
}
.step-n{
  display:inline-block;
  font-weight: 900;
  background: var(--blue);
  color:#fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.cta{
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(255,77,77,0.12), rgba(255,153,51,0.12));
  border-radius: 20px;
  padding: 18px 18px;
  border: 1px solid rgba(0,0,0,0.06);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}
.quote{
  margin:0;
  background: var(--paper2);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--orange);
}
.quote cite{
  display:block;
  margin-top: 10px;
  color:#6b7b88;
  font-style: normal;
  font-size: 14px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.contact-card{
  background: var(--paper2);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--orange);
}

/* Footer */
.footer{
  background: #13181c;
  color:#fff;
  padding: 24px 0;
}
.footer-inner{ text-align:center; }
.footer p{ margin:0; opacity: 0.9; }

/* Responsive */
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 44px; }
}
@media (max-width: 768px){
  .topbar-inner{ padding: 10px 14px; }
  .brand-name{ display:none; }
  .hero-content{ padding-top: 100px; }
  .hero-logo{ width: 220px; }
  .section{ padding: 56px 0; }
  .section-inner{ padding: 0 14px; }
  .section-head h2{ font-size: 30px; }
}
