/* ==========================================================
   United Shipchandler Thoumas — Modernized shared stylesheet
   Charte graphique : Navy #0c2a5b + Or cuivré #b8945a + Parchemin #fbf8f2
   ========================================================== */

:root {
  /* === Navy — couleur exacte du logo === */
  --navy: #0c2a5b;
  --navy-2: #163569;
  --navy-dark: #081d40;
  --navy-ink: #050f24;

  /* === Or cuivré — instruments maritimes anciens === */
  --orange: #b8945a;
  --orange-2: #c9a76e;
  --orange-deep: #9a7540;
  --cyan: #b8945a;
  --cyan-soft: #f5ede0;

  /* === Fond parchemin — carte nautique === */
  --bg: #fbf8f2;
  --bg-soft: #f5f0e8;
  --bg-warm: #f0e9db;

  /* === Texte === */
  --text: #1a1f2e;
  --text-muted: #5a5e6b;
  --text-soft: #8a8e9a;

  /* === Bordures === */
  --border: #e0d8cc;
  --border-soft: #ece6da;

  /* === Ombres === */
  --shadow-sm: 0 1px 2px rgba(12,42,91,0.05), 0 1px 3px rgba(12,42,91,0.07);
  --shadow-md: 0 4px 6px -1px rgba(12,42,91,0.07), 0 10px 15px -3px rgba(12,42,91,0.09);
  --shadow-lg: 0 20px 40px -12px rgba(12,42,91,0.18);
  --shadow-xl: 0 30px 60px -15px rgba(12,42,91,0.28);
  --shadow-orange: 0 15px 35px -10px rgba(184,148,90,0.35);
  --shadow-navy: 0 15px 35px -10px rgba(12,42,91,0.35);

  /* === Rayons === */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* === Dégradés === */
  --gradient-orange: linear-gradient(135deg, #c9a76e 0%, #b8945a 50%, #9a7540 100%);
  --gradient-navy: linear-gradient(135deg, #163569 0%, #0c2a5b 50%, #081d40 100%);

  /* === Transitions === */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-optical-sizing: auto;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-orange);
  z-index: 101;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(184,148,90,0.4);
}

.topbar { background: var(--gradient-navy); height: 4px; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-soft);
  transition: padding 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}

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

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

.logo-img {
  height: 54px;
  width: auto;
  transition: transform 0.4s ease;
}
.logo:hover .logo-img { transform: scale(1.04); }

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 100px;
  transition: all 0.3s;
}

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

.nav-menu a.active {
  color: var(--orange);
  background: rgba(184,148,90,0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 11px;
  border-radius: 100px;
  color: var(--text-muted);
  transition: all 0.25s;
  font-family: inherit;
  font-weight: inherit;
}
.lang-switch button.on {
  background: var(--navy);
  color: #fff;
}

.cta-nav {
  background: var(--navy);
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s;
  white-space: nowrap;
}
.cta-nav:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbf8f2;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
}

/* ===== HERO (homepage) - MODERNIZED ===== */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(12,42,91,0.85) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(184,148,90,0.18) 0%, transparent 50%),
    linear-gradient(135deg, rgba(12,42,91,0.88) 0%, rgba(8,31,69,0.94) 100%),
    url('logousc.jpg');
  background-size: auto, auto, auto, 800px;
  background-position: center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed;
}

/* Grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Bottom fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

/* Floating decorative shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}

.hero-shape.s1 {
  width: 300px; height: 300px;
  background: var(--orange);
  top: -100px; right: -50px;
  animation: float 14s ease-in-out infinite;
}

.hero-shape.s2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  bottom: -150px; left: -100px;
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.contact-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.pill {
  padding: 13px 22px;
  border-radius: 100px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
}
.pill i { opacity: 0.85; }
.pill.glass { background: rgba(255,255,255,0.1); }
.pill.glass:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.pill.accent {
  background: var(--gradient-orange);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(184,148,90,0.45);
}
.pill.accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(184,148,90,0.6);
}

.hero-content {
  text-align: center;
  max-width: 960px;
  padding: 0 20px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-badge .dot {
  width: 24px; height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: 0 0 0 0 rgba(184,148,90,0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(184,148,90,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(184,148,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,148,90,0); }
}

.hero-content h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 28px;
}

.hero-content h1 .accent {
  background: linear-gradient(135deg, #ff9d6e 0%, #b8945a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  display: inline-block;
  position: relative;
}

/* Underline decoration */
.hero-content h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 1.2s var(--ease-smooth) 0.6s forwards;
}

@keyframes draw-line {
  to { transform: scaleX(1); }
}

.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* Hero CTAs */
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
}

.btn-hero.primary {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(184,148,90,0.45);
}
.btn-hero.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(184,148,90,0.6);
}

.btn-hero.ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-hero.ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  z-index: 2;
  animation: bounce 2.5s infinite;
}
.scroll-hint svg { width: 14px; height: 14px; }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  position: relative;
  padding: 110px 24px 90px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(12,42,91,0.9) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(184,148,90,0.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(12,42,91,0.92) 0%, rgba(8,31,69,0.96) 100%),
    url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.page-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.page-banner-badge .d {
  width: 18px; height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
}

.page-banner h1 {
  font-size: clamp(38px, 6vw, 58px);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--orange); }
.breadcrumb .current { color: #fff; }

/* ===== SECTIONS ===== */
.section { padding: 110px 24px; position: relative; }
.container { max-width: 1180px; margin: 0 auto; }

.section-label { text-align: center; margin-bottom: 60px; }

.section-label .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cyan-soft);
  color: #0d7c94;
  border-radius: 100px;
  font-size: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label .tag .sq {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 1px;
  transform: rotate(45deg);
}

.section-label h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.section-label h2 .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.section-label p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 580px;
  margin: 18px auto 0;
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-choose { background: var(--bg); }

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

.why-card {
  background: #fbf8f2;
  border: 1px solid var(--border-soft);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
}
.why-card:hover::before { transform: scaleX(1); }

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.why-icon {
  width: 56px; height: 56px;
  background: var(--gradient-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-orange);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(-4deg); }

.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.about { background: var(--bg); padding-top: 60px; }

.about-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
  max-width: 440px;
}

.about-main-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background-image: url('https://images.unsplash.com/photo-1577416413088-35c7b5b5a3dc?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
}

.about-main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,42,91,0.25));
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-orange);
  font-family: 'Space Grotesk', sans-serif;
  border: 4px solid #fff;
}
.about-badge .yr { font-size: 52px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.about-badge .yr-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-badge-decor {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px; height: 80px;
  border: 1px dashed var(--cyan);
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate 30s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.about-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cyan-soft);
  color: #0d7c94;
  border-radius: 100px;
  font-size: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-text .tag .sq {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 1px;
  transform: rotate(45deg);
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.about-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.about-stat .n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat .n .s { color: var(--orange); }

.about-stat .l { font-size: 12.5px; color: var(--text-muted); }

/* ===== MISSION & VISION (about page) ===== */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.mv-card {
  background: #fbf8f2;
  border: 1px solid var(--border-soft);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.mv-icon {
  width: 52px; height: 52px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 18px;
}

.mv-card h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  position: relative;
}

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

.service-card {
  background: #fbf8f2;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(184,148,90,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(60px, -60px);
  transition: transform 0.6s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  transform: translate(30px, -30px) scale(1.2);
}

.service-icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--gradient-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-orange);
  flex-shrink: 0;
}

.service-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  margin-bottom: 22px;
  line-height: 1.7;
  color: var(--text-muted);
}

.read-more {
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
  position: relative;
}
.read-more::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.read-more:hover { gap: 14px; }
.read-more:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== ISO ===== */
.iso-section { background: #fbf8f2; padding: 80px 24px; }

.iso-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
}

.iso-main { display: flex; justify-content: center; margin-bottom: 40px; }
.iso-main-logo { display: flex; align-items: center; gap: 16px; }

.iso-main-logo .iso-box {
  background: var(--navy);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 30px;
  padding: 10px 20px;
  border-radius: 8px;
}

.iso-main-logo .iso-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.35;
  font-weight: 500;
}

