/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --yellow:  #f5c400;
  --yellow2: #ffd740;
  --yellow-dark: #c49a00;
  --black:   #000000;
  --dark1:   #0d0d0d;
  --dark2:   #111111;
  --dark3:   #181818;
  --dark4:   #1e1e1e;
  --dark5:   #252525;
  --grey:    #888888;
  --grey2:   #aaaaaa;
  --white:   #ffffff;
  --glow:    0 0 24px rgba(245,196,0,0.35);
  --glow-sm: 0 0 12px rgba(245,196,0,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  background: var(--dark2);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none !important; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark1); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ============================================
   SÉLECTION
   ============================================ */
::selection { background: var(--yellow); color: #000; }

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

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

.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header .section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-header h2 span { color: var(--yellow); }

.section-header p {
  font-size: 16px;
  color: var(--grey2);
  max-width: 520px;
  margin: 0 auto;
}

h2 {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Ligne décorative sous titre */
.title-line {
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet shimmer sur tous les boutons */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn:hover::after { left: 150%; }

/* Bouton jaune principal */
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #000;
  box-shadow: 0 4px 20px rgba(245,196,0,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--yellow2), var(--yellow));
  box-shadow: var(--glow), 0 8px 32px rgba(245,196,0,0.4);
  transform: translateY(-2px);
  color: #000;
}

.btn-primary:active { transform: translateY(0); }

/* Bouton contour blanc */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

/* Bouton blanc */
.btn-white {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.btn-white:hover {
  background: var(--yellow);
  color: #000;
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

/* Bouton contour foncé (sur fond jaune) */
.btn-outline-white {
  background: transparent;
  color: #000;
  border-color: rgba(0,0,0,0.3);
}

.btn-outline-white:hover {
  background: #000;
  color: var(--yellow);
  border-color: #000;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* Bouton large */
.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--black);
  color: var(--grey);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,196,0,0.15);
}

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

.top-bar-left {
  display: flex;
  gap: 28px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.top-bar-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--grey);
  transition: all 0.25s;
}

.top-bar-right a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  transform: scale(1.1);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--dark1);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(245,196,0,0.2);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  border-bottom-color: var(--yellow);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,196,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.2s;
}

.logo a:hover { opacity: 0.85; }

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(var(--glow-sm));
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(245,196,0,0.4)); }
  50%       { filter: drop-shadow(0 0 20px rgba(245,196,0,0.8)); }
}

.logo-main {
  display: block;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

.logo-main span { color: var(--yellow); }

.logo-sub {
  display: block;
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Téléphone header */
.header-phone {
  text-align: right;
}

.phone-label {
  display: block;
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.phone-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 1px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-number::before {
  content: '📞';
  font-size: 16px;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 80%, 100% { transform: rotate(0); }
  10%           { transform: rotate(-15deg); }
  20%           { transform: rotate(15deg); }
  30%           { transform: rotate(-10deg); }
  40%           { transform: rotate(10deg); }
}

.phone-number:hover {
  color: #fff;
  text-shadow: var(--glow-sm);
}

/* Logo image */
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(245,196,0,0.4));
  transition: filter 0.3s;
}

.logo a:hover .logo-img {
  filter: drop-shadow(0 0 20px rgba(245,196,0,0.7));
}

/* Image placeholder avec vraie image */
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: absolute;
  inset: 0;
}

.image-placeholder {
  position: relative;
}

/* Footer logo image */
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Footer social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--grey);
  transition: all 0.25s;
}

.footer-social a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}

/* Bouton fermer menu mobile — caché sur desktop */
.nav-close { display: none; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: var(--dark3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-list { display: flex; }

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey2);
  transition: all 0.25s;
  position: relative;
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px 2px 0 0;
  transition: width 0.3s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--yellow);
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  width: 60%;
}

.nav-list > li > a .arrow {
  font-size: 9px;
  transition: transform 0.2s;
  opacity: 0.6;
}

.nav-list > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark1);
  min-width: 210px;
  border-top: 2px solid var(--yellow);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), var(--glow-sm);
  z-index: 200;
  animation: dropIn 0.2s ease;
}

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

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}

