
:root {
  --navy: #1E3A5F;
  --navy-deep: #142948;
  --navy-light: #4A79B8;
  --cream: #FBF8F1;
  --cream-warm: #F5EFE3;
  --yellow: #F4C430;
  --yellow-soft: #FBE89F;
  --text: #2A3548;
  --text-soft: #5C6679;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 2px rgba(30, 58, 95, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 58, 95, 0.08);
  --shadow-lg: 0 24px 60px rgba(30, 58, 95, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .serif {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy-light);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================ HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Le header des pages services enveloppe la nav dans un .container :
   on neutralise sa contrainte pour que la nav s'étire (logo à gauche, menu à droite),
   exactement comme sur la page d'accueil. */
.header .container {
  max-width: none;
  padding: 0;
}
.header .nav {
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-star {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.logo-star svg {
  width: 100%;
  height: 100%;
}

.logo-wordmark {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.logo-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  white-space: nowrap;
}

.logo-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 4px 0;
}

.logo-city {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.66rem;
  color: var(--navy);
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  line-height: 1;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--navy);
}

/* Menu plus long (libellés « Nettoyage X ») : bascule en burger un peu plus tôt */
@media (max-width: 1080px) {
  .nav-menu { display: none; }
  .menu-toggle { display: block; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border);
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
}

.nav-menu a.active {
  color: var(--navy);
  font-weight: 700;
}

.nav-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(244, 196, 48, 0.3);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #FFD350;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 196, 48, 0.5);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

/* ============================ HERO */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(244, 196, 48, 0.08), transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--navy);
  margin: 16px 0 24px;
}

.hero h1 .accent {
  color: var(--navy-light);
  font-style: italic;
}

.hero p.subtitle {
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  padding: 18px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  color: var(--navy-light);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  width: 280px;
  position: relative;
  z-index: 2;
}

.hero-card-2 {
  position: absolute;
  background: var(--navy);
  color: var(--cream);
  border-radius: 24px;
  padding: 28px;
  width: 200px;
  bottom: 20%;
  right: -10px;
  transform: rotate(6deg);
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.hero-card .check-circle {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--navy);
}

