/* =========================================================
   MG.CO ENTRETIEN — STYLE.CSS FINAL PREMIUM
   Version nettoyée, luxe, optimisée, sans doublons
========================================================= */

/* =========================
   VARIABLES + BASE
========================= */

:root {
  --black: #050505;
  --black-2: #090909;
  --dark: #111111;
  --dark-2: #191919;

  --yellow: #f5c542;
  --yellow-2: #ffe17a;
  --gold-dark: #c99a16;

  --white: #f8f5ed;
  --muted: #b9b9b9;
  --muted-2: #8f8f8f;

  --border: rgba(255, 255, 255, 0.1);
  --border-yellow: rgba(245, 197, 66, 0.42);

  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.075);

  --shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.32);
  --shadow-gold: 0 22px 55px rgba(245, 197, 66, 0.22);

  --radius: 24px;
  --radius-lg: 38px;

  --transition: 0.3s ease;
  --transition-premium: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 197, 66, 0.13), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 225, 122, 0.08), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(245, 197, 66, 0.07), transparent 36%),
    linear-gradient(135deg, #030303 0%, #080808 45%, #0d0d0d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.75;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0.74) 100%);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea,
select,
button {
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  padding-left: 20px;
}

::selection {
  background: var(--yellow);
  color: #080808;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

/* =========================
   STRUCTURE + TYPOGRAPHIE
========================= */

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: 115px 0;
}

.dark-section,
.faq-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(245, 197, 66, 0.08), transparent 36%),
    linear-gradient(180deg, #101010, #070707);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.85;
}

h1,
h2,
h3 {
  color: var(--white);
  font-weight: 900;
  line-height: 1.08;
}

h1 {
  max-width: 960px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  letter-spacing: -2.4px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -1.4px;
  text-wrap: balance;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.4px;
}

p {
  color: var(--muted);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 900;
  transition: var(--transition);
}

.text-link::after {
  content: "→";
  transition: var(--transition);
}

.text-link:hover {
  color: var(--yellow-2);
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 3, 3, 0.72);
  border-bottom: 1px solid rgba(245, 197, 66, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(3, 3, 3, 0.94);
  border-bottom-color: rgba(245, 197, 66, 0.22);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -0.5px;
  text-shadow: 0 0 26px rgba(245, 197, 66, 0.18);
  transition: var(--transition);
  user-select: none;
}

.logo span {
  margin-left: 5px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo:hover {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: #e7e7e7;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  user-select: none;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"] {
  color: var(--yellow);
}

.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.burger {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  border-radius: 999px;
  transition: var(--transition);
}

.burger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.burger span {
  width: 28px;
  height: 3px;
  display: block;
  border-radius: 99px;
  background: var(--white);
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   BOUTONS
========================= */

.btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #080808;
  font-weight: 900;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #f5c542 0%, #ffe17a 42%, #c99a16 100%);
  box-shadow:
    0 18px 45px rgba(245, 197, 66, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: var(--transition-premium);
  user-select: none;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-120%);
  transition: 0.65s ease;
}

.btn:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow:
    0 30px 70px rgba(245, 197, 66, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-outline {
  color: var(--yellow);
  border-color: rgba(245, 197, 66, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

.btn-outline:hover {
  color: #080808;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.btn-small {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* =========================
   HERO ACCUEIL PREMIUM
========================= */

.premium-hero,
.hero-v2 {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 130px 0 115px;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 197, 66, 0.18), transparent 26%),
    radial-gradient(circle at 85% 35%, rgba(245, 197, 66, 0.1), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111111 45%, #080808 100%);
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 58%),
    radial-gradient(circle at 70% 35%, rgba(245, 197, 66, 0.15), transparent 34%);
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(245, 197, 66, 0.1);
  border-radius: 34px;
}

.premium-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.premium-bg span {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(245, 197, 66, 0.13);
  filter: blur(48px);
  animation: floatLight 8s ease-in-out infinite;
}

.premium-bg span:nth-child(1) {
  top: 10%;
  left: 8%;
}

.premium-bg span:nth-child(2) {
  top: 18%;
  right: 8%;
  animation-delay: 1.4s;
}

.premium-bg span:nth-child(3) {
  bottom: 8%;
  left: 45%;
  animation-delay: 2.6s;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.hero-v2-grid,
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 75px;
  align-items: center;
}

.hero-v2-content,
.hero-content {
  max-width: 760px;
}

.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
  background: rgba(245, 197, 66, 0.08);
  border: 1px solid rgba(245, 197, 66, 0.24);
}

.hero-premium-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(245, 197, 66, 0.75);
}

.hero-v2 h1,
.hero-content h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 6.2vw, 6.35rem);
  line-height: 0.98;
  letter-spacing: -3.2px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5ed 54%, #ffe17a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 670px;
  margin-top: 26px;
  margin-bottom: 34px;
  color: rgba(248, 245, 237, 0.78);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-actions.center {
  justify-content: center;
}

