/* ============================================================
   MAISON MIRACLE PRESSING ET SERVICES
   Style Global — Élégant & Luxueux
   Palette : Bleu Roi #1A3A6B | Blanc #FFFFFF | Doré #C9A84C
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --bleu: #1A3A6B;
  --bleu-clair: #254d8e;
  --bleu-fonce: #0f2347;
  --or: #C9A84C;
  --or-clair: #e8c96a;
  --or-pale: #f5e8c0;
  --blanc: #FFFFFF;
  --gris-clair: #f8f7f5;
  --gris: #e8e6e0;
  --texte: #2c2c2c;
  --texte-clair: #666;
  --font-titre: 'Cormorant Garamond', Georgia, serif;
  --font-corps: 'Raleway', sans-serif;
  --shadow: 0 4px 24px rgba(26,58,107,0.10);
  --shadow-or: 0 4px 24px rgba(201,168,76,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 12px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === UTILITAIRES === */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }
.gold-line {
  display: inline-block;
  width: 60px; height: 2px;
  background: var(--or);
  margin: 0 auto 20px;
}
.badge {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  background: var(--or-pale);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* === TYPOGRAPHIE === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-titre);
  color: var(--bleu);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { font-size: 0.97rem; line-height: 1.8; color: var(--texte-clair); }

/* === BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-corps);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--or);
  color: var(--bleu-fonce);
}
.btn-primary:hover {
  background: var(--or-clair);
  transform: translateY(-2px);
  box-shadow: var(--shadow-or);
}
.btn-outline {
  background: transparent;
  color: var(--blanc);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--or);
  color: var(--or);
}
.btn-blue {
  background: var(--bleu);
  color: var(--blanc);
}
.btn-blue:hover {
  background: var(--bleu-clair);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--bleu-fonce);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bleu-fonce);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-titre);
  line-height: 1.1;
}
.logo-text .name {
  display: block;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--blanc);
  letter-spacing: 0.04em;
}
.logo-text .sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--or);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--or);
  transition: right 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--or);
}
.nav-links a:hover::after, .nav-links a.active::after {
  right: 0;
}
.nav-cta { margin-left: 12px; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 8px;
  background: var(--or);
  border-radius: 6px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--bleu-fonce);
  transition: var(--transition);
  border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--bleu-fonce);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-corps);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--or); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu) 60%, #2a5298 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/pressing-repassage.jpg') center/cover;
  opacity: 0.18;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 40%);
}
.hero-decor {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  border-left: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
}
.hero-decor::before {
  content: '';
  position: absolute;
  top: 15%; right: 8%;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
}
.hero-decor::after {
  content: '';
  position: absolute;
  bottom: 20%; right: 15%;
  width: 100px; height: 100px;
  border: 1px solid rgba(201,168,76,0.12);
  transform: rotate(45deg);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 80px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  font-family: var(--font-corps);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
}
.hero-line {
  width: 40px; height: 1px;
  background: var(--or);
}
.hero h1 {
  color: var(--blanc);
  margin-bottom: 12px;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  color: var(--or);
}
.hero-slogan {
  font-family: var(--font-titre);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s infinite;
}
.hero-scroll i { font-size: 1.1rem; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === Stats Banner === */
.stats-banner {
  background: var(--bleu-fonce);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-titre);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--or);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 6px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--gris-clair);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bleu), var(--or), var(--bleu));
}
.section-header { margin-bottom: 60px; }
.section-header p { max-width: 560px; margin: 16px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gris);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--or);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bleu), var(--or));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-clair) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-placeholder i {
  font-size: 3.5rem;
  color: rgba(201,168,76,0.6);
}
.service-body { padding: 28px; }
.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--bleu);
}
.service-body p { font-size: 0.92rem; margin-bottom: 18px; }
.service-price {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--or);
  border: 1px solid var(--or-pale);
  background: var(--or-pale);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================================
   POURQUOI NOUS
   ============================================================ */
.why-section {
  background: var(--bleu-fonce);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/nettoyage-professionnel.png') center/cover;
  opacity: 0.10;
}
.why-section .section-header h2 { color: var(--blanc); }
.why-section .section-header p { color: rgba(255,255,255,0.65); }
.why-section .gold-line { background: var(--or); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.why-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
}
.why-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon i { font-size: 1.3rem; color: var(--or); }
.why-text h4 { color: var(--blanc); font-family: var(--font-corps); font-size: 1rem; margin-bottom: 8px; }
.why-text p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ============================================================
   PORTFOLIO / GALERIE
   ============================================================ */
.portfolio-section { background: var(--blanc); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gris);
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,71,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--blanc);
  font-style: italic;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bleu) 0%, #2a5298 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(201,168,76,0.5);
}
.gallery-placeholder i { font-size: 2.5rem; }
.gallery-placeholder span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-cta { margin-top: 48px; }

/* ============================================================
   TEMOIGNAGES
   ============================================================ */
.testimonials-section { background: var(--gris-clair); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gris);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--or-pale);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 24px;
  font-family: var(--font-titre);
  font-size: 5rem;
  color: var(--or-pale);
  line-height: 1;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.stars i { color: var(--or); font-size: 0.85rem; }
.testimonial-text {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--texte);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-clair) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--or);
  font-weight: 600;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--bleu);
  font-family: var(--font-corps);
  display: block;
}
.author-desc {
  font-size: 0.8rem;
  color: var(--texte-clair);
  display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--or) 0%, #b8932a 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--bleu-fonce);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(15,35,71,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.02rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-dark {
  background: var(--bleu-fonce);
  color: var(--blanc);
}
.btn-dark:hover {
  background: var(--bleu);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--blanc);
  color: var(--bleu-fonce);
}
.btn-white:hover {
  background: var(--gris-clair);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--blanc); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.contact-info > p { margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--bleu-fonce);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--or); font-size: 1rem; }
.contact-item-text strong {
  display: block;
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 3px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.95rem;
  color: var(--texte-clair);
}
.contact-item-text a:hover { color: var(--bleu); }
.wa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--blanc);
  font-family: var(--font-corps);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  margin-top: 28px;
  transition: var(--transition);
}
.wa-contact-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  background: var(--gris-clair);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gris);
}
.contact-form h3 { margin-bottom: 28px; font-size: 1.5rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-corps);
  font-size: 0.93rem;
  color: var(--texte);
  background: var(--blanc);
  border: 1.5px solid var(--gris);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bleu);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bleu-fonce);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-brand .logo-text .name { font-size: 1.3rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 16px 0 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--bleu-fonce);
}
.footer-col h5 {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--or); }
.footer-schedule li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-schedule li span:last-child { color: var(--or-clair); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover { color: var(--or); }
.footer-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.kinerty-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  display: block;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.kinerty-credit a { color: var(--or); opacity: 0.6; }
.kinerty-credit a:hover { opacity: 1; }

/* ============================================================
   WHATSAPP FLOTTANT + RETOUR EN HAUT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9000;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-float i { color: var(--blanc); font-size: 1.6rem; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.1); }
}

.back-top {
  position: fixed;
  bottom: 98px; right: 28px;
  width: 44px; height: 44px;
  background: var(--bleu);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 8999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
}
.back-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-top:hover {
  background: var(--bleu-clair);
  transform: translateY(-3px);
}
.back-top i { color: var(--blanc); font-size: 1rem; }

/* ============================================================
   PAGE HERO (pages intérieures)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu) 100%);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--blanc);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--blanc); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 12px auto 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--or); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.75; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form { padding: 28px 20px; }
  .section-padding { padding: 60px 0; }
}

/* ============================================================
   ANIMATIONS D'ENTRÉE
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
