:root {
  --orange: #f97316;
  --orange-soft: #fed7aa;
  --blue: #0f6fbf;
  --blue-soft: #dbeafe;
  --bg-page: #f3f4f6;
  --card-bg: #ffffff;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --radius-xl: 18px;
  --shadow-soft: 0 10px 30px rgba(15,23,42,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Bloc réseaux + logos partenaires */
.social-wrapper {
padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  gap: 1.2rem;
}

/* Ligne 1 : réseaux sociaux */
.social-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Ligne 2 : logos partenaires */
.logo-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-logo {
  height: 42px;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.partner-logo:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* Responsive */
@media (max-width: 700px) {
  .partner-logo {
    height: 28px;
    max-width: 100px;
  }
}


a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e5e7eb;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  position: relative;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-dot {
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1;
  text-shadow: 0 0 6px rgba(249,115,22,0.8), 0 0 10px rgba(249,115,22,0.5);
}

/* LOGO animé soft */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.logo-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* BRAND TEXT */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  margin-left: 10px;
}

.brand-text span {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
}

.st-line { color: #1d4ed8; }
.nd-line { color: #0f172a; }
.rd-line {
  background: linear-gradient(90deg, #2563eb 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LOGO ANIMÉ */
.logo-anim {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url("./images/logo-transparent.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(15,23,42,0.18);
  z-index: 1;
  animation: logoBreathe 5s ease-in-out infinite;
}

.logo-anim::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 48%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249,115,22,0.9), rgba(249,115,22,0));
  transform: translateY(-50%);
  filter: blur(1px);
  animation: flame 2s infinite ease-in-out;
}

.logo-anim::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59,130,246,0.85), rgba(59,130,246,0));
  transform: translateY(-50%);
  filter: blur(1px);
  animation: freeze 3s infinite ease-in-out;
}

/* NAV CTA */
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-text-main {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.logo-text-sub {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(15,23,42,0.18);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(15,23,42,0.24);
  filter: brightness(1.05);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 999px;
}

/* Badges assurances */
.assurances-top {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-left: 0.6rem;
  font-size: 0.7rem;
}

.assurance-badge {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #4b5563;
  white-space: nowrap;
}

.assurance-badge.rcpro {
  border-color: #93c5fd;
  background: #eff6ff;
}

.assurance-badge.decennale {
  border-color: #fed7aa;
  background: #fff7ed;
}

/* HERO */
.hero {
  position: relative;
  padding: 3.4rem 0 0;
  background: linear-gradient(
    125deg,
    #ffffff 0%,
    #fff4e8 40%,
    #ffe7d4 70%,
    #ffdcc9 100%
  );
  overflow: hidden;
}


.hero::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.35), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.28), transparent 65%);
  opacity: 0.7;
  mix-blend-mode: soft-light;
  filter: blur(8px);
  animation: heroGradient 26s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 84% 88%, rgba(255, 140, 80, 0.15) 0 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.38;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 6rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--orange), #facc15);
  box-shadow: 0 0 8px rgba(249,115,22,0.8);
}

.hero-badge-veritas {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
  font-size: 0.7rem;
  margin-bottom: 0.9rem;
  margin-left: 0.2rem;
}

.hero-badge-veritas span {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 560px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hero-subtitle-small {
  max-width: 540px;
  font-size: 0.85rem;
  color: #047857;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.hero-infos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

.hero-infos strong { color: var(--text-dark); }

/* Carte sombre contact */
.hero-cta-card {
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.06), transparent 60%),
              #111827;
  border-radius: 22px;
  padding: 1.5rem 1.4rem;
  color: #e5e7eb;
  box-shadow: 0 18px 45px rgba(15,23,42,0.45);
  border: 1px solid rgba(148,163,184,0.55);
  position: relative;
  z-index: 1;
}

.hero-cta-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.hero-cta-sub {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 1.2rem;
}