.hero-proof,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-proof div,
.trust-badges span {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-proof strong {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 1.15rem;
  line-height: 1.1;
}

.hero-proof span,
.trust-badges span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-v2-visual,
.hero-image {
  position: relative;
}

.hero-main-card,
.hero-image {
  border-radius: 42px;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.52));
}

.hero-main-card {
  position: relative;
  padding: 14px;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.48), rgba(255, 255, 255, 0.08), rgba(245, 197, 66, 0.12));
  box-shadow:
    0 45px 110px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(245, 197, 66, 0.1);
}

.hero-main-card img,
.hero-image img {
  width: 100%;
  height: min(62vh, 640px);
  min-height: 480px;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image-overlay,
.image-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 22px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.66));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-image-overlay span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-image-overlay strong,
.image-card strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
}

.image-card small {
  color: var(--muted);
}

.hero-floating-card {
  position: absolute;
  width: min(250px, 52%);
  padding: 18px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.74);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  animation: floatPremium 5.5s ease-in-out infinite;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 6px;
}

.hero-floating-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-card-one {
  top: 9%;
  left: -44px;
}

.hero-card-two {
  right: -34px;
  bottom: 18%;
  animation-delay: 1.2s;
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
  padding: 155px 0 105px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(245, 197, 66, 0.14), transparent 42%),
    linear-gradient(180deg, #090909, #111111);
}

.page-hero h1 {
  margin: 0 auto 24px;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.06rem;
}

/* =========================
   STATS
========================= */

.stats-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #090909;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  padding: 30px 24px;
  text-align: center;
  border-radius: 24px;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2.7rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

/* =========================
   SERVICES ACCUEIL APPLE / TESLA
========================= */

.premium-services-section {
  position: relative;
  overflow: hidden;
}

.premium-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 197, 66, 0.1), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(255, 225, 122, 0.06), transparent 30%);
}

.premium-services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 32px;
  border-radius: 34px;
  transition: var(--transition-premium);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.015);
}

.service-card-featured {
  border-color: rgba(245, 197, 66, 0.26);
  background:
    radial-gradient(circle at top, rgba(245, 197, 66, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.026));
}

.service-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid rgba(245, 197, 66, 0.26);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(245, 197, 66, 0.08);
}

.service-icon span {
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 1px;
}

.service-kicker {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.service-card p {
  color: rgba(248, 245, 237, 0.7);
}

.service-card ul {
  margin: 24px 0 26px;
}

.service-card li {
  margin-bottom: 10px;
  color: #dddddd;
}

.service-card li::marker {
  color: var(--yellow);
}
/* =========================
   CARTES GÉNÉRALES
========================= */

.choice-grid,
.season-grid,
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.choice-card,
.season-card,
.feature-card,
.ba-card,
.stat-card,
.faq-item,
.premium-panel,
.premium-form,
.contact-card,
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow-soft);
}

.choice-card,
.season-card,
.ba-card,
.premium-panel,
.contact-card,
.premium-form,
.faq-item {
  padding: 34px;
  border-radius: var(--radius);
}

.choice-card,
.season-card,
.feature-card,
.ba-card,
.gallery-item,
.stat-card,
.faq-item,
.service-card {
  transition: var(--transition-premium);
  will-change: transform;
}

.choice-card::after,
.season-card::after,
.feature-card::after,
.ba-card::after,
.stat-card::after,
.faq-item::after,
.premium-panel::after,
.premium-form::after,
.contact-card::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(245, 197, 66, 0.18),
      transparent 34%
    );
  transition: opacity 0.35s ease;
}