.iso-divider {
  max-width: 500px;
  margin: 0 auto 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.iso-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.iso-badge {
  background: #fbf8f2;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}

.iso-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.iso-badge .circle {
  width: 70px; height: 70px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.iso-badge.b-blue .circle { background: radial-gradient(circle at 30% 30%, #5b9bd5, #1f4e79); }
.iso-badge.b-green .circle { background: radial-gradient(circle at 30% 30%, #52b788, #1b5e2f); }
.iso-badge.b-red .circle { background: radial-gradient(circle at 30% 30%, #e76f51, #8b1e1e); }

.iso-badge .lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}

.iso-badge .sub {
  font-size: 10.5px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ===== PARTNERS ===== */
.partners { padding: 80px 24px 110px; background: #fbf8f2; }

.partners-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}

.partner-logo {
  padding: 20px;
  border-radius: var(--radius);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  background: #fbf8f2;
  box-shadow: var(--shadow-sm);
}

.partner-logo svg {
  width: 100%;
  max-height: 110px;
  transition: transform 0.3s;
}
.partner-logo:hover svg { transform: scale(1.03); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ===== MAP ===== */
.map-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 80px 24px;
  text-align: center;
}

.map-section h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.map-section > p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.map-frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  position: relative;
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fbf8f2;
  padding: 10px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  z-index: 5;
}
.map-badge i { color: var(--orange); }

/* ===== CONTACT CARDS ===== */
.contact-section { padding: 90px 24px; background: var(--bg); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: #fbf8f2;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.contact-card-body {
  padding: 40px 28px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 28px;
  margin: 0 auto 24px;
  position: relative;
  transition: all 0.4s;
}

.contact-card:hover .contact-icon {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transform: scale(1.05);
}

.contact-card h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-card .lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.contact-card .lines a,
.contact-card .lines span {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
  line-height: 1.6;
}

.contact-card .lines a:hover { color: var(--orange); }

.contact-action {
  display: block;
  padding: 15px 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: all 0.3s;
  letter-spacing: 0.01em;
}

.contact-action:hover {
  background: var(--navy);
  color: #fff;
}

.contact-action i { margin-right: 7px; }

.full-map {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 90px 24px 110px;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,42,91,0) 0%, rgba(12,42,91,0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item .zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,18,48,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox .close-lb {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.lightbox .close-lb:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

/* ===== FOOTER ===== */
footer {
  background:
    linear-gradient(135deg, rgba(5,18,48,0.96) 0%, rgba(8,31,69,0.96) 100%),
    url('https://images.unsplash.com/photo-1523575708161-ad0fc2a9b951?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  color: #c7d2e0;
  padding: 80px 24px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto 50px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.foot-logo-img {
  height: 60px;
  width: auto;
  background: #fbf8f2;
  padding: 6px;
  border-radius: 8px;
}

.footer-about p {
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 26px;
  color: #b6c3d4;
}

.socials { display: flex; gap: 10px; }

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.footer-col h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 13.5px;
}

.footer-col ul li a {
  color: #b6c3d4;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.hours p {
  font-size: 13.5px;
  line-height: 1.9;
  color: #b6c3d4;
  margin-bottom: 4px;
}

.hours .highlight {
  color: #fff;
  font-weight: 600;
  margin-top: 16px;
  display: block;
  font-family: 'Space Grotesk', sans-serif;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 40px -24px 0;
  padding: 22px 24px;
  text-align: center;
  font-size: 12.5px;
  color: #a5b1c2;
  background: rgba(0,0,0,0.2);
}

.copyright a { color: var(--orange); font-weight: 600; }

/* ===== HOURS STATUS BANNER ===== */
.hours-status {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 16px 24px;
  background: #fbf8f2;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.hours-status .hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 currentColor;
}

.hours-status.open .hs-dot {
  background: #22c55e;
  color: #22c55e;
  animation: hs-pulse 2s infinite;
}
.hours-status.closed .hs-dot { background: #ef4444; color: #ef4444; }
.hours-status.weekend .hs-dot { background: #f59e0b; color: #f59e0b; }

@keyframes hs-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hours-status .hs-status {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.hours-status .hs-detail {
  font-size: 13px;
  color: var(--text-muted);
}

.hours-status .hs-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ===== CONTACT CARDS 4 COLUMNS ===== */
.contact-cards.four {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}

.contact-card.wa {
  background: linear-gradient(135deg, rgba(37,211,102,0.06) 0%, #fff 60%);
}

.contact-card.wa .contact-icon {
  background: rgba(37,211,102,0.12);
  color: #25D366;
}

.contact-card.wa:hover .contact-icon {
  background: linear-gradient(135deg, #25D366, #1fba57);
  color: #fff;
  box-shadow: 0 15px 35px -10px rgba(37,211,102,0.5);
}

.contact-card.wa:hover { border-color: #25D366; }

.contact-card.wa .contact-action:hover {
  background: #25D366;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 90px 24px 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.contact-form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: #fbf8f2;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 36px;
}

.contact-form-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.contact-form-header h2 .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.contact-form-header p {
  color: var(--text-muted);
  font-size: 14.5px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-field label .req { color: var(--orange); }

.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg-soft);
  transition: all 0.25s;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Inter', sans-serif;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: #fbf8f2;
  box-shadow: 0 0 0 3px rgba(184,148,90,0.08);
}

.form-field input.error,
.form-field textarea.error {
  border-color: #ef4444;
  background: rgba(239,68,68,0.04);
}

.form-field .hint {
  font-size: 11.5px;
  color: var(--text-soft);
  margin-top: 2px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.radio-opt {
  position: relative;
  display: block;
}
.radio-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-opt .r-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-soft);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.radio-opt .r-label::before {
  content: '';
  width: 14px; height: 14px;
  border: 1.5px solid var(--text-soft);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s;
}
.radio-opt input:checked + .r-label {
  border-color: var(--orange);
  background: var(--bg-warm);
  color: var(--navy);
  font-weight: 500;
}
.radio-opt input:checked + .r-label::before {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
}
.radio-opt .r-label.urgent {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}
.radio-opt input:checked + .r-label.urgent {
  border-color: #ef4444;
  background: #fef2f2;
}
.radio-opt input:checked + .r-label.urgent::before {
  border-color: #ef4444;
  background: #ef4444;
}

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

.form-submit {
  margin-top: 24px;
  width: 100%;
  padding: 16px 28px;
  background: var(--gradient-navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover:not(:disabled) {
  background: var(--gradient-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.form-submit .spin {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.form-submit.loading .spin { display: inline-block; }
.form-submit.loading .submit-label { opacity: 0.7; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-msg {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
  align-items: flex-start;
  gap: 10px;
}
.form-msg.show { display: flex; }
.form-msg.success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
}
.form-msg.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}
.form-msg i { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ===== GALLERY FILTERS ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter {
  background: #fbf8f2;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-filter .count {
  background: var(--bg-soft);
  color: var(--text-soft);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s;
}

.gallery-filter:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.gallery-filter.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.gallery-filter.active .count {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Gallery item with caption + category */
.gallery-item.hidden {
  display: none;
}

.gallery-item .g-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.gallery-item:hover .g-caption {
  opacity: 1;
  transform: translateY(0);
}

.g-caption .g-cat {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.g-caption .g-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* Lightbox navigation arrows */
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.lightbox .lb-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}
.lightbox .lb-prev { left: 30px; }
.lightbox .lb-next { right: 30px; }

.lightbox .lb-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  max-width: 80%;
  text-align: center;
}

/* ===== STATS BAR (modern counters section) ===== */
.stats-bar {
  padding: 70px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -10%;
  width: 120%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan) 30%, var(--orange) 70%, transparent);
  opacity: 0.3;
}

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

.stat-item {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--border);
}

.stat-number {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 5.5vw, 62px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number .suffix {
  font-size: 0.5em;
  color: var(--orange);
  font-weight: 600;
  font-style: italic;
  margin-left: 2px;
}

.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 110px 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(78,201,228,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-smooth);
}

.testimonial-slide {
  min-width: 100%;
  padding: 50px 60px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  text-align: center;
}

.testimonial-quote-icon {
  width: 56px; height: 56px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-orange);
}

.testimonial-text {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}

.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fbf8f2;
  border: 1px solid var(--border);
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin: 0 8px;
}

.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  padding: 110px 24px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fbf8f2;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  transition: color 0.3s;
}

.faq-item.open .faq-question {
  color: var(--orange);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
  color: var(--navy);
  font-size: 12px;
}

.faq-item.open .faq-icon {
  background: var(--gradient-orange);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 26px 24px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all 0.4s var(--ease-smooth);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-orange);
}

/* ===== SERVICES DETAILED (services page) ===== */
.services-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-detailed {
  background: #fbf8f2;
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.service-detailed::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(184,148,90,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50px, -50px);
  transition: transform 0.6s ease;
}

.service-detailed:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.service-detailed:hover::before { transform: translate(20px, -20px) scale(1.2); }

.service-detailed-icon {
  width: 56px; height: 56px;
  background: var(--gradient-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-orange);
  flex-shrink: 0;
}

.service-detailed-body { flex: 1; }

.service-detailed h3 {
  font-size: 19px;
  color: var(--navy);
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
}

.service-detailed p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding: 80px 24px 110px;
  background: var(--bg);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
  letter-spacing: -0.01em;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 14px 0 20px 20px;
  padding: 0;
}

.legal-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--orange);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.legal-content a:hover { border-bottom-color: var(--orange); }

.legal-content strong { color: var(--navy); font-weight: 600; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 100px;
  max-width: 600px;
  margin-right: auto;
  background: #fbf8f2;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  z-index: 998;
  transform: translateY(200%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-icon {
  width: 42px; height: 42px;
  background: var(--bg-warm);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cookie-content p {
  flex: 1;
  min-width: 240px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-link {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.3s;
}
.cookie-link:hover { color: var(--orange); }

.cookie-accept {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-accept:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.cookie-refuse {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-refuse:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .cta-nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 16px; right: 16px;
    background: #fbf8f2;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
  }
  .nav-menu.open li { padding: 4px 0; width: 100%; }
  .nav-menu.open a { display: block; width: 100%; }

  .why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-wrapper { grid-template-columns: 1fr; gap: 70px; }
  .about-visual { max-width: 380px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .iso-badges { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .partners-track { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-cards.four { grid-template-columns: 1fr 1fr; max-width: 600px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-vision { grid-template-columns: 1fr; }
  .services-detailed { grid-template-columns: 1fr; }
  .cookie-banner { right: 20px; bottom: 90px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 14px; }
  .contact-form-wrapper { padding: 36px 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { border-bottom: 1px solid var(--border-soft); padding-bottom: 20px; }
  .stat-item:nth-child(odd)::after { display: block; right: -8px; }
  .testimonial-slide { padding: 40px 32px; }
  .hero { background-attachment: scroll; }
  .section { padding: 70px 24px; }
}

@media (max-width: 560px) {
  .hero { padding: 24px 16px 80px; min-height: 620px; }
  .contact-pills { gap: 8px; margin-bottom: 60px; }
  .pill { padding: 11px 16px; font-size: 12.5px; }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 15px; }
  .nav-container { padding: 0 16px; gap: 10px; }
  .logo-img { height: 44px; }
  .lang-switch { font-size: 11px; }
  .lang-switch button { padding: 5px 9px; }
  .about-badge { width: 120px; height: 120px; bottom: -16px; right: -16px; }
  .about-badge .yr { font-size: 38px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .iso-wrapper { padding: 32px 20px; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .page-banner { padding: 80px 20px 70px; }
  .service-detailed { flex-direction: column; gap: 16px; padding: 28px 24px; }
  .cookie-banner {
    bottom: 80px;
    left: 12px;
    right: 12px;
    padding: 14px 16px;
  }
  .cookie-content { gap: 12px; }
  .cookie-icon { width: 36px; height: 36px; font-size: 15px; }
  .cookie-content p { font-size: 12px; min-width: 100%; }
  .cookie-actions { width: 100%; justify-content: space-between; }
  .legal-content h2 { font-size: 19px; }
  .legal-content p, .legal-content ul li { font-size: 14px; }
  .contact-cards.four { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; border-radius: var(--radius); }
  .gallery-filters { gap: 6px; }
  .gallery-filter { padding: 8px 14px; font-size: 12px; }
  .hours-status { border-radius: var(--radius); padding: 12px 16px; font-size: 13px; gap: 8px; }
  .hours-status .hs-sep { display: none; }
  .lightbox .lb-nav { width: 40px; height: 40px; font-size: 15px; }
  .lightbox .lb-prev { left: 12px; }
  .lightbox .lb-next { right: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-item { padding: 8px 12px; }
  .stat-item::after { display: none !important; }
  .testimonial-slide { padding: 32px 24px; }
  .testimonial-text { font-size: 18px; }
  .faq-question { padding: 18px 20px; font-size: 14.5px; }
  .faq-answer-inner { padding: 0 20px 20px; font-size: 13.5px; }
  .back-to-top { bottom: 80px; right: 16px; width: 42px; height: 42px; }
  .hero-cta { flex-direction: column; }
  .btn-hero { justify-content: center; }
}

/* ==========================================================
   USC THOUMAS — AJOUTS CSS V3 (à coller À LA FIN de styles.css)
   Charte graphique : #9B2335 (bordeaux) + #3D2B5E (violet) + #FFFFFF
   v3 : vrais logos partenaires + filtre bleu + map fonctionnelle
   ========================================================== */

/* === Override des couleurs principales === */
:root {
  --navy: #3D2B5E;
  --navy-2: #4d3873;
  --navy-dark: #2a1d44;
  --navy-ink: #1a1230;
  --orange: #9B2335;
  --orange-2: #b32a3f;
  --orange-deep: #7d1a2a;
  --gradient-navy: linear-gradient(135deg, #4d3873 0%, #3D2B5E 50%, #2a1d44 100%);
  --gradient-orange: linear-gradient(135deg, #b32a3f 0%, #9B2335 50%, #7d1a2a 100%);
}

/* ===== TOPBAR (téléphone + email) ===== */
.topbar {
  background: var(--gradient-navy);
  height: auto;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.topbar-link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: opacity 0.2s ease;
}
.topbar-link:hover { opacity: 0.8; }
.topbar-link i {
  color: var(--orange-2);
  font-size: 12px;
}

/* ===== NAVBAR : logo plus grand ===== */
.logo-img { height: 70px !important; }
.navbar.scrolled .logo-img { height: 56px !important; }

/* ===== HERO SPLIT (nouveau design) ===== */
.hero.hero-split {
  min-height: 600px;
  padding: 70px 24px 100px;
  background:
    radial-gradient(ellipse at top right, rgba(155,35,53,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(155,35,53,0.10) 0%, transparent 55%),
    linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  background-attachment: scroll;
  display: flex;
  align-items: center;
}

.hero-split-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content-left .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-content-left .hero-badge .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(155,35,53,0.6);
}
.hero-content-left .hero-badge span:last-child {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.hero-content-left h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.hero-content-left h1 .accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.hero-content-left p {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 540px;
}

/* Stats inline (boutons supprimés) */
.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hs-item {
  flex: 1;
  text-align: left;
}
.hs-item:first-child { padding-right: 18px; }
.hs-item:last-child { padding-left: 18px; }
.hs-item:not(:first-child):not(:last-child) { padding: 0 18px; }
.hs-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.18);
}
.hs-number {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.hs-plus {
  color: var(--orange);
  margin-left: 2px;
}
.hs-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  font-weight: 500;
}

/* Logo à droite du hero */
.hero-content-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,35,53,0.4) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.9; }
}
.hero-logo-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)) brightness(1.05);
  mix-blend-mode: lighten;
}

@media (max-width: 900px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content-left p { margin-left: auto; margin-right: auto; }
  .hero-content-left .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-stats-inline { justify-content: center; }
  .hero-content-right { order: -1; }
  .hero-logo-img { max-width: 240px; }
  .hero-logo-glow { width: 280px; height: 280px; }
}

@media (max-width: 600px) {
  .hero-stats-inline { flex-wrap: wrap; gap: 16px; }
  .hs-item { min-width: 40%; padding: 0 !important; text-align: center; }
  .hs-divider { display: none; }
  .topbar-container { gap: 14px; padding: 0 16px; }
  .topbar-link { font-size: 12px; }
}

/* ===== PARTENAIRES — Vrais logos en BLEU + DEFILEMENT INFINI ===== */
.partners {
  padding: 80px 0 110px;
  background: #fbf8f2;
  overflow: hidden;
}
.partners .section-label { padding: 0 24px; }

/* ===== MAP ===== */
.map-section {
  padding: 60px 24px 100px;
  text-align: center;
  background: #fff;
}
.map-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 12px;
}
.map-section p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.map-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(61,43,94,0.3);
  border: 1px solid rgba(61,43,94,0.1);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--gradient-orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(155,35,53,0.35);
}
.map-badge i {
  font-size: 14px;
}

@media (max-width: 600px) {
  .map-frame { height: 350px; }
  .map-badge { font-size: 11px; padding: 8px 14px; }
}

/* ===== FOOTER — version épurée ===== */
.footer-about p { display: none; }
.footer-col.hours .highlight { display: none; }
.footer-col.hours .highlight + p { display: none; }

/* ==========================================================
   WHY CHOOSE — SPLIT EDITORIAL (V3.1)
   ========================================================== */

.why-choose {
  padding: 90px 24px !important;
}

/* Cache les anciens styles de cartes verticales */
.why-choose .why-grid { display: none !important; }
.why-choose .section-label { display: none !important; }

.why-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

/* Côté gauche : titre + visuel */
.why-split-left .tag { margin-bottom: 18px; }
.why-split-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.15;
  color: var(--navy);
}
.why-split-left > p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 440px;
}

.why-split-visual {
  position: relative;
  height: 200px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -15px rgba(61,43,94,0.4);
}
.why-visual-deco {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #9B2335;
  opacity: 0.3;
}
.why-split-visual::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #9B2335;
  opacity: 0.15;
}
.why-visual-svg {
  width: 130px;
  height: 130px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

/* Côté droit : 3 piliers interactifs */
.why-split-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 14px;
  background: #fbf8f2;
  border-left: 4px solid #9B2335;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-item-num {
  font-family: 'Bricolage Grotesque', 'Georgia', serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(155,35,53,0.4);
  line-height: 1;
  min-width: 60px;
  font-style: italic;
  transition: color 0.4s ease;
}

.why-item-body { flex: 1; }
.why-item-body h3 {
  color: #3D2B5E;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  transition: color 0.4s ease;
}
.why-item-body p {
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  transition: color 0.4s ease;
}

.why-item-arrow {
  color: #9B2335;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: color 0.4s ease, transform 0.4s ease;
}

/* État actif (par défaut sur le 2ème + au hover) */
.why-item.active {
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  border-left-color: #9B2335;
  transform: translateX(8px);
  box-shadow: 0 16px 35px -10px rgba(61,43,94,0.45);
}
.why-item.active .why-item-num {
  color: rgba(255,255,255,0.4);
}
.why-item.active .why-item-body h3 {
  color: #FFFFFF;
}
.why-item.active .why-item-body p {
  color: rgba(255,255,255,0.78);
}
.why-item.active .why-item-arrow {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 980px) {
  .why-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-split-left > p { max-width: 100%; }
  .why-split-visual { height: 170px; }
}

@media (max-width: 600px) {
  .why-choose { padding: 60px 20px !important; }
  .why-split-grid { gap: 32px; }
  .why-item { padding: 18px 18px; gap: 14px; }
  .why-item-num { font-size: 38px; min-width: 46px; }
  .why-item-body h3 { font-size: 16px; }
  .why-item-body p { font-size: 13px; }
  .why-item.active { transform: translateX(0); }
}

/* ==========================================================
   ABOUT — MOSAÏQUE FLOTTANTE (V3.2)
   ========================================================== */

.about.about-mosaic {
  padding: 100px 24px;
}

/* Cache l'ancienne structure */
.about.about-mosaic .about-wrapper { display: none !important; }

.about-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

/* === CÔTÉ TEXTE === */
.about-mosaic-text .tag { margin-bottom: 18px; }
.about-mosaic-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 22px;
  line-height: 1.15;
  color: var(--navy);
}
.about-mosaic-text p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.about-mosaic-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  transition: gap 0.3s ease, transform 0.3s ease;
}
.about-mosaic-link:hover {
  gap: 14px;
  transform: translateX(2px);
}
.about-mosaic-link i { font-size: 12px; }

/* === CÔTÉ MOSAÏQUE === */
.about-mosaic-visual {
  position: relative;
  height: 480px;
}

.mosaic-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  box-shadow: 0 20px 45px -12px rgba(0,0,0,0.22);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

/* Carte 1 : Port de Dakar (haut-gauche) */
.mosaic-port {
  top: 0;
  left: 30px;
  width: 220px;
  height: 160px;
  background: linear-gradient(135deg, #3D2B5E 0%, #5d4683 100%);
  flex-direction: column;
  color: #fff;
  text-align: center;
  gap: 12px;
}
.mosaic-port i {
  font-size: 44px;
}
.mosaic-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.95;
}

/* Carte 2 : Cercle 58 ANS (haut-droite) */
.mosaic-years {
  top: 40px;
  right: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b32a3f 0%, #9B2335 50%, #7d1a2a 100%);
  flex-direction: column;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(155,35,53,0.5);
}
.mosaic-num {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}
.mosaic-num-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  opacity: 0.95;
  margin-top: 6px;
  font-weight: 600;
}

/* Carte 3 : Boussole rotative (bas-gauche) */
.mosaic-compass {
  bottom: 30px;
  left: 80px;
  width: 150px;
  height: 150px;
  background: #fff;
  border: 2px solid var(--orange);
  box-shadow: 0 20px 40px -10px rgba(155,35,53,0.2);
}
.mosaic-compass .compass-svg {
  width: 90px;
  height: 90px;
  animation: compass-rotate 30s linear infinite;
  transform-origin: center;
}

/* Carte 4 : ISO (bas-droite) */
.mosaic-iso {
  bottom: 0;
  right: 40px;
  width: 220px;
  height: 120px;
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.mosaic-iso-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.mosaic-iso-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  opacity: 0.9;
  margin-top: 8px;
  font-weight: 500;
}

/* === KEYFRAMES === */

/* Entrées directionnelles */
@keyframes mosaic-enter-tl {
  from { opacity: 0; transform: translate(-28px, -20px) scale(0.92); }
  to   { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes mosaic-enter-tr {
  from { opacity: 0; transform: translate(28px, -20px) scale(0.92); }
  to   { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes mosaic-enter-br {
  from { opacity: 0; transform: translate(20px, 28px) scale(0.92); }
  to   { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* Floats enrichis — légère rotation en plus */
/* Floats de secours (mobile) */
@keyframes mosaic-float-port {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes mosaic-float-years {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px) scale(1.02); }
}
@keyframes mosaic-float-iso {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

/* ── Orbite triangulaire : chaque carte visite les positions des deux autres ──
   Port  : P1 → P2 → P3 → P1
   Years : P2 → P3 → P1 → P2
   ISO   : P3 → P1 → P2 → P3
   Durée = 12 s, timing linéaire global + ease-in-out par segment             */

@keyframes mosaic-orbit-port {
  0%   { transform: translate(0, 0);           animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  33%  { transform: translate(360px, 50px);    animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  66%  { transform: translate(300px, 340px);   animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  100% { transform: translate(0, 0); }
}
@keyframes mosaic-orbit-years {
  0%   { transform: translate(0, 0);            animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  33%  { transform: translate(-60px, 290px);    animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  66%  { transform: translate(-360px, -50px);   animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  100% { transform: translate(0, 0); }
}
@keyframes mosaic-orbit-iso {
  0%   { transform: translate(0, 0);            animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  33%  { transform: translate(-300px, -340px);  animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  66%  { transform: translate(60px, -290px);    animation-timing-function: cubic-bezier(0.42,0,0.58,1); }
  100% { transform: translate(0, 0); }
}

/* Ancre qui se balance */
@keyframes anchor-rock {
  0%, 100% { transform: rotate(0deg); }
  20%       { transform: rotate(-12deg); }
  50%       { transform: rotate(10deg); }
  75%       { transform: rotate(-6deg); }
}

/* Anneau pulsant sur le cercle années */
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Shimmer sur la carte ISO */
@keyframes iso-shimmer {
  0%   { left: -110%; }
  45%  { left: 140%; }
  100% { left: 140%; }
}

@keyframes compass-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* === ÉTAT INITIAL : cartes cachées avant reveal === */
.about-mosaic-visual .mosaic-card {
  opacity: 0;
}
/* Désactivation du float-anim générique dans cette section */
.about-mosaic-visual .float-anim {
  animation: none;
}

/* === ENTRÉE + ORBITE (déclenché par .visible) — desktop === */
.about-mosaic-visual.visible .mosaic-port {
  animation:
    mosaic-enter-tl   0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
    mosaic-orbit-port 12s  linear                           1.0s infinite;
}
.about-mosaic-visual.visible .mosaic-years {
  animation:
    mosaic-enter-tr    0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both,
    mosaic-orbit-years 12s  linear                           1.0s infinite;
}
.about-mosaic-visual.visible .mosaic-iso {
  animation:
    mosaic-enter-br  0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both,
    mosaic-orbit-iso 12s  linear                            1.0s infinite;
}

/* === FALLBACK MOBILE : float simple (orbite trop large sur petit écran) === */
@media (max-width: 980px) {
  .about-mosaic-visual.visible .mosaic-port {
    animation:
      mosaic-enter-tl   0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s  both,
      mosaic-float-port 5s   ease-in-out                      0.85s infinite;
  }
  .about-mosaic-visual.visible .mosaic-years {
    animation:
      mosaic-enter-tr    0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s  both,
      mosaic-float-years 5.8s ease-in-out                      1.05s infinite;
  }
  .about-mosaic-visual.visible .mosaic-iso {
    animation:
      mosaic-enter-br  0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s  both,
      mosaic-float-iso 5.2s ease-in-out                      1.25s infinite;
  }
}

/* === ANIMATIONS CONTINUES SUR ÉLÉMENTS INTÉRIEURS === */

/* Ancre : balancement en boucle */
.mosaic-port i {
  font-size: 44px;
  display: inline-block;
  animation: anchor-rock 4s ease-in-out 2s infinite;
  transform-origin: top center;
}

/* Anneau pulsant autour du cercle années */
.mosaic-years::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(155, 35, 53, 0.6);
  animation: pulse-ring 2.8s ease-out 1.5s infinite;
  pointer-events: none;
}

/* Shimmer périodique sur la carte ISO */
.mosaic-iso {
  overflow: hidden;
}
.mosaic-iso::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  animation: iso-shimmer 5s ease-in-out 2s infinite;
  pointer-events: none;
}

/* === HOVER === */
.about-mosaic-visual:hover .mosaic-port,
.about-mosaic-visual:hover .mosaic-years,
.about-mosaic-visual:hover .mosaic-iso {
  animation-play-state: paused;
}
.about-mosaic-visual:hover .mosaic-port i {
  animation-play-state: paused;
}
.mosaic-card:hover { z-index: 10; }
.mosaic-port:hover {
  transform: scale(1.06) rotate(-2deg) !important;
  box-shadow: 0 30px 60px -12px rgba(61,43,94,0.4);
}
.mosaic-years:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 35px 60px -12px rgba(155,35,53,0.6);
}
.mosaic-iso:hover {
  transform: scale(1.06) rotate(2deg) !important;
  box-shadow: 0 30px 60px -12px rgba(61,43,94,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .about-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-mosaic-visual {
    height: 420px;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .about.about-mosaic { padding: 60px 20px; }
  .about-mosaic-visual { height: 380px; }
  .mosaic-port {
    width: 170px;
    height: 130px;
    left: 10px;
  }
  .mosaic-port i { font-size: 36px; }
  .mosaic-years {
    width: 145px;
    height: 145px;
    top: 25px;
  }
  .mosaic-num { font-size: 48px; }
  .mosaic-num-label { font-size: 10px; }
  .mosaic-compass {
    width: 115px;
    height: 115px;
    left: 30px;
    bottom: 20px;
  }
  .mosaic-compass .compass-svg { width: 65px; height: 65px; }
  .mosaic-iso {
    width: 170px;
    height: 100px;
    right: 10px;
  }
  .mosaic-iso-title { font-size: 28px; }
  .mosaic-iso-sub { font-size: 9px; }
}

/* ==========================================================
   SERVICES — MIX A+B (V3.3) — 50/50 cartes égales
   ========================================================== */

.services.services-mix .services-grid { display: none !important; }
.services.services-mix { padding: 90px 24px; }

.services-mix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 50px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.svc-mix-card {
  position: relative;
  border-radius: 22px;
  padding: 34px 32px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-mix-card:hover {
  transform: translateY(-10px);
}

/* === PRINCIPAL : Avitaillement === */
.svc-primary {
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  color: #FFFFFF;
  box-shadow: 0 20px 50px -15px rgba(61, 43, 94, 0.4);
}
.svc-primary:hover {
  box-shadow: 0 35px 65px -15px rgba(61, 43, 94, 0.55);
}
.svc-primary .svc-deco-circle {
  position: absolute;
  border-radius: 50%;
  background: #9B2335;
  pointer-events: none;
}
.svc-primary .deco-1 {
  top: -80px;
  right: -70px;
  width: 280px;
  height: 280px;
  opacity: 0.22;
}
.svc-primary .deco-2 {
  bottom: -130px;
  left: -80px;
  width: 300px;
  height: 300px;
  opacity: 0.12;
}
.svc-primary .svc-watermark {
  position: absolute;
  top: 12px;
  right: 26px;
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-size: 220px;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.07);
  line-height: 0.85;
  pointer-events: none;
  letter-spacing: -0.05em;
}

/* === SECONDAIRE : Équipement === */
.svc-secondary {
  background: #FFFFFF;
  color: var(--navy);
  border-top: 5px solid #9B2335;
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.1);
}
.svc-secondary:hover {
  box-shadow: 0 30px 60px -15px rgba(155, 35, 53, 0.25);
}
.svc-secondary .svc-watermark {
  position: absolute;
  top: 26px;
  right: 14px;
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-size: 200px;
  font-weight: 800;
  font-style: italic;
  color: rgba(155, 35, 53, 0.07);
  line-height: 0.85;
  pointer-events: none;
  letter-spacing: -0.05em;
}

/* === Contenu commun === */
.svc-content {
  position: relative;
  z-index: 2;
}

.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  font-weight: 700;
  margin-bottom: 22px;
}
.svc-badge-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}
.svc-star {
  color: #9B2335;
  background: #FFFFFF;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0;
}
.svc-badge-secondary {
  background: rgba(155, 35, 53, 0.1);
  color: #9B2335;
}

.svc-mix-card h3 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.svc-primary h3 { color: #FFFFFF; }
.svc-secondary h3 { color: var(--navy); }

.svc-mix-card p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}
.svc-primary p { color: rgba(255, 255, 255, 0.85); }
.svc-secondary p { color: var(--text-muted); }

.svc-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  margin-top: 22px;
}
.svc-primary .svc-footer { border-top: 1px solid rgba(255, 255, 255, 0.2); }
.svc-secondary .svc-footer { border-top: 1px solid #ece6da; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
}
.svc-primary .svc-link { color: #FFFFFF; }
.svc-secondary .svc-link { color: #9B2335; }

@keyframes svc-arrow-pulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
.svc-arrow {
  display: inline-block;
  animation: svc-arrow-pulse 1.8s ease-in-out infinite;
  font-size: 16px;
}

.svc-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.4s ease;
}
.svc-primary .svc-icon-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.svc-secondary .svc-icon-box {
  background: rgba(155, 35, 53, 0.1);
  color: #9B2335;
}
.svc-mix-card:hover .svc-icon-box {
  transform: rotate(-8deg) scale(1.08);
}

/* Responsive */
@media (max-width: 900px) {
  .services.services-mix { padding: 60px 20px; }
  .services-mix-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }
  .svc-mix-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .svc-mix-card h3 { font-size: 24px; }
  .svc-primary .svc-watermark { font-size: 170px; }
  .svc-secondary .svc-watermark { font-size: 150px; }
}

@media (max-width: 480px) {
  .svc-mix-card { padding: 24px 22px; min-height: 280px; }
  .svc-mix-card h3 { font-size: 22px; }
  .svc-mix-card p { font-size: 13px; }
}

/* ==========================================================
   SERVICES MIX — ANIMATIONS RICHES (V3.4)
   ========================================================== */

/* === 1. Watermark qui flotte doucement === */
@keyframes svc-watermark-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1.5deg); }
}
.svc-watermark {
  animation: svc-watermark-float 7s ease-in-out infinite;
}
.svc-secondary .svc-watermark {
  animation-duration: 9s;
  animation-delay: 1s;
}

/* === 2. Cercles décoratifs qui "respirent" (carte principale) === */
@keyframes svc-circle-breathe {
  0%, 100% { transform: scale(1); opacity: var(--start-opacity, 0.22); }
  50% { transform: scale(1.12); opacity: calc(var(--start-opacity, 0.22) + 0.08); }
}
.svc-primary .deco-1 {
  --start-opacity: 0.22;
  animation: svc-circle-breathe 5s ease-in-out infinite;
}
.svc-primary .deco-2 {
  --start-opacity: 0.12;
  animation: svc-circle-breathe 7s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* === 3. Gradient qui se déplace (carte principale) === */
@keyframes svc-gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.svc-primary {
  background: linear-gradient(135deg, #3D2B5E 0%, #4d3873 35%, #3D2B5E 65%, #2a1d44 100%) !important;
  background-size: 250% 250% !important;
  animation: svc-gradient-flow 12s ease-in-out infinite;
}

/* === 4. Effet SHIMMER (lueur qui traverse) au survol === */
.svc-mix-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.13) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 3;
}
.svc-secondary::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(155, 35, 53, 0.08) 50%,
    transparent 100%
  );
}
.svc-mix-card:hover::after {
  left: 150%;
}

/* === 5. Glow bordeaux au survol === */
.svc-primary:hover {
  box-shadow:
    0 35px 65px -15px rgba(61, 43, 94, 0.55),
    0 0 0 1.5px rgba(155, 35, 53, 0.45),
    0 0 50px rgba(155, 35, 53, 0.25) !important;
}
.svc-secondary:hover {
  box-shadow:
    0 30px 60px -15px rgba(155, 35, 53, 0.3),
    0 0 0 1.5px rgba(155, 35, 53, 0.4),
    0 0 40px rgba(155, 35, 53, 0.18) !important;
}

/* === 6. Cascade d'apparition au chargement === */
@keyframes svc-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-content .svc-badge,
.svc-content h3,
.svc-content p,
.svc-mix-card .svc-footer {
  animation: svc-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
/* Carte 1 (PRINCIPAL) : cascade rapide */
.svc-primary .svc-badge { animation-delay: 0.3s; }
.svc-primary h3 { animation-delay: 0.45s; }
.svc-primary p { animation-delay: 0.6s; }
.svc-primary .svc-footer { animation-delay: 0.75s; }

/* Carte 2 (SECONDAIRE) : cascade décalée pour effet "vague" */
.svc-secondary .svc-badge { animation-delay: 0.5s; }
.svc-secondary h3 { animation-delay: 0.65s; }
.svc-secondary p { animation-delay: 0.8s; }
.svc-secondary .svc-footer { animation-delay: 0.95s; }

/* === 7. Étoile ★ qui scintille (carte principale) === */
@keyframes svc-star-twinkle {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}
.svc-star {
  animation: svc-star-twinkle 2.5s ease-in-out infinite;
}

/* === 8. Boîte d'icône qui flotte légèrement === */
@keyframes svc-iconbox-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.svc-icon-box {
  animation: svc-iconbox-float 3.5s ease-in-out infinite;
}
.svc-secondary .svc-icon-box {
  animation-delay: 0.8s;
}
/* Au survol : on stoppe le flottement et on tourne l'icône */
.svc-mix-card:hover .svc-icon-box {
  animation-play-state: paused;
  transform: rotate(-10deg) scale(1.1) !important;
}

/* Pour le respect des préférences utilisateur (accessibilité) */
@media (prefers-reduced-motion: reduce) {
  .svc-watermark,
  .svc-primary .deco-1,
  .svc-primary .deco-2,
  .svc-primary,
  .svc-star,
  .svc-icon-box,
  .svc-arrow {
    animation: none !important;
  }
}

/* ==========================================================
   CERTIFICATIONS ISO — MARQUEE INFINI (V3.5)
   ========================================================== */

/* ==========================================================
   CERTIFICATIONS ISO — 3 CARTES STATIQUES
   ========================================================== */

.iso-static-section {
  background: #fbf8f2;
  padding: 90px 24px 100px;
}

.iso-static-container {
  max-width: 1240px;
  margin: 0 auto;
}

.iso-static-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.iso-static-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.15;
}
.iso-static-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ---- Grille 3 colonnes (legacy) ---- */
.iso-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ================================================================
   SERVICES — GRILLE 5 CATÉGORIES
   ================================================================ */

.svc5-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 52px auto 0;
}

/* La 1re carte (featured) occupe 2 colonnes */
.svc5-card.svc5-featured {
  grid-column: span 2;
}

.svc5-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 36px 32px 28px;
  border-radius: 20px;
  border: 1.5px solid #e8e2d6;
  background: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.svc5-card:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 40px -12px rgba(184,148,90,.22);
  transform: translateY(-5px);
}

/* Fond légèrement coloré sur featured */
.svc5-featured {
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  border-color: transparent;
}
.svc5-featured:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px -12px rgba(61,43,94,.45);
}

.svc5-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 18px;
}
.svc5-featured .svc5-num { color: rgba(255,255,255,.5); }

.svc5-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
  transition: transform .3s ease;
}
.svc5-card:hover .svc5-icon { transform: rotate(-6deg) scale(1.1); }
.svc5-featured .svc5-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.svc5-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}
.svc5-featured h3 { color: #fff; }

.svc5-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 22px;
  flex: 1;
}
.svc5-featured p { color: rgba(255,255,255,.75); }

.svc5-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  transition: gap .25s ease;
}
.svc5-card:hover .svc5-link { gap: 11px; }
.svc5-featured .svc5-link { color: rgba(255,255,255,.85); }

/* Responsive */
@media (max-width: 900px) {
  .svc5-grid { grid-template-columns: 1fr 1fr; }
  .svc5-card.svc5-featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .svc5-grid { grid-template-columns: 1fr; }
  .svc5-card.svc5-featured { grid-column: span 1; }
}


/* ================================================================
   ISO CERT CARD — Logo officiel + split navy
   ================================================================ */

.iso-cert {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bg-warm);
  box-shadow: 0 24px 64px -24px rgba(12, 42, 91, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 1080px;
  margin: 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.iso-cert:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 72px -24px rgba(12, 42, 91, 0.25), 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- Panneau gauche : logo officiel sur fond navy --- */
.iso-cert-left {
  position: relative;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  overflow: hidden;
  min-height: 280px;
}

.iso-cert-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(184, 148, 90, 0.22), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(184, 148, 90, 0.12), transparent 50%);
  pointer-events: none;
}

.iso-cert-logo-frame {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.iso-cert-logo {
  display: block;
  height: 90px;
  width: auto;
  max-width: 100%;
}

/* Badge "Certification en cours" — épingle en haut à droite du cadre logo */
.iso-cert-status-pill {
  position: absolute;
  top: -10px;
  right: -14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(184, 148, 90, 0.5), 0 0 0 3px var(--navy);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.iso-cert-status-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: iso-pulse 1.8s ease-in-out infinite;
}
@keyframes iso-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* --- Panneau droit : contenu --- */
.iso-cert-right {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.iso-cert-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.iso-cert-title {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 14px;
}

.iso-cert-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 22px;
}

.iso-cert-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.iso-cert-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg-warm);
  color: var(--orange-deep);
  border: 1px solid rgba(184, 148, 90, 0.25);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.iso-cert:hover .iso-cert-pill {
  background: rgba(184, 148, 90, 0.1);
  border-color: rgba(184, 148, 90, 0.4);
}

.iso-cert-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--bg-warm);
  gap: 16px;
  flex-wrap: wrap;
}

.iso-cert-validity {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.iso-cert-bv {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  background: var(--navy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

/* --- Responsive --- */
@media (max-width: 860px) {
  .iso-cert {
    grid-template-columns: 1fr;
  }
  .iso-cert-left {
    padding: 40px 32px;
    min-height: 220px;
  }
  .iso-cert-logo {
    height: 80px;
  }
  .iso-cert-right {
    padding: 32px 28px 36px;
  }
  .iso-cert-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .iso-cert-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .iso-cert-logo {
    height: 70px;
  }
  .iso-cert-logo-frame {
    padding: 18px 22px;
  }
  .iso-cert-status-pill {
    top: -8px;
    right: -8px;
    font-size: 9px;
    padding: 4px 9px;
    letter-spacing: 0.06em;
  }
  .iso-cert-status-pill::before {
    width: 5px;
    height: 5px;
  }
}




/* ==========================================================
   MAP — IMMERSIVE + CARTE FLOTTANTE (V3.7)
   31 Avenue de la République, Dakar
   ========================================================== */

.map-section.map-immersive {
  padding: 80px 24px 100px;
  background: #FFFFFF;
}

/* Header centré */
.map-immersive-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.map-immersive-header .tag {
  display: inline-flex;
  margin-bottom: 14px;
  justify-content: center;
}
.map-immersive-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.15;
}
.map-immersive-header h2 .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.map-immersive-header p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* Frame de la map */
.map-immersive-frame {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  height: 480px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(61, 43, 94, 0.4);
  border: 1px solid rgba(61, 43, 94, 0.08);
}
.map-immersive-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.4s ease;
}
.map-immersive-frame:hover iframe {
  filter: saturate(1);
}

/* Carte flottante (glass-morphism) */
.map-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.map-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 4px;
}
.map-card-eyebrow i {
  font-size: 11px;
}

.map-card-title {
  color: var(--navy);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.map-card-meta {
  color: var(--text-muted);
  font-size: 12.5px;
  margin-top: 4px;
}

.map-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(155, 35, 53, 0.35);
}
.map-card-cta:hover {
  background: var(--orange-deep);
  transform: translateX(4px);
  box-shadow: 0 10px 22px rgba(155, 35, 53, 0.45);
}

/* Effet "ping" autour du pin sur la map (décoratif) */
@keyframes map-pin-ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155, 35, 53, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(155, 35, 53, 0); }
}

/* Responsive */
@media (max-width: 768px) {
  .map-section.map-immersive { padding: 60px 16px 80px; }
  .map-immersive-frame { height: 420px; border-radius: 18px; }
  .map-floating-card {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .map-card-info { text-align: center; }
  .map-card-cta { justify-content: center; }
  .map-card-title { font-size: 16px; }
}

@media (max-width: 480px) {
  .map-immersive-frame { height: 360px; }
}

/* ==========================================================
   FOOTER OPTION 1 — Bannière CTA + 4 colonnes
   Couleurs : navy (--navy) + doré (--orange) du thème
   ========================================================== */

/* Cache l'ancien footer si jamais */
footer:not(.footer-modern) { display: none; }

/* ---- Wrapper ---- */
footer.footer-modern {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 32px 0;
  margin-top: 0;
}

/* Cercles décoratifs flous */
.footer-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.footer-deco-1 {
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(184, 148, 90, 0.25), transparent 65%);
}
.footer-deco-2 {
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(184, 148, 90, 0.15), transparent 65%);
}

.footer-modern-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0;
}

