/* ============================================================
   SOS INFORMATICIEN — style.css
   Palette : Anthracite foncé + Or / Yantramanav
   ============================================================ */

:root {
  --dark:        #141210;
  --dark-2:      #1b1915;
  --dark-3:      #232018;
  --dark-4:      #2c291e;
  --gold:        #c9a55a;
  --gold-light:  #e0bc78;
  --gold-dark:   #a0813a;
  --gold-muted:  rgba(201, 165, 90, 0.15);
  --white:       #ffffff;
  --cream:       #f2ede4;
  --muted:       #7a7060;
  --muted-light: #a09880;
  --border:      rgba(201, 165, 90, 0.18);
  --border-soft: rgba(201, 165, 90, 0.08);
  --shadow:      0 20px 60px rgba(0, 0, 0, 0.5);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======= RESET & BASE ======= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Yantramanav', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ======= UTILITAIRES ======= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======= BOUTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Yantramanav', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 165, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 237, 228, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ======= HEADER ======= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

#header.scrolled {
  background: rgba(18, 16, 13, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 96px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 84px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
  opacity: 0.88;
}

/* Nav desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(242, 237, 228, 0.65);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--cream); }

.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

/* Bouton tel header */
.btn-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.btn-tel svg { width: 15px; height: 15px; }
.btn-tel:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======= MOBILE MENU ======= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-link {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--transition);
}

.mobile-link:hover { color: var(--gold); }

.btn-tel-mobile {
  display: block;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.btn-tel-mobile:hover { background: var(--gold-light); }

/* ======= HERO ======= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 35%, rgba(201, 165, 90, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(201, 165, 90, 0.04) 0%, transparent 50%),
    linear-gradient(150deg, var(--dark) 0%, #181510 55%, #0d0c0a 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.05) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201, 165, 90, 0.05);
  margin-bottom: 30px;
  letter-spacing: 0.06em;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: #5cbf6a;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92, 191, 106, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(92, 191, 106, 0); }
}

#hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(242, 237, 228, 0.68);
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-sub strong { color: var(--cream); }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
  backdrop-filter: blur(4px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.stat span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.5;
  animation: bounce-y 2s infinite;
}

.scroll-down svg { width: 32px; height: 32px; }

@keyframes bounce-y {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ======= BANDE SAP ======= */
.sap-band {
  background: linear-gradient(135deg, #1e1a0e 0%, #2a2310 100%);
  border-top: 1px solid rgba(201, 165, 90, 0.3);
  border-bottom: 1px solid rgba(201, 165, 90, 0.3);
  padding: 20px 0;
}

.sap-band-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sap-logo {
  height: 100px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.sap-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 220px;
}

.sap-text strong {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 700;
}

.sap-text span {
  font-size: 0.85rem;
  color: var(--muted-light);
}

.sap-text span strong {
  color: var(--gold);
}

@media (max-width: 600px) {
  .sap-band-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sap-logo { height: 80px; }
}

/* ======= SERVICES ======= */
#services {
  padding: 110px 0;
  background: var(--dark-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 165, 90, 0.08);
}

.service-icon {
  width: 50px; height: 50px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(201, 165, 90, 0.22);
}

.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted-light);
  line-height: 1.65;
}

/* Bloc IA */
.ia-block {
  position: relative;
  background: linear-gradient(135deg, var(--dark-3) 0%, rgba(201, 165, 90, 0.04) 100%);
  border: 1px solid rgba(201, 165, 90, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 52px 52px 52px 52px;
}

.ia-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ia-block-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.ia-block-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.ia-block-text h3 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.25;
}

.ia-block-text p {
  color: var(--muted-light);
  margin-bottom: 28px;
  line-height: 1.75;
}

.ia-services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ia-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(242, 237, 228, 0.82);
}

.ia-service-item svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* ======= À PROPOS ======= */
#apropos {
  padding: 110px 0;
  background: var(--dark);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.apropos-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  margin-bottom: 18px;
}

.apropos-avatar {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
}

.apropos-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.apropos-title {
  font-size: 0.85rem;
  color: var(--muted-light);
  margin-bottom: 16px;
}

