@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@400;600;700;800&family=Ubuntu:wght@400;700&family=Roboto:wght@400;500;700;900&display=swap");

:root{
  --primary:#EB5624;
  --primary-dark:#cf4b1f;
  --black:#000000;
  --white:#FFFFFF;

  --bg:#FFFFFF;
  --alt:#F6F6F6;
  --card:#FFFFFF;
  --text:#000000;
  --muted:#555555;
  --line:rgba(0,0,0,.12);
  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.06);
  --radius: 18px;
  --max: 1120px;
  --focus: rgba(235,86,36,.35);

  --font-title: "Montserrat","Poppins","Ubuntu","Roboto",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  --font-body: "Poppins","Ubuntu","Roboto",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  --font-ui: "Roboto","Poppins","Ubuntu",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(235,86,36,.12), transparent 60%),
    radial-gradient(700px 420px at 85% 5%, rgba(0,0,0,.08), transparent 55%),
    var(--bg);
  font-family: var(--font-body);
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.muted{color:var(--muted)}
.tiny{font-size:12px}

h1,h2,h3,.brand__name{font-family: var(--font-title); letter-spacing:.2px}
.btn,.nav a,label{font-family: var(--font-ui)}

/* =========================
   HEADER BLANC
   ========================= */
.header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: var(--shadow-soft);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{display:block}

.nav{display:flex; gap:16px; align-items:center}
.nav a{color: var(--black); opacity: .85; font-weight: 800}
.nav a:hover,.nav a.active{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: transparent;
  color:var(--text);
  font-weight:900;
  cursor:pointer;
  transition: transform .08s ease, opacity .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.btn:hover{opacity:.93; box-shadow: 0 10px 24px rgba(0,0,0,.10)}
.btn:active{transform: translateY(1px)}

.btn--primary{
  border:0;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(235,86,36,.25);
}
.btn--primary:hover{background: var(--primary-dark)}

.btn--ghost{
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.12);
  color: var(--black);
}

/* =========================
   IMAGE SOUS L'ENTÊTE (ACCUEIL)
   ========================= */
.hero-banner{padding: 18px 0 0}
.hero-banner__img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

/* =========================
   HERO
   ========================= */
.hero{padding:34px 0 28px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .95fr;
  gap:22px;
  align-items:start;
}
h1{font-size:44px; line-height:1.06; margin:0 0 12px}
h2{margin:0 0 14px; font-size:30px}
h3{margin:0 0 10px; font-size:18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}
.breadcrumb{font-size:13px; color: var(--muted); margin-bottom: 10px}

/* =========================
   KPI
   ========================= */
.kpis{display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-top:18px}
.kpi{
  border:1px solid var(--line);
  border-left:5px solid var(--primary);
  border-radius: var(--radius);
  padding:12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.kpi strong{display:block}
.kpi span{display:block; color:var(--muted); font-size:13px; margin-top:4px}

/* =========================
   SECTIONS & CARDS
   ========================= */
.section{padding:38px 0}
.section--alt{
  background: var(--alt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}

/* =========================
   SERVICES (ICÔNES PLUS GRANDES & LISIBLES)
   ========================= */
.service-card{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.service-card__icon{
  width:96px;
  height:96px;
  border-radius:22px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-card__icon img{
  width:72px;
  height:72px;
  object-fit: contain;
  display:block;
  image-rendering: auto;
}

/* =========================
   FORMS
   ========================= */
.form{display:grid; gap:10px}
label{display:grid; gap:6px; font-weight:900}
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: #fff;
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  box-shadow: 0 0 0 3px var(--focus);
  border-color: var(--primary);
}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.grid3{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:10px}

.result{
  margin-top:4px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(235,86,36,.35);
  background: rgba(235,86,36,.08);
  color: var(--muted);
  min-height: 44px;
  display:flex;
  align-items:center;
}

/* =========================
   MAP
   ========================= */
.map-wrap{ margin-top: 12px; }
.map{
  width: 100%;
  height: 320px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top:1px solid rgba(255,255,255,.18);
  padding:18px 0;
  background: var(--black);
  color: var(--white);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
}
.footer a{color:var(--white); opacity:.85}
.footer a:hover{opacity:1}

/* =========================
   PAGE TITLE
   ========================= */
.page-title{padding:26px 0 6px}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .service-card__icon{
    width:112px;
    height:112px;
    border-radius:24px;
  }
  .service-card__icon img{
    width:88px;
    height:88px;
  }
}


@media (max-width: 760px){
  .nav{display:none}
}
