/*
 * style.css - DB Construction
 * v2.1 - derniere maj avril 2026
 * palette: navy #1B2A4A / gold #C8A96E
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #1B2A4A;
  --navy-dark: #0F1C33;
  --navy-light: #2C4470;
  --accent: #C8A96E;
  --accent-light: #D4BA85;
  --light-bg: #F4F6F9;
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #6B7280;
  --shadow: 0 10px 40px rgba(27, 42, 74, 0.12);
  --shadow-hover: 0 20px 60px rgba(27, 42, 74, 0.2);
  --radius: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite; /* maybe slower? */
}

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

/* top bar */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* nav */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: none;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(27, 42, 74, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.logo img {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.nav-links a.active {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 42, 74, 0.3);
}

.nav-cta::after {
  display: none !important;
}

/* lang switch */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  padding: 2px;
  line-height: 0;
  opacity: 0.5;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--accent);
}

.lang-btn svg {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  display: block;
}

/* hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* hero section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(44, 68, 112, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 1s ease 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 800;
}

.hero h1 span {
  color: var(--accent);
  position: relative;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  animation: fadeInRight 1s ease 0.5s both;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* hero scene */
.hero-scene {
  width: 100%;
  max-width: 500px;
  height: 500px;
  position: relative;
  margin: 0 auto;
}

/* Pulsing rings */
.scene-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.12);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.scene-ring-1 {
  width: 200px;
  height: 200px;
  animation: pulseRing 4s ease-in-out infinite;
}

.scene-ring-2 {
  width: 320px;
  height: 320px;
  animation: pulseRing 4s ease-in-out 0.8s infinite;
}

.scene-ring-3 {
  width: 440px;
  height: 440px;
  animation: pulseRing 4s ease-in-out 1.6s infinite;
}

.hero-visual.in-view .scene-ring {
  opacity: 1;
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.04); }
}

/* Center hexagon */
.scene-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
  z-index: 5;
}

.hero-visual.in-view .scene-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.scene-icon-main {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0 0 30px rgba(200, 169, 110, 0.2));
}

.hex-border {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2s ease 0.5s;
}

.hero-visual.in-view .hex-border {
  stroke-dashoffset: 0;
}

/* Orbit items */
.orbit-item {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 4;
}

a.orbit-item {
  text-decoration: none;
}

.orbit-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(15, 28, 51, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 169, 110, 0.25);
  padding: 22px 22px 14px;
  border-radius: 18px;
  transition: all 0.4s ease;
  cursor: pointer;
  min-width: 100px;
}

.orbit-icon:hover {
  background: rgba(200, 169, 110, 0.15);
  border-color: rgba(200, 169, 110, 0.5);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 40px rgba(200, 169, 110, 0.15);
}

.orbit-icon svg {
  width: 44px;
  height: 44px;
  color: var(--accent);
}

.orbit-icon span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Orbit positions */
.orbit-1 {
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0) scale(0.5);
}

.hero-visual.in-view .orbit-1 {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 0.4s;
}

.orbit-2 {
  top: 30%;
  right: 0;
  transform: scale(0.5);
}

.hero-visual.in-view .orbit-2 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}

.orbit-3 {
  bottom: 10%;
  right: 10%;
  transform: scale(0.5);
}

.hero-visual.in-view .orbit-3 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.8s;
}

.orbit-4 {
  bottom: 20%;
  left: 5%;
  transform: scale(0.5);
}

.hero-visual.in-view .orbit-4 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1s;
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-visual.in-view .particle {
  opacity: 1;
}

.p1 { width: 6px; height: 6px; top: 15%; left: 20%; animation: floatParticle 6s ease-in-out infinite; }
.p2 { width: 4px; height: 4px; top: 25%; right: 15%; animation: floatParticle 5s ease-in-out 0.5s infinite; opacity: 0.5; }
.p3 { width: 8px; height: 8px; bottom: 30%; left: 10%; animation: floatParticle 7s ease-in-out 1s infinite; opacity: 0.3; }
.p4 { width: 3px; height: 3px; top: 60%; right: 5%; animation: floatParticle 4s ease-in-out 1.5s infinite; opacity: 0.6; }
.p5 { width: 5px; height: 5px; bottom: 5%; left: 40%; animation: floatParticle 5.5s ease-in-out 0.8s infinite; opacity: 0.4; }
.p6 { width: 4px; height: 4px; top: 8%; right: 30%; animation: floatParticle 6.5s ease-in-out 1.2s infinite; opacity: 0.35; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -15px) scale(1.2); }
  50% { transform: translate(-5px, -25px) scale(0.8); }
  75% { transform: translate(15px, -10px) scale(1.1); }
}

