/* ============================================================
   EVER VIEW — site-new.css
   ============================================================ */

/* ── Variables ── */
:root {
  --brand-color: rgb(200, 185, 160);
  --fond-color :  rgb(200, 185, 160);
}

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ── Base ── */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background-color: var(--fond-color);
  color: var(--brand-color);
}

/* ── Conteneur scrollable avec snap ── */
.corps {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 40px;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  /*-webkit-overflow-scrolling: touch;*/
}

/* ============================================================
   VUES — toutes visibles, empilees, chacune occupe 100%, Header et footer visibles
============================================================ */
.view {
  display: block;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100%;
}


/* ============================================================
   HEADER
============================================================ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  z-index: 300;
}

.logo img { height: 60px; }

/* ── Nav desktop ── */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

/* ── Hamburger : caché par défaut, visible sous 900px ── */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--brand-color);
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  z-index: 400;
}

/* ── Nav mobile ── */
.nav-menu {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  top: 80px; right: 0;
  width: 220px;
  background: rgba(0, 0, 0, 0.97);
  padding: 24px 20px;
  z-index: 500;
}

.nav-menu.active { display: flex; }

/* ── Liens nav ── */
.nav-links a,
.nav-menu a,
.nav-links span.nav-link,
.nav-menu span.nav-link {
  color: var(--brand-color);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  font-size: 14px;
}

.nav-links a:hover,
.nav-menu a:hover,
.nav-links span.nav-link:hover,
.nav-menu span.nav-link:hover { color: white; }

.nav-links span.nav-link.current,
.nav-menu span.nav-link.current { color: var(--brand-color); font-weight: 600; }

/* ============================================================
NAV – boutons (nav-link en <button>)
SUPPRESSION DU CADRE BLANC
============================================================ */

.nav-links button.nav-link,
.nav-menu button.nav-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--brand-color);
  cursor: pointer;
  outline: none;
}

/* Hover */
.nav-links button.nav-link:hover,
.nav-menu button.nav-link:hover {
  color: white;
}

/* Focus clavier propre et discret */
.nav-links button.nav-link:focus-visible,
.nav-menu button.nav-link:focus-visible {
  outline: 2px solid var(--brand-color);
  outline-offset: 4px;
}

/* ============================================================
   MAIN commun
============================================================ */
main {
  padding-top: 0;
}

/* ============================================================
   VUE ACCUEIL 
============================================================ */
.main-accueil {
  padding-top: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  position : relative;
  height: 100vh;
  overflow: hidden;
}

