/* ============================================
   RAVALE TA FAÇADE - Design Exceptionnel
   Design: Épuré, Sophistiqué, Authentique
   Palette: #052D51 (bleu) / #FD5209 (orange) / #FFF (blanc)
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --bleu: #052D51;
  --bleu-light: #0a3d6e;
  --bleu-dark: #031e38;
  --orange: #FD5209;
  --orange-light: #ff6b2e;
  --orange-dark: #d94400;
  --blanc: #FFFFFF;
  --gris-bg: #F6F7F9;
  --gris-light: #E8EAEE;
  --gris-text: #5A6170;
  --gris-dark: #3A3F4B;
  --noir: #1A1D23;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gris-dark);
  background: var(--blanc);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--bleu);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
}

h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

p {
  color: var(--gris-text);
  line-height: 1.8;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section commune --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--gris-bg);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.05rem;
  margin-top: 12px;
}

/* --- Animations globales --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 45, 81, 0.08);
  transition: all var(--transition);
}

.nav.scrolled {
  border-bottom-color: rgba(5, 45, 81, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer__brand-logo {
  height: 50px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gris-dark);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--bleu);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px !important;
  background: var(--orange);
  color: var(--blanc) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  line-height: 1.2;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  color: var(--blanc) !important;
}

.nav__cta svg {
  width: 16px;
  height: 16px;
  stroke: var(--blanc);
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__mobile-toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--bleu);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-light);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  animation: fadeInUp 0.3s ease;
}

.nav__mobile-menu.active {
  display: flex;
}

.nav__mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--gris-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav__mobile-menu a:hover {
  background: var(--gris-bg);
  color: var(--bleu);
}

.nav__mobile-menu .nav__cta {
  justify-content: center;
  margin-top: 12px;
  padding: 14px;
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: url('/assets/images/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 45, 81, 0.88) 0%, rgba(5, 45, 81, 0.82) 50%, rgba(10, 61, 110, 0.86) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Éléments décoratifs */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  animation-delay: 2s;
}

.hero__content {
  padding: 12px 0px 24px 0px !important;  
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px!important;
  background: rgba(253, 82, 9, 0.18);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
  border: 1px solid rgba(253, 82, 9, 0.3);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  color: var(--blanc);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__title span {
  color: var(--orange);
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--orange);
  color: var(--blanc);
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--blanc);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blanc);
  line-height: 1;
}

.hero__stat-number span {
  color: var(--orange);
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--blanc);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--blanc);
  border: 1px solid var(--gris-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gris-bg);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: all var(--transition);
  border: 1px solid var(--gris-light);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--bleu);
  transition: stroke var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--bleu);
  border-color: var(--bleu);
}

.service-card:hover .service-card__icon svg {
  stroke: var(--blanc);
}

.service-card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--bleu);
}

.service-card__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gris-text);
}

/* ============================================
   POURQUOI RÉNOVER
   ============================================ */
.pourquoi {
  background: var(--gris-bg);
  position: relative;
}

.pourquoi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FD5209' fill-opacity='0.03'%3E%3Cpath d='M30 30h2v2h-2zM15 45h2v2h-2zM45 15h2v2h-2z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.pourquoi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pourquoi__content h2 {
  margin-bottom: 20px;
}

.pourquoi__content>p {
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.pourquoi__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pourquoi__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pourquoi__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: var(--blanc);
  border-radius: var(--radius-md);
  border: 1px solid var(--gris-light);
}

.pourquoi__item-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.pourquoi__item-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--bleu);
  text-transform: none;
  letter-spacing: 0;
}

.pourquoi__item-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.pourquoi__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pourquoi__visual-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4/0;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-light));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(5, 45, 81, 0.1);
}

.pourquoi__visual-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath fill-rule='evenodd' d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.pourquoi__visual-icon {
  position: relative;
  z-index: 1;
}

.pourquoi__visual-icon svg {
  width: 80px;
  height: 80px;
  stroke: var(--orange);
  opacity: 0.85;
}

.pourquoi__visual-text {
  position: relative;
  z-index: 1;
  color: var(--blanc);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 20px;
  line-height: 1.4;
}

.pourquoi__visual-text span {
  color: var(--orange);
}