.hero-cta-buttons {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-cta-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  font-size: 0.86rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.hero-cta-btn span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-cta-btn.primary {
  background: linear-gradient(135deg, var(--orange), #facc15);
  color: #111827;
  border-color: transparent;
  box-shadow: 0 14px 35px rgba(248,164,76,0.6);
}

.hero-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(15,23,42,0.6);
  border-color: rgba(248,250,252,0.9);
}

.hero-cta-btn.primary:hover {
  box-shadow: 0 18px 45px rgba(248,164,76,0.8);
}

.hero-cta-info {
  font-size: 0.75rem;
  color: #9ca3af;
  border-top: 1px solid rgba(148,163,184,0.5);
  padding-top: 0.6rem;
}

/* Réseaux sociaux */
.social-network-section {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.net-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.net-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  filter: brightness(1.04);
}

.net-icon {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 6px;
  background: #ffffff;
}

.net-instagram {
  background: linear-gradient(135deg, #f97316, #ec4899, #8b5cf6);
  color: #ffffff;
  border: none;
  background-size: 200% 200%;
  animation: socialGlow 12s ease-in-out infinite;
}

.net-facebook {
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #0f172a);
  color: #ffffff;
  border: none;
  background-size: 200% 200%;
  animation: socialGlow 14s ease-in-out infinite;
}

section { padding: 3rem 0; }

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  text-align: center;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 1.8rem;
}

/* Services */
.services {
  background: #ffffff;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: var(--text-dark);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(148,163,184,0.35);
  border-color: #cbd5f5;
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft), #eff6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.service-card p { color: var(--text-muted); }

.service-list {
  margin-top: 0.5rem;
  list-style: none;
  padding-left: 0;
}

.service-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.seo-text {
  margin-top: 1.4rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

/* Zones */
.zones { background: #f9fafb; }

.two-cols {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.adv-list {
  list-style: none;
  font-size: 0.85rem;
  display: grid;
  gap: 0.8rem;
  color: var(--text-muted);
}

.adv-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.adv-bullet {
  margin-top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, var(--orange), #facc15, var(--blue), var(--orange));
  box-shadow: 0 0 8px rgba(59,130,246,0.6);
  flex-shrink: 0;
}

.zone-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.zone-tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  border: 1px solid #bfdbfe;
}

.seo-local {
  margin-top: 1.4rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  max-width: 44rem;
  line-height: 1.7;
}

/* Avis clients */
.reviews {
  background: #ffffff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.2rem;
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.review-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.review-source {
  font-size: 0.75rem;
  color: #9ca3af;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.84rem;
}

.review-footer {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.2rem;
}

.reviews-link {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.reviews-link a {
  color: var(--blue);
  font-weight: 500;
}

/* Galerie / Photos */
.gallery {
  background: #f9fafb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.1rem;
}

.gallery-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
}

.gallery-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #e5e7eb;
  cursor: pointer;
}

.gallery-body {
  padding: 0.7rem 0.8rem 0.8rem;
}

.gallery-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

/* Bloc "Notre équipe" */
.gallery-team {
  grid-column: 1 / -1;
  min-height: 360px;
}

.gallery-team .gallery-img {
  height: 260px;
  object-fit: cover;
}

.gallery-team .gallery-body {
  padding: 1.2rem 1.5rem;
}

.gallery-team .gallery-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.gallery-team p {
  font-size: 0.95rem;
}

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1.5rem;
}

.lightbox-overlay.show {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-content {
  position: relative;
  max-width: min(1000px, 100%);
  max-height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lightbox-content img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.6);
  background: #000;
}

.lightbox-caption {
  font-size: 0.85rem;
  color: #e5e7eb;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #f9fafb;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact */
.contact { background: #ffffff; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 1.8rem;
  align-items: stretch;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 1.3rem;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
  color: var(--text-dark);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

form {
  display: grid;
  gap: 0.7rem;
  font-size: 0.85rem;
}

label {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-dark);
}

input, textarea, select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font: inherit;
  font-size: 0.85rem;
  outline: none;
  background: #f9fafb;
  color: var(--text-dark);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input::placeholder,
textarea::placeholder { color: #9ca3af; }

input:focus, textarea:focus, select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.3);
  background: #ffffff;
}

textarea { min-height: 90px; resize: vertical; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15,23,42,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 35px rgba(15,23,42,0.35);
}

.contact-infos {
  font-size: 0.85rem;
  display: grid;
  gap: 0.6rem;
  color: var(--text-muted);
}

.contact-infos-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-infos-item span a { color: var(--text-dark); }

.contact-highlight {
  margin-top: 0.6rem;
  padding: 0.7rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px dashed #fdba74;
  font-size: 0.78rem;
  color: #9a3412;
}

/* Footer */
footer {
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0 1.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  background: #f9fafb;
}

footer span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Messages formulaire */
.form-alert {
  margin-bottom: 0.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-alert-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
}

.form-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

/* Honeypot */
.honey-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Keyframes */
@keyframes logoAura {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.06); }
}