.hero-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.hero-card-desc {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-card-2-stars {
  font-size: 1.3rem;
  color: var(--yellow);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.hero-card-2 p {
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.4;
}

.hero-card-2 .author {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--yellow-soft);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Floating stars in hero */
.float-star {
  position: absolute;
  color: var(--yellow);
  opacity: 0.5;
  pointer-events: none;
}

.float-star:nth-child(1) {
  top: 5%;
  left: 5%;
  font-size: 24px;
}

.float-star:nth-child(2) {
  top: 30%;
  right: 0%;
  font-size: 16px;
}

.float-star:nth-child(3) {
  bottom: 10%;
  left: 15%;
  font-size: 20px;
}

/* ============================ TRUST BAR */
.trust-bar {
  background: var(--navy);
  color: var(--cream);
  padding: 24px 0;
  overflow: hidden;
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 0.95rem;
}

.trust-content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-content .star {
  color: var(--yellow);
}

/* ============================ ENGAGEMENTS */
.engagements {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin: 12px 0 16px;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.1rem;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.engagement-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.engagement-card:hover {
  border-color: var(--navy-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.engagement-icon {
  width: 64px;
  height: 64px;
  background: var(--cream-warm);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.engagement-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.engagement-card:hover .engagement-icon::before {
  opacity: 1;
}

.engagement-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--navy);
}

.engagement-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.engagement-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================ HOW IT WORKS */
.process {
  padding: 100px 0;
  background: var(--cream-warm);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--navy-light) 0%, var(--navy-light) 50%, var(--border) 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  border: 4px solid var(--cream-warm);
  position: relative;
}

.step h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.step p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================ TARIFS */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.price-card, .price-card * { text-decoration: none; }
.price-card h4, .price-card .price-amount { color: var(--navy); }

.price-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.price-info h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.price-info p {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--navy);
  font-weight: 400;
  position: relative;
}

.price-amount .from {
  font-size: 0.7rem;
  color: var(--text-soft);
  display: block;
  text-align: right;
  margin-bottom: -8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.pricing-note strong {
  color: var(--navy);
}

/* ============================ FORMULAIRE */
.form-section {
  padding: 100px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 196, 48, 0.15), transparent 70%);
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.form-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 24px;
  color: var(--cream);
}

.form-info > p {
  color: rgba(248, 248, 245, 0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.form-info .eyebrow {
  color: var(--yellow);
}

.form-quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.form-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.form-quick-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--yellow);
}

.form-quick-item strong {
  color: var(--cream);
}

.form-quick-item a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.form-card {
  background: var(--cream);
  color: var(--text);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'DM Serif Display', serif;
}

.form-card .form-card-sub {
  color: var(--text-soft);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  color: var(--text);
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(74, 121, 184, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ============================ FAQ */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-left: 16px;
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--yellow);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

/* ============================ FOOTER */
footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand .logo-name,
.footer-brand .logo-city {
  color: var(--cream);
}

.footer-brand p {
  color: rgba(248, 248, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-col h5 {
  color: var(--yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(248, 248, 245, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 248, 245, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248, 248, 245, 0.5);
}

/* ============================ FLOATING WHATSAPP */
/* ===== Bouton WhatsApp flottant — version originale (V4.1) ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-float .whatsapp-label {
  display: none;
}

/* (Ancienne règle .whatsapp-float svg supprimée — fusionnée dans la nouvelle V3.3 ci-dessus) */



/* ============================ AVIS GOOGLE */
.reviews {
  padding: 100px 0;
  background: var(--cream-warm);
  overflow: hidden;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 12px 24px;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}

.google-rating .stars-display {
  color: var(--yellow);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.google-rating .rating-text {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.google-rating .rating-text strong {
  color: var(--navy);
  font-weight: 700;
}

.google-rating .g-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #EA4335 50%, #FBBC05 75%, #34A853);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 4px;
}

.reviews-carousel {
  margin-top: 60px;
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  animation: scrollReviews 60s linear infinite;
  width: max-content;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.author-location {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 2px;
}

.review-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.reviews-cta {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 640px) {
  .review-card {
    min-width: 300px;
    max-width: 300px;
    padding: 22px;
  }
  
  .google-rating {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
  }
}


/* Hero photo wrapper */
.hero-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-badge-stars {
  color: var(--yellow);
  letter-spacing: 1px;
}

.hero-badge-text {
  color: var(--navy);
}

.hero-photo-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}

.hero-photo-card .check-circle {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.hero-photo-card .hero-card-title {
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-photo-card .hero-card-desc {
  font-size: 0.8rem;
}

@media (max-width: 968px) {
  .hero-photo-wrapper {
    aspect-ratio: 16/10;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-photo-card {
    max-width: 200px;
    padding: 16px;
  }
}

/* Galerie avant/après */
.gallery {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  background: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

.gallery-caption-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

.gallery-caption-sub {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 2px;
}

.gallery-caption-time {
  background: var(--yellow);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Section méthode enrichie */
.method-deep {
  padding: 100px 0;
  background: var(--cream-warm);
}

.method-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.method-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 400;
}

.method-content p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.method-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.method-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.method-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.method-feature-text strong {
  color: var(--navy);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.method-feature-text span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.method-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.method-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.method-watermark {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(30, 58, 95, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.method-watermark-star {
  color: var(--yellow);
  font-size: 1.1rem;
}

@media (max-width: 968px) {
  .method-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Section ambiance Paris */
.ambiance {
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.ambiance-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.ambiance-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(30, 58, 95, 0.92) 0%, rgba(30, 58, 95, 0.6) 50%, rgba(30, 58, 95, 0.3) 100%);
  display: flex;
  align-items: center;
}

.ambiance-content {
  max-width: 600px;
  padding: 0 40px;
  color: var(--cream);
}

.ambiance-eyebrow {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ambiance-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
}

.ambiance-content p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: 0.95;
  line-height: 1.6;
}

.ambiance-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.ambiance-cta:hover {
  background: #FFD350;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ambiance-image {
    height: 400px;
  }
  
  .ambiance-overlay {
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.85) 0%, rgba(30, 58, 95, 0.7) 100%);
  }
  
  .ambiance-content {
    padding: 0 24px;
    max-width: 100%;
    text-align: center;
  }
}

/* ============================ RESPONSIVE */
@media (max-width: 968px) {
  .hero-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }

  .engagements-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border);
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 0 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-content {
    gap: 24px;
    font-size: 0.85rem;
  }
}

/* ============================ ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1, .hero p.subtitle, .hero-cta {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.hero h1 { animation-delay: 0.1s; }
.hero p.subtitle { animation-delay: 0.25s; }
.hero-cta { animation-delay: 0.4s; }

.float-star {
  animation: float 4s ease-in-out infinite;
}

.float-star:nth-child(2) {
  animation-delay: 1s;
}

.float-star:nth-child(3) {
  animation-delay: 2s;
}



/* === STYLES PAGES-VILLES === */
.breadcrumb {
  background: var(--cream-warm);
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { margin: 0 8px; opacity: .5; }

.local-content {
  padding: 70px 0;
  background: white;
}
.local-content .container { max-width: 920px; }
.local-content h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 36px 0 18px;
  line-height: 1.2;
}
.local-content h2:first-of-type { margin-top: 0; }
.local-content p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.local-content p a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
  text-decoration: none;
}
.local-content p a:hover { color: var(--yellow); }
.local-content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.local-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  line-height: 1.6;
}
.local-content ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 1rem;
}

.quartiers {
  background: var(--cream);
  padding: 60px 0;
}
.quartiers .container { max-width: 920px; }
.quartiers h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-top: 14px;
  text-align: center;
}
.quartiers-intro {
  text-align: center;
  color: var(--text-soft);
  margin: 16px auto 28px;
  max-width: 620px;
  line-height: 1.6;
}
.quartiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.quartier-chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  text-align: center;
  transition: all .25s ease;
}
.quartier-chip:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.zones-proches {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.zones-proches .container { max-width: 920px; text-align: center; }
.zones-proches h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.zones-proches p {
  color: var(--text-soft);
  margin-bottom: 28px;
}
.zones-proches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.zone-link {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .2s ease;
}
.zone-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.local-cta {
  background: var(--navy);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.local-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  color: white;
}
.local-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.local-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.local-cta .btn-secondary {
  background: white;
  color: var(--navy);
}

/* === MODAL "TROUVEZ VOTRE VILLE" === */
.city-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 41, 72, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .3s ease;
}
.city-modal-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.city-modal {
  background: white;
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp .4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.city-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream-warm);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
  transition: all .2s ease;
}
.city-modal-close:hover { background: var(--yellow); }

.city-modal-head {
  text-align: center;
  margin-bottom: 24px;
}
.city-modal-head h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.city-modal-head p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.city-modal-search {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  margin-bottom: 24px;
  transition: border-color .2s ease;
}
.city-modal-search:focus {
  outline: none;
  border-color: var(--yellow);
}

.city-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.city-modal-card {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px;
  text-decoration: none;
  text-align: center;
  transition: all .25s ease;
  display: block;
}
.city-modal-card:hover {
  background: white;
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.city-modal-card-dept {
  display: block;
  font-family: 'DM Serif Display', serif;
  color: var(--yellow);
  font-size: 1.4rem;
  line-height: 1;
}
.city-modal-card-name {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-top: 6px;
}

.city-modal-fallback {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.95rem;
}
.city-modal-fallback a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
}

/* Bouton "Trouvez votre ville" dans le hero */
.find-city-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  background: rgba(244, 196, 48, 0.15);
  border: 1px solid var(--yellow);
  border-radius: 100px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
.find-city-btn:hover {
  background: var(--yellow);
}

/* Lien Zones d'intervention dans le header */
.header-zones-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  margin-right: 12px;
  border-radius: 100px;
  transition: all .2s ease;
}
.header-zones-link:hover {
  background: var(--cream-warm);
  color: var(--yellow);
}
@media (max-width: 720px) {
  .header-zones-link { display: none; }
}