.hero {
  width: 100%;
  flex: 1;
  position: relative;
  min-height: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("Images/Everview.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 }

/* ── Tag accueil (overlay sur le hero) ── */
.hero-tag-wrap {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: black;
  background: rgba(0, 0, 0, 0.25);
 -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

/* ── Bouton retour accueil ── */
.btn-home {
  position: fixed;
  top: 80px;
  left: 2px;
  z-index: 400;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: black;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-home:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.btn-home.hidden { display: none; }

/* ── Section bas accueil : cartes info horizontales ── */
.accueil-bottom {
  position: relative;
  z-index: 10;
  padding: 16px 24px 140px;
}

.accueil-info-cards {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.accueil-info-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background:white;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 185, 160, 0.45);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 190px;
  flex: 1;
  max-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.accueil-info-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.accueil-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(200, 185, 160, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accueil-info-icon svg {
  width: 20px;
  height: 20px;
  color: rgba(80, 70, 55, 0.85);
}

.accueil-info-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.accueil-info-content--reseaux {
  gap: 8px;
}

.accueil-info-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: black;
  text-transform: uppercase;
}

.accueil-info-text {
  font-size: 13px;
  color: black;
  line-height: 1.5;
  cursor: pointer;
}

.accueil-info-link {
  text-decoration: none;
  color:black;
  transition: color 0.2s;
  cursor: pointer;
}

.accueil-info-link:hover {
  color: black;
  text-decoration: underline;
}

.accueil-reseaux {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* Accès à la vue contact*/
.accueil-cta { background: var(--brand-color); padding: 4px 40px; text-align: center; }

.accueil-cta h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.accueil-cta h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: black;
}

.accueil-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.accueil-btn-dark {
  padding: 13px 28px;
  background: #2c2a26;
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.accueil-btn-dark:hover { opacity: 0.85; transform: scale(1.03); }

/* ── Tag contact ── */
.contact-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: black;
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}

/* ============================================================
   VUE SOLUTIONS
============================================================ */
.main-solutions {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.solutions-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: black;
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.hero-content-section {
  background: var(--fond-color);
 -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 0px 40px 3px;
  text-align: center;
  flex-shrink: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.hero-content h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 40px;
  margin-bottom: 20px;
  color: black;
  font-weight: 400;
}

.hero-content p {
  font-size: 16px;
  color: white;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
  ── Services ── 
============================================================*/
.services {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  padding: 20px 30px 12px;
  flex: 1;
  align-items: stretch;
}

.services.visible { display: grid; }

.card {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover { transform: translateY(-5px); }
.card h2 { font-size: 16px; margin-bottom: 6px; flex-shrink: 0; }
.card p  { font-size: 13px; color: #ccc; flex-shrink: 0; }

/* Image dans chaque card : occupe tout l'espace restant */
.card-img-wrap {
  flex: 1;
  margin-top: 12px;
  min-height: 80px;
  overflow: hidden;
  border-radius: 10px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ============================================================
   VUE APPROCHE
============================================================ */
.approche-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 40px 60px;
  background: var(--fond-color);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

.approche-intro { text-align: center; margin-bottom: 0px; }

.approche-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: black;
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 28px;
}

.approche-intro h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}

.approche-intro h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: black;
}

.approche-intro p {
  font-size: 16px;
  color: white;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.etapes-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  flex-wrap: wrap;
  gap: 20px;
}

.etape {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 20px;
  animation: fadeUp 0.6s ease both;
}

.etape-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: black;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 18px;
}

.etape h2 { 
  font-family: 'Playfair Display', serif; 
  font-style: italic; 
  font-size: 20px; 
  font-weight: 600; 
  color: black; 
  margin-bottom: 12px; 
}
.etape p  { 
  font-size: 14px; 
  color: white; 
  line-height: 1.75; 
  max-width: 200px; 
  margin: 0 auto; 
}

.etape-arrow {
  flex-shrink: 0;
  font-size: 42px;
  font-weight: 700;
  color: white;
  opacity: 0.8;
  padding-top: 16px;
  align-self: flex-start;
}

/* ============================================================
   VUE A PROPOS
============================================================ */
.apropos-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px 60px;
  background: var(--fond-color);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

/* Tag centré, collé sous le header, sans espace */
.apropos-tag-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 0;
  flex-shrink: 0;
}

.apropos-tag {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: black;
  background: rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  margin: 0;
}

/* Conteneur left + right */
.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  width: 100%;
  max-width: 1100px;
  align-items: center;
  flex: 1;
}

.apropos-left h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
}

.apropos-left h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: black;
}

.apropos-left p {
  font-size: 16px;
  color: white;
  line-height: 1.8;
  margin-bottom: 16px;
}

.apropos-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin: 24px 0 32px;
}

.apropos-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color:white;
}

.apropos-feature::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath d='M7 10.414l-2.293-2.293-1.414 1.414L7 13.243l9.707-9.707-1.414-1.414z'/%3E%3C/svg%3E");
  background-size: cover;
}


.apropos-right { display: flex; flex-direction: column; gap: 20px; }

.apropos-card {
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  animation: fadeUp 0.6s ease both;
}

.apropos-card.light { background: rgba(255, 255, 255, 0.92); }
.apropos-card.dark  { background: rgba(30, 28, 26, 0.92); }

.apropos-card-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.apropos-card.light .apropos-card-num { color: #2c2a26; }
.apropos-card.dark  .apropos-card-num { color: var(--brand-color); }

.apropos-card-label { font-size: 14px; }
.apropos-card.light .apropos-card-label { color: #666; }
.apropos-card.dark  .apropos-card-label { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
  VUE SECTEURS
============================================================ */
.secteurs-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 40px 60px;
  background: var(--fond-color);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  min-height: calc(100vh - 120px);
}

.secteurs-intro { text-align: center; margin-bottom: 56px; }

.secteurs-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: black;
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 28px;
}

.secteurs-intro h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.secteurs-intro h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: black;
  display: block;
  font-weight: 400;
}

.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1100px;
}

.secteur-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 40px 20px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.5s ease both;
}