/* ---- 4 colonnes ---- */
.footer-modern-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

/* ---- Colonne brand ---- */
.footer-col-brand .footer-tagline {
  margin: 0 0 18px;
}
.footer-logo-xl {
  display: inline-block;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.footer-logo-xl:hover {
  transform: scale(1.03);
}
.footer-logo-xl img {
  display: block;
  height: 56px;
  width: auto;
}
.footer-tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px;
  max-width: 320px;
}
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-cert {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(184, 148, 90, 0.15);
  color: var(--orange-2);
  border: 1px solid rgba(184, 148, 90, 0.3);
}

/* ---- Section labels ---- */
.footer-section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184, 148, 90, 0.2);
}

/* ---- Navigation ---- */
.footer-pages-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  position: relative;
  padding-left: 0;
  display: inline-block;
}
.footer-link::before {
  content: '→';
  display: inline-block;
  margin-right: 0;
  width: 0;
  opacity: 0;
  color: var(--orange);
  transition: width 0.25s ease, opacity 0.25s ease, margin-right 0.25s ease;
  font-size: 11px;
}
.footer-link:hover {
  color: #fff;
}
.footer-link:hover::before {
  width: 14px;
  opacity: 1;
  margin-right: 4px;
}

/* ---- Contact ---- */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.2s ease;
}
.footer-contact-item:hover {
  color: #fff;
}
.footer-contact-item:hover .footer-contact-icon {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(184, 148, 90, 0.1);
  border: 1px solid rgba(184, 148, 90, 0.25);
  color: var(--orange-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s ease;
}

/* ---- Horaires ---- */
.footer-hours-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.footer-hours-list li:last-child {
  border-bottom: none;
}
.footer-hour-day {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.footer-hour-time {
  color: var(--orange-2);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
}
.footer-hour-note {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin: 0;
  padding-top: 4px;
}

/* ---- Copyright ---- */
.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 22px 0 26px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
}
.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.footer-copyright a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-copyright a:hover {
  color: var(--orange-2);
}
.footer-sep {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .footer-modern-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 36px;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 720px) {
  footer.footer-modern {
    padding: 50px 20px 0;
  }
  .footer-modern-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ==========================================================
   PARTNERS — TICKER DÉFILANT
   ========================================================== */

.partners.partners-ticker {
  padding: 80px 0 90px;
  background: #fbf8f2;
  overflow: hidden;
}

.partners-ticker-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
  padding: 0 24px;
}
.partners-ticker-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.15;
}
.partners-ticker-header p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* Masque avec fondu gauche/droite */
.ticker-mask {
  position: relative;
  overflow: hidden;
}
.ticker-mask::before,
.ticker-mask::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-mask::before {
  left: 0;
  background: linear-gradient(to right, #fbf8f2, transparent);
}
.ticker-mask::after {
  right: 0;
  background: linear-gradient(to left, #fbf8f2, transparent);
}

/* Piste défilante */
.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* Item logo */
.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ede8dc;
  border-radius: 16px;
  padding: 32px 56px;
  height: 180px;
  min-width: 300px;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.ticker-item:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 36px -8px rgba(184, 148, 90, 0.28);
  transform: translateY(-4px);
}
.ticker-item img {
  max-width: 230px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}
.ticker-item:hover img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ==========================================================
   SECTIONS — ALTERNANCE DE FONDS (style Net)
   Pas de séparateur visuel, juste une alternance naturelle
   de couleurs entre les sections.
   ========================================================== */

/* Fond blanc sur Why Choose + Services pour créer le contraste */
.section.why-choose       { background: #ffffff !important; }
.section.services.services-mix { background: #ffffff !important; }

/* Map : fond légèrement foncé pour ressortir après Partners */
.map-section.map-immersive {
  background: #f0eadf;
}

/* ==========================================================
   PAGE ABOUT — REFONTE COMPLÈTE (V5.0)
   Sections : Intro + Mission/Vision diptyque + Valeurs + Timeline + Chiffres + Citation
   ========================================================== */

/* === Override : on cache l'ancienne structure === */
.about-intro .about-wrapper { display: none !important; }
.about-intro .about-visual { display: none !important; }

/* ===== INTRO ===== */
.section.about-intro {
  padding: 80px 24px 60px;
}
.about-intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.about-intro-text .tag {
  display: inline-flex;
  margin-bottom: 14px;
}
.about-intro-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--navy);
  line-height: 1.15;
}
.about-intro-text p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

/* ===== MISSION/VISION DIPTYQUE (Thème C) ===== */
.mv-diptych {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #f0ebe0;
  border-radius: 22px;
  padding: 50px 30px;
  box-shadow: 0 12px 40px -15px rgba(61, 43, 94, 0.15);
}

.mv-divider {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  width: 1px;
  pointer-events: none;
}
.mv-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, #e0d8cc 15%, #e0d8cc 85%, transparent 100%);
}
.mv-amp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  box-shadow: 0 8px 16px rgba(155, 35, 53, 0.15);
}