/* ============================ CHAMP FICHIER (upload photos) */
.form-file {
  padding: 10px 12px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
}
.form-file::file-selector-button {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  margin-right: 12px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.form-file::file-selector-button:hover {
  background: var(--navy-deep);
}
.form-file-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ============================ SYSTÈME MULTI-PRESTATIONS (devis) */
.prestation-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.prestation-row select {
  flex: 1;
  min-width: 0;
}
.prestation-qty {
  width: 64px;
  flex-shrink: 0;
  text-align: center;
}
.prestation-remove {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 10px;
  color: #C0392B;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.prestation-remove:hover {
  background: #FDF3F2;
  border-color: #E27A6B;
}
.add-prestation-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px dashed var(--navy-light);
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 2px;
}
.add-prestation-btn:hover {
  background: var(--cream-warm);
  border-color: var(--navy);
}
.estimation-box {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.estimation-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.estimation-row span {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.estimation-row strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
}
.estimation-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.4;
  display: block;
}

/* Message de confirmation après envoi */
.form-success {
  text-align: center;
  padding: 30px 10px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.form-success h3 {
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}
.form-success-sub {
  font-size: 0.9rem;
}
.form-success-sub a {
  color: var(--navy);
  font-weight: 700;
}
.form-success-wa {
  display: inline-block;
  background: #25D366;
  color: white;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  margin: 10px 0 16px;
  transition: all 0.2s;
}
.form-success-wa:hover {
  background: #1EBE57;
  transform: translateY(-1px);
}

/* Messages d'erreur de validation */
.input-error {
  border-color: #E27A6B !important;
  background: #FDF3F2 !important;
}
.field-error {
  display: block;
  color: #C0392B;
  font-size: 0.8rem;
  margin-top: 5px;
}
.form-error-box {
  background: #FDF3F2;
  border: 1px solid #E27A6B;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
  color: #A3342D;
  font-size: 0.92rem;
  line-height: 1.6;
}
.form-error-box strong {
  color: #A3342D;
}

/* Aperçu des photos sélectionnées */
.photos-preview {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.photo-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.photos-count {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.photos-names {
  list-style: none;
  margin: 0;
  padding: 0;
}
.photos-names li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 4px 10px;
  background: var(--cream-warm);
  border-radius: 8px;
  margin-bottom: 4px;
}
.photos-names li span {
  color: var(--text-soft);
  font-size: 0.78rem;
}

/* Autocomplétion d'adresse */
.autocomplete-wrap {
  position: relative;
}
.adresse-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 4px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(30,58,95,0.12);
  display: none;
}
.adresse-suggestions.active {
  display: block;
}
.adresse-suggestion-item {
  padding: 11px 16px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--cream-warm);
  transition: background 0.15s;
}
.adresse-suggestion-item:last-child {
  border-bottom: none;
}
.adresse-suggestion-item:hover,
.adresse-suggestion-item.highlighted {
  background: var(--cream-warm);
}
.adresse-suggestion-item .sugg-context {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 2px;
}