.dropdown li a::before {
  content: '→';
  color: var(--yellow);
  font-size: 12px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s;
}

.dropdown li a:hover {
  background: var(--dark3);
  color: var(--yellow);
  padding-left: 24px;
}

.dropdown li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--black) center/cover no-repeat;
  overflow: hidden;
}

/* Photos en fond qui défilent */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: hero-zoom 7s ease forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

/* Overlay sombre sur les photos */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 1;
}

/* Motif hexagonal */
.hero-hex {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0 0l28 16v-32M28 66V34M0 50l28-16M56 50L28 34' fill='none' stroke='rgba(245%2C196%2C0%2C0.1)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

/* Flèches du hero */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.45);
  border: 2px solid rgba(245,196,0,0.4);
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* Points du hero */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

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

.hero-dot.active {
  background: var(--yellow);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(245,196,0,0.7);
}

@media (max-width: 768px) {
  .hero-arrow { width: 40px; height: 40px; font-size: 22px; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
}


/* Motif hexagonal animé (comme la flyer) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0 0l28 16v-32M28 66V34M0 50l28-16M56 50L28 34' fill='none' stroke='rgba(245%2C196%2C0%2C0.12)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  animation: hex-drift 30s linear infinite;
  z-index: 1;
}

@keyframes hex-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 56px 100px; }
}

/* Halo jaune subtil en bas à droite */
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,0,0.08) 0%, transparent 70%);
  bottom: -100px; right: 5%;
  z-index: 0;
  animation: halo-float 10s ease-in-out infinite;
}

@keyframes halo-float {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 780px;
  padding: 100px 28px;
}

/* Badge RGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(245,196,0,0.5);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hero-badge::before {
  content: '⚡';
  font-size: 12px;
}

.hero-content h1 {
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
  animation: fade-up 0.6s ease 0.1s both;
}

.hero-content h1 strong {
  color: var(--yellow);
  display: block;
  text-shadow: 0 0 40px rgba(245,196,0,0.4), 0 2px 16px rgba(0,0,0,0.8);
}

/* Ligne déco sous le titre */
.hero-content h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border-radius: 2px;
  margin-top: 20px;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,0.7);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
  animation: fade-up 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease 0.3s both;
}

.hero-buttons .btn {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.5);
}

.hero-buttons .btn-outline {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* Stats rapides dans le hero */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fade-up 0.6s ease 0.4s both;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

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

/* ============================================
   PRÉSENTATION
   ============================================ */
.presentation {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
}

.presentation::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.presentation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.presentation-text .section-tag { display: flex; }
.presentation-text p {
  color: var(--grey2);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.presentation-text .btn { margin-top: 8px; }

/* Image placeholder */
.image-placeholder {
  aspect-ratio: 4/3;
  background: var(--dark4);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(245,196,0,0.1);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.image-placeholder:hover { border-color: rgba(245,196,0,0.3); }

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,196,0,0.03), transparent 60%);
}

/* Coins déco */
.image-placeholder::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 24px; height: 24px;
  border-top: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
  border-radius: 2px 0 0 0;
  opacity: 0.4;
}

.image-placeholder span {
  font-size: 48px;
  opacity: 0.2;
  position: relative;
}

.image-placeholder p {
  font-size: 13px;
  font-style: italic;
  color: var(--grey);
  opacity: 0.5;
  position: relative;
}

.image-placeholder.dark { background: var(--dark1); }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--dark1);
  position: relative;
}

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

.service-card {
  background: var(--dark3);
  padding: 36px 28px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  border-bottom: 3px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Coin déco */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(225deg, rgba(245,196,0,0.08), transparent);
  border-radius: 0 8px 0 60px;
  transition: all 0.35s;
}

/* Ligne de fond */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 0 0 8px 8px;
}

.service-card:hover {
  border-color: rgba(245,196,0,0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-sm);
  background: var(--dark4);
}

.service-card:hover::before {
  width: 100%; height: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(245,196,0,0.04), transparent);
}

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