.mv-side {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.mv-mission {
  text-align: right;
  align-items: flex-end;
  padding-right: 50px;
}
.mv-vision {
  text-align: left;
  align-items: flex-start;
  padding-left: 50px;
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}
.mv-icon-mission {
  background: rgba(155, 35, 53, 0.1);
  animation: mv-fly 3.5s ease-in-out infinite;
}
.mv-icon-vision {
  background: rgba(61, 43, 94, 0.1);
  animation: mv-pulse-circle 3s ease-in-out infinite;
}
@keyframes mv-fly {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(6px, -4px) rotate(-8deg); }
}
@keyframes mv-pulse-circle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.mv-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mv-mission .mv-eyebrow { color: var(--orange); }
.mv-vision .mv-eyebrow { color: var(--navy); }

.mv-side h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.15;
}
.mv-side p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 360px;
}

/* ===== VALEURS — 4 piliers ===== */
.section-values {
  padding: 80px 24px;
  background: #fbf8f2;
}
.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.values-header .tag {
  display: inline-flex;
  margin-bottom: 14px;
}
.values-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.15;
}
.values-header h2 .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.values-header p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.value-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid #f0ebe0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(61, 43, 94, 0.2);
  border-color: transparent;
}

.value-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #FFFFFF;
  transition: transform 0.4s ease;
}
.value-card:hover .value-icon-wrap {
  transform: scale(1.1) rotate(-6deg);
}
.value-icon-bordeaux {
  background: linear-gradient(135deg, #b32a3f, #9B2335);
  box-shadow: 0 8px 20px -6px rgba(155, 35, 53, 0.4);
}
.value-icon-violet {
  background: linear-gradient(135deg, #4d3873, #3D2B5E);
  box-shadow: 0 8px 20px -6px rgba(61, 43, 94, 0.4);
}

.value-card h3 {
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
}

/* ===== TIMELINE — Histoire ===== */
.section-timeline {
  padding: 90px 24px;
  background: #FFFFFF;
}
.timeline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.timeline-header .tag {
  display: inline-flex;
  margin-bottom: 14px;
}
.timeline-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.15;
}
.timeline-header h2 .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.timeline-header p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 35px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--navy));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 22px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  z-index: 2;
  transition: transform 0.3s ease;
  border: 3px solid #FFFFFF;
}
.timeline-dot:hover { transform: scale(1.08); }