/* Floating badge */
.pourquoi__badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--blanc);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  border: 1px solid var(--gris-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pourquoi__badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.pourquoi__badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bleu);
}

.pourquoi__badge-text span {
  font-size: 0.8rem;
  color: var(--gris-text);
}

/* ============================================
   RÉALISATIONS - Galerie carrousel
   ============================================ */
.realisations {
  background: var(--blanc);
}

.gallery {
  max-width: 900px;
  margin: 0 auto;
}

.gallery__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--gris-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gris-light);
}

.gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.gallery__main-img.loading {
  opacity: 0;
}

/* Flèches */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gris-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 5;
}

.gallery__arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--bleu);
  transition: stroke var(--transition);
}

.gallery__arrow:hover {
  background: var(--bleu);
  border-color: var(--bleu);
}

.gallery__arrow:hover svg {
  stroke: var(--blanc);
}

.gallery__arrow--prev {
  left: 16px;
}

.gallery__arrow--next {
  right: 16px;
}

/* Compteur */
.gallery__counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(5, 45, 81, 0.8);
  color: var(--blanc);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* Miniatures */
.gallery__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  padding: 4px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery__thumbs::-webkit-scrollbar {
  height: 4px;
}

.gallery__thumbs::-webkit-scrollbar-track {
  background: var(--gris-light);
  border-radius: 2px;
}

.gallery__thumbs::-webkit-scrollbar-thumb {
  background: var(--bleu);
  border-radius: 2px;
}

.gallery__thumb {
  flex: 0 0 100px;
  height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: all var(--transition);
}

.gallery__thumb:hover {
  opacity: 0.8;
}

.gallery__thumb.active {
  border-color: var(--orange);
  opacity: 1;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* État vide */
.gallery__empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--gris-bg);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--gris-light);
}

.gallery__empty svg {
  stroke: var(--gris-light);
  margin-bottom: 16px;
}

.gallery__empty p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bleu);
  font-weight: 600;
  margin-bottom: 6px;
}

.gallery__empty span {
  font-size: 0.85rem;
  color: var(--gris-text);
}

.gallery__empty code {
  background: var(--blanc);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--orange);
  border: 1px solid var(--gris-light);
}

.gallery--empty .gallery__viewport,
.gallery--empty .gallery__thumbs {
  display: none;
}

.gallery:not(.gallery--empty) .gallery__empty {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery__viewport {
    aspect-ratio: 4 / 3;
  }

  .gallery__arrow {
    width: 40px;
    height: 40px;
  }

  .gallery__arrow svg {
    width: 18px;
    height: 18px;
  }

  .gallery__arrow--prev {
    left: 10px;
  }

  .gallery__arrow--next {
    right: 10px;
  }

  .gallery__thumb {
    flex: 0 0 72px;
    height: 52px;
  }

  .gallery__counter {
    bottom: 10px;
    right: 10px;
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}

/* ============================================
   À PROPOS
   ============================================ */
.apropos {
  background: var(--gris-bg);
}

.apropos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.apropos__content h2 {
  margin-bottom: 20px;
}

.apropos__content>p {
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.apropos__info {
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--gris-light);
}

.apropos__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.apropos__info-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  min-width: 18px;
}

.apropos__info-item strong {
  font-size: 0.9rem;
  color: var(--bleu);
}

.apropos__info-item span {
  font-size: 0.9rem;
  color: var(--gris-text);
}

.apropos__chiffres {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.chiffre-card {
  background: var(--blanc);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--gris-light);
  transition: all var(--transition);
}

.chiffre-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}

.chiffre-card__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.chiffre-card__label {
  font-size: 0.85rem;
  color: var(--gris-text);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================
   ZONE D'INTERVENTION
   ============================================ */
.zone {
  background: var(--bleu);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.zone .section-header h2 {
  color: var(--blanc);
}

.zone .section-header h2::after {
  background: var(--orange);
}

.zone .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.zone__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.zone__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}

.zone__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.zone__card svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  min-width: 22px;
}