.service-number {
  font-size: 52px;
  font-weight: 800;
  color: rgba(245,196,0,0.07);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.service-card:hover .service-number { color: rgba(245,196,0,0.12); }

.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.service-card:hover h3 { color: var(--yellow); }

.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.25s;
}

.service-link::after {
  content: '→';
  transform: translateX(0);
  transition: transform 0.25s;
}

.service-card:hover .service-link {
  color: var(--yellow);
}

.service-card:hover .service-link::after { transform: translateX(4px); }

/* ============================================
   CARROUSEL RÉALISATIONS
   ============================================ */
.slider-section {
  background: var(--dark1);
  padding-bottom: 80px;
  position: relative;
}

.slider-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.2), transparent);
}

.slider-header {
  padding: 72px 0 40px;
}

.slider-header h2 { margin-bottom: 0; }

/* Wrapper principal */
.slider-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.slider-wrap:active { cursor: grabbing; }

/* Track qui se déplace */
.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Chaque slide */
.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

/* Zoom lent sur la photo active */
.slide.active img {
  transform: scale(1.04);
}

/* Label de la photo */
.slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 32px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background: var(--yellow);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}

/* Flèches */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(245,196,0,0.4);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Points de pagination */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

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

.slider-dot.active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(245,196,0,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .slide img { height: 300px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 22px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .slide-label { font-size: 13px; padding: 32px 16px 14px; }
}

@media (max-width: 480px) {
  .slide img { height: 240px; }
  .slider-header { padding: 48px 0 28px; }
}

/* ============================================
   ACTUALITÉS FACEBOOK
   ============================================ */
.actu {
  padding: 100px 0;
  background: var(--dark3);
  position: relative;
}

.actu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.2), transparent);
}

.actu-inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 56px;
  align-items: start;
}

/* Conteneur iframe Facebook */
.actu-fb-widget {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  width: 500px;
  max-width: 100%;
  height: 320px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.45);
  flex-shrink: 0;
}

.actu-fb-widget iframe {
  width: 500px !important;
  max-width: 100%;
  height: 320px;
  border: none;
  display: block;
}

/* Aperçu visuel Facebook (fallback) */
.actu-preview {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245,196,0,0.15);
  background: var(--dark4);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.actu-preview:hover {
  border-color: rgba(245,196,0,0.4);
  box-shadow: var(--glow-sm);
}

.actu-preview-img {
  width: 100%;
  overflow: hidden;
}

.actu-preview-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.actu-preview:hover .actu-preview-img img {
  transform: scale(1.02);
}

.actu-preview-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--dark3);
  font-size: 13px;
  color: var(--grey2);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.fb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1877f2;
  flex-shrink: 0;
  box-shadow: 0 0 6px #1877f2;
}

.actu-preview-bar svg {
  margin-left: auto;
  color: #1877f2;
  flex-shrink: 0;
}

/* Icône Facebook dans la CTA */
.actu-fb-icon {
  width: 64px; height: 64px;
  background: #1877f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(24,119,242,0.3);
}

/* Colonne droite */
.actu-cta {
  position: sticky;
  top: 100px;
}

.actu-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.actu-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.actu-cta p {
  font-size: 15px;
  color: var(--grey2);
  line-height: 1.8;
  margin-bottom: 28px;
}

.actu-cta .btn {
  margin-bottom: 36px;
}

.actu-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.actu-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 4px;
}

.actu-stat-lbl {
  display: block;
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive actualités */
@media (max-width: 1100px) {
  .actu-inner { grid-template-columns: 1fr; gap: 40px; }
  .actu-cta   { position: static; }
  .actu-fb-widget { width: 100%; }
  .actu-fb-widget iframe { width: 100% !important; }
}

@media (max-width: 480px) {
  .actu { padding: 48px 0; }
}

/* ============================================
   SERVICE DETAIL (dépannage)
   ============================================ */
.service-detail {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.2), transparent);
}

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

.detail-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  border-top: 3px solid var(--yellow);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.3s;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35), var(--glow-sm);
  background: var(--dark4);
}

.detail-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
}

.detail-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.detail-card p {
  font-size: 15px;
  color: var(--grey2);
  line-height: 1.8;
}

