html,body{
  margin:0;
  padding:0;
  color:var(--txt);
  font:16px/1.6 system-ui,Segoe UI,Roboto,Arial;
}

/* ===== Layout générique ===== */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Header ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(13,27,42,.85);
  backdrop-filter:saturate(120%) blur(6px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:28px;
  height:72px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo{
  width:34px;
  height:34px;
  border-radius:10px;
  object-fit:cover;
}
.brand-name{
  font-weight:700;
  letter-spacing:.3px;
}
.nav{
  margin-left:auto;
  display:flex;
  gap:18px;
  align-items:center;
}
.nav .cta{
  background:var(--accent);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  box-shadow:var(--shadow);
}
.nav .cta:hover{
  transform:translateY(-1px);
}

/* ===== HERO ===== */
.hero{
  padding:60px 0 30px;
  margin-bottom:20px;
}

/* Grille principale : 2 colonnes, 2 lignes
   ligne 1 : left / right
   ligne 2 : why  / right
*/
.hero-grid{
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  grid-template-rows:auto auto;
  grid-template-areas:
    "left right"
    "why  right";
  gap:28px;              /* même écart horizontal & vertical */
  align-items:start;
}

.panel{
  padding:28px;
  border-radius:var(--radius);
  background:rgba(21, 45, 68, 0.55);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.35);
  transition:background 0.3s ease, box-shadow 0.3s ease;
}
.panel:hover{
  background:rgba(21,45,68,0.65);
  box-shadow:0 12px 36px rgba(0,0,0,0.4);
}

.panel-left{grid-area:left;}
.panel-right{grid-area:right;}
.panel-why{grid-area:why;}

.panel-right h2{
  margin-top:0;
  margin-bottom:18px;
  font-size:1.6rem;
  color:#fff;
  text-align:left;
}

/* ===== KPIs ===== */
.kpis{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:16px;
}
.kpi{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  padding:14px;
  border-radius:14px;
  font-size:0.95rem;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow:0 0 0 rgba(0,0,0,0);
}
.kpi:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0, 0, 0, 0.35);
  border-color:rgba(255,255,255,0.1);
}

/* ===== Cartes services ===== */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
  margin:40px 0;
}
.card{
  position:relative;
  border-radius:20px;
  padding:26px;
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  min-height:200px;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 36px rgba(0,0,0,.45);
}
.card h3{
  position:relative;
  margin:0 0 10px;
  font-size:1.3rem;
}
.card p{
  position:relative;
  margin:0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.5em;
}
.card .bg{
  position:absolute;
  inset:0;
  background:var(--bg-img) center/cover no-repeat;
  filter:blur(2px) saturate(120%);
  opacity:0.42;
  transform:scale(1.03);
  transition:opacity 0.3s ease, filter 0.3s ease;
}
.card:hover .bg{
  opacity:0.48;
  filter:blur(1px) saturate(125%);
}