.zone__card span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.zone__bottom {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.zone__bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT - Design Exceptionnel
   ============================================ */
.contact {
  background: var(--blanc);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FD5209' fill-opacity='0.02'%3E%3Cpath d='M25 25h2v2h-2zM12 38h2v2h-2zM38 12h2v2h-2z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.contact__centered {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* CTA Téléphone - Design Premium */
.contact__cta {
  text-align: center;
  padding: 55px;
  background: linear-gradient(135deg, var(--gris-bg) 0%, rgba(253, 82, 9, 0.03) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 45px;
  border: 1px solid var(--gris-light);
  position: relative;
  overflow: hidden;
}

.contact__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 82, 9, 0.06) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

.contact__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-light) 100%);
  border-radius: 50%;
  margin-bottom: 26px;
  position: relative;
  border: 3px solid rgba(5, 45, 81, 0.1);
  animation: pulse 3s ease-in-out infinite;
}

.contact__cta-icon::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0.25;
  animation: float 4s ease-in-out infinite;
}

.contact__cta-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--blanc);
}

.contact__cta h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: var(--bleu);
  position: relative;
}

.contact__cta p {
  font-size: 1rem;
  color: var(--gris-text);
  margin-bottom: 32px;
  line-height: 1.6;
  position: relative;
}

.contact__cta .btn--large {
  font-size: 1.1rem;
  padding: 18px 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  background: var(--orange);
  border: none;
}

.contact__cta .btn--large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contact__cta .btn--large:hover::before {
  transform: translateX(100%);
}

/* Grille infos contact - Cards Élégantes */
.contact__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.contact__info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: var(--gris-bg);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border: 1px solid var(--gris-light);
  position: relative;
  overflow: hidden;
}

.contact__info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  transition: height var(--transition);
}

.contact__info-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.contact__info-card:hover::before {
  height: 100%;
}

.contact__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--blanc);
  border-radius: var(--radius-sm);
  min-width: 52px;
  border: 1px solid var(--gris-light);
  transition: all var(--transition);
}

.contact__info-card:hover .contact__info-icon {
  background: var(--bleu);
  border-color: var(--bleu);
}

.contact__info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--bleu);
  transition: stroke var(--transition);
}

.contact__info-card:hover .contact__info-icon svg {
  stroke: var(--blanc);
}

.contact__info-text h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--bleu);
}

.contact__info-text p {
  font-size: 0.92rem;
  color: var(--gris-text);
}

.contact__info-text a {
  color: var(--orange);
  font-weight: 600;
}

.contact__info-text a:hover {
  color: var(--orange-dark);
}

/* Horaires - Design Tableau */
.contact__horaires {
  padding: 30px;
  background: var(--blanc);
  border-radius: var(--radius-md);
  border: 1px solid var(--gris-light);
  border-left: 5px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.contact__horaires::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FD5209' fill-opacity='0.02'%3E%3Cpath d='M12 12h1v1h-1z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.contact__horaires h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--bleu);
  position: relative;
}

.contact__horaires-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  position: relative;
  transition: all var(--transition);
}

.contact__horaires-row:hover {
  padding-left: 8px;
  border-bottom-color: var(--orange);
}

.contact__horaires-row:last-child {
  border-bottom: none;
}

.contact__horaires-row span:first-child {
  color: var(--bleu);
  font-weight: 600;
}

.contact__horaires-row span:last-child {
  color: var(--gris-text);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bleu-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer__brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blanc);
}

.footer h4 {
  color: var(--blanc);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: var(--orange);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  min-width: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--orange);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--bleu);
  color: var(--blanc);
  border: 2px solid var(--bleu-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--orange);
  border-color: var(--orange-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: var(--blanc);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pourquoi__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .apropos__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__info-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero__stat {
    min-width: 120px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zone__grid {
    grid-template-columns: 1fr;
  }

  .contact__cta {
    padding: 40px 30px;
  }

  .contact__cta-icon {
    width: 75px;
    height: 75px;
  }

  .contact__cta-icon svg {
    width: 40px;
    height: 40px;
  }

  .contact__cta h3 {
    font-size: 1.5rem;
  }

  .contact__cta .btn--large {
    font-size: 1rem;
    padding: 16px 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .pourquoi__badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .apropos__chiffres {
    grid-template-columns: 1fr;
  }

  .contact__cta {
    padding: 35px 24px;
  }

  .contact__info-card {
    padding: 22px;
  }
}