.timeline-dot-bordeaux {
  background: linear-gradient(135deg, #b32a3f, #9B2335);
  box-shadow: 0 10px 22px -6px rgba(155, 35, 53, 0.5);
}
.timeline-dot-violet {
  background: linear-gradient(135deg, #4d3873, #3D2B5E);
  box-shadow: 0 10px 22px -6px rgba(61, 43, 94, 0.5);
}
.timeline-dot-now {
  background: linear-gradient(135deg, #9B2335, #3D2B5E);
  box-shadow: 0 10px 28px -6px rgba(155, 35, 53, 0.6);
  animation: timeline-now-pulse 2.5s ease-in-out infinite;
}
@keyframes timeline-now-pulse {
  0%, 100% { box-shadow: 0 10px 28px -6px rgba(155, 35, 53, 0.6), 0 0 0 0 rgba(155, 35, 53, 0.4); }
  50% { box-shadow: 0 10px 28px -6px rgba(155, 35, 53, 0.6), 0 0 0 14px rgba(155, 35, 53, 0); }
}

.timeline-card {
  flex: 1;
  background: #fbf8f2;
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  padding: 18px 22px;
  transition: all 0.3s ease;
}
.timeline-card:hover {
  background: #FFFFFF;
  box-shadow: 0 12px 28px -10px rgba(61, 43, 94, 0.15);
  transform: translateX(4px);
}
.timeline-dot-violet + .timeline-card {
  border-left-color: var(--navy);
}
.timeline-card-now {
  background: linear-gradient(135deg, #3D2B5E, #2a1d44);
  color: #FFFFFF;
  border-left-color: var(--orange) !important;
}
.timeline-card-now:hover {
  background: linear-gradient(135deg, #4d3873, #3D2B5E);
  transform: translateX(4px);
}

.timeline-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--navy);
}
.timeline-card-now h4 { color: #FFFFFF; }
.timeline-card p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-muted);
}
.timeline-card-now p { color: rgba(255, 255, 255, 0.9); }

/* ===== CHIFFRES CLÉS ===== */
.section-stats {
  padding: 80px 24px;
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  position: relative;
  overflow: hidden;
}
.stats-deco-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.18;
  animation: stats-pulse 6s ease-in-out infinite;
}
.stats-deco-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.10;
  animation: stats-pulse 8s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes stats-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.stats-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.stats-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.stats-header h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}
.stats-header h2 .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-block {
  text-align: center;
  padding: 24px 12px;
  position: relative;
  transition: transform 0.3s ease;
}
.stat-block:hover { transform: scale(1.04); }
.stat-block:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-block .stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #FFFFFF;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-block .stat-plus {
  color: var(--orange);
  margin-left: 2px;
}
.stat-block .stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
}

/* ===== CITATION DU DIRIGEANT ===== */
.section-quote {
  padding: 90px 24px;
  background: #fbf8f2;
}
.quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: #FFFFFF;
  border-radius: 22px;
  padding: 60px 40px 40px;
  border: 1px solid #f0ebe0;
  box-shadow: 0 20px 40px -15px rgba(61, 43, 94, 0.15);
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 40px;
  font-family: Georgia, serif;
  font-size: 140px;
  font-weight: 800;
  color: rgba(155, 35, 53, 0.12);
  line-height: 0.9;
  pointer-events: none;
}

