/*
Theme Name: Schmitt Theme
Theme URI: https://www.schmittsa.fr
Author: Schmitt SAS
Description: Schmitt SAS v5 – Style Auto-Doc blanc dominant
Version: 5.0.0
License: Proprietary
Text Domain: schmitt-theme
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E8001C;
  --red-dark: #B8001A;
  --red-light: #FFF0F1;
  --anthracite: #374145;
  --dark: #222A2D;
  --mid: #5A6668;
  --muted: #9AABB0;
  --light: #F4F6F7;
  --light2: #EAF0F2;
  --white: #FFFFFF;
  --border: #E0E6E8;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(55,65,69,0.08);
  --shadow-md: 0 4px 20px rgba(55,65,69,0.10);
  --shadow-red: 0 4px 20px rgba(232,0,28,0.15);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--anthracite);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  font-kerning: normal;
}

/* ══ NAV ══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  height: 96px; display: flex; align-items: center; gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 68px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-main { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--dark); letter-spacing: 0.04em; }
.nav-logo-main span { color: var(--red); }
/* Dans le footer (fond sombre) le logo doit être blanc */
#footer .nav-logo-main { color: var(--white); }
#footer .nav-logo-sub { color: rgba(255,255,255,0.55); }
.nav-logo-sub { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--mid); text-decoration: none;
  padding: 10px 16px; letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; transition: color var(--transition);
  -webkit-font-smoothing: antialiased;
  display: inline-flex; align-items: center; line-height: 1;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 3px; background: var(--red); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: 12px !important; font-weight: 700 !important; color: var(--white) !important;
  background: var(--red) !important; padding: 10px 22px !important;
  border-radius: var(--radius) !important; text-transform: uppercase !important;
  display: inline-flex !important; align-items: center !important;
  line-height: 1 !important; vertical-align: middle !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--red);
  padding: 16px 24px 24px; z-index: 199; box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: var(--mid); text-decoration: none;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em;
}
.mobile-menu a:last-child { border-bottom: none; }


/* ── TÉLÉPHONE DANS LA NAV ── */
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
  padding: 8px 16px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  transition: background var(--transition), border-color var(--transition);
}
.nav-phone:hover { background: var(--red-light); border-color: var(--red); }
.nav-phone svg { flex-shrink: 0; stroke: var(--red); }
.nav-phone-num {
  display: flex; flex-direction: column; line-height: 1.2;
}
.nav-phone-label {
  font-size: 9px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.nav-phone-val {
  font-size: 16px; font-weight: 700; color: var(--dark);
  font-family: var(--font-display); letter-spacing: 0.04em;
}
@media (max-width: 1100px) { .nav-phone-num { display: none; } }
@media (max-width: 900px) { .nav-phone { display: none; } }



#punch-lines {
  margin-top: 96px; /* compensation nav fixe */
}
@media (max-width: 900px) {
  #punch-lines { margin-top: 70px; padding: 44px 24px 52px; }
  #punch-lines br { display: none; }
}

/* ══ HERO ══ */
#hero {
  min-height: 70vh; background: var(--dark);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 96px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(34,42,45,0.88) 0%, rgba(34,42,45,0.65) 42%, rgba(34,42,45,0.10) 100%);
  z-index: 1;
}
.hero-bg-red {
  position: absolute; top: 0; right: 0; bottom: 0; width: 55%;
  background: radial-gradient(ellipse 90% 80% at 80% 50%, rgba(232,0,28,0.10) 0%, transparent 65%);
  z-index: 1;
}
.hero-parts-bg {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0; opacity: 1;
}
.hero-content {
  position: relative; z-index: 2; max-width: 1320px; margin: 0 auto;
  padding: 36px 32px; width: 100%;
}
.hero-text { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.hero-eyebrow span { color: var(--red); }
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 4.5vw, 62px); line-height: 0.95;
  color: var(--white); text-transform: uppercase; margin-bottom: 24px;
}
.hero-title .red { color: var(--red); display: block; }
.hero-subtitle {
  font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.75);
  margin-bottom: 32px; line-height: 1.6;
}
.hero-subtitle span { margin: 0 8px; opacity: 0.3; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.hero-badge { display: flex; align-items: flex-start; gap: 10px; }
.hero-badge svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0.75; flex-shrink: 0; margin-top: 2px; }
.hero-badge strong { display: block; font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-badge span { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.4); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--red); color: var(--white);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  text-decoration: none; border-radius: var(--radius);
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  text-decoration: none; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.25);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }


/* ══ HERO 2 COLONNES ══ */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* ══ PUNCH LINES DROITE ══ */
.hero-punchlines {
  border-left: 3px solid var(--red);
  padding: 28px 32px;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(6px);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.punch1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 28px);
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.punch1 strong {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
  font-size: 110%;
}
.punch-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.punch-sep span {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.punch2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 19px);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.punch2 em {
  font-style: normal;
  color: rgba(255,255,255,0.95);
}
.punch2 strong {
  color: var(--red);
  display: block;
  font-style: italic;
  text-transform: none;
  font-weight: 300;
  font-size: 90%;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-two-col { grid-template-columns: 1fr; gap: 32px; }
  .hero-punchlines { border-left: none; border-top: 3px solid var(--red); border-radius: var(--radius-lg); }
}

/* ══ BANDE AVANTAGES ══ */
#avantages {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.avantages-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.avantage-item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.avantage-item:last-child { border-right: none; }
.avantage-item:hover { background: var(--red-light); }
.avantage-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.avantage-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.avantage-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--dark); margin-bottom: 5px; line-height: 1.2; }
.avantage-sub { font-size: 14px; font-weight: 400; color: var(--mid); line-height: 1.5; }

/* ══ SECTION BASE ══ */
.section-label {
  font-size: 11px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px); color: var(--dark);
  text-transform: uppercase; margin-bottom: 8px; line-height: 1.0;
}
.section-h2 em { font-style: italic; font-weight: 300; color: var(--red); text-transform: none; }
.section-intro { font-size: 15px; font-weight: 300; color: var(--mid); margin-bottom: 48px; line-height: 1.7; }
.section-h2-white { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.5vw,44px); color: var(--white); text-transform: uppercase; margin-bottom: 8px; }
.section-h2-white em { font-style: italic; font-weight: 300; color: var(--red); text-transform: none; }
.section-label-white { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.section-label-white::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-label-dark { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.section-label-dark::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-h2-dark { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.5vw,44px); color: var(--dark); text-transform: uppercase; margin-bottom: 8px; }
.section-intro-dark { font-size: 15px; font-weight: 300; color: var(--mid); margin-bottom: 48px; }
.section-header { margin-bottom: 48px; }

/* ══ À PROPOS ══ */
#apropos { background: var(--white); padding: 80px 32px; border-top: 1px solid var(--border); }
.apropos-wrap { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
.apropos-left p { font-size: 16px; font-weight: 400; color: var(--mid); line-height: 1.85; margin-bottom: 16px; letter-spacing: 0.01em; }
.apropos-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius);
  border: 1.5px solid var(--border); color: var(--mid);
  transition: all var(--transition);
}
.tag:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; background: var(--dark); color: var(--white);
  font-size: 12px; font-weight: 700; text-decoration: none;
  border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 24px; transition: background var(--transition);
}
.btn-dark:hover { background: var(--anthracite); }

/* Photos magasin */
.apropos-photos { display: flex; flex-direction: column; gap: 10px; }
.apropos-photo-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; border: 2px solid var(--border); box-shadow: var(--shadow-md); }
.apropos-photo-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.apropos-photo-main:hover img { transform: scale(1.03); }
.apropos-photos-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.apropos-photo-small { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.apropos-photo-small img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.apropos-photo-small:hover img { transform: scale(1.04); }

/* Univers */
.univers-label { font-family: var(--font-display); font-weight: 800; font-size: 24px; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.univers-underline { width: 36px; height: 3px; background: var(--red); margin-bottom: 20px; }
.univers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.univers-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.univers-card:hover { box-shadow: var(--shadow-red); transform: translateY(-3px); }
.univers-photo { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--white); }
.univers-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.univers-info { padding: 12px 14px; background: var(--white); border-top: 2px solid var(--red); }
.univers-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dark); display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.univers-title svg { width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 2; }
.univers-sub { font-size: 13px; font-weight: 400; color: var(--mid); }