.detail-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 24px;
}

.detail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detail-card:hover .detail-card-img img {
  transform: scale(1.05);
}

/* ============================================
   ACTIVITÉS
   ============================================ */
.activites { padding: 100px 0; }

.activites.particuliers { background: var(--dark2); }

.activites.professionnels {
  background: var(--dark3);
  position: relative;
}

.activites.professionnels::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.2), transparent);
}

.activites-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.activites-inner.reverse { direction: rtl; }
.activites-inner.reverse > * { direction: ltr; }

.activites-text .section-tag { display: flex; }

.activites-text p { color: var(--grey2); line-height: 1.8; }

.activites-list { margin: 28px 0 36px; }

.activites-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: #ddd;
  font-weight: 400;
  transition: all 0.2s;
}

.activites-list li:first-child { border-top: 1px solid rgba(255,255,255,0.05); }

.activites-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(245,196,0,0.1);
  border: 1px solid rgba(245,196,0,0.3);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 700;
}

.activites-list li:hover { color: #fff; padding-left: 6px; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--yellow), var(--yellow2) 50%, var(--yellow));
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  color: #000;
  font-size: 34px;
  margin-bottom: 8px;
}

.cta-text p { color: rgba(0,0,0,0.6); font-size: 16px; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--dark1);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
}

/* Formulaire */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey2);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  color: #fff;
  background: var(--dark3);
  transition: all 0.25s;
}

.form-group select option { background: var(--dark3); color: #fff; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,0.08);
  background: var(--dark4);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(46,207,113,0.1);
  color: #2ecf71;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(46,207,113,0.25);
  animation: fade-up 0.3s ease;
}

.form-success.visible { display: flex; align-items: center; gap: 10px; }

/* Info cards contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--dark3);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--yellow);
  transition: all 0.25s;
}

.info-card:hover {
  background: var(--dark4);
  border-color: rgba(245,196,0,0.25);
  border-left-color: var(--yellow);
  transform: translateX(4px);
  box-shadow: var(--glow-sm);
}

.info-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,196,0,0.08);
  border-radius: 8px;
}

.info-card strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 4px;
}

.info-card p, .info-card a { font-size: 15px; color: var(--grey2); }
.info-card a:hover { color: #fff; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark1);
  color: var(--grey);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow) 40%, var(--yellow2) 60%, transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-sub  { color: var(--grey); }

.footer .footer-col > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--grey);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--yellow);
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }

.footer-col p { font-size: 14px; color: var(--grey); margin-bottom: 8px; }
.footer-col a { color: var(--grey); transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================
   ANIMATIONS SCROLL (JS controlled)
   ============================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RÉALISATIONS
   ============================================ */
.realisations {
  padding: 100px 0;
  background: var(--dark1);
  position: relative;
}

.realisations::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.2), transparent);
}

/* Catégories */
.real-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.real-cat-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.real-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.real-cat-cover {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.real-cat-card:hover .real-cat-cover {
  transform: scale(1.06);
}

.real-cat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 16px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.real-cat-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.real-cat-count {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Modal galerie */
.real-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.real-modal.open {
  opacity: 1;
  pointer-events: all;
}

.real-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(10px);
}

.real-modal-inner {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.real-modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.real-modal-close:hover { background: rgba(255,255,255,0.25); }

.real-modal-title {
  color: var(--yellow);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.real-modal-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.real-modal-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.real-modal-img-wrap img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.real-modal-arr {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 36px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.real-modal-arr:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

.real-modal-counter {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

/* ============================================
   AVIS GOOGLE
   ============================================ */
.avis {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
}

.avis::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.2), transparent);
}

/* Note globale */
.avis-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 32px 48px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.avis-score-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
}

.avis-big-note {
  font-size: 52px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.avis-big-stars {
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.avis-big-count {
  font-size: 12px;
  color: var(--grey2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Carousel avis */
.avis-carousel-outer { margin-bottom: 40px; }

.avis-carousel-wrap {
  overflow: hidden;
}

.avis-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.avis-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 4px 2px;
}

/* Contrôles */
.avis-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.avis-arr {
  width: 44px; height: 44px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.avis-arr:hover { border-color: var(--yellow); color: var(--yellow); }
.avis-arr:disabled { opacity: 0.3; cursor: default; }

.avis-dots { display: flex; gap: 8px; align-items: center; }

.avis-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}

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

.avis-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.avis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
  border-color: rgba(245,196,0,0.2);
}

.avis-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.avis-avatar {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-meta { flex: 1; }

.avis-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.avis-stars {
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 1px;
}

.avis-g { flex-shrink: 0; opacity: 0.7; }

.avis-text {
  font-size: 14px;
  color: var(--grey2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}

.avis-date {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Boutons */
.avis-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   ZONE D'INTERVENTION
   ============================================ */
.zone {
  padding: 100px 0;
  background: var(--dark3);
  position: relative;
}

.zone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.2), transparent);
}

.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.zone-city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey2);
  transition: all 0.25s;
  cursor: default;
}

.zone-city svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.zone-city:hover {
  border-color: var(--yellow);
  color: #fff;
  background: var(--dark5);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}

.zone-city-base {
  background: rgba(245,196,0,0.08);
  border-color: var(--yellow);
  color: var(--yellow);
  font-weight: 700;
}

.zone-city-base:hover {
  background: rgba(245,196,0,0.15);
  color: var(--yellow2);
}

.zone-city-dist {
  font-size: 11px;
  font-weight: 400;
  color: var(--grey);
  opacity: 0.7;
}

.zone-city:hover .zone-city-dist { opacity: 1; color: var(--yellow); }
.zone-city-base .zone-city-dist  { color: rgba(245,196,0,0.6); }

.zone-note {
  text-align: center;
  font-size: 14px;
  color: var(--grey);
}

.zone-note a {
  color: var(--yellow);
  font-weight: 600;
  transition: color 0.2s;
}

.zone-note a:hover { color: var(--yellow2); }

/* ============================================
   RESPONSIVE — TABLETTE (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  /* Grilles */
  .services-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .detail-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Hero */
  .hero-content h1 { font-size: 44px; }
  .hero-stats { gap: 32px; }

  /* Présentation & activités */
  .presentation-inner { gap: 48px; }
  .activites-inner    { gap: 48px; }

  /* Sections padding */
  .presentation, .services, .activites,
  .service-detail, .contact, .cta-band, .zone, .avis, .realisations { padding: 72px 0; }

  /* Réalisations */
  .real-categories { grid-template-columns: repeat(2, 1fr); }

  /* Avis */
  .avis-slide { grid-template-columns: 1fr; gap: 14px; }
  .avis-score { padding: 24px 32px; gap: 28px; }
}