.secteur-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.secteur-icon { display: block; font-size: 52px; margin-bottom: 18px; line-height: 1; }
.secteur-card h2 { font-size: 15px; font-weight: 600; color: #2c2a26; }

/* ============================================================
  VUE SUIVEZ-NOUS
============================================================ */
.suivez-main {
  display: flex;
  flex-direction: column;
  background: var(--fond-color);
 -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

.temoignages-intro { text-align: center; padding: 0px 40px 32px; }

.temoignages-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: black;
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.temoignages-intro h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.temoignages-intro h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: black;
  font-weight: 400;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.temoignage-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: fadeUp 0.5s ease both;
}

.temoignage-card::after {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--brand-color);
  opacity: 0.35;
  line-height: 1;
}

.temoignage-stars { color: var(--brand-color); font-size: 15px; letter-spacing: 2px; opacity: 0.7; }
.temoignage-text  { font-size: 13px; color: #444; line-height: 1.8; font-style: italic; flex: 1; }

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 14px;
}


/* ── Avatar photo IA ── */
.temoignage-avatar-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--brand-color);
  background: var(--brand-color);
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.temoignage-avatar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.avatar-initials {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
  opacity: 0.85;
}

.avatar-initials.hidden { display: none; }

.avatar-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: avatarShimmer 1.2s infinite;
}