/* ══ SERVICES ══ */
#services { background: var(--dark); padding: 80px 32px; border-top: 4px solid var(--red); }
.services-wrap { max-width: 1320px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(232,0,28,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: rgba(255,255,255,0.04); line-height: 1; margin-bottom: 16px; }
.service-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.service-text { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.80); line-height: 1.8; }
.service-list { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.service-list li { font-size: 14px; color: rgba(255,255,255,0.65); padding-left: 16px; position: relative; }
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: 11px; }

/* ══ TÉLÉCHARGEMENTS ══ */
#telechargements { background: var(--light); padding: 72px 32px; border-top: 1px solid var(--border); }
.telechargements-wrap { max-width: 1320px; margin: 0 auto; }
.download-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 16px; }
.download-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 5px solid var(--red); border-radius: var(--radius-lg);
  padding: 26px; display: flex; align-items: flex-start; gap: 18px;
  text-decoration: none; color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.download-card:hover { box-shadow: var(--shadow-red); transform: translateY(-2px); }
.download-icon { width: 50px; height: 50px; background: var(--red-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.download-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.download-info h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--dark); margin-bottom: 5px; text-transform: uppercase; }
.download-info p { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.download-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); padding: 4px 12px; background: var(--red); border-radius: var(--radius); }

/* ══ CONTACT ══ */
#contact { background: var(--white); padding: 80px 32px; border-top: 1px solid var(--border); }
.contact-wrap { max-width: 1320px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; align-items: start; }
.contact-info h3, .contact-form h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { width: 38px; height: 38px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 17px; height: 17px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-item-value { font-size: 16px; font-weight: 450; color: var(--dark); line-height: 1.6; }
.horaires-grid { margin-top: 20px; background: var(--dark); border-radius: var(--radius-lg); padding: 20px 22px; }
.horaires-title { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.horaire-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.horaire-row:last-child { border-bottom: none; }
.horaire-day { color: rgba(255,255,255,0.75); font-weight: 400; }
.horaire-time { color: var(--white); font-weight: 700; font-family: var(--font-display); font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--white); color: var(--dark); outline: none; width: 100%;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--red); }
.form-check label { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.5; }
.form-check a { color: var(--red); }
.map-wrapper { margin-top: 64px; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border); height: 360px; box-shadow: var(--shadow-md); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══ ENGRENAGES DÉCO ══ */
.gears-decoration { position: relative; width: 100%; height: 160px; overflow: hidden; background: var(--dark); }
.gears-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; opacity: 0.5; }
.gears-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--dark) 0%, transparent 35%, transparent 65%, var(--dark) 100%); }


/* ══ RÉSEAUX SOCIAUX ══ */
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.social-btn:hover { background: var(--red); color: var(--white); transform: translateY(-2px); border-color: var(--red); }
.social-btn-sm {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4); text-decoration: none;
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
}
.social-btn-sm:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* Icônes réseaux dans la nav */
.nav-social {
  display: flex; align-items: center; gap: 7px; margin-left: 8px;
}
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform var(--transition), opacity var(--transition);
  color: var(--white);
}
.nav-social a:hover { transform: translateY(-2px); opacity: 0.9; }

/* Couleurs de marque officielles */
.nav-social-fb  { background: #1877F2; }
.nav-social-fb:hover  { background: #0d6be0; }
.nav-social-ig  { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.nav-social-x   { background: #000000; border: 1px solid #333; }
.nav-social-x:hover { background: #222; }

/* ══ FOOTER ══ */
#footer { background: var(--dark); border-top: 4px solid var(--red); padding: 52px 32px 24px; }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.75; margin-top: 14px; }
.nav-logo-img-footer { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a, .footer-col ul li { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.78); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom span, .footer-bottom a { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ══ SCROLL REVEAL ══ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; } .reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; } .reveal-delay-4 { transition-delay: 0.4s; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) { .apropos-wrap { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 900px) {
  .nav-links { display: none; } .hamburger { display: flex; }
  .nav-inner { height: 70px; } .mobile-menu { top: 70px; }
  #hero { padding-top: 70px; }
  .avantages-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .avantages-grid { grid-template-columns: 1fr 1fr; }
  .univers-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