.quote-text {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 32px;
  position: relative;
  z-index: 2;
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid #ece6da;
  width: 100%;
  max-width: 400px;
  justify-content: center;
}
.quote-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--navy));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px -6px rgba(155, 35, 53, 0.4);
}
.quote-info { text-align: left; }
.quote-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}
.quote-title {
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  letter-spacing: 1.8px;
  font-weight: 600;
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .mv-diptych {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  .mv-divider {
    top: 50%;
    left: 30px;
    right: 30px;
    bottom: auto;
    width: auto;
    height: 1px;
    transform: translateY(-50%);
  }
  .mv-line {
    background: linear-gradient(90deg, transparent 0%, #e0d8cc 15%, #e0d8cc 85%, transparent 100%);
  }
  .mv-mission, .mv-vision {
    text-align: left;
    align-items: flex-start;
    padding: 30px 0;
  }
  .mv-mission { padding-bottom: 50px; }
  .mv-vision { padding-top: 50px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-block:nth-child(3)::before,
  .stat-block:nth-child(2)::before { display: none; }
}

@media (max-width: 600px) {
  .section.about-intro { padding: 60px 20px 40px; }
  .section-values, .section-timeline, .section-stats, .section-quote { padding: 60px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block::before { display: none !important; }
  .timeline-item { gap: 18px; }
  .timeline-dot { width: 60px; height: 60px; font-size: 12px; }
  .timeline-line { left: 30px; }
  .quote-block { padding: 50px 24px 32px; }
  .quote-mark { font-size: 100px; left: 20px; }
}

/* ==========================================================
   ABOUT — Override stats-grid pour 3 chiffres au lieu de 4
   ========================================================== */
.section-stats .stats-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 900px !important;
}

@media (max-width: 900px) {
  .section-stats .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px;
  }
  .stat-block {
    padding: 18px 8px;
  }
}

@media (max-width: 600px) {
  .section-stats .stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================
   PAGE SERVICES — ONGLETS LATÉRAUX (V6.0)
   ========================================================== */

/* === Intro === */
.services-intro {
  padding: 80px 24px 40px;
}
.services-intro-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.services-intro-text .tag {
  display: inline-flex;
  margin-bottom: 14px;
}
.services-intro-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--navy);
  line-height: 1.15;
}
.services-intro-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* === Section onglets === */
.services-tabs-section {
  padding: 40px 24px 100px;
  background: #fbf8f2;
}

.services-tabs-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
  align-items: start;
}

/* === Liste des onglets (gauche) === */
.services-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 110px;
}

.svc-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid #f0ebe0;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.svc-tab-num {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  min-width: 30px;
  line-height: 1;
  transition: color 0.3s ease;
}

.svc-tab-label {
  flex: 1;
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.svc-tab-arrow {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

/* Hover state */
.svc-tab:hover {
  border-color: rgba(155, 35, 53, 0.3);
  background: #FFFFFF;
  transform: translateX(4px);
}
.svc-tab:hover .svc-tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Active state */
.svc-tab.active {
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  border-color: transparent;
  box-shadow: 0 12px 28px -8px rgba(61, 43, 94, 0.4);
  transform: translateX(0);
}
.svc-tab.active .svc-tab-num {
  color: rgba(255, 255, 255, 0.6);
}
.svc-tab.active .svc-tab-label {
  color: #FFFFFF;
}
.svc-tab.active .svc-tab-arrow {
  color: #FFFFFF;
  opacity: 1;
  transform: translateX(0);
}

/* === Panels (droite) === */
.services-tabs-content {
  position: relative;
  min-height: 380px;
}

.svc-panel {
  background: #FFFFFF;
  border: 1px solid #f0ebe0;
  border-radius: 18px;
  padding: 36px 32px;
  display: none;
  animation: panel-fade-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 40px -15px rgba(61, 43, 94, 0.12);
}

.svc-panel.active {
  display: block;
}

@keyframes panel-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.svc-panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(155, 35, 53, 0.1), rgba(61, 43, 94, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 22px;
  position: relative;
}
.svc-panel-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--navy));
  opacity: 0.08;
}
.svc-panel-icon i {
  position: relative;
  z-index: 2;
}

.svc-panel-eyebrow {
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-panel h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.svc-panel p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 22px;
}

/* Tags */
.svc-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tag {
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease;
}
.svc-tag:hover { transform: translateY(-2px); }

.svc-tag.tag-bordeaux {
  background: rgba(155, 35, 53, 0.1);
  color: var(--orange);
}
.svc-tag.tag-violet {
  background: rgba(61, 43, 94, 0.1);
  color: var(--navy);
}

/* === CTA en bas === */
.services-cta {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%);
  border-radius: 22px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px -15px rgba(61, 43, 94, 0.4);
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.18;
  pointer-events: none;
}

.services-cta-text {
  position: relative;
  z-index: 2;
}
.services-cta-text h3 {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.services-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  margin: 0;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #FFFFFF;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(155, 35, 53, 0.4);
  white-space: nowrap;
}
.services-cta-btn:hover {
  background: #b32a3f;
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(155, 35, 53, 0.55);
}
.services-cta-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.services-cta-btn:hover i {
  transform: translateX(4px);
}

/* === Responsive === */
@media (max-width: 900px) {
  .services-tabs-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services-tabs-list {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .svc-tab {
    flex-shrink: 0;
    padding: 12px 16px;
  }
  .svc-tab-label { font-size: 12.5px; }
  .svc-tab-arrow { display: none; }

  .svc-panel { padding: 28px 24px; }

  .services-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px 24px;
  }
  .services-cta-btn { justify-content: center; }
}

@media (max-width: 600px) {
  .services-intro { padding: 60px 20px 30px; }
  .services-tabs-section { padding: 30px 16px 80px; }
  .svc-panel { padding: 24px 20px; }
  .svc-panel h3 { font-size: 20px; }
  .svc-panel p { font-size: 13.5px; }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .svc-tab,
  .svc-panel {
    transition: none !important;
    animation: none !important;
  }
}

/* ==========================================================
   PAGE BANNER — DESIGN B COMPACT + ANIMATIONS (V7.0)
   Override de l'ancien page-banner sur toutes les pages
   ========================================================== */

section.page-banner {
  position: relative !important;
  background: linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%) !important;
  padding: 50px 32px !important;
  text-align: center !important;
  overflow: hidden !important;
  min-height: auto !important;
  margin: 0 !important;
}

/* Cache les éléments existants (badge + breadcrumb) */
.page-banner .page-banner-badge,
.page-banner .breadcrumb {
  display: none !important;
}

/* Cercles décoratifs animés */
.page-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.18;
  animation: pb-circle-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.10;
  animation: pb-circle-pulse 8s ease-in-out infinite;
  animation-delay: 1.2s;
  pointer-events: none;
}

@keyframes pb-circle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* Wrapper pour ajouter les éléments décoratifs supplémentaires */
.page-banner > * {
  position: relative;
  z-index: 3;
}

/* Vague en bas (pseudo via background-image) */
.page-banner {
  background-image:
    linear-gradient(135deg, #3D2B5E 0%, #2a1d44 100%),
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'%3E%3Cpath d='M0,60 Q150,30 300,55 T600,50 L600,100 L0,100 Z' fill='%23ffffff' opacity='0.15'/%3E%3C/svg%3E") !important;
  background-size: 100% 100%, 100% 28px !important;
  background-position: 0 0, bottom !important;
  background-repeat: no-repeat, no-repeat !important;
}

/* === Titre H1 === */
.page-banner h1 {
  color: #FFFFFF !important;
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif !important;
  font-size: clamp(2rem, 5vw, 2.4rem) !important;
  font-weight: 800 !important;
  margin: 0 !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  position: relative;
  z-index: 5;
  /* Animation entrée : fade-up */
  animation: pb-title-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes pb-title-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.05em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -0.02em;
  }
}

/* === Effet shimmer (lueur diagonale qui traverse) === */
.page-banner .pb-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  animation: pb-shine-move 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes pb-shine-move {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  50%, 100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

/* === Petits points lumineux animés (étoiles / particules) === */
.page-banner .pb-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.page-banner .pb-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: pb-particle-float 4s ease-in-out infinite;
}
.page-banner .pb-particles span:nth-child(1) { top: 25%; left: 18%; animation-delay: 0s; }
.page-banner .pb-particles span:nth-child(2) { top: 60%; left: 12%; animation-delay: 0.8s; background: rgba(155, 35, 53, 0.6); }
.page-banner .pb-particles span:nth-child(3) { top: 35%; right: 20%; animation-delay: 1.6s; }
.page-banner .pb-particles span:nth-child(4) { top: 70%; right: 15%; animation-delay: 2.4s; background: rgba(155, 35, 53, 0.6); }
.page-banner .pb-particles span:nth-child(5) { top: 45%; left: 50%; animation-delay: 3.2s; }

@keyframes pb-particle-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-12px) scale(1.3);
    opacity: 1;
  }
}

/* === Petit accent bordeaux qui apparaît sous le titre === */
.page-banner h1::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 0;
  border-radius: 2px;
  animation: pb-line-grow 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
  box-shadow: 0 0 12px rgba(155, 35, 53, 0.6);
}

@keyframes pb-line-grow {
  to { width: 60px; }
}

/* === Responsive === */
@media (max-width: 600px) {
  section.page-banner {
    padding: 40px 20px !important;
  }
  .page-banner h1 {
    font-size: 1.8rem !important;
  }
  .page-banner h1::after {
    margin-top: 12px;
  }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .page-banner::before,
  .page-banner::after,
  .page-banner h1,
  .page-banner h1::after,
  .page-banner .pb-shine,
  .page-banner .pb-particles span {
    animation: none !important;
  }
  .page-banner h1::after {
    width: 60px;
  }
}

/* Le script JS ci-dessous injecte automatiquement les éléments .pb-shine et .pb-particles
   dans tous les .page-banner — voir page-banner-enhance.js dans Layout ou ajouté en inline */

/* ==========================================================
   PAGE GALLERY — SECTIONS EMPILÉES (V8.0)
   ========================================================== */

/* === Intro === */
.gallery-intro {
  padding: 70px 24px 30px;
  background: #FFFFFF;
}
.gallery-intro-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.gallery-intro-text .tag {
  display: inline-flex;
  margin-bottom: 14px;
}
.gallery-intro-text h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--navy);
  line-height: 1.15;
}
.gallery-intro-text p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* === Banner sub-title (sous le H1 "Galerie") === */
.page-banner .page-banner-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 12px 0 0;
  text-align: center;
  opacity: 0.95;
}

/* === Bandeau "Sélection non exhaustive" === */
.gallery-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  margin: 28px auto 0;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-soft) 100%);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  text-align: left;
}
.gallery-notice-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.gallery-notice-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-notice-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.gallery-notice-text span {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* === Section CTA en bas de la galerie === */
.gallery-cta-section {
  padding: 60px 24px 100px;
  background: #FFFFFF;
}
.gallery-cta {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gallery-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 148, 90, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(184, 148, 90, 0.10), transparent 50%);
  pointer-events: none;
}
.gallery-cta > * {
  position: relative;
  z-index: 1;
}
.gallery-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(184, 148, 90, 0.15);
  border: 1.5px solid rgba(184, 148, 90, 0.4);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 22px;
}
.gallery-cta h3 {
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 600;
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.25;
}
.gallery-cta p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 28px;
  max-width: 560px;
}
.gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 24px -6px rgba(184, 148, 90, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
}
.gallery-cta-btn:hover {
  background: var(--orange-2);
  box-shadow: 0 12px 32px -6px rgba(184, 148, 90, 0.6);
}

/* Responsive */
@media (max-width: 640px) {
  .gallery-notice {
    padding: 16px 18px;
    gap: 12px;
  }
  .gallery-notice-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .gallery-cta {
    padding: 36px 24px;
  }
  .gallery-cta-section {
    padding: 50px 18px 80px;
  }
}

/* === Sections === */
.gallery-sections {
  padding: 30px 24px 80px;
  background: #FFFFFF;
}

.gal-section {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.gal-section:last-of-type {
  margin-bottom: 30px;
}

/* Header de chaque section */
.gal-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ece6da;
  gap: 16px;
}

.gal-section-eyebrow {
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gal-section-header h3 {
  color: var(--navy);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}

.gal-section-count {
  background: rgba(155, 35, 53, 0.08);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* === Grilles spécifiques par section === */

/* Service 1 (6 photos) : 2-1-1 / 1-1 (asymétrique) */
.gal-grid-1 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-auto-rows: 140px;
  gap: 10px;
}
.gal-grid-1 .gal-img:nth-child(1) { grid-row: span 2; }
.gal-grid-1 .gal-img:nth-child(4) { grid-row: span 2; }

/* Service 2 (4 photos) : 4 colonnes égales */
.gal-grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}

/* Service 3, 4 (5 photos) : 5 colonnes */
.gal-grid-3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}