/* Connecting lines */
.connect-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.connect-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.5s ease;
}

.hero-visual.in-view .connect-line {
  stroke-dashoffset: 0;
}

.hero-visual.in-view .connect-line:nth-child(1) { transition-delay: 0.5s; }
.hero-visual.in-view .connect-line:nth-child(2) { transition-delay: 0.7s; }
.hero-visual.in-view .connect-line:nth-child(3) { transition-delay: 0.9s; }
.hero-visual.in-view .connect-line:nth-child(4) { transition-delay: 1.1s; }

/* Scroll-driven parallax movement */
.hero-scene[data-scroll] .orbit-item {
  transition: transform 0.1s linear;
}

/* btns */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(27, 42, 74, 0.35);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* sections */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header .overline::before,
.section-header .overline::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

/* services cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
  stroke: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.service-card .learn-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card:hover .learn-more svg {
  transform: translateX(4px);
}

/* stats */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08), transparent);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 110, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

/* temoignages */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  font-family: serif;
  color: rgba(27, 42, 74, 0.06);
  line-height: 1;
}

.testimonial-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card .stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}

.testimonial-info .name {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-info .role {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* cta */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(44, 68, 112, 0.15) 0%, transparent 50%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* about + values */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-image .placeholder-img {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.about-image .placeholder-img svg {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.3);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--navy-dark);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(200, 169, 110, 0.3);
}

.experience-badge .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
}