/* ===== Nos engagements ===== */
.panel-why h2{
  margin:0 0 20px;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.why-item{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  padding:18px;
  border-radius:14px;
  text-align:center;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.why-item:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}
.why-item h3{
  margin:0 0 6px;
  color:#fff;
}

/* ===== Bouton zone couverte ===== */
.zone-btn{
  display:inline-block;
  margin-left:6px;
  padding:4px 10px;
  background:var(--accent);
  color:#fff;
  border-radius:10px;
  font-size:0.9rem;
  font-weight:500;
  text-decoration:none;
  transition:all 0.25s ease;
  box-shadow:0 2px 8px rgba(0, 180, 255, 0.15);
}
.zone-btn:hover{
  background:#48b3f7;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(0,180,255,0.25);
}

/* ===== Prix (autres pages) ===== */
.section{padding:26px 0}

.pricing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:10px;
}
.price{
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.price .bg{
  position:absolute;
  inset:0;
  background:var(--bg-img) center/cover;
  filter:blur(12px);
  opacity:.15;
  transform:scale(1.2);
}
.price .amount{
  font-size:1.8rem;
  font-weight:800;
  margin:8px 0 6px;
}

/* version responsive pour .pricing (garde les 2, c'est ok) */
.pricing {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:20px;
}
@media (max-width:1000px){
  .pricing{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:650px){
  .pricing{grid-template-columns:1fr;}
}

/* ===== FAQ ===== */
.faq{
  display:grid;
  gap:14px;
}
.faq-item{
  background:rgba(21,45,68,0.8);
  backdrop-filter:blur(6px);
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
  overflow:hidden;
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.faq-item:hover{
  transform:translateY(-4px) scale(1.02);
  background:rgba(21,45,68,0.9);
  box-shadow:0 10px 28px rgba(0,0,0,0.35);
}
.faq-q{
  padding:16px 20px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:500;
  color:var(--txt);
  transition:color 0.25s ease, transform 0.25s ease;
}
.faq-item:hover .faq-q{
  transform:translateX(2px);
}
.faq-q span{
  display:inline-block;
  transition:transform 0.3s ease;
}
.faq-item.active .faq-q span{
  transform:rotate(-180deg);
}
.faq-a{
  padding:0 20px;
  max-height:0;
  overflow:hidden;
  color:var(--muted);
  line-height:1.5;
  transition:max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-a{
  padding:12px 20px 18px;
  max-height:500px;
}

/* ===== Formulaires / contact ===== */
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}
.form{
  display:grid;
  gap:10px;
}
.form input,
.form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.06);
  color:#fff;
}
.form button{
  background:var(--accent);
  border:0;
  color:#fff;
  padding:12px 14px;
  border-radius:12px;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.form button:hover{
  transform:translateY(-1px);
}

.contact-wrapper{
  background:rgba(21,45,68,0.55);
  backdrop-filter:blur(8px);
  border-radius:var(--radius);
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.08);
  padding:32px;
  transition:background 0.3s ease, box-shadow 0.3s ease;
}
.contact-info{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
  margin:22px 0;
}
.info-item{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  padding:16px;
  border-radius:14px;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.info-item:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}
.info-item h3{margin-top:0;}
.info-item a{
  color:var(--accent);
  font-weight:600;
  text-decoration:none;
}
.urgent{
  color:#ff6363;
  font-weight:600;
  margin-top:6px;
}

textarea{resize:none;}

/* ===== Badges ===== */
.badge{
  display:inline-block;
  background-color:#1e293b;
  color:#f1f5f9;
  padding:6px 12px;
  border-radius:8px;
  font-size:0.9rem;
  border:1px solid rgba(255,255,255,0.08);
  transition:transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  cursor:default;
}
.badge:hover{
  transform:translateY(-3px) scale(1.04);
  background-color:#2f81f7;
  color:#fff;
  box-shadow:0 6px 12px rgba(47,129,247,0.25);
  border-color:rgba(255,255,255,0.12);
}

/* ===== Footer ===== */
.site-footer{
  margin-top:40px;
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:#0b1624;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:20px;
}
.footer-grid ul{
  list-style:none;
  padding:0;
  margin:8px 0 0;
}
.copyright{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:18px;
  padding-top:12px;
  text-align:center;
  color:var(--muted);
  font-size:.92rem;
}

/* ===== Effets généraux ===== */
a:hover{
  color:var(--accent);
  text-shadow:0 0 8px rgba(0,180,255,0.5);
}

/* ===== Responsive ===== */
@media(max-width:980px){
  .pricing,
  .cards,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
}

/* Ajustement : remonte un peu le bloc "Nos engagements" */
.panel-why {
  margin-top: 0px; /* remonte légèrement */
}

/* Réduction de la hauteur du bloc Services pour alignement */
.panel-right .cards {
  gap: 28px; /* au lieu de 28px */
  margin: 30.3px 0; /* moins d’espace vertical */
}

body {
  background: url("../img/fond-tech.png") center/cover no-repeat fixed;
  background-color: #081423; /* couleur de secours si l'image charge lentement */
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 20, 0.6); /* voile sombre discret */
  z-index: -1;
}

:root{
  --bg:#0e1e2e;         /* bleu nuit légèrement saturé */
  --panel:#152d44;      /* fond des sections plus clair, effet bleuté */
  --panel-2:#1a3652;    /* dégradé légèrement plus lumineux */
  --txt:#e9f3ff;        /* texte clair, mais pas blanc pur */
  --muted:#a5b9d4;      /* texte secondaire bleuté */
  --accent:#3da9fc;     /* bleu néon doux (glow, boutons, liens) */
  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}


*{box-sizing:border-box}
a{color:var(--txt);text-decoration:none}
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-header{position:sticky;top:0;z-index:50;background:rgba(13,27,42,.85);backdrop-filter:saturate(120%) blur(6px);border-bottom:1px solid rgba(255,255,255,.06)}
.header-inner{display:flex;align-items:center;gap:28px;height:72px}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{width:34px;height:34px;border-radius:10px;object-fit:cover}
.brand-name{font-weight:700;letter-spacing:.3px}