.choice-card:hover::after,
.season-card:hover::after,
.feature-card:hover::after,
.ba-card:hover::after,
.stat-card:hover::after,
.faq-item:hover::after,
.premium-panel:hover::after,
.premium-form:hover::after,
.contact-card:hover::after,
.service-card:hover::after {
  opacity: 1;
}

.choice-card:hover,
.season-card:hover,
.feature-card:hover,
.ba-card:hover,
.stat-card:hover,
.faq-item:hover,
.service-card:hover {
  border-color: rgba(245, 197, 66, 0.42);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(245, 197, 66, 0.08);
}

.choice-card h3,
.season-card h3 {
  margin-bottom: 12px;
}

.choice-card p,
.season-card p {
  margin-bottom: 14px;
}

.choice-card ul,
.clean-list {
  margin: 20px 0;
}

.choice-card li,
.clean-list li,
.premium-panel li {
  margin-bottom: 8px;
  color: #dedede;
}

.choice-card li::marker,
.clean-list li::marker,
.premium-panel li::marker {
  color: var(--yellow);
}

.season-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 900;
}

/* =========================
   SPLIT + FEATURES
========================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.split p {
  margin: 18px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px;
  text-align: center;
  color: #f1f1f1;
  font-weight: 850;
  border-radius: var(--radius);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, var(--yellow), transparent);
  transition: var(--transition);
}

.feature-card:hover::before {
  opacity: 1;
}

/* =========================
   AVANT / APRÈS GLOBAL
========================= */

.ba-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #111111;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 22px 55px rgba(0, 0, 0, 0.32);
}

.ba-slider img {
  height: 315px;
  object-fit: cover;
}

.ba-before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--yellow);
  box-shadow: 12px 0 30px rgba(245, 197, 66, 0.18);
}

.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider input {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 78%;
  cursor: ew-resize;
  accent-color: var(--yellow);
  filter: drop-shadow(0 0 12px rgba(245, 197, 66, 0.45));
  transform: translateX(-50%);
}

.ba-card h3 {
  margin-top: 8px;
}

/* =========================
   AVANT / APRÈS PREMIUM
========================= */

.premium-before-after-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgba(245, 197, 66, 0.10), transparent 34%),
    radial-gradient(circle at 85% 75%, rgba(255, 225, 122, 0.06), transparent 32%),
    linear-gradient(180deg, #090909, #050505);
  border-top: 1px solid rgba(245, 197, 66, 0.12);
  border-bottom: 1px solid rgba(245, 197, 66, 0.12);
}

.before-after-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.premium-ba-card {
  padding: 20px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.premium-ba-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(245, 197, 66, 0.42);
  box-shadow:
    0 38px 105px rgba(0, 0, 0, 0.52),
    0 0 90px rgba(245, 197, 66, 0.08);
}

.ba-featured {
  background:
    radial-gradient(circle at top, rgba(245, 197, 66, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.026));
  border-color: rgba(245, 197, 66, 0.25);
}

.ba-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.ba-label,
.ba-service {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ba-label {
  color: #080808;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.ba-service {
  color: var(--yellow);
  border: 1px solid rgba(245, 197, 66, 0.28);
  background: rgba(245, 197, 66, 0.08);
}

.premium-ba-card .ba-slider {
  margin-bottom: 0;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #111;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 22px 55px rgba(0, 0, 0, 0.36);
}

.premium-ba-card .ba-slider img {
  height: 355px;
  object-fit: cover;
}

.premium-ba-card .ba-before {
  border-right: 3px solid var(--yellow);
  box-shadow: 14px 0 36px rgba(245, 197, 66, 0.22);
}

.ba-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.ba-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.premium-ba-card .ba-slider input {
  bottom: 18px;
  width: 74%;
  accent-color: var(--yellow);
  filter: drop-shadow(0 0 14px rgba(245, 197, 66, 0.48));
}

.ba-content {
  padding: 24px 8px 6px;
}

.ba-content h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.ba-content p {
  margin-bottom: 20px;
  color: rgba(248, 245, 237, 0.72);
}

.ba-proof-strip {
  margin-top: 32px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.ba-proof-strip div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-proof-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 6px;
}

.ba-proof-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

/* =========================
   GALERIE
========================= */

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 55px;
}

.filter-btn {
  padding: 12px 24px;
  color: var(--white);
  font-weight: 800;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  user-select: none;
}

.filter-btn:hover {
  border-color: var(--border-yellow);
  transform: translateY(-2px);
}

.filter-btn.active {
  color: #080808;
  border-color: transparent;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 25px;
}

.gallery-item {
  position: relative;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 25px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #111;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  border-color: var(--border-yellow);
}

.gallery-item img {
  min-height: 280px;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 28px;
  opacity: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.92));
  transition: 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay::before {
  content: "Projet";
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 197, 66, 0.35);
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.15);
  backdrop-filter: blur(10px);
}

.gallery-overlay h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.gallery-overlay p {
  color: #d6d6d6;
  font-size: 0.95rem;
}

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.96);
}

#lightbox.show {
  display: flex;
}

.lightbox-image {
  max-width: 92%;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 52px;
  line-height: 1;
  background: transparent;
  border: 0;
  transition: 0.25s ease;
}

.close-lightbox:hover {
  color: var(--yellow);
  transform: scale(1.1);
}

/* =========================
   FAQ
========================= */

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 18px;
  margin: auto;
}

.faq-item {
  cursor: pointer;
  border-radius: var(--radius);
}

.faq-item summary {
  position: relative;
  padding-right: 40px;
  color: var(--white);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--yellow);
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 18px;
}

/* =========================
   CTA + FOOTER
========================= */

.cta-section {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at center, rgba(245, 197, 66, 0.14), transparent 38%),
    linear-gradient(135deg, #111111, #070707);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 650px;
  margin: 0 auto 30px;
}

.footer {
  padding: 75px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(245, 197, 66, 0.06), transparent 38%),
    #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 45px;
}

.footer h3,
.footer h4 {
  margin-bottom: 16px;
}

.footer h3 {
  background: linear-gradient(135deg, var(--white), var(--yellow-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--yellow);
}

.floating-call,
.floating-quote {
  position: fixed;
  right: 22px;
  z-index: 900;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: var(--transition);
  user-select: none;
}

.floating-call {
  bottom: 82px;
  color: #070707;
  background: var(--yellow);
  box-shadow:
    0 18px 45px rgba(245, 197, 66, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.floating-quote {
  bottom: 24px;
  color: var(--yellow);
  border: 1px solid var(--border-yellow);
  background: rgba(12, 12, 12, 0.76);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.floating-call:hover,
.floating-quote:hover {
  transform: translateY(-4px);
}
/* =========================================================
   FORMULAIRES GLOBAUX + CONTACT
   Version propre sans conflit
========================================================= */

.form-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: start;
}

.premium-form {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.022)
    );
  box-shadow: var(--shadow-soft);
}

.premium-form > * {
  position: relative;
  z-index: 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group label {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 60px;
  padding: 17px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  outline: none;
  background: rgba(0, 0, 0, 0.38);
  transition: var(--transition);
}

.form-group textarea {
  min-height: 170px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8f8f8f;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(245, 197, 66, 0.28);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 0 0 5px rgba(245, 197, 66, 0.10),
    0 14px 35px rgba(0, 0, 0, 0.28);
}

.form-group small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* SELECT CORRIGÉ — OPTIONS VISIBLES */

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: var(--white);
  color-scheme: dark;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.32)),
    url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23f5c542' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  padding-right: 48px;
}

.form-group select option {
  color: #f8f5ed;
  background: #101010;
}

.form-group select option:checked,
.form-group select option:hover {
  color: #080808;
  background: var(--yellow);
}

.form-btn {
  width: 100%;
  min-height: 60px;
  margin-top: 10px;
  border: none;
  font-size: 1rem;
}

.premium-panel h3 {
  margin-bottom: 20px;
}

.premium-panel ul {
  margin-top: 18px;
}

.contact-card {
  margin-top: 28px;
  border-radius: var(--radius);
}

.contact-item {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item h3 {
  margin-bottom: 8px;
}

.contact-item a {
  color: var(--yellow);
  font-weight: 800;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--yellow-2);
}