@keyframes logoBreathe {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}

@keyframes flame {
  0%,100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50%     { opacity: 1; transform: translateY(-50%) scale(1.45); }
}

@keyframes freeze {
  0%,100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50%     { opacity: 1; transform: translateY(-50%) scale(0.7); }
}

@keyframes heroGradient {
  0%   { transform: translate3d(-12%, -7%, 0) scale(1); }
  50%  { transform: translate3d(10%, 9%, 0) scale(1.04); }
  100% { transform: translate3d(-6%, -3%, 0) scale(1.02); }
}

@keyframes socialGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .services-grid,
  .two-cols,
  .contact-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.2rem 0 2.4rem;
  }

  .hero-inner {
    gap: 2.2rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta-card {
    margin-top: 1.4rem;
  }

  .nav {
    gap: 0.75rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    left: 1.5rem;
    margin-top: 0.6rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 0.9rem 1rem;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
    z-index: 40;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .assurances-top {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.1rem;
  }

  .logo-wrapper {
    width: 74px;
    height: 74px;
  }

  .logo-text-main {
    font-size: 1.05rem;
  }

  .hero {
    padding: 2rem 0 2.2rem;
  }
}

/* --- PAGE MENTIONS LÉGALES --- */

.ml-header {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
}

.ml-header h1 {
  margin: 0;
  font-size: 2rem; /* un peu plus petit */
  font-weight: 700;
}

.ml-container {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 2.2rem; /* plus de marge à gauche/droite */
}

.ml-section {
  background: #ffffff;
  padding: 1.5rem 1.4rem;
  border-radius: 12px;
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.ml-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.ml-section p {
  color: #4b5563;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;     /* 👈 texte un peu plus petit */
  line-height: 1.6;      /* meilleure lisibilité */
}

.ml-section a {
  color: var(--orange);
  text-decoration: none;
}

.ml-section a:hover {
  text-decoration: underline;
}

/* --- FOOTER LEGAL LINKS --- */

.footer-links {
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.footer-legal-link {
    color: var(--blue) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-legal-link:hover {
    color: var(--orange) !important;
    text-decoration: underline;
}

/* --- COOKIE BANNER --- */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;          /* ancien: bottom: 0.8rem */
  z-index: 60;
  display: none;
  justify-content: center;
  pointer-events: none;
}


.cookie-banner.show {
  display: flex;
}

.cookie-inner {
  pointer-events: auto;
  max-width: 900px;
  width: calc(100% - 2rem);
  margin: 0 auto;
  background: #111827;
  color: #e5e7eb;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.7);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.cookie-text {
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(15,23,42,0.6);
}

.cookie-accept:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 35px rgba(15,23,42,0.85);
}

.cookie-reject {
  background: #111827;
  color: #e5e7eb;
  border: 1px solid #4b5563;
}

.cookie-reject:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.cookie-more {
  font-size: 0.78rem;
  color: var(--orange);
  text-decoration: underline;
}
 
@media (max-width: 600px) {
  .cookie-inner {
    font-size: 0.78rem;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}




