/* ═══════════════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════════════ */
:root {
  --navy:        #0D2B5E;
  --blue:        #1565C0;
  --blue-hover:  #1976D2;
  --blue-pale:   #E8F0FE;
  --blue-light:  #BBDEFB;
  --orange:      #E65100;
  --orange-pale: #FFF3E0;
  --red-pale:    #FFEBEE;
  --red:         #C62828;
  --grey-pale:   #F1F5F9;
  --white:       #FFFFFF;
  --off-white:   #F8FAFB;
  --grey-100:    #F1F5F9;
  --grey-200:    #E2E8F0;
  --grey-400:    #94A3B8;
  --grey-500:    #64748B;
  --grey-700:    #334155;
  --grey-900:    #0F172A;
  --text:        #1E293B;
  --text-muted:  #64748B;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(13,43,94,.12);
  --shadow-lg:   0 8px 32px rgba(13,43,94,.18);
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.section { padding-block: 96px; }
.bg-light { background: var(--off-white); }

.text-blue { color: var(--blue); }

.section-badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--grey-200), var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin-inline: auto;
  transition: padding var(--transition);
}

.navbar.scrolled .nav-inner { padding-block: .85rem; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.logo-initials {
  background: var(--blue);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .03em;
  padding: .35rem .6rem;
  border-radius: var(--radius-sm);
}

.nav-logo .logo-text {
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo .logo-text { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--grey-700); }

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--white) !important;
  color: var(--blue) !important;
  font-weight: 600 !important;
  padding: .5rem 1.1rem !important;
  border-radius: 100px !important;
  margin-left: .5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-1px);
  background: var(--blue-pale) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.navbar.scrolled .nav-burger span { background: var(--navy); }

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  margin-top: .75rem;
  width: fit-content;
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,255,255,.08) 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
  padding-block: 8rem 6rem;
}

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.hero h1 span { color: #90CAF9; }

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-desc strong { color: var(--white); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  background: var(--blue-pale);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
  transform: translateY(-2px);
}

.hero-chips {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-chips li {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 500;
}

.hero-chips li svg { color: #81D4FA; flex-shrink: 0; }

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding-inline: 2.5rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--grey-200);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

.about-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-left p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-keys {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.key-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.key-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue);
}

.key-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}

.key-text p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

/* About card */
.about-card {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-big {
  display: flex;
  align-items: baseline;
  gap: .75rem;
}

.about-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: #90CAF9;
}

.about-years {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,.85);
}

.about-info { display: flex; flex-direction: column; gap: .85rem; }

.info-line {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.82);
}

.info-line svg { flex-shrink: 0; margin-top: .1rem; color: #90CAF9; }
.info-line a { color: inherit; font-weight: 600; }
.info-line a:hover { color: var(--white); }

.about-cta {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  font-weight: 600;
  padding: .8rem 1.5rem;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}

.about-cta:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.65);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.icon-blue  { background: var(--blue-pale);  color: var(--blue);   }
.icon-orange{ background: var(--orange-pale); color: var(--orange); }
.icon-red   { background: var(--red-pale);    color: var(--red);    }
.icon-grey  { background: var(--grey-100);    color: var(--grey-700); }

/* ─── Services toggle ────────────────────────────────────── */
/* Desktop : masque à partir de la 13e carte */
.services-grid.collapsed .service-card:nth-child(n+13) { display: none; }

/* Mobile : masque à partir de la 7e carte */
@media (max-width: 767px) {
  .services-grid.collapsed .service-card:nth-child(n+7) { display: none; }
}

.services-toggle {
  text-align: center;
  margin-top: 2rem;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  color: var(--grey-700);
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-show-more:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-show-more svg {
  transition: transform .3s ease;
}

.btn-show-more.open svg {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

/* Placeholder shown when no-img */
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--grey-400);
  font-size: .82rem;
  font-weight: 500;
  background: var(--grey-100);
}

.gallery-item.no-img img { display: none; }
.gallery-item.no-img .gallery-placeholder { display: flex; }
.gallery-item.no-img { cursor: default; }
.gallery-item.no-img .gallery-overlay { display: none; }

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 94, .5);
  display: grid;
  place-items: center;
  color: var(--white);
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-item:not(.no-img):hover .gallery-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
}

.overall-rating strong { color: var(--navy); font-size: 1.05rem; }

.stars-row { color: #FFC107; font-size: 1.3rem; letter-spacing: .05em; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.t-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.t-stars { color: #FFC107; font-size: 1.1rem; letter-spacing: .05em; }

.t-text {
  color: var(--grey-700);
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.t-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-100);
}

.t-avatar {
  width: 38px;
  height: 38px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.t-info {
  flex: 1;
  min-width: 0;
}

.t-info strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-info span {
  font-size: .78rem;
  color: var(--text-muted);
}

.t-source {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

/* ─── Voir tous les avis ─────────────────────────────────── */
.btn-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  color: var(--grey-700);
  font-size: .95rem;
  font-weight: 600;
  padding: .8rem 1.75rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-all-reviews:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Info column */
.contact-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.ci-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ci-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}

.ci-item p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ci-item a { color: var(--blue); font-weight: 600; }
.ci-item a:hover { text-decoration: underline; }

.ci-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: .9rem 1.5rem;
  border-radius: 100px;
  margin-top: 1.75rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}

.ci-call-btn:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--grey-700);
}

.required { color: var(--blue); }

.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  background: var(--off-white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,.12);
  background: var(--white);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-group select { cursor: pointer; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: .95rem;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
  margin-top: .25rem;
}

.btn-submit:hover:not(:disabled) {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.form-feedback {
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
}

.form-feedback.error {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-text {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .85rem;
}

.stars-sm { color: #FFC107; }

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-nav li a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-nav li a:hover { color: var(--white); }

.footer-contact p {
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: .75rem;
}

.footer-phone {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #90CAF9;
  margin-bottom: .5rem;
}

.footer-hours {
  font-size: .82rem !important;
  color: rgba(255,255,255,.5) !important;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.lightbox[hidden] { display: none; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.9);
  cursor: pointer;
}

.lb-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.lb-content img {
  max-height: 82svh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lb-caption {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background var(--transition);
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,.25);
}

.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-inner { padding-block: 7rem 5rem; }

  /* Stats – grille 2×2 propre */
  .stats-bar { padding-block: 0; }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-sep { display: none; }
  .stat-item {
    padding: 1.35rem 1rem;
    border-right: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
  }
  .stat-item:nth-of-type(even)  { border-right: none; }
  .stat-item:nth-of-type(3),
  .stat-item:nth-of-type(4)     { border-bottom: none; }
  .stat-num  { font-size: 1.6rem; }
  .stat-label{ font-size: .72rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding-inline: .75rem; }
  .stat-num { font-size: 1.5rem; }

  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }

  .contact-form-wrap { padding: 1.5rem; }
}