.map-box {
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-box iframe {
  width: 100%;
  height: 340px;
  display: block;
  border: none;
}

/* =========================================================
   FORMULAIRE SOUMISSION — VERSION LUXE FINALE
========================================================= */

.premium-quote-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 197, 66, 0.11), transparent 34%),
    radial-gradient(circle at 85% 80%, rgba(255, 225, 122, 0.06), transparent 32%),
    linear-gradient(180deg, #070707, #101010);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 60px;
  align-items: start;
}

.quote-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 24px;
}

.quote-intro-card,
.quote-trust-card,
.quote-form {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.022)
    );
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quote-intro-card,
.quote-trust-card {
  padding: 34px;
}

.quote-form {
  padding: 44px;
  border-radius: 38px;
  border-color: rgba(245, 197, 66, 0.18);
}

.quote-intro-card::before,
.quote-trust-card::before,
.quote-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at top right,
      rgba(245, 197, 66, 0.13),
      transparent 42%
    );
}

.quote-intro-card > *,
.quote-trust-card > *,
.quote-form > * {
  position: relative;
  z-index: 2;
}

.quote-intro-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.quote-benefits {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.quote-benefits div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-benefits strong {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #080808;
  font-weight: 950;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.quote-benefits span {
  color: rgba(248, 245, 237, 0.78);
  font-weight: 800;
}

.quote-trust-card h3 {
  margin-bottom: 14px;
}

.quote-trust-card ul {
  margin-top: 20px;
}

.quote-trust-card li {
  margin-bottom: 10px;
  color: #dddddd;
}

.quote-trust-card li::marker {
  color: var(--yellow);
}

.form-header {
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.form-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 14px;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.08);
  border: 1px solid rgba(245, 197, 66, 0.25);
}

.form-header h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 20px;
}

.form-section-title span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  color: #080808;
  font-weight: 950;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.form-section-title h3 {
  font-size: 1.25rem;
}

/* CHECKBOX SERVICES — VERSION PREMIUM CORRIGÉE */

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.option-card {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: var(--transition);
}

.option-card:hover {
  border-color: rgba(245, 197, 66, 0.35);
  background: rgba(245, 197, 66, 0.055);
  transform: translateY(-2px);
}

.option-card input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.option-card input::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #080808;
  border-width: 0 3px 3px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition: var(--transition);
}

.option-card input:checked {
  border-color: transparent;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 0 20px rgba(245, 197, 66, 0.28);
}

.option-card input:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.option-card:has(input:checked) {
  border-color: rgba(245, 197, 66, 0.48);
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.13), transparent 42%),
    rgba(245, 197, 66, 0.055);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.option-card span {
  color: var(--white);
  font-weight: 850;
  line-height: 1.25;
}

.form-note {
  display: flex;
  gap: 10px;
  margin: 28px 0 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(245, 197, 66, 0.07);
  border: 1px solid rgba(245, 197, 66, 0.20);
}

.form-note strong {
  color: var(--yellow);
}

.form-note span {
  color: rgba(248, 245, 237, 0.74);
}

.quote-form .form-btn {
  min-height: 64px;
  font-size: 1.02rem;
}