@keyframes avatarShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.temoignage-info strong { display: block; font-size: 13px; font-weight: 600; color: #2c2a26; }
.temoignage-info span  { font-size: 12px; color: #888; }


.reseau-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reseau-icon.linkedin { background: #0A66C2; }
.reseau-icon.facebook { background: #1877F2; }
.reseau-icon svg { width: 18px; height: 18px; fill: white; }

/* ============================================================
  VUE FAQ
============================================================ */
.faq-main {
  display: flex;
  flex-direction: column;
  background:var(--fond-color);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

.faq-intro { text-align: center; padding: 0px 40px 32px; }

.faq-tag {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: black;
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 5px;
}

.faq-intro h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.faq-intro h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: black;
  font-weight: 400;
}

.faq-list {
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.18); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #2c2a26;
  gap: 16px;
  -webkit-user-select: none; user-select: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-color);
  border: 1.5px solid var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }


/* ============================================================
   VUE CONTACT
============================================================ */
.contact-main {
  padding: 0px 20px 60px;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  width: 100%;
  max-width: 800px;
}

.contact-intro { 
  margin-bottom: 10px; 
  text-align: center; 
}
.contact-intro h1 { 
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.2; 
}

.contact-intro h1 em { 
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: black;
  font-weight: 400;
}

.contact-intro p  { 
  font-size: 16px; 
  color:white; 
  line-height: 1.7; 
}

.form-step {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(200, 185, 160, 0.25);
  border-radius: 16px;
  padding: 30px 40px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.form-step.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-step h2 {
  font-size: 20px;
  color: var(--brand-color);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-indicator { font-size: 13px; color: #aaa; font-weight: 300; }
.form-group { margin-bottom: 15px; }
.form-group label { 
  display: block; 
  font-size: 14px; 
  color: var(--fond-color);
  margin-bottom: 10px; 
}
.required { color: #ff6b6b; }

.form-input {
  width: 100%;
  padding: 10px 14px;
  background: white;
  border: 1px solid rgba(200, 185, 160, 0.3);
  border-radius: 8px;
  color: blue;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--brand-color); }
.form-input::placeholder { color: #666; }
textarea.form-input { resize: vertical; min-height: 100px; }

.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(200, 185, 160, 0.2);
  transition: 0.2s;
}

.check-item:hover { background: rgba(200, 185, 160, 0.1); color: white; }
.check-item input[type="checkbox"] { accent-color: blue; width: 16px; height: 16px; }

.radio-group { display: flex; flex-direction: column; gap: 10px; }

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(200, 185, 160, 0.2);
  transition: 0.2s;
}

.radio-item:hover { background: rgba(200, 185, 160, 0.1); color: white; }
.radio-item input[type="radio"] { accent-color: blue; width: 16px; height: 16px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-row { display: flex; justify-content: space-between; margin-top: 10px; }

.btn-next, .btn-submit {
  padding: 10px 28px;
  background: var(--brand-color);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.btn-next:hover, .btn-submit:hover { opacity: 0.85; }

.btn-prev {
  padding: 10px 28px;
  background: transparent;
  color: var(--brand-color);
  border: 1px solid rgba(200, 185, 160, 0.4);
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.btn-prev:hover { background: rgba(200, 185, 160, 0.1); color: white; }

.recap-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 14px; }

.recap-table th, .recap-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 185, 160, 0.15);
  vertical-align: top;
}

.recap-table th { width: 38%; color: var(--brand-color); font-weight: 500; }
.recap-table td { color: #ddd; }
.recap-table tr:last-child th,
.recap-table tr:last-child td { border-bottom: none; }

.confirm-box,
.ca-confirm-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  animation: fadeUp 0.3s ease;
}
.confirm-box .confirm-icon,
.ca-confirm-box .confirm-icon { font-size: 50px; margin-bottom: 20px; }
.confirm-box h2, .confirm-box h3,
.ca-confirm-box h2, .ca-confirm-box h3 { color: var(--brand-color); margin-bottom: 12px; }
.confirm-box p,
.ca-confirm-box p { color: #ccc; font-size: 14px; margin-bottom: 24px; }

.btn-retour {
  padding: 10px 28px;
  background: var(--brand-color);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.btn-retour:hover { transform: scale(1.03); }

/* ── Captcha ── */
.captcha-group { margin-top: 8px; }

.captcha-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.captcha-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-color);
  min-width: 90px;
  background: rgba(255,255,255,0.06);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(200, 185, 160, 0.3);
  text-align: center;
}

.captcha-input { width: 110px !important; text-align: center; }

.captcha-refresh {
  background: rgba(200, 185, 160, 0.15);
  border: 1px solid rgba(200, 185, 160, 0.3);
  color: var(--brand-color);
  border-radius: 8px;
  width: 36px; height: 36px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.captcha-refresh:hover { background: rgba(200, 185, 160, 0.3); }

/* ── Acceptations ── */
.acceptations { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }

.accept-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #ccc;
  cursor: pointer;
  line-height: 1.5;
}

.accept-item input[type="checkbox"] {
  accent-color:blue;
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.accept-link { color: var(--brand-color); text-decoration: underline; cursor: pointer; transition: color 0.2s; }
.accept-link:hover { color: white; }
.accept-item.error { color: #ff6b6b; }
.accept-item.error .accept-link { color: #ff6b6b; }


/* ============================================================
   FOOTER — fixe, toujours visible
   ============================================================ */
footer {
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  height: 40px;
  line-height: 20px;
  z-index: 300;
}

@media (max-width: 500px) {
  footer {
    height: auto;
    min-height: 60px;
    padding: 8px 12px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer p {
    white-space: normal;
    font-size: 12px;
  }
  .corps {
    bottom: 60px;
  }
}

.footer-link {
  color: var(--brand-color);
  cursor: pointer;
  text-decoration: underline;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-link:hover { color: white; }

/* ============================================================
   MODALES
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 600;
  justify-content: center;
  align-items: center;
}

.modal.active { display: flex; }

.modal-content {
  background:rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(200, 185, 160, 0.3);
  border-radius: 16px;
  padding: 20px 30px 30px;
  width: 96vw; 
  height: 96vh;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
}

.modal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.modal-toolbar h2 { color: var(--brand-color); font-size: 20px; }

.btn-print {
  padding: 8px 20px;
  background: var(--brand-color);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.btn-print:hover { transform: scale(1.05); }

.btn-terminer {
  padding: 8px 20px;
  background: transparent;
  color: var(--brand-color);
  border: 1px solid rgba(200, 185, 160, 0.5);
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
  margin-left: 10px;
}

.btn-terminer:hover { background: rgba(200, 185, 160, 0.15); color: white; }

.img-container {
  flex: 1;
  overflow-y: auto;
  background: #2a2a3e;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  gap: 16px;
  min-height: 0;
}

.img-container img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  display: block;
}

/* Mentions Légales : 2 pages côte à côte */
#imgContainerMentions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 16px;
  padding: 20px;
}

#imgContainerMentions img {
  width: 100%;
  height: auto;
}

/* ============================================================
   MODALE CONTACT RAPIDE — Accueil
   ============================================================ */
.modal-contact-accueil {
  background: rgba(0, 0, 0, 0.6);
  max-width: 620px;
  width: 94vw;
  height: auto;
  max-height: 96vh;
  overflow-y: auto;
  border-radius: 20px;
  border-color: white;
  padding: 2px 32px 2px;
  display: flex;
  flex-direction: column;
}

.contact-accueil-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

/* Ligne basse : captcha à gauche, confirmation à droite */
.ca-bottom-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.ca-bottom-row .captcha-group {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

/* ca-confirm-box unifi avec confirm-box ci-dessus */

.form-label-light {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 6px;
  width: 90%;
  padding-bottom: 0px;
}
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 6px;
  width: 90%;
  padding-bottom: 0px;
}

.form-select {
  -webkit-appearance: none;
   appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8b9a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Placeholder du select (option vide) = même couleur que ::placeholder des inputs */
.form-select.placeholder-active {
  color: #666;
}

/* Couleur bleue une fois une vraie option sélectionnée */
.form-select:not(.placeholder-active) {
  color: blue;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  padding-bottom: 22px;
  padding-left: 10px;
  padding-right: 10px;
}

.ca-message-wrap {
  position: relative;
}

.char-count {
  position: absolute;
  bottom: 6px;
  right: 10px;
  font-size: 0.65rem;
  color: #888;
  pointer-events: none;
  transition: color 0.2s;
}

.char-count.warn { color: orange; }
.char-count.over { color: #ff6b6b; }

.ca-json-path-wrap {
  margin-top: 14px;
  margin-bottom: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,185,160,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: left;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  flex-direction: column;
}

.ca-json-path-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-color);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ca-json-path {
  display: block;
  font-size: 11px;
  color: #ccc;
  word-break: break-all;
  font-family: monospace;
}

.ca-json-content {
  margin: 8px 0 0 0;
  padding: 6px 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 5px;
  border-top: 1px solid rgba(200,185,160,0.15);
  font-size: 10px;
  font-family: monospace;
  color: #aaa;
  white-space: pre-wrap;
  word-break: break-all;
}

/* ── Statut DB (dev uniquement, masqué en production) ── */
.ca-db-status {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.15);
  border-radius: 5px;
  border-top: 1px solid rgba(200,185,160,0.12);
}
.ca-db-ok {
  font-size: 10px;
  font-family: monospace;
  color: #5db87a;
}
.ca-db-warn {
  font-size: 10px;
  font-family: monospace;
  color: #e8943a;
}
.ca-db-err {
  font-size: 10px;
  font-family: monospace;
  color: #ff6b6b;
}

/* ── Card Rétro Gaming — indicateur double-clic ── */
.card[title] {
  position: relative;
}
.card[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #c8b9a0;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Desktop : hamburger cache, nav-links visible */
@media (min-width: 951px) {
  .hamburger  { display: none !important; }
  .nav-links  { display: flex !important; }
  .nav-menu   { display: none !important; }
}

/* A propos : bascule en colonne sous 1200px */
@media (max-width: 1199px) {
  .apropos-main {
    padding: 0 clamp(16px, 4vw, 40px) 40px;
    align-items: center;
  }
  .apropos-inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 40px);
    max-width: 680px;
  }
  .apropos-left h1 { font-size: clamp(22px, 4vw, 36px); }
  .apropos-left p  { font-size: clamp(13px, 2vw, 15px); }
  .apropos-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .apropos-card {
    flex: 1;
    min-width: 140px;
    padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 28px);
  }
  .apropos-card-num { font-size: clamp(40px, 8vw, 64px); }
}

/* Mobile : hamburger visible, nav-links cachee */
@media (max-width: 950px) {
  .hamburger  { display: flex !important; }
  .nav-links  { display: none !important; }

  .nav-links.active {
    display: flex !important;
    position: fixed;
    top: 80px; right: 0;
    flex-direction: column;
    gap: 16px;
    width: 220px;
    background: rgba(0, 0, 0, 0.97);
    padding: 24px 20px;
    z-index: 500;
  }

  .services { grid-template-columns: repeat(2, 1fr); }
  .secteurs-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .header { padding: 0 20px; }
  .accueil-info-cards { gap: 10px; }
  .accueil-info-card { max-width: 100%; min-width: 140px; padding: 12px 14px; }
}

@media (max-width: 600px) {
  .form-step { padding: 20px; }
  .two-col { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .faq-intro { padding: 0px 20px 32px; }
  .faq-list  { padding: 0 16px 40px; }
  .faq-cta   { padding: 48px 20px; }
  .temoignages-intro { padding: 0px 20px 32px; }
  .temoignages-grid  { padding: 0 16px 40px; }
  .reseaux-section   { padding: 40px 20px; }
  .etape-arrow { display: none; }
  .modal-contact-accueil { overflow-y: visible;}
  .apropos-left h1 {margin-left: 10px; margin-top: 20px;}
}

@media (max-width: 500px) {
  .apropos-features { grid-template-columns: 1fr; }
  .apropos-main { padding: 0 16px 40px; }
  .secteurs-grid { grid-template-columns: 1fr; }
  
}