/* ==========================================================================
   Eagle.Tech Creation — Site vitrine
   Couleurs : bleu #041caf, jaune #ffb400, rouge #fa070e
   ========================================================================== */

:root {
  --blue: #041caf;
  --blue-dark: #02136e;
  --blue-light: #1a36d6;
  --yellow: #ffb400;
  --yellow-dark: #e0a000;
  --red: #fa070e;
  --red-dark: #c0050b;
  --white: #ffffff;
  --light: #f5f7fb;
  --gray: #6c7793;
  --dark: #0a1130;
  --shadow: 0 10px 30px rgba(4, 28, 175, 0.15);
  --shadow-lg: 0 25px 60px rgba(4, 28, 175, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typographie — Créatif & graphique */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Palatino Linotype', 'Book Antiqua', Palatino, 'URW Palladio L', 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Bebas Neue', Impact, sans-serif;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

/* Hiérarchie globale */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--dark);
}
p { line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ===== Preloader ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-eagle img {
  width: 140px; animation: pulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 180, 0, 0.6));
}
.loader-bar {
  width: 160px; height: 4px; margin: 18px auto 0; border-radius: 4px;
  background: rgba(255, 255, 255, 0.2); position: relative; overflow: hidden;
}
.loader-bar::after {
  content: ''; position: absolute; left: -40%; top: 0; height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  animation: load 1.2s ease-in-out infinite;
}
@keyframes load { 0% { left: -40%; } 100% { left: 100%; } }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== Top bar ===== */
.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 0;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.topbar-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-contact i { color: var(--yellow); margin-right: 4px; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}
.topbar-social a:hover {
  background: var(--yellow); color: var(--blue-dark); transform: translateY(-2px);
}
@media (max-width: 640px) { .hide-mobile { display: none; } }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(4, 28, 175, 0.08);
  transition: var(--transition);
}
.navbar.scrolled { padding: 0; box-shadow: 0 4px 30px rgba(4, 28, 175, 0.12); }
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 56px; width: auto;
  filter: drop-shadow(0 4px 10px rgba(4, 28, 175, 0.25));
  transition: var(--transition);
}
.brand:hover .brand-logo { transform: scale(1.05) rotate(-3deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-accent);
  font-size: 30px; color: var(--red); letter-spacing: 1.5px;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 5px; color: var(--dark); font-weight: 800;
  margin-top: 4px;
}

.nav-menu {
  display: flex; align-items: center; gap: 26px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  color: var(--dark);
  transition: var(--transition);
  letter-spacing: 0.01em;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 50%;
  width: 0; height: 3px; background: var(--yellow);
  transition: var(--transition);
  transform: translateX(-50%); border-radius: 3px;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Actions utilisateur (compte + panier) à droite */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid #e2e6f3;
}
.nav-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--light);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: var(--transition);
  position: relative;
}
.nav-icon:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.nav-icon.is-admin {
  background: linear-gradient(135deg, var(--yellow), var(--red));
  color: var(--white);
}
.nav-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  display: none;
  align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.nav-badge.show { display: inline-flex; }

.burger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.burger span {
  width: 26px; height: 3px; background: var(--blue); border-radius: 3px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(250, 7, 14, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(250, 7, 14, 0.45);
}
.btn-outline {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-light {
  background: var(--white); color: var(--blue);
}
.btn-light:hover { background: var(--yellow); color: var(--white); transform: translateY(-3px); }
.btn-outline-light {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--red); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4, 28, 175, 0.78) 0%, rgba(2, 19, 110, 0.85) 100%),
    url('../assets/image13.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
  color: var(--white);
  padding: 80px 0 160px;
  min-height: 95vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 180, 0, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(250, 7, 14, 0.18) 0%, transparent 45%);
  pointer-events: none;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(40px); opacity: 0.5;
}
.shape-1 { width: 260px; height: 260px; background: var(--yellow); top: 10%; right: 5%; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; background: var(--red); bottom: 10%; left: 5%; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 320px; height: 320px; background: var(--blue-light); top: 40%; left: 40%; opacity: 0.3; animation: float 12s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 22px; border-radius: 50px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-tag i { color: var(--yellow); }

.hero-welcome {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--yellow);
  letter-spacing: 3px;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 180, 0, 0.4);
}

.hero-tagline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  padding: 22px 24px;
  background: linear-gradient(90deg, rgba(255, 180, 0, 0.95) 0%, rgba(253, 174, 5, 0.95) 100%);
  overflow: hidden;
}
.hero-tagline::before,
.hero-tagline::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, rgba(0,0,0,0.18) 0%, transparent 100%);
}
.hero-tagline::before { left: 0; }
.hero-tagline::after { right: 0; transform: scaleX(-1); }
.hero-tagline span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--blue);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.25);
  display: inline-block;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 24px 0 22px;
  text-transform: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hero-title .t-1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.hero-title .t-2 { font-size: clamp(1.7rem, 3.8vw, 2.8rem); }
.hero-title .t-3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
.hero-title .t-4 { font-size: clamp(1.15rem, 2.4vw, 1.75rem); }
.accent,
.accent-red { color: #fdae05; }
.hero-slogan {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--yellow); margin-bottom: 22px;
  letter-spacing: 1px;
  text-transform: none;   /* casse de phrase : 1re lettre en majuscule, le reste en minuscule */
}
.hero-text {
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.75;
  opacity: 0.92;
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-accent);
  font-size: 3rem; color: var(--yellow); line-height: 1;
  letter-spacing: 1px;
}
.stat span:last-child {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-image { position: relative; display: flex; justify-content: center; }
.hero-logo-frame {
  position: relative; width: 100%; max-width: 460px;
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-frame::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow 4s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-logo-frame img {
  width: 100%; position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.scroll-down {
  position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%);
  z-index: 4; color: var(--white); font-size: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* ===== Section heading ===== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700; font-size: 12.5px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  padding: 8px 22px;
  background: rgba(250, 7, 14, 0.08);
  border-radius: 50px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: none;
}
.section-sub {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ===== About ===== */
.about { padding: 120px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.about-img {
  position: relative; border-radius: var(--radius-lg); overflow: visible;
}
.about-img img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; height: 480px; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); padding: 18px 22px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.about-badge i {
  font-size: 28px; color: var(--yellow);
  background: rgba(255, 180, 0, 0.15); padding: 12px; border-radius: 12px;
}
.about-badge strong {
  display: block; color: var(--dark);
  font-family: var(--font-accent);
  font-size: 22px; letter-spacing: 1.5px;
}
.about-badge span {
  font-size: 12.5px; color: var(--gray);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--blue);
  margin-bottom: 22px;
  line-height: 1.25;
  letter-spacing: 0.005em;
  font-weight: 700;
  text-transform: none;
}
.about-content p {
  color: var(--gray);
  margin-bottom: 26px;
  font-size: 16.5px;
  line-height: 1.8;
}
.about-list { margin-bottom: 32px; }
.about-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0; color: var(--dark);
  font-size: 15.5px;
  font-weight: 600;
}
.about-list i {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--yellow); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}

/* ===== Services ===== */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(4, 28, 175, 0.06);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}
.service-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 28, 175, 0) 40%, rgba(4, 28, 175, 0.65) 100%);
  pointer-events: none;
}
.service-icon {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 12px 24px rgba(4, 28, 175, 0.3);
  transition: var(--transition);
  z-index: 2;
  border: 3px solid var(--white);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--yellow), var(--red));
  transform: translateX(-50%) rotate(-8deg) scale(1.05);
}
.service-body {
  padding: 44px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body p { flex: 1; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: 0.005em;
  font-weight: 700;
  text-transform: none;
  line-height: 1.3;
}
.service-card p {
  color: var(--gray); font-size: 15px;
  line-height: 1.7; margin-bottom: 22px;
}
.service-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(4, 28, 175, 0.08);
  color: var(--blue);
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px; letter-spacing: 0.12em;
}

/* ===== Process ===== */
.process { padding: 120px 0; background: var(--blue); color: var(--white); }
.process .section-head h2 { color: var(--white); }
.process .section-tag { background: rgba(255, 180, 0, 0.2); color: var(--yellow); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process-step {
  text-align: center; padding: 0 0 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.process-step:hover {
  transform: translateY(-6px); background: rgba(255, 255, 255, 0.1);
  border-color: var(--yellow);
}
.step-img {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  margin-bottom: 24px;
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.process-step:hover .step-img img { transform: scale(1.08); }
.step-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 28, 175, 0.15) 0%, rgba(4, 28, 175, 0.85) 100%);
  pointer-events: none;
}
.step-num {
  font-family: var(--font-accent);
  font-size: 3.6rem; color: var(--yellow);
  line-height: 1;
  letter-spacing: 2px;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--blue);
  padding: 0 18px;
  border-radius: 10px;
  border: 2px solid var(--yellow);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.process-step h4 { margin-top: 28px; padding: 0 22px; }
.process-step p { padding: 0 22px; }
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: 0.005em;
  font-weight: 700;
  text-transform: none;
}
.process-step p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px; line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery { padding: 120px 0; background: var(--white); }
.gallery-filter {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 11px 26px; border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--light); color: var(--dark);
  border: 2px solid transparent; transition: var(--transition);
}
.filter-btn:hover { background: rgba(255, 180, 0, 0.15); color: var(--blue); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--yellow), var(--red));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(250, 7, 14, 0.25);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 1 / 1;
  cursor: pointer; box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item.hide { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 28, 175, 0.85) 100%);
  display: flex; align-items: flex-end; padding: 22px;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: none;
  border-left: 3px solid var(--yellow); padding-left: 12px;
}

/* ===== Réalisations ===== */
.realisations {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}
.real-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(4, 28, 175, 0.08);
  border: 2px solid transparent;
  transition: var(--transition);
  aspect-ratio: 4 / 3;
}
.real-card.hide { display: none; }
.real-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}
.real-card img,
.real-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  background: #000;
}
.real-card:hover img { transform: scale(1.08); }

/* Carte vidéo */
.real-video { background: #000; }
.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 24px rgba(250, 7, 14, 0.45);
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
  transition: var(--transition);
  animation: pulsePlay 2s ease-in-out infinite;
}
.real-video:hover .play-badge {
  transform: translate(-50%, -50%) scale(1.1);
}
.real-video.playing .play-badge { opacity: 0; }
@keyframes pulsePlay {
  0%, 100% { box-shadow: 0 10px 24px rgba(250, 7, 14, 0.45), 0 0 0 0 rgba(250, 7, 14, 0.4); }
  50% { box-shadow: 0 10px 24px rgba(250, 7, 14, 0.45), 0 0 0 18px rgba(250, 7, 14, 0); }
}
.real-cta {
  text-align: center;
  padding-top: 30px;
}
.real-cta p {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 18px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .real-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .real-grid { grid-template-columns: 1fr; }
}

/* ===== CTA banner ===== */
.cta-banner {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(4, 28, 175, 0.92), rgba(250, 7, 14, 0.85)),
    url('https://images.pexels.com/photos/3568519/pexels-photo-3568519.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover; background-position: center;
  color: var(--white);
}
.cta-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 12px;
  letter-spacing: 0.005em;
  line-height: 1.25;
  text-transform: none;
  font-weight: 700;
  color: var(--white);
}
.cta-banner p {
  opacity: 0.92;
  font-size: 16.5px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Testimonials ===== */
.testimonials { padding: 120px 0; background: var(--light); }
.testimonials-swiper { padding-bottom: 50px; }
.testimonial-card {
  background: var(--white); padding: 36px 30px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  position: relative; height: 100%;
  border-top: 4px solid var(--yellow);
}
.quote-icon {
  font-size: 28px; color: var(--yellow); opacity: 0.4;
  margin-bottom: 14px;
}
.testimonial-card p {
  color: var(--dark); font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}
.testi-author { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-accent);
  font-weight: 400; font-size: 24px;
  letter-spacing: 1px;
}
.testi-author strong {
  display: block; color: var(--dark);
  font-family: var(--font-display);
  font-weight: 400; font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.testi-author span {
  color: var(--gray); font-size: 13px;
  font-weight: 500;
}
.testi-stars { color: var(--yellow); }
.swiper-pagination-bullet { background: var(--blue); opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--red); width: 24px; border-radius: 4px; }

.google-review { text-align: center; margin-top: 16px; }
.google-review a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 50px;
  background: var(--white); color: var(--blue);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: var(--shadow); transition: var(--transition);
}
.google-review a:hover {
  transform: translateY(-3px); color: var(--red);
}
.google-review i { font-size: 20px; }

/* ===== Contact ===== */
.contact { padding: 120px 0; background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px; border-radius: var(--radius);
  background: var(--light);
  transition: var(--transition);
  border: 2px solid transparent;
}
.info-card:hover {
  border-color: var(--yellow);
  transform: translateX(6px);
  background: var(--white);
  box-shadow: var(--shadow);
}
.info-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 14px; background: linear-gradient(135deg, var(--yellow), var(--red));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: 0.005em;
  font-weight: 700;
  text-transform: none;
}
.info-card a {
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.info-card a:hover { color: var(--red); }
.info-social { display: flex; gap: 10px; margin-top: 4px; }
.info-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.info-social a:hover { background: var(--yellow); transform: translateY(-3px); }

.contact-form {
  background: var(--light); padding: 36px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 10px;
  font-weight: 700;
  font-size: 12.5px; color: var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid #e2e6f3; border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 180, 0, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; }
.form-feedback {
  margin-top: 14px; padding: 12px; border-radius: 10px;
  font-size: 14px; text-align: center;
  display: none;
}
.form-feedback.success {
  display: block; background: rgba(40, 167, 69, 0.1);
  color: #1f7a37; border: 1px solid rgba(40, 167, 69, 0.3);
}
.form-feedback.error {
  display: block; background: rgba(250, 7, 14, 0.1);
  color: var(--red-dark); border: 1px solid rgba(250, 7, 14, 0.3);
}

/* ===== Footer ===== */
.footer {
  background: var(--blue-dark); color: var(--white);
  padding-top: 70px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 50px;
}
.brand-footer .brand-name { color: var(--yellow); }
.brand-footer .brand-sub { color: var(--white); }
.footer-slogan {
  font-family: var(--font-accent);
  font-size: 1.5rem; color: var(--yellow);
  margin: 18px 0;
  letter-spacing: 3px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--yellow); color: var(--blue-dark);
  transform: translateY(-3px) rotate(8deg);
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.15rem; margin-bottom: 20px;
  color: var(--yellow);
  letter-spacing: 0.005em;
  font-weight: 700;
  text-transform: none;
  position: relative; padding-bottom: 10px;
}
.footer-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px; background: var(--red); border-radius: 3px;
}
.footer-col ul li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
.footer-col ul li a { transition: var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 6px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--yellow); width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
}
.footer-admin a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 180, 0, 0.3);
  color: var(--yellow);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.footer-admin a:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  border-color: var(--yellow);
}
.footer-admin i { font-size: 11px; }

/* ===== Overlay menu mobile ===== */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(4, 28, 175, 0.5);
  z-index: 98;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: wapulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-10deg); }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.8), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 99;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--yellow); }

/* ===== Responsive ===== */

/* Tablette large — 1024px */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about { padding: 80px 0; }
  .services, .process, .realisations, .contact { padding: 80px 0; }
}

/* Tablette — 840px */
@media (max-width: 840px) {
  /* Hero */
  .hero {
    background-attachment: scroll, scroll;
    padding: 60px 0 100px;
    min-height: 100svh;
  }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-content { order: 2; }
  .hero-image { order: 1; }
  .hero-title { align-items: center; }
  .hero-logo-frame { max-width: 280px; padding: 24px; margin: 0 auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .scroll-down { bottom: 130px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { overflow: visible; }
  .about-img img { height: 300px; }
  .about-badge {
    position: relative;
    bottom: auto; right: auto;
    margin-top: 16px;
    display: inline-flex;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { padding: 70px 0; }

  /* Nav mobile — translateX évite le scroll horizontal sur Android */
  .nav-menu {
    position: fixed; top: 0; right: 0;
    transform: translateX(100%);
    width: 82%; max-width: 320px; height: 100vh;
    background: var(--white);
    flex-direction: column; align-items: stretch;
    padding: 80px 20px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-links { flex-direction: column; gap: 0; width: 100%; align-items: stretch; }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block; padding: 14px 4px;
    border-bottom: 1px solid #eee;
    width: 100%; font-size: 15px;
  }
  .nav-link::after { display: none; }
  .nav-actions {
    margin-top: 20px; padding-left: 0;
    border-left: 0; justify-content: center; gap: 16px;
  }
  .nav-icon { width: 48px; height: 48px; font-size: 18px; }
  .burger { display: flex; }

  /* Sections */
  .about, .services, .process, .realisations, .contact { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
}

/* Mobile — 640px */
@media (max-width: 640px) {
  .container { padding: 0 14px; }

  /* Grilles */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .real-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Service card compact */
  .service-img { height: 160px; }
  .service-body { padding: 36px 14px 20px; }
  .service-card h3 { font-size: 1.05rem; }

  /* CTA */
  .cta-banner { padding: 48px 0; }
  .cta-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-actions { justify-content: center; }

  /* Contact form */
  .contact-form { padding: 24px 16px; }

  /* Sections padding */
  .about, .services, .process, .realisations, .contact, .gallery { padding: 50px 0; }
}

/* Mobile — 560px */
@media (max-width: 560px) {
  /* Topbar — cacher la barre sur très petit écran */
  .topbar { display: none; }

  /* Nav */
  .nav-inner { padding: 10px 16px; }
  .brand-logo { height: 44px; }
  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 9px; letter-spacing: 3px; }

  /* Hero */
  .hero { padding: 40px 0 80px; min-height: unset; }
  .hero-logo-frame { max-width: 190px; padding: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .hero-stats .stat { min-width: 80px; text-align: center; }
  .stat-num { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; padding: 13px 20px; }
  .hero-tagline { padding: 14px 16px; }
  .hero-tagline span { font-size: clamp(1.1rem, 4.5vw, 1.8rem); }

  /* Grilles 1 col */
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* About */
  .about-img img { height: 240px; }

  /* Contact */
  .form-group input, .form-group select, .form-group textarea { padding: 11px 13px; font-size: 14px; }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }

  /* Boutons */
  .btn { padding: 12px 20px; font-size: 13.5px; }

  /* Sections padding */
  .about, .services, .process, .realisations, .contact, .gallery { padding: 40px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
}

/* Très petit mobile — 400px */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .nav-inner { padding: 8px 12px; }
  .brand-logo { height: 38px; }
  .brand-name { font-size: 19px; }
  .hero-logo-frame { max-width: 150px; }
  .hero-title .t-1 { font-size: 1.7rem; }
  .hero-title .t-2 { font-size: 1.5rem; }
  .hero-title .t-3 { font-size: 1.25rem; }
  .hero-title .t-4 { font-size: 1.05rem; }
  .real-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Cartes produits (section populaires sur index) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}
.product-img {
  height: 200px; overflow: hidden;
  position: relative; background: var(--light);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(4, 28, 175, 0.92);
  color: var(--white); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.product-body {
  padding: 18px 18px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.product-body h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  margin-bottom: 6px; color: var(--dark); line-height: 1.3;
}
.product-body .desc {
  color: var(--gray); font-size: 13.5px;
  margin-bottom: 14px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-size: 18px; font-weight: 800; color: var(--blue);
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 12px;
}
.product-price small { font-size: 12px; color: var(--gray); font-weight: 500; }
.product-card .btn { width: 100%; justify-content: center; }

/* ===== Classes dynamiques (contenu admin) ===== */
.service-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--light), #dde3f8);
  display: flex; align-items: center; justify-content: center;
  color: #b0b8d4; font-size: 40px;
}
.real-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--light), #dde3f8);
  display: flex; align-items: center; justify-content: center;
  color: #b0b8d4; font-size: 40px;
}
.real-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,28,175,0.85) 100%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
  color: #fff; font-weight: 600; font-size: 14px;
  pointer-events: none;
}
.real-card:hover .real-overlay { opacity: 1; }

/* ===== Responsive — manques & améliorations mobiles ===== */

/* Section produits populaires sur index — compacte */
#produits-populaires {
  padding: 50px 0 40px;
}
#produits-populaires .section-head {
  margin-bottom: 30px;
}
#produits-populaires .section-head h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}
#produits-populaires .section-sub {
  font-size: 15px;
}
#produits-populaires .products-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px !important;
}
#produits-populaires .product-img { height: 160px; }
#produits-populaires .product-body { padding: 12px 14px 14px; }
#produits-populaires .product-body h3 { font-size: 14.5px; margin-bottom: 4px; }
#produits-populaires .product-body .desc { font-size: 12.5px; margin-bottom: 10px; -webkit-line-clamp: 2; }
#produits-populaires .product-price { font-size: 15px; margin-bottom: 10px; }
#produits-populaires .product-card .btn { padding: 9px 14px; font-size: 12.5px; }

@media (max-width: 840px) {
  /* Filtres galerie — scroll horizontal */
  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-filter::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; padding: 9px 18px; font-size: 12px; }

  /* Section produits populaires */
  #produits-populaires { padding: 60px 0; }
  #produits-populaires .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 560px) {
  /* Filtres galerie */
  .filter-btn { padding: 8px 14px; font-size: 11.5px; }

  /* Produits populaires */
  #produits-populaires .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  #produits-populaires .product-img { height: 150px; }
  #produits-populaires .product-body { padding: 10px; }
  #produits-populaires .product-body h3 { font-size: 13.5px; }
  #produits-populaires .product-price { font-size: 15px; }

  /* Réalisations — 2 cols sur mobile moyen */
  .real-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Process — 1 col */
  .process-grid { grid-template-columns: 1fr; }

  /* Services — déjà 1 col mais réduire padding */
  .service-body { padding: 40px 16px 22px; }
  .service-card h3 { font-size: 1.1rem; }
}

@media (max-width: 400px) {
  #produits-populaires .products-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
}