/* =========================
   ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  transition: transform 0.18s ease;
}

.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.smooth-scale {
  transition:
    transform var(--transition-premium),
    box-shadow var(--transition-premium);
}

.luxury-border {
  position: relative;
}

.luxury-border::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(245, 197, 66, 0.26);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-2));
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: rgba(245, 197, 66, 0.08);
  filter: blur(70px);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

@keyframes floatLight {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-35px) scale(1.08);
  }
}

@keyframes floatPremium {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .premium-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 430px;
  }

  .before-after-showcase {
    grid-template-columns: 1fr;
  }

  .premium-ba-card .ba-slider img {
    height: 430px;
  }
}

@media (max-width: 991px) {
  .nav {
    height: 82px;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(15, 15, 15, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero-grid,
  .hero-v2-grid,
  .split,
  .form-layout,
  .footer-grid,
  .choice-grid,
  .season-grid,
  .before-after-grid,
  .stats-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
  }

  .premium-hero,
  .hero-v2 {
    min-height: auto;
    padding: 110px 0 90px;
  }

  .premium-hero::after {
    inset: 10px;
    border-radius: 24px;
  }

  .hero-v2-grid,
  .hero-grid {
    gap: 55px;
  }

  .hero-v2 h1,
  .hero-content h1 {
    letter-spacing: -1.8px;
  }

  .hero-main-card img,
  .hero-image img {
    min-height: 390px;
  }

  .hero-card-one {
    left: 18px;
  }

  .hero-card-two {
    right: 18px;
  }

  .page-hero {
    padding: 120px 0 75px;
  }

  .section {
    padding: 85px 0;
  }

  .form-row,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .premium-form,
  .choice-card,
  .season-card,
  .premium-panel,
  .contact-card,
  .faq-item {
    padding: 28px;
  }

  .quote-form {
    padding: 32px;
  }

  .gallery-grid {
    columns: 2 260px;
  }
}

@media (max-width: 700px) {
  .premium-ba-card {
    padding: 16px;
    border-radius: 28px;
  }

  .ba-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .premium-ba-card .ba-slider img {
    height: 300px;
  }

  .ba-proof-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .quote-intro-card,
  .quote-trust-card,
  .quote-form {
    padding: 26px;
    border-radius: 28px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .quote-benefits div {
    grid-template-columns: 1fr;
  }

  .form-note {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .premium-services-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-main-card img,
  .hero-image img {
    height: 360px;
    min-height: 310px;
  }

  .hero-image-overlay,
  .image-card {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    columns: 1;
  }

  .gallery-overlay {
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .container {
    width: 91%;
  }

  h1 {
    font-size: 2.45rem;
    letter-spacing: -1px;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .center {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .ba-slider img {
    height: 280px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .floating-call,
  .floating-quote {
    left: 14px;
    right: 14px;
    text-align: center;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   FINAL OVERRIDES MG.CO — LOGO, FOOTER, SOUMISSION, MOBILE
   À garder à la toute fin du fichier
========================================================= */

/* LOGO HEADER FINAL */
.logo.logo-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition-premium);
}

.logo.logo-wordmark:hover {
  transform: translateY(-1px);
}

.logo-wordmark-img {
  width: 205px;
  max-width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  display: block;
  filter:
    brightness(1.12)
    contrast(1.04)
    drop-shadow(0 0 8px rgba(245, 197, 66, 0.08));
}

.nav {
  height: 88px;
}

.header {
  overflow: visible;
}

/* HERO PAGES — ÉVITE LES TITRES COUPÉS */
.page-hero {
  overflow: hidden;
}

.page-hero h1 {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
}

.page-hero p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* CHAMP ANTI-SPAM CACHÉ */
.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* SOUMISSION — ALIGNEMENT FINAL PROPRE */
.quote-clean-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.quote-clean-sidebar {
  position: sticky;
  top: 120px;
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quote-clean-sidebar h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.1rem, 3.8vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -1.8px;
}

.quote-clean-sidebar p {
  color: rgba(248, 245, 237, 0.76);
}