/* === Image individuelle (placeholder pour le moment) === */
.gal-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.15);
}

.gal-img.gal-tall {
  /* géré par grid-row: span 2 */
}

.gal-img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 30px -10px rgba(61, 43, 94, 0.4);
  z-index: 2;
}

/* === Vraies images dans les tuiles === */
.gal-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gal-img:hover img {
  transform: scale(1.06);
}
/* Quand une vraie image est présente, on cache l'emoji placeholder */
.gal-has-img .gal-emoji { display: none; }
/* L'overlay doit rester au-dessus de l'image */
.gal-img .gal-overlay { z-index: 2; }

/* === Vraies images dans les tuiles === */
.gal-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gal-img:hover img {
  transform: scale(1.06);
}
/* Quand une vraie image est présente, on cache l'emoji placeholder */
.gal-has-img .gal-emoji { display: none; }
/* L'overlay doit rester au-dessus de l'image */
.gal-img .gal-overlay { z-index: 2; }

/* Couleurs des placeholders (tu remplaceras par <img>) */
.gal-color-1 { background: linear-gradient(135deg, #4d3873 0%, #3D2B5E 50%, #2a1d44 100%); }
.gal-color-2 { background: linear-gradient(135deg, #b32a3f 0%, #9B2335 50%, #7d1a2a 100%); }
.gal-color-3 { background: linear-gradient(135deg, #3D2B5E 0%, #5d4683 100%); }
.gal-color-4 { background: linear-gradient(135deg, #9B2335 0%, #b32a3f 100%); }
.gal-color-5 { background: linear-gradient(135deg, #2a1d44 0%, #3D2B5E 100%); }

/* Emoji placeholder */
.gal-emoji {
  font-size: 38px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s ease;
}
.gal-img:hover .gal-emoji {
  transform: scale(1.15) rotate(-4deg);
}

/* Overlay au hover */
.gal-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  padding: 28px 14px 12px;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s ease;
}
.gal-img:hover .gal-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* === Note placeholder en bas === */
.gal-placeholder-note {
  max-width: 600px;
  margin: 60px auto 0;
  text-align: center;
  padding: 24px;
  background: #fbf8f2;
  border: 1px dashed rgba(155, 35, 53, 0.3);
  border-radius: 14px;
}
.gal-placeholder-note i {
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}
.gal-placeholder-note p {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

/* === Responsive === */
@media (max-width: 900px) {
  .gal-grid-1 {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 120px;
  }
  .gal-grid-1 .gal-img:nth-child(1),
  .gal-grid-1 .gal-img:nth-child(4) { grid-row: span 1; }

  .gal-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gal-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 130px;
  }

  .gal-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gal-section-count { align-self: flex-start; }
}

@media (max-width: 600px) {
  .gallery-sections { padding: 20px 16px 60px; }
  .gal-section { margin-bottom: 40px; }
  .gal-grid-1, .gal-grid-2, .gal-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 8px;
  }
  .gal-emoji { font-size: 30px; }
  .gal-overlay { font-size: 11px; padding: 22px 12px 10px; }
}

/* ==========================================================
   GALLERY — VOIR PLUS / VOIR MOINS (per category)
   ========================================================== */
.gal-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 11px 24px;
  background: transparent;
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
}
.gal-show-more:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(61, 43, 94, 0.5);
}
.gal-show-more i {
  font-size: 10px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gal-section:not(.is-collapsed) .gal-show-more i { transform: rotate(180deg); }

.gal-show-more-count {
  background: rgba(155, 35, 53, 0.12);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.gal-show-more:hover .gal-show-more-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Toggle the right label */
.gal-show-more .lbl-less { display: none; }
.gal-section:not(.is-collapsed) .gal-show-more .lbl-more { display: none; }
.gal-section:not(.is-collapsed) .gal-show-more .lbl-less { display: inline; }
.gal-section:not(.is-collapsed) .gal-show-more-count { display: none; }

/* Collapsed state: hide overflow tiles */
.gal-hidden-tile {
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gal-section.is-collapsed .gal-hidden-tile { display: none; }
/* Reveal animation: starting state (set BEFORE removing is-collapsed) */
.gal-section.is-revealing .gal-hidden-tile {
  opacity: 0;
  transform: translateY(12px);
}
/* When collapsed, gal-grid-1's asymmetric row-spans would leave empty
   cells in row 2. Reset them so the visible tiles form a clean row. */
.gal-section.is-collapsed .gal-grid-1 .gal-img:nth-child(1),
.gal-section.is-collapsed .gal-grid-1 .gal-img:nth-child(4) {
  grid-row: span 1;
}

/* ==========================================================
   GALLERY — LIGHTBOX (modal d'agrandissement)
   ========================================================== */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 5, 18, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}
.gal-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gal-lb-figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none; /* clicks pass to backdrop except on real children below */
}
.gal-lb-figure > * { pointer-events: auto; }

.gal-lb-img {
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  user-select: none;
  -webkit-user-drag: none;
  animation: galLbFadeIn 0.35s ease;
}
@keyframes galLbFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.gal-lb-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.gal-lb-caption {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.gal-lb-counter {
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.gal-lb-close,
.gal-lb-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.gal-lb-close:hover,
.gal-lb-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.gal-lb-close { top: 22px; right: 22px; }
.gal-lb-close:hover { transform: scale(1.08) rotate(90deg); }

.gal-lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.gal-lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.gal-lb-prev:hover { transform: translateY(-50%) translateX(-3px) scale(1.06); }
.gal-lb-next:hover { transform: translateY(-50%) translateX(3px) scale(1.06); }

.gal-lb-prev:focus-visible,
.gal-lb-next:focus-visible,
.gal-lb-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .gal-lightbox { padding: 60px 12px 90px; }
  .gal-lb-close,
  .gal-lb-nav { width: 40px; height: 40px; font-size: 14px; }
  .gal-lb-close { top: 14px; right: 14px; }
  .gal-lb-prev { left: 8px; }
  .gal-lb-next { right: 8px; }
  .gal-lb-img { max-height: calc(100vh - 200px); }
  .gal-lb-caption { font-size: 14px; }
}

/* ==========================================================
   PAGE CONTACT — REFONTE COMPLÈTE (V9.0)
   Cartes contact + Formulaire devis multi-services + Map
   ========================================================== */

/* ============ CARTES DE CONTACT ============ */
.contact-cards-section {
  padding: 70px 24px 50px;
  background: #fbf8f2;
}

.contact-cards-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.contact-cards-header .tag {
  display: inline-flex;
  margin-bottom: 14px;
}
.contact-cards-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
}
.contact-cards-header h2 .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 32px 24px 28px;
  text-align: center;
  border: 1px solid #f0ebe0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(61, 43, 94, 0.25);
  border-color: transparent;
}

/* Effet shine au hover */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(155, 35, 53, 0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}
.contact-card:hover::before {
  left: 150%;
}

/* === Icône avec animations spécifiques === */
.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

/* WhatsApp : bounce */
.contact-icon-wa {
  background: linear-gradient(135deg, #2ee06e 0%, #25D366 100%);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
  animation: contact-bounce 2.4s ease-in-out infinite;
}
@keyframes contact-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Email : pulse */
.contact-icon-mail {
  background: linear-gradient(135deg, #b32a3f 0%, #9B2335 100%);
  box-shadow: 0 12px 26px rgba(155, 35, 53, 0.35);
  animation: contact-pulse 2.4s ease-in-out infinite;
}
@keyframes contact-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Téléphone : ring */
.contact-icon-phone {
  background: linear-gradient(135deg, #4d3873 0%, #3D2B5E 100%);
  box-shadow: 0 12px 26px rgba(61, 43, 94, 0.35);
  animation: contact-ring 2.4s ease-in-out infinite;
}
@keyframes contact-ring {
  0%, 100% { box-shadow: 0 12px 26px rgba(61, 43, 94, 0.35), 0 0 0 0 rgba(155, 35, 53, 0.4); }
  50% { box-shadow: 0 12px 26px rgba(61, 43, 94, 0.35), 0 0 0 14px rgba(155, 35, 53, 0); }
}

/* === Eyebrow + valeurs === */
.contact-card-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.contact-card-values {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  width: 100%;
}

.contact-value-link {
  color: var(--navy);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  display: block;
}
.contact-value-link:hover {
  color: var(--orange);
}
.contact-email {
  font-size: 12.5px;
  word-break: break-all;
  line-height: 1.3;
}

/* Bloc téléphone : Office + Mobile */
.contact-phone-block {
  margin-top: 6px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}
.contact-phone-block:first-of-type {
  margin-top: 4px;
}
.contact-phone-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9.5px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: #999;
  margin-bottom: 2px;
}
.contact-card-phone .contact-value-link {
  font-size: 13.5px;
  display: block;
}

/* CTA en bas de carte */
.contact-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.contact-cta-wa { background: #25D366; }
.contact-cta-mail { background: var(--orange); }
.contact-card:hover .contact-card-cta {
  transform: translateX(4px);
}
.contact-card-cta i {
  font-size: 10px;
}

/* ============ FORMULAIRE DEVIS ============ */
.contact-form-section {
  padding: 70px 24px;
  background: #FFFFFF;
}

.contact-form-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.contact-form-header .tag {
  display: inline-flex;
  margin-bottom: 14px;
}
.contact-form-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.15;
}
.contact-form-header h2 .highlight {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.contact-form-header p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

.quote-form {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #f0ebe0;
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 20px 50px -20px rgba(61, 43, 94, 0.15);
}

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-required {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}
.form-hint {
  color: #999;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: none;
  margin-left: 4px;
}

/* === Inputs === */
.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: #fbf8f2;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--navy);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.form-input:hover,
.form-textarea:hover {
  background: #f5f0e3;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(155, 35, 53, 0.12);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #b3aea0;
  font-style: italic;
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
  line-height: 1.6;
}

/* === Service cards (radio multi-select) === */
.form-group-services { margin-bottom: 18px; }

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

.service-card {
  display: block;
  cursor: pointer;
  position: relative;
}
.service-card .svc-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-card-inner {
  background: #fbf8f2;
  border: 1.5px solid #ece6da;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card-inner {
  border-color: var(--orange);
  background: #FFFFFF;
  transform: translateY(-2px);
}

.service-card.active .service-card-inner {
  background: linear-gradient(135deg, #b32a3f, #9B2335);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 12px 24px -8px rgba(155, 35, 53, 0.4);
  transform: translateY(-2px);
}

.service-card-num {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.service-card.active .service-card-num {
  color: rgba(255, 255, 255, 0.7);
}
.service-card-num-other {
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-size: 26px;
  font-weight: 300;
  line-height: 0.9;
  color: var(--orange);
}
.service-card.active .service-card-num-other {
  color: rgba(255, 255, 255, 0.7);
}

.service-card-name {
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.25;
  transition: color 0.3s ease;
}
.service-card.active .service-card-name {
  color: #FFFFFF;
}

/* Petit check qui apparaît quand actif */
.service-card-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card.active .service-card-check {
  opacity: 1;
  transform: scale(1);
}

/* === Champ conditionnel "Autre" === */
.form-conditional {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  background: #fbf8f2;
  border-radius: 10px;
  border: 1.5px dashed transparent;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-conditional.show {
  max-height: 240px;
  opacity: 1;
  margin-bottom: 18px;
  padding: 16px;
  border-color: rgba(155, 35, 53, 0.3);
}
.form-conditional .form-input {
  background: #FFFFFF;
}

/* === Bouton submit === */
.form-submit-wrap {
  text-align: center;
  margin-top: 8px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #b32a3f 0%, #9B2335 100%);
  color: #FFFFFF;
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 28px rgba(155, 35, 53, 0.4);
  text-transform: uppercase;
}
.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(155, 35, 53, 0.55);
}
.form-submit-btn:active {
  transform: translateY(-1px);
}
.form-submit-btn i {
  transition: transform 0.3s ease;
  font-size: 13px;
}
.form-submit-btn:hover i {
  transform: translateX(6px);
}

.form-disclaimer {
  color: #999;
  font-size: 11.5px;
  margin: 14px 0 0;
  font-style: italic;
}

/* === Message succès === */
.form-success-msg {
  display: none;
  max-width: 600px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, #fbf8f2, #FFFFFF);
  border: 2px solid #25D366;
  border-radius: 18px;
  padding: 36px 32px;
  text-align: center;
  animation: success-slide-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-success-msg.show { display: block; }
@keyframes success-slide-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 18px;
  animation: success-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}
@keyframes success-bounce {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
.form-success-msg h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.form-success-msg p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ============ MAP en bas (override pour cette page) ============ */
.map-section.map-contact {
  padding: 70px 24px 100px;
  background: #fbf8f2;
}
.map-section.map-contact .map-immersive-frame {
  height: 380px;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-row .form-group {
    margin-bottom: 18px;
  }
  .quote-form {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .contact-cards-section { padding: 50px 16px 30px; }
  .contact-form-section { padding: 50px 16px; }
  .map-section.map-contact { padding: 50px 16px 70px; }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .contact-icon-wa,
  .contact-icon-mail,
  .contact-icon-phone {
    animation: none !important;
  }
}

/* ==========================================================
   HERO LOGO — CADRE BLANC GLASS-MORPHISM (V9.5)
   Override pour rendre le logo bien visible sur fond violet
   ========================================================== */

/* Override : on enlève le mix-blend-mode et on ajoute un cadre blanc */
.hero-logo-img {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  padding: 28px 32px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
  filter: drop-shadow(0 10px 20px rgba(155, 35, 53, 0.15)) !important;
  mix-blend-mode: normal !important;
  max-width: 360px !important;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.hero-logo-img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 35px 60px -15px rgba(155, 35, 53, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
}

/* Le glow bordeaux derrière reste mais atténué pour ne pas perturber le cadre blanc */
.hero-logo-glow {
  opacity: 0.55 !important;
  filter: blur(20px);
}

/* Petit accent décoratif : cercle bordeaux qui apparaît au coin */
.hero-content-right::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.25;
  z-index: 1;
  animation: hero-corner-pulse 3s ease-in-out infinite;
}

@keyframes hero-corner-pulse {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.15); opacity: 0.4; }
}

/* Responsive : ajuster le padding et la taille sur mobile */
@media (max-width: 900px) {
  .hero-logo-img {
    max-width: 260px !important;
    padding: 22px 26px;
    border-radius: 22px;
  }
  .hero-content-right::after {
    width: 40px;
    height: 40px;
    bottom: -12px;
    right: -12px;
  }
}

@media (max-width: 480px) {
  .hero-logo-img {
    max-width: 220px !important;
    padding: 18px 22px;
  }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .hero-content-right::after {
    animation: none !important;
  }
}

/* ================================================================
   AMÉLIORATIONS — Hero CTA, Témoignages, About CTA, Galerie filtres
   WhatsApp card, Onglets mobile
   ================================================================ */

/* ---- Hero CTA Row ---- */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--orange, #f97316);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .85rem 1.75rem;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(249,115,22,.35);
  text-decoration: none;
}
.hero-btn-primary:hover {
  background: #ea6800;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.45);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #111;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--orange, #f97316);
  padding-bottom: 2px;
  transition: color .2s, gap .2s;
}
.hero-btn-secondary:hover {
  color: var(--orange, #f97316);
  gap: .75rem;
}

/* ---- Testimonials ---- */
.testimonials-section { background: #fafafa; }
.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.testimonials-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.testimonials-header p { color: #6b7280; }

.testimonial-carousel { position: relative; }
.testimonial-track-wrapper {
  overflow: hidden;
  border-radius: 1rem;
}
.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 .5rem;
  box-sizing: border-box;
}
.testimonial-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
  border: 1px solid #f0f0f0;
  position: relative;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: .9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 1.75rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--orange, #f97316);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-info { flex: 1; }
.testimonial-name { font-weight: 700; font-size: .95rem; color: #111; }
.testimonial-role { font-size: .8rem; color: #6b7280; margin-top: 2px; }
.testimonial-flag { font-size: 1.5rem; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonial-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s, color .2s;
}
.testimonial-btn:hover {
  border-color: var(--orange, #f97316);
  background: var(--orange, #f97316);
  color: #fff;
}
.testimonial-dots { display: flex; gap: .5rem; align-items: center; }
.testimonial-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.testimonial-dot.active {
  background: var(--orange, #f97316);
  transform: scale(1.3);
}

/* ---- About CTA section ---- */
.about-cta-section { background: #111; }
.about-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.about-cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin: 0 0 .5rem;
}
.about-cta-text p { color: #9ca3af; margin: 0; }
.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.about-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #e5e7eb;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
  transition: color .2s;
}
.about-cta-secondary:hover { color: var(--orange, #f97316); }

/* ---- WhatsApp card cliquable ---- */
a.contact-card-wa {
  text-decoration: none;
  cursor: pointer;
}
a.contact-card-wa:hover {
  transform: translateY(-4px);
}
.contact-cta-wa {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  color: #25D366;
  margin-top: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ---- Gallery Filters Bar ---- */
.gallery-filters-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.gallery-filter .count {
  background: #f3f4f6;
  border-radius: 50px;
  padding: 1px 7px;
  font-size: .75rem;
  font-weight: 700;
  color: #6b7280;
  transition: background .2s, color .2s;
}
.gallery-filter.active, .gallery-filter:hover {
  background: var(--orange, #f97316);
  border-color: var(--orange, #f97316);
  color: #fff;
}
.gallery-filter.active .count, .gallery-filter:hover .count {
  background: rgba(255,255,255,.25);
  color: #fff;
}

/* ---- Gallery Unified Grid ---- */
.gallery-unified-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  border-radius: .75rem;
  overflow: hidden;
  transition: opacity .3s, transform .3s;
}
.gallery-item.hidden {
  display: none;
}
.gallery-item .gal-img {
  border-radius: .75rem;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.gallery-item .gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover .gal-img img { transform: scale(1.05); }
.gallery-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gal-overlay { opacity: 1; }
.gallery-item .gal-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
}
.gal-item-label {
  padding: .5rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f9fafb;
  border: 1px solid #f0f0f0;
  border-top: none;
  border-radius: 0 0 .75rem .75rem;
}

/* ---- Services tabs mobile accordion ---- */
@media (max-width: 768px) {
  .services-tabs-wrapper {
    flex-direction: column;
  }
  .services-tabs-list {
    flex-direction: column;
    gap: 0;
    border-right: none;
    border-bottom: 2px solid #e5e7eb;
  }
  .svc-tab {
    border-radius: 0;
    padding: .85rem 1rem;
    border-bottom: 1px solid #e5e7eb;
  }
  .services-tabs-content {
    padding-left: 0;
    padding-top: 1.5rem;
  }
}

/* ---- Marquee pause on hover (renforcement) ---- */
.iso-marquee:hover .iso-marquee-track {
  animation-play-state: paused !important;
}

/* ---- Flash FR/EN prevention ---- */
[data-en]:not([data-fr]) { }
html:not([lang]) [data-en] { visibility: hidden; }

@media (max-width: 640px) {
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .about-cta-block { flex-direction: column; align-items: flex-start; }
  .gallery-filters-bar { gap: .35rem; }
  .gallery-filter { font-size: .75rem; padding: .4rem .85rem; }
  .gallery-unified-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .gallery-item .gal-img { height: 150px; }
  .testimonial-card { padding: 1.5rem; }
}

/* ============================================================
   TYPOGRAPHY VARIATION — section headers
   ============================================================ */

/* --- Services : split header with oversized counter --- */
.svc-header-split {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 52px;
}
.svc-header-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(72px, 11vw, 128px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--navy, #1a1533);
  opacity: 0.10;
  flex-shrink: 0;
  user-select: none;
}
.svc-header-text {
  flex: 1;
}
.svc-header-text h2 {
  margin-bottom: 10px;
}
.svc-header-text p {
  color: var(--text-muted, #5a5870);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

/* --- Partners : left-aligned eyebrow + big title, no body copy --- */
.partners-ticker-header {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.ticker-label-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--orange, #f97316);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.partners-ticker-header h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.15;
}

/* --- Map : override centered defaults, use split header with address number --- */
.map-immersive-header {
  text-align: left !important;
  max-width: 900px !important;
}
.map-header-split {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.map-header-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(80px, 14vw, 144px);
  font-weight: 800;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--navy, #1a1533);
  opacity: 0.09;
  flex-shrink: 0;
  user-select: none;
  padding-bottom: 6px;
}
.map-header-text {
  flex: 1;
  padding-bottom: 4px;
}
.map-header-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--orange, #f97316);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.map-header-text h2 {
  margin-bottom: 8px;
}
.map-header-text p {
  font-size: 15px;
}

/* Responsive stacking */
@media (max-width: 640px) {
  .svc-header-split { flex-direction: column; gap: 0; align-items: flex-start; }
  .svc-header-num { font-size: 64px; opacity: 0.07; margin-bottom: -12px; }
  .map-header-split { flex-direction: column; gap: 0; align-items: flex-start; }
  .map-header-num { font-size: 80px; line-height: 1; margin-bottom: -8px; }
  .map-immersive-header { text-align: left !important; }
  .partners-ticker-header { text-align: center; }
  .ticker-label-eyebrow { text-align: center; }

  /* Ticker partenaires — version mobile */
  .ticker-item {
    height: 130px;
    min-width: 220px;
    padding: 22px 36px;
    border-radius: 14px;
  }
  .ticker-item img {
    max-width: 170px;
    max-height: 85px;
  }
}


/* ================================================================
   ANIMATIONS — Hero word reveal · Magnetic CTA · Spotlight cards
   ================================================================ */

/* ============== 1. HERO WORD REVEAL ============== */
.hero-h1-reveal {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.hero-h1-reveal .hr-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.1;
}
.hero-h1-reveal .hr-word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: hrWordIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-h1-reveal .hr-word.accent > span {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.hero-h1-reveal .hr-word:nth-of-type(1) > span { animation-delay: 0.15s; }
.hero-h1-reveal .hr-word:nth-of-type(2) > span { animation-delay: 0.30s; }
.hero-h1-reveal .hr-word:nth-of-type(3) > span { animation-delay: 0.50s; }

@keyframes hrWordIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Trait doré qui se dessine sous le titre */
.hero-h1-reveal .hr-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  border-radius: 2px;
  animation: hrUnderlineIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}
@keyframes hrUnderlineIn {
  to { width: 96px; }
}

/* ============== 2. MAGNETIC BUTTONS ============== */
.magnetic {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
/* Halo doré subtil quand le bouton est magnétisé */
.magnetic::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(184, 148, 90, 0.25), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.magnetic.is-magnetized::before {
  opacity: 1;
}
button.magnetic, a.magnetic {
  position: relative;
}

/* ============== 3. SPOTLIGHT CARDS ============== */
.spotlight {
  position: relative;
  isolation: isolate;
}
.spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(184, 148, 90, 0.18),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.spotlight:hover::after {
  opacity: 1;
}
/* S'assurer que le contenu reste au-dessus du spotlight */
.spotlight > * {
  position: relative;
  z-index: 2;
}

/* ============== ACCESSIBILITÉ — REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  .hero-h1-reveal .hr-word > span {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .hero-h1-reveal .hr-underline {
    animation: none;
    width: 96px;
  }
  .magnetic {
    transition: none;
  }
  .spotlight::after {
    transition: none;
  }
}


/* ================================================================
   MOBILE STICKY CTA BAR — Appel / WhatsApp / Devis
   Visible uniquement sur écrans tactiles ≤ 880px
   ================================================================ */

.mobile-cta-bar {
  display: none; /* caché par défaut, révélé en mobile */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  border-top: 1px solid var(--bg-warm);
  box-shadow: 0 -8px 24px -8px rgba(12, 42, 91, 0.18);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  gap: 6px;
  align-items: stretch;
}
.mobile-cta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
  min-height: 56px;
}
.mobile-cta-item i {
  font-size: 18px;
  line-height: 1;
}
.mobile-cta-item:active {
  transform: scale(0.96);
}

/* Variantes */
.mobile-cta-call {
  background: var(--navy);
  color: #fff;
}
.mobile-cta-call:active { background: var(--navy-2); }

.mobile-cta-whatsapp {
  background: #25D366;
  color: #fff;
}
.mobile-cta-whatsapp:active { background: #1ea952; }

.mobile-cta-quote {
  background: var(--orange);
  color: #fff;
}
.mobile-cta-quote:active { background: var(--orange-deep); }

/* Affichage uniquement sur tactile + écran ≤ 880px */
@media (max-width: 880px) and (hover: none) {
  .mobile-cta-bar {
    display: flex;
  }
  /* Décaler le back-to-top et le cookie banner pour ne pas être cachés */
  .back-to-top {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .cookie-banner {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
  }
  /* Padding du body pour que le bas de page ne soit pas masqué */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

/* Fallback : afficher aussi en mobile sans hover détectable correctement (ex: certains laptop tactiles) */
@media (max-width: 640px) {
  .mobile-cta-bar {
    display: flex;
  }
  .back-to-top {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .cookie-banner {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