.nav{margin-left:auto;display:flex;gap:18px;align-items:center}
.nav a{opacity:.9}
.nav a:hover{opacity:1}
.nav .cta{background:var(--accent);color:#fff;padding:10px 14px;border-radius:12px;box-shadow:var(--shadow)}
.nav .cta:hover{transform:translateY(-1px)}

.hero{padding:60px 0 30px}

/* (supprimée: l’ancienne définition simple de .hero-grid)
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: start;
}
*/

.hero .panel{padding:28px;border-radius:var(--radius);background:linear-gradient(180deg,var(--panel),var(--panel-2));box-shadow:var(--shadow)}
.kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.kpi:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin: 40px 0;
}

.card {
  position: relative;
  border-radius: 20px;
  padding: 26px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 200px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.45);
}

.card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5em;
}

/* (supprimée: la 2e règle .card:hover à -2px) */
/* .card:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(0,0,0,.45)} */

.card .bg {
  position: absolute;
  inset: 0;
  background: var(--bg-img) center/cover no-repeat;
  filter: blur(2px) saturate(120%);
  opacity: 0.42;
  transform: scale(1.03);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.card:hover .bg {
  opacity: 0.48;
  filter: blur(1px) saturate(125%);
}

.card h3{position:relative;margin:0 0 6px}
.card p{position:relative;margin:0;color:var(--muted)}

.section{padding:26px 0}
.section h2{margin:0 0 14px}

.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:10px}
.price{background:linear-gradient(180deg,var(--panel),var(--panel-2));border-radius:18px;padding:18px;box-shadow:var(--shadow);position:relative;overflow:hidden}
.price .bg{position:absolute;inset:0;background:var(--bg-img) center/cover;filter:blur(12px);opacity:.15;transform:scale(1.2)}
.price h3{margin:0 0 6px}
.price .amount{font-size:1.8rem;font-weight:800;margin:8px 0 6px}

/* (remplacé: ancien .badge de base et les deux .badge:hover en doublon) */
/* .badge{display:inline-block;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08);padding:6px 10px;border-radius:12px} */

.leaf{height:420px;border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.08);box-shadow:var(--shadow)}

/* === FAQ modernisée et translucide === */
.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(21, 45, 68, 0.8); /* translucide mais lisible */
  backdrop-filter: blur(6px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  background: rgba(21, 45, 68, 0.9); /* un peu plus opaque au survol */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--txt);
  transition: color 0.25s ease;
}

.faq-q span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-q span {
  transform: rotate(-180deg);
}

.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.5;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-a {
  padding: 12px 20px 18px;
  max-height: 500px; /* hauteur suffisante */
}