.quote-mini-steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.quote-mini-steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-mini-steps strong {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #080808;
  font-weight: 950;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.quote-mini-steps span {
  color: var(--white);
  font-weight: 850;
}

.quote-clean-trust {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.quote-clean-trust h3 {
  margin-bottom: 14px;
}

.quote-clean-trust ul {
  margin-top: 18px;
}

.quote-clean-trust li {
  margin-bottom: 10px;
  color: #dddddd;
}

.quote-clean-trust li::marker {
  color: var(--yellow);
}

.quote-clean-form {
  padding: 44px;
  border-radius: 38px;
  border-color: rgba(245, 197, 66, 0.18);
}

.quote-clean-form .form-header {
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.quote-clean-form .form-header h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -1.8px;
}

.quote-clean-form .form-header p {
  max-width: 620px;
}

/* FOOTER PREMIUM FINAL */
.footer {
  padding: 75px 0 30px;
}

.footer-brand-premium {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
}

.footer-brand-logo {
  width: 92px;
  height: auto;
  object-fit: contain;
  filter:
    brightness(1.12)
    contrast(1.04)
    drop-shadow(0 0 10px rgba(245, 197, 66, 0.08));
}

.footer-brand-content p {
  margin-bottom: 0;
}

.footer-brand-tag {
  margin-bottom: 8px !important;
  color: var(--yellow) !important;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: var(--muted-2);
  font-size: 0.9rem;
}

/* PERFORMANCE: ANIMATIONS PLUS LÉGÈRES SUR MOBILE */
@media (max-width: 991px) {
  .logo-wordmark-img {
    width: 180px;
    max-height: 54px;
  }

  .quote-clean-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quote-clean-sidebar {
    position: static;
  }

  .quote-clean-form {
    padding: 32px;
  }

  .footer-brand-premium {
    grid-template-columns: 80px 1fr;
  }
}

@media (max-width: 650px) {
  .quote-clean-sidebar,
  .quote-clean-form {
    padding: 26px;
    border-radius: 28px;
  }

  .quote-mini-steps div {
    grid-template-columns: 1fr;
  }

  .quote-clean-form .form-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 560px) {
  .nav {
    height: 82px;
  }

  .logo-wordmark-img {
    width: 150px;
    max-height: 46px;
  }

  .footer-brand-premium {
    grid-template-columns: 1fr;
  }

  .footer-brand-logo {
    width: 105px;
  }
}
.gallery-item.gallery-hidden {
  display: none !important;
}
/* =========================================================

/* =========================================================
   AJOUTS FINAUX — SERVICES, BACKGROUNDS ET GALERIE PROJETS
   Fusion propre des deux CSS, sans blocs répétés
========================================================= */

/* =========================================================
   SERVICES ACCUEIL — 3 CARTES CENTRÉES
========================================================= */

.services-three-grid {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

.services-three-grid .service-card {
  min-height: 560px;
}

@media (max-width: 1100px) {
  .services-three-grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-three-grid .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 370px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .services-three-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .services-three-grid .service-card,
  .services-three-grid .service-card:last-child {
    min-height: auto;
    max-width: none;
    grid-column: auto;
  }
}

/* =========================================================
   MOBILE — MASQUER LES BOUTONS FLOTTANTS
========================================================= */

@media (max-width: 560px) {
  .floating-call,
  .floating-quote {
    display: none !important;
  }
}

/* =========================================================
   BACKGROUND GLOBAL PREMIUM — INDEX
========================================================= */

body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.88)),
    url("images/maison-background.webp") center center / cover fixed no-repeat;
}

main {
  position: relative;
  overflow: hidden;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(245, 197, 66, 0.12), transparent 30%),
    radial-gradient(circle at 85% 60%, rgba(245, 197, 66, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.86));
}

.premium-services-section,
.dark-section,
.premium-before-after-section,
.faq-section,
.cta-section,
.stats-section {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(8, 8, 8, 0.88)) !important;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-house-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.50) 100%),
    url("images/maison-background.webp") center center / cover no-repeat !important;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }
}

/* =========================================================
   HERO BACKGROUND — PAGES INTERNES
========================================================= */

.services-hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at 20% 20%, rgba(245, 197, 66, 0.14), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(245, 197, 66, 0.08), transparent 30%),
    url("images/services-background.webp") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.soumission-hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.74) 45%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at 20% 20%, rgba(245, 197, 66, 0.14), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(245, 197, 66, 0.08), transparent 30%),
    url("images/soumission-background.webp") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.74) 45%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at 20% 20%, rgba(245, 197, 66, 0.14), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(245, 197, 66, 0.08), transparent 30%),
    url("images/contact-background.webp") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.galerie-hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.74) 45%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at 20% 20%, rgba(245, 197, 66, 0.14), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(245, 197, 66, 0.08), transparent 30%),
    url("images/galerie-background.webp") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-hero-bg .container,
.soumission-hero-bg .container,
.contact-hero-bg .container,
.galerie-hero-bg .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .services-hero-bg,
  .soumission-hero-bg,
  .contact-hero-bg,
  .galerie-hero-bg {
    background-position: center top;
  }
}

/* =========================================================
   GALERIE — CARTES PROJETS PREMIUM
   4 CARTES ORDI / 2 TABLETTE / 1 MOBILE
========================================================= */