.apropos-since {
  display: inline-block;
  padding: 5px 18px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.apropos-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-mini {
  background: var(--dark-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  transition: var(--transition);
}

.stat-mini:hover { border-color: var(--border); }

.stat-mini strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-mini span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.apropos-content .section-label { margin-bottom: 16px; }

.apropos-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}

.apropos-content p {
  color: rgba(242, 237, 228, 0.68);
  margin-bottom: 18px;
  line-height: 1.78;
}

.apropos-content p strong { color: var(--cream); }

.apropos-garanties {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0 36px;
}

.garantie {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(242, 237, 228, 0.82);
}

.garantie svg {
  width: 17px; height: 17px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* SAP dans apropos */
.garantie-sap span { line-height: 1.5; }
.garantie-sap strong { color: var(--cream); }

.sap-logo-apropos {
  margin-top: 20px;
}

.sap-logo-apropos img {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.sap-logo-apropos img:hover { opacity: 1; }

/* ======= TÉMOIGNAGES ======= */
#temoignages {
  padding: 110px 0;
  background: var(--dark-2);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.temoignage-card {
  background: var(--dark-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: var(--transition);
  position: relative;
}

.temoignage-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 165, 90, 0.1);
  font-family: Georgia, serif;
  pointer-events: none;
}

.temoignage-card:hover {
  border-color: rgba(201, 165, 90, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.temoignage-card p {
  font-style: italic;
  color: rgba(242, 237, 228, 0.72);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.temoignage-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
}

.temoignage-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

.temoignages-cta {
  text-align: center;
}

.temoignages-cta p {
  color: var(--muted-light);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* ======= CONTACT ======= */
#contact {
  padding: 110px 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px; height: 46px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px; height: 20px;
}

.contact-icon svg[fill="currentColor"] { fill: var(--gold); }
.contact-icon svg:not([fill="currentColor"]) { stroke: var(--gold); fill: none; }

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}

.contact-item strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.contact-item a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}

.contact-item a:hover { color: var(--gold); }

.contact-item span {
  font-size: 0.85rem;
  color: var(--muted-light);
}

/* Formulaire */
.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(201, 165, 90, 0.18);
  border-radius: 9px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: 'Yantramanav', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  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='%23c9a55a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-3);
  color: var(--cream);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 112, 96, 0.65);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 165, 90, 0.03);
  box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: -6px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 20px;
  gap: 12px;
}

.form-success svg {
  width: 52px; height: 52px;
  stroke: var(--gold);
}

.form-success h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-success p {
  color: var(--muted-light);
  line-height: 1.7;
}

.form-success a { color: var(--gold); }
.form-success a:hover { color: var(--gold-light); }

/* ======= FOOTER ======= */
#footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-img { height: 100px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-nav a:hover { color: var(--cream); }

.footer-contact a,
.footer-contact span {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-bottom a { font-size: 0.78rem; color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ======= BOUTON FLOTTANT ======= */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(201, 165, 90, 0.45);
  transition: var(--transition);
  animation: pulse-call 3s infinite;
}

.float-call svg {
  width: 25px; height: 25px;
  fill: var(--dark);
}

.float-call:hover {
  transform: scale(1.1);
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201, 165, 90, 0.6);
}

@keyframes pulse-call {
  0%, 100% { box-shadow: 0 6px 24px rgba(201, 165, 90, 0.45), 0 0 0 0 rgba(201, 165, 90, 0.4); }
  60% { box-shadow: 0 6px 24px rgba(201, 165, 90, 0.45), 0 0 0 14px rgba(201, 165, 90, 0); }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ia-block-content { grid-template-columns: 1fr; gap: 36px; }
  .ia-block { padding: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .btn-tel { display: none; }
  .menu-toggle { display: flex; }

  #hero { padding: 100px 0 80px; }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
    gap: 12px;
    width: 100%;
  }

  .stat-sep { width: 40px; height: 1px; }
  .stat { padding: 0; align-items: flex-start; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }

  .apropos-grid { grid-template-columns: 1fr; gap: 40px; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .ia-block { padding: 24px; }
  .apropos-card { padding: 28px; }
  .temoignage-card { padding: 26px 22px; }
  .contact-form-wrap { padding: 22px 18px; }
}