.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px}
.form{display:grid;gap:10px}
.form input,.form textarea{width:100%;padding:12px 14px;border-radius:12px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.06);color:#fff}
.form button{background:var(--accent);border:0;color:#fff;padding:12px 14px;border-radius:12px;cursor:pointer;box-shadow:var(--shadow)}
.form button:hover{transform:translateY(-1px)}

.site-footer{margin-top:40px;padding:28px 0;border-top:1px solid rgba(255,255,255,.08);background:#0b1624}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:20px}
.footer-grid ul{list-style:none;padding:0;margin:8px 0 0}
.footer-grid li+li{margin-top:6px}
.footer-grid p{color:var(--muted)}
.copyright{border-top:1px solid rgba(255,255,255,.08);margin-top:18px;padding-top:12px;text-align:center;color:var(--muted);font-size:.92rem}

@media(max-width:980px){
  .hero-grid,.pricing,.cards,.contact-grid,.footer-grid{grid-template-columns:1fr}
}
/* === Arrière-plans personnalisés === */

/* Page d'accueil */
body.index-page .card:nth-child(1) .bg { --bg-img: url('../img/tech.jpg'); }
body.index-page .card:nth-child(2) .bg { --bg-img: url('../img/composants.jpg'); }
body.index-page .card:nth-child(3) .bg { --bg-img: url('../img/montage.jpg'); }

/* Page tarifs */
body.tarifs-page .price:nth-child(1) .bg { --bg-img: url('../img/tech.jpg'); }
body.tarifs-page .price:nth-child(2) .bg { --bg-img: url('../img/composants.jpg'); }
body.tarifs-page .price:nth-child(3) .bg { --bg-img: url('../img/montage.jpg'); }


.section.why {
  padding: 40px 0;
}

.why .container {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why h2 {
  text-align: left;
  margin-bottom: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  transition: 0.25s transform, 0.25s box-shadow;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.why-item h3 {
  margin: 0 0 6px;
  color: #fff;
}
.hero {
  margin-bottom: 20px;
}

.section.why {
  padding-top: 0;
}
/* Ajustement pour que le bloc Pourquoi nous soit bien intégré */
.hero-grid {
  display:grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "left right"
    "why  right";
  gap:28px;
  align-items:start;
}

/* Tell each panel where to go */
.panel-left  { grid-area: left; }
.panel-right { grid-area: right; }
.panel-why   { grid-area: why; }

/* Optional: a bit of spacing above the WHY block */
.panel-why { margin-top: 4px; }

/* Mobile stack (already present, just ensure it stacks nicely) */
@media (max-width:980px){
  .hero-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "left"
      "right"
      "why";
  }
}
.panel-right h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.6rem;
  color: #fff;
  text-align: left;
}
.hero .panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(21, 45, 68, 0.55); /* fond translucide */
  backdrop-filter: blur(8px);         /* effet verre dépoli */
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: background 0.3s.ease, box-shadow 0.3s ease;
}
.hero .panel:hover {
  background: rgba(21, 45, 68, 0.65); /* un peu plus opaque au survol */
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}


/* Disposition des cartes tarifs */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes fixes */
  gap: 22px;
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .pricing {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
  }
}

@media (max-width: 650px) {
  .pricing {
    grid-template-columns: 1fr; /* 1 colonne sur mobile */
  }
}


/* Cartes tarif avec fond et hover */
.price {
  position: relative;
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 180px;
}

.price:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.price .bg {
  position: absolute;
  inset: 0;
  background: var(--bg-img) center/cover no-repeat;
  filter: blur(2px) saturate(120%);
  opacity: 0.3;

  transform: scale(1.1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.price:hover .bg {
  opacity: 0.32;
  filter: blur(0px) saturate(130%);
}

.price h3 {
  position: relative;
  margin: 0 0 6px;
}

.price .amount {
  position: relative;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 4px 0 8px;
}
.contact-wrapper {
  background: rgba(21, 45, 68, 0.55);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.info-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.info-item h3 {
  margin-top: 0;
}

.info-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.urgent {
  color: #ff6363;
  font-weight: 600;
  margin-top: 6px;
}
textarea {
  resize: none; /* empêche le redimensionnement manuel */
}

.zone-btn {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 180, 255, 0.15); /* glow plus discret */
}

.zone-btn:hover {
  background: #48b3f7; /* un bleu clair, pas trop flashy */
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 180, 255, 0.25); /* effet doux */
}




/* --- Badges villes : base + hover unifié --- */
.badge{
  display:inline-block;
  background-color:#1e293b;
  color:#f1f5f9;
  padding:6px 12px;
  border-radius:8px;
  font-size:0.9rem;
  border:1px solid rgba(255,255,255,0.08);
  transition:transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  cursor:default;
}
.badge:hover{
  transform:translateY(-3px) scale(1.04);
  background-color:#2f81f7;
  color:#fff;
  box-shadow:0 6px 12px rgba(47,129,247,0.25);
  border-color:rgba(255,255,255,0.12);
}

/* --- Effet de survol sur les questions de la FAQ --- */
.faq-item {
  transition: all 0.25s ease;
  border-radius: 10px;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(47, 129, 247, 0.15);
}

/* --- Bonus : petit effet sur le titre au survol, sans changer la couleur --- */
.faq-q {
  transition: color 0.25s ease, transform 0.25s ease;
}

.faq-item:hover .faq-q {
  transform: translateX(2px);
}
.faq-item:hover {
  transform: translateY(-4px) scale(1.02);
}
a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px rgba(0,180,255,0.5);
}
.container.panel {
  position: relative;
  background: rgba(21, 45, 68, 0.55); /* translucide */
  backdrop-filter: blur(8px);          /* effet verre dépoli */
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  margin-top: 30px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.container.panel:hover {
  background: rgba(21, 45, 68, 0.65);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.leaflet-container {
    z-index: 1 !important;
}