.project-cards-grid {
  width: 100%;
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.project-card {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  border: 1px solid rgba(245, 197, 66, 0.28) !important;
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)) !important;
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(245, 197, 66, 0.07) !important;
  transition: var(--transition-premium) !important;
}

.project-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(245, 197, 66, 0.55) !important;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.62),
    0 0 70px rgba(245, 197, 66, 0.10) !important;
}

.project-open-btn {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  padding: 0 !important;
  border: none !important;
  color: inherit !important;
  text-align: left !important;
  background: transparent !important;
  cursor: pointer !important;
}

.project-cover {
  position: relative !important;
  width: 100% !important;
  height: 360px !important;
  min-height: 360px !important;
  overflow: hidden !important;
  border-radius: 26px !important;
}

.project-cover img {
  width: 100% !important;
  height: 360px !important;
  min-height: 360px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 26px !important;
  opacity: 0.82 !important;
  transition: 0.7s ease !important;
}

.project-card:hover .project-cover img {
  transform: scale(1.05) !important;
  opacity: 0.95 !important;
}

.project-cover-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  flex-direction: column !important;
  padding: 22px !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.92) 82%),
    radial-gradient(circle at bottom left, rgba(245, 197, 66, 0.18), transparent 42%) !important;
}

.project-cover-overlay span {
  display: inline-flex !important;
  width: fit-content !important;
  margin-bottom: 14px !important;
  padding: 7px 10px !important;
  color: var(--yellow) !important;
  font-size: 0.62rem !important;
  font-weight: 950 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  border: 1px solid rgba(245, 197, 66, 0.38) !important;
  border-radius: 999px !important;
  background: rgba(245, 197, 66, 0.10) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.project-cover-overlay h3 {
  max-width: 100% !important;
  min-height: 58px !important;
  display: flex !important;
  align-items: flex-end !important;
  margin: 0 0 8px !important;
  color: var(--white) !important;
  font-size: 1.35rem !important;
  line-height: 1.02 !important;
  letter-spacing: -0.8px !important;
}

.project-cover-overlay p {
  max-width: 100% !important;
  min-height: 24px !important;
  margin: 0 !important;
  padding-bottom: 54px !important;
  color: rgba(248, 245, 237, 0.78) !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.project-open-btn::after {
  content: "Voir les photos" !important;
  position: absolute !important;
  left: 22px !important;
  right: auto !important;
  bottom: 22px !important;
  z-index: 5 !important;
  padding: 10px 14px !important;
  color: #080808 !important;
  font-size: 0.74rem !important;
  font-weight: 950 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2)) !important;
  box-shadow:
    0 18px 38px rgba(245, 197, 66, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

.project-detail-section {
  scroll-margin-top: 115px !important;
}

.project-card[hidden],
.project-detail-section[hidden],
.project-empty[hidden] {
  display: none !important;
}

@media (max-width: 991px) {
  .project-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 650px) {
  .project-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .project-cover,
  .project-cover img {
    height: 330px !important;
    min-height: 330px !important;
  }

  .project-cover-overlay {
    padding: 24px !important;
  }

  .project-cover-overlay h3 {
    min-height: auto !important;
    font-size: 1.55rem !important;
  }

  .project-cover-overlay p {
    font-size: 0.95rem !important;
  }

  .project-open-btn::after {
    left: auto !important;
    right: 24px !important;
    bottom: 24px !important;
  }
}

/* =========================================================
   GALERIE — PHOTOS DANS LES PROJETS
   3 PHOTOS PC / 2 TABLETTE / 1 MOBILE
========================================================= */

.project-detail-section .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 36px !important;
  columns: unset !important;
  column-gap: unset !important;
}

.project-detail-section .gallery-item {
  width: 100% !important;
  display: block !important;
  margin-bottom: 0 !important;
  break-inside: auto !important;
}

.project-detail-section .gallery-item img {
  width: 100% !important;
  height: 340px !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 991px) {
  .project-detail-section .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }

  .project-detail-section .gallery-item img {
    height: 320px !important;
  }
}

@media (max-width: 650px) {
  .project-detail-section .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .project-detail-section .gallery-item img {
    height: 300px !important;
  }
}