/* ============================ GALERIE "NOS AUTRES SERVICES" (images cliquables) */
.services-gallery { padding: 80px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.service-tile { position: relative; display: block; border-radius: 18px; overflow: hidden; text-decoration: none; aspect-ratio: 4/3; box-shadow: 0 4px 16px rgba(30,58,95,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-tile:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(30,58,95,0.18); }
.service-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-tile:hover img { transform: scale(1.06); }
.service-tile-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 18px 16px; background: linear-gradient(to top, rgba(30,58,95,0.92) 0%, rgba(30,58,95,0.55) 55%, rgba(30,58,95,0) 100%); color: #ffffff; display: flex; flex-direction: column; gap: 2px; }
.service-tile-label strong { color: #ffffff; font-family: 'DM Serif Display', Georgia, serif; font-size: 1.45rem; font-weight: 400; line-height: 1.15; }
.service-tile-label span { color: #ffffff; font-size: 0.9rem; opacity: 0.9; }
.service-tile:visited .service-tile-label strong,
.service-tile:visited .service-tile-label span { color: #ffffff; }
.service-tile::after { content: "\2192"; position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; background: var(--yellow); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; opacity: 0; transform: translateX(-6px); transition: opacity 0.3s ease, transform 0.3s ease; }
.service-tile:hover::after { opacity: 1; transform: translateX(0); }
@media (max-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-tile-label strong { font-size: 1.1rem; }
  .service-tile-label span { font-size: 0.78rem; }
}


/* ===== Bouton WhatsApp & séparateur (ajout migration Web3Forms) ===== */
.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0 12px;
  color: #999;
  font-size: 0.9rem;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e5e5e5;
}
.form-divider span {
  padding: 0 14px;
  font-style: italic;
}
.form-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3), 0 1px 3px rgba(0,0,0,0.06);
  letter-spacing: 0.01em;
}
.form-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45), 0 2px 5px rgba(0,0,0,0.1);
}
.form-whatsapp:active {
  transform: translateY(0);
}
.form-whatsapp svg {
  flex-shrink: 0;
}