/* ============================================
   RESPONSIVE — TABLETTE PORTRAIT (max 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Top bar */
  .top-bar { padding: 6px 0; font-size: 12px; }
  .top-bar-left span:last-child { display: none; }

  /* Header */
  .header { padding: 12px 0; }
  .header-phone { display: none; }
  .logo-img { height: 40px; }
  .logo-main { font-size: 18px; }
  .logo-sub  { display: none; }

  /* Burger */
  .burger { display: flex; }

  /* Navigation mobile */
  .nav { position: relative; }
  .nav-inner { padding: 0; position: static; }

  .nav-list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark1);
    z-index: 500;
    overflow-y: auto;
    padding-top: 72px;
    border-top: 3px solid var(--yellow);
  }

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

  .nav-list > li > a {
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    letter-spacing: 0.5px;
  }

  .nav-list > li > a::after { display: none; }

  /* Bouton fermer le menu */
  .nav-close {
    display: flex;
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 20px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 501;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--yellow);
    background: rgba(245,196,0,0.04);
    animation: none;
    min-width: unset;
  }

  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown  { display: block; }

  .dropdown li a {
    padding: 12px 20px 12px 32px;
    font-size: 15px;
    color: var(--grey2);
  }

  /* Hero */
  .hero { min-height: 520px; }
  .hero-content { padding: 80px 20px 60px; }
  .hero-content h1 { font-size: 34px; letter-spacing: -0.5px; }
  .hero-content p  { font-size: 16px; }
  .hero-badge { font-size: 10px; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
  }
  .hero-stat-number { font-size: 28px; }

  /* Titres */
  h2, .section-header h2 { font-size: 24px; }
  .section-header { margin-bottom: 40px; }

  /* Sections padding */
  .presentation, .services, .activites,
  .service-detail, .contact, .zone, .avis, .realisations { padding: 60px 0; }
  .cta-band { padding: 48px 0; }

  /* Zone */
  .zone-city { padding: 9px 16px; font-size: 13px; }
  .zone-city-name { font-size: 13px; }

  /* Réalisations */
  .real-categories { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Avis */
  .avis-slide { grid-template-columns: 1fr; gap: 12px; }
  .avis-actions { flex-direction: column; align-items: center; }
  .avis-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .footer   { padding: 56px 0 0; }

  /* Grilles 1 colonne */
  .presentation-inner,
  .activites-inner,
  .contact-inner  { grid-template-columns: 1fr; gap: 32px; }

  .activites-inner.reverse { direction: ltr; }

  /* Sur mobile, image en premier pour les activités */
  .activites-inner .activites-image { order: -1; }
  .activites-inner.reverse .activites-image { order: -1; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .detail-grid   { grid-template-columns: 1fr; gap: 14px; }

  /* Service cards plus compactes */
  .service-card { padding: 24px 18px; }
  .service-number { font-size: 36px; }
  .detail-card-img { height: 160px; }

  /* CTA */
  .cta-inner   { flex-direction: column; text-align: center; gap: 28px; }
  .cta-actions { justify-content: center; flex-wrap: wrap; }
  .cta-text h2 { font-size: 24px; }

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

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-col h4 { margin-bottom: 14px; }

  /* Image placeholder ratio ajusté */
  .image-placeholder { aspect-ratio: 16/9; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Top bar masqué sur petit écran */
  .top-bar { display: none; }

  /* Header compact */
  .header { padding: 10px 0; }
  .header-inner { padding: 0 16px; }
  .logo-img  { height: 34px; }
  .logo-main { font-size: 16px; letter-spacing: 1px; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content { padding: 64px 16px 48px; }
  .hero-content h1 { font-size: 26px; line-height: 1.2; }
  .hero-content h1::after { width: 48px; margin-top: 14px; }
  .hero-content p  { font-size: 15px; margin-bottom: 28px; }
  .hero-badge { display: none; }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .hero-stat-number { font-size: 24px; }
  .hero-stat-label  { font-size: 11px; }

  /* Titres */
  h2, .section-header h2 { font-size: 20px; }
  .section-header p { font-size: 14px; }

  /* Sections padding */
  .presentation, .services, .activites,
  .service-detail, .contact, .zone, .avis, .realisations { padding: 48px 0; }
  .cta-band { padding: 40px 0; }

  /* Zone */
  .zone-city { padding: 8px 14px; font-size: 12px; gap: 6px; }

  /* Réalisations */
  .real-categories { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .real-modal-arr { width: 40px; height: 40px; font-size: 28px; }
  .real-modal-img-wrap img { max-height: 55vh; }

  /* Avis */
  .avis-score { flex-direction: column; gap: 16px; padding: 24px; }
  .avis-score-sep { width: 60px; height: 1px; }
  .avis-big-note { font-size: 40px; }
  .avis-score-left, .avis-score-right { text-align: center; }

  /* Services 1 colonne */
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card  { padding: 20px 16px; }
  .service-icon  { font-size: 26px; }
  .service-card h3 { font-size: 14px; }

  /* CTA */
  .cta-text h2 { font-size: 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Contact */
  .info-card { padding: 14px; gap: 12px; }
  .info-icon { width: 36px; height: 36px; font-size: 18px; }

  /* Footer */
  .footer-inner { gap: 24px; }
  .footer-logo-img { height: 36px; }

  /* Boutons formulaire */
  .btn-full { padding: 14px 20px; font-size: 14px; }
}