.value-item .check-icon {
  width: 24px;
  height: 24px;
  background: rgba(200, 169, 110, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item .check-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* zone map */
.zone-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.zone-map {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.zone-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.zone-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
}

.zone-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* certif */
.certif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.certif-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.certif-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.certif-card .certif-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 169, 110, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.certif-card .certif-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.certif-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.certif-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* faq */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(27, 42, 74, 0.02);
}

.faq-question .arrow {
  width: 32px;
  height: 32px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question .arrow {
  background: var(--navy);
  transform: rotate(180deg);
}

.faq-item.active .faq-question .arrow svg {
  color: var(--white);
}

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

.faq-answer-content {
  padding: 0 32px 24px;
  color: var(--text-light);
  line-height: 1.8;
}

/* form contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.1), transparent);
  border-radius: 50%;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 110, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.contact-detail .detail-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail .detail-value {
  color: var(--white);
  font-weight: 500;
}

.contact-detail .detail-value a {
  color: var(--white);
}

.contact-detail .detail-value a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27, 42, 74, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27, 42, 74, 0.3);
}

.form-submit svg {
  width: 18px;
  height: 18px;
}

/* galerie realisation */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 28, 51, 0.9));
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* Before / After Slider */
.before-after-item {
  aspect-ratio: 4/3;
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s ease-out;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 16px;
  background: rgba(15, 28, 51, 0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  transition: left 0.05s ease-out;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-handle-circle svg {
  width: 14px;
  height: 14px;
}

.before-after-slider:hover .ba-handle-circle,
.before-after-slider.dragging .ba-handle-circle {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.before-after-item:hover .ba-overlay-single {
  transform: translateY(0);
}

/* Gallery fade between 2 images on hover */
.gallery-fade-item {
  position: relative;
}

.gallery-fade-item .fade-img {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.gallery-fade-item .fade-img-base {
  opacity: 1;
  z-index: 1;
}

.gallery-fade-item .fade-img-hover {
  opacity: 0;
  z-index: 2;
}

.gallery-fade-item:hover .fade-img-base {
  opacity: 0;
}

.gallery-fade-item:hover .fade-img-hover {
  opacity: 1;
}

.gallery-fade-item:hover .fade-img-base,
.gallery-fade-item:hover .fade-img-hover {
  transform: none !important;
}

.gallery-fade-item .gallery-overlay {
  z-index: 3;
}

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

.filter-btn {
  padding: 10px 24px;
  border: 2px solid #E5E7EB;
  border-radius: 50px;
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

/* page headers */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
  color: #C8A96E;
}

.breadcrumbs svg {
  width: 14px;
  height: 14px;
}

/* equipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 60px;
  height: 60px;
  color: rgba(255, 255, 255, 0.3);
}

.team-info {
  padding: 24px;
}

.team-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-info .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

/* footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about .logo-text .brand {
  color: var(--white);
}

.footer-about p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE — REFONTE MOBILE COMPLÈTE
   ============================================ */

/* ——— TABLET (max 992px) ——— */
@media (max-width: 992px) {

  /* Navigation mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 28px 0;
    width: 100%;
    border-bottom: 1px solid var(--light-bg);
    font-size: 1.4rem;
    min-height: 72px;
    display: flex;
    align-items: center;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-radius: 8px !important;
  }

  .hamburger {
    display: flex;
  }

  .lang-switcher {
    margin-left: 0;
    margin-right: 8px;
  }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-scene {
    max-width: 350px;
    height: 350px;
  }

  .scene-icon-main {
    width: 110px;
    height: 110px;
  }

  .scene-ring-1 { width: 150px; height: 150px; }
  .scene-ring-2 { width: 240px; height: 240px; }
  .scene-ring-3 { width: 330px; height: 330px; }

  .orbit-icon {
    padding: 16px 16px 10px;
    min-width: 80px;
    border-radius: 14px;
  }

  .orbit-icon svg {
    width: 32px;
    height: 32px;
  }

  .orbit-icon span {
    font-size: 0.62rem;
  }

  /* Grids */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .about-grid,
  .contact-grid,
  .zone-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .service-detail {
    gap: 32px;
  }
}

/* ——— MOBILE (max 768px) ——— */
@media (max-width: 768px) {

  /* Masquer la top bar */
  .top-bar {
    display: none;
  }

  /* Header compact */
  .header .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .logo img {
    height: 44px;
  }

  .logo-text .brand {
    font-size: 1.1rem;
  }

  .logo-text .tagline {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }

  /* Language switcher — compact */
  .lang-switcher {
    gap: 2px;
  }

  .lang-btn svg {
    width: 18px;
    height: 13px;
  }

  /* Hero — compact & lisible */
  .hero {
    min-height: auto;
    padding: 20px 0 40px;
    overflow: hidden;
  }

  .hero .container {
    overflow: hidden;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  /* Hero scene — grille 2x2 sur mobile */
  .hero-visual {
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-scene {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 10px;
    position: relative !important;
  }

  /* Masquer les éléments décoratifs orbitaux */
  .scene-ring,
  .scene-ring-1,
  .scene-ring-2,
  .scene-ring-3,
  .scene-center,
  .scene-icon-main,
  .particle,
  .connect-lines {
    display: none !important;
  }

  /* Transformer les orbit items en cartes de grille */
  .orbit-item,
  .orbit-1,
  .orbit-2,
  .orbit-3,
  .orbit-4 {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }

  .hero-visual.in-view .orbit-item,
  .hero-visual.in-view .orbit-1,
  .hero-visual.in-view .orbit-2,
  .hero-visual.in-view .orbit-3,
  .hero-visual.in-view .orbit-4 {
    transform: none !important;
    opacity: 1 !important;
  }

  .orbit-icon {
    width: 100%;
    padding: 16px 10px 12px;
    min-width: unset !important;
    border-radius: 12px;
    background: rgba(15, 28, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 169, 110, 0.2);
  }

  .orbit-icon svg {
    width: 28px;
    height: 28px;
  }

  .orbit-icon span {
    font-size: 0.65rem;
    letter-spacing: 0.8px;
  }

  /* Sections — espacements réduits */
  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .section-header .overline {
    font-size: 0.72rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .section-header .overline::before,
  .section-header .overline::after {
    width: 20px;
  }

  /* Page headers (services, réalisations, etc.) */
  .page-header {
    padding: 80px 0 36px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .breadcrumbs {
    font-size: 0.8rem;
  }

  /* Stats — 2 colonnes compactes */
  .stats-section {
    padding: 50px 0;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .stat-label {
    font-size: 0.82rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .stat-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Services cards */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .service-icon svg {
    width: 24px;
    height: 24px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  /* Service detail pages */
  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .service-detail-reverse .service-detail-image {
    order: 0;
  }

  .service-detail-content h3 {
    font-size: 1.3rem;
  }

  .service-carousel {
    min-height: 240px;
  }

  .service-detail-image .placeholder-img {
    min-height: 240px;
  }

  /* About */
  .about-grid {
    gap: 28px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.92rem;
  }

  .about-image .placeholder-img {
    height: 280px;
  }

  .values-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-item {
    font-size: 0.85rem;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card blockquote {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-filters {
    gap: 6px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent 40%, rgba(15, 28, 51, 0.85));
    padding: 16px;
  }

  .gallery-overlay h4 {
    font-size: 0.9rem;
  }

  .gallery-overlay p {
    font-size: 0.78rem;
  }

  /* Before/After slider mobile */
  .ba-handle-circle {
    width: 36px;
    height: 36px;
  }

  .ba-handle-circle svg {
    width: 12px;
    height: 12px;
  }

  .ba-label {
    font-size: 0.6rem;
    padding: 4px 10px;
  }

  /* Zone intervention */
  .zone-content {
    gap: 28px;
  }

  .zone-map {
    padding: 24px;
  }

  .zone-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Certifications */
  .certif-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .certif-card {
    padding: 20px 16px;
  }

  .certif-card .certif-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .certif-card h4 {
    font-size: 0.88rem;
  }

  .certif-card p {
    font-size: 0.78rem;
  }

  /* FAQ */
  .faq-question {
    padding: 18px 20px;
    font-size: 0.9rem;
  }

  .faq-answer-content {
    padding: 0 20px 18px;
    font-size: 0.9rem;
  }

  .faq-question .arrow {
    width: 28px;
    height: 28px;
  }

  /* Contact */
  .contact-grid {
    gap: 24px;
  }

  .contact-info-card {
    padding: 28px;
  }

  .contact-info-card h3 {
    font-size: 1.3rem;
  }

  .contact-form-card {
    padding: 28px;
  }

  .contact-form-card h3 {
    font-size: 1.3rem;
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  /* CTA section */
  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-avatar {
    height: 150px;
  }

  .team-info {
    padding: 16px;
  }

  .team-info h4 {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding-top: 50px;
  }

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

  .footer h4 {
    margin-bottom: 12px;
  }

  .footer-about p {
    font-size: 0.88rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 18px 0;
  }

  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 0.82rem;
  }
}

/* ——— PETIT MOBILE (max 480px) ——— */
@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  /* Hero encore plus compact */
  .hero {
    padding: 20px 0 40px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.88rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Hero scene grille — ajustements petit écran */
  .hero-scene {
    gap: 8px;
    padding: 0 4px;
  }

  .orbit-icon {
    padding: 12px 8px 10px;
  }

  .orbit-icon svg {
    width: 24px;
    height: 24px;
  }

  .orbit-icon span {
    font-size: 0.58rem;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header .overline {
    font-size: 0.65rem;
  }

  /* Page header */
  .page-header {
    padding: 70px 0 28px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  /* Stats */
  .stats-section {
    padding: 36px 0;
  }

  .stats-grid {
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  /* Service carousel */
  .service-carousel {
    min-height: 200px;
  }

  .service-detail-image .placeholder-img {
    min-height: 200px;
  }

  /* Gallery */
  .gallery-item {
    aspect-ratio: 16/10;
  }

  /* Certif — 1 colonne */
  .certif-grid {
    grid-template-columns: 1fr;
  }

  /* Team — 1 colonne */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Contact compact */
  .contact-info-card,
  .contact-form-card {
    padding: 20px;
  }

  .contact-detail .icon-box {
    width: 40px;
    height: 40px;
  }

  .contact-detail .icon-box svg {
    width: 18px;
    height: 18px;
  }

  /* CTA */
  .cta-section {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 1.3rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  /* Footer */
  .footer {
    padding-top: 36px;
  }

  .footer-grid {
    gap: 24px;
  }
}

/* scrollbar */
/* TODO: tester sur firefox */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy-light);
}

/* detail services - refacto a faire si on rajoute des pages */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-detail-content ul {
  list-style: none;
  margin-top: 16px;
}

.service-detail-content ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.service-detail-content ul li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.service-detail-image .placeholder-img {
  height: 100%;
  min-height: 380px;
}

/* Service Carousel */
.service-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1B2A4A;
}

.service-carousel .sc-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.service-carousel .sc-slide.sc-active {
  opacity: 1;
  z-index: 2;
}

.service-carousel .sc-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.service-carousel .sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.service-carousel .sc-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.service-detail-reverse .service-detail-image {
  order: -1;
}

/* ancien style, gardé au cas ou
.service-detail-content h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
}
*/

@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-detail-reverse .service-detail-image {
    order: 0;
  }
}