/* ===== Modal de succès devis (V3) ===== */
.eclatys-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: eclatysFadeIn 0.25s ease-out;
}
@keyframes eclatysFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.eclatys-modal {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 28px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: eclatysSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes eclatysSlideUp {
  from { transform: translateY(20px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.eclatys-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 50%;
  transition: all 0.2s;
}
.eclatys-modal-close:hover {
  background: #f3f4f6;
  color: #111;
}
.eclatys-modal-icon {
  font-size: 56px;
  margin-bottom: 8px;
  line-height: 1;
}
.eclatys-modal h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy, #0f172a);
  margin: 8px 0 12px;
  line-height: 1.25;
}
.eclatys-modal-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 22px;
}
.eclatys-modal-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 6px 0 14px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eclatys-modal-divider::before,
.eclatys-modal-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}
.eclatys-modal-divider span {
  padding: 0 14px;
}
.eclatys-modal-subtitle {
  color: #334155;
  font-size: 0.95rem;
  margin: 0 0 16px;
  font-weight: 500;
}
.eclatys-modal-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.2s;
  box-sizing: border-box;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.eclatys-modal-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}
.eclatys-modal-dismiss {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 16px;
  font-family: inherit;
  transition: color 0.2s;
}
.eclatys-modal-dismiss:hover {
  color: #475569;
}

@media (max-width: 480px) {
  .eclatys-modal {
    padding: 28px 20px 20px;
    border-radius: 20px;
  }
  .eclatys-modal h3 { font-size: 1.35rem; }
  .eclatys-modal-icon { font-size: 48px; }
}

/* Visibilité de l'erreur sur les prestations */
#prestationsList + .field-error {
  display: block;
  margin-top: 8px;
  color: #dc2626;
  font-size: 0.9rem;
}

/* ===== Modal d'erreur de validation (V3.1) ===== */
.eclatys-modal-error h3 {
  color: #b45309;
}
.eclatys-modal-error .eclatys-modal-icon {
  font-size: 52px;
}
.eclatys-error-list {
  text-align: left;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 14px 18px 14px 36px;
  margin: 0 0 22px;
  list-style: disc;
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.65;
}
.eclatys-error-list li {
  margin: 0;
}
.eclatys-modal-action {
  display: block;
  width: 100%;
  background: var(--navy, #0f172a);
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s;
}
.eclatys-modal-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

/* ===== Fix universel : tous les boutons-liens (V3.2) =====
   Empêche le navigateur d'appliquer ses styles par défaut sur les <a>
   qui servent de boutons : pas de soulignement, pas de couleur "visited" violette */
.btn-primary,
.btn-secondary,
.nav-cta,
.form-submit,
.form-whatsapp,
.eclatys-modal-whatsapp,
.eclatys-modal-action,
.eclatys-modal-dismiss,
.local-cta-buttons a,
.whatsapp-float,
.add-prestation-btn,
a.btn,
a.cta {
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:link,
.btn-primary:visited,
.btn-primary:active {
  color: var(--cream) !important;
  text-decoration: none !important;
}

.btn-secondary:link,
.btn-secondary:visited,
.btn-secondary:active {
  color: var(--navy) !important;
  text-decoration: none !important;
}

.local-cta .btn-secondary:link,
.local-cta .btn-secondary:visited,
.local-cta .btn-secondary:active {
  color: var(--navy) !important;
}

.nav-cta:link,
.nav-cta:visited,
.nav-cta:active {
  color: var(--navy) !important;
  text-decoration: none !important;
}

.form-whatsapp:link,
.form-whatsapp:visited,
.form-whatsapp:active,
.eclatys-modal-whatsapp:link,
.eclatys-modal-whatsapp:visited,
.eclatys-modal-whatsapp:active,
.whatsapp-float:link,
.whatsapp-float:visited,
.whatsapp-float:active {
  color: #fff !important;
  text-decoration: none !important;
}

/* Fix supplémentaire : les liens dans le footer et zones diverses
   gardent une couleur cohérente même après visite */
footer a:link,
footer a:visited {
  color: inherit;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* Liens inline dans les paragraphes (CGV, mentions légales, etc.) :
   on garde un style propre, cohérent avec le navy de la marque */
.legal-content a:link,
.legal-content a:visited,
article a:link,
article a:visited,
.content a:link,
.content a:visited {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-content a:hover,
article a:hover,
.content a:hover {
  opacity: 0.7;
}
