/* ============================================
   FINISHADDICT - Styles Complets
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1F2937;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

/* Animations globales améliorées */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

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

/* Classes d'animation */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* ----- VARIABLES ----- */
:root {
  --primary: #042543;
  --primary-dark: #042543;
  --primary-light: #1083C5;
  --accent-blue: #1083C5;
  --accent-pink: #EC4899;
  --accent-orange: #F97316;
  --accent-green: #10B981;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* Bouton transparent pour hero et CTA */
.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
}

.btn-outline-white {
  background: var(--white);
  color: var(--gray-800);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
}

.btn-dark {
  background: var(--gray-800);
  color: var(--white);
}
.btn-dark:hover {
  background: #111827;
}

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

.btn-header {
  padding: 12px 24px;
  font-size: 14px;
  background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
  border: none;
}
.btn-header:hover {
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  z-index: 100;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

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

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-tagline {
  display: none;
  font-size: 10px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.2;
}

.header-right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

.btn-rdv-mobile {
  padding: 10px 20px;
  font-size: 13px;
  background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 32px;
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: none;
}

.main-nav a {
  color: var(--gray-800);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: rgba(16, 131, 197, 0.1);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: -1;
}

.main-nav a:hover {
  color: var(--primary-light);
}

.main-nav a:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.main-nav a.active {
  color: var(--primary-light);
}

.main-nav a.active::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  background: rgba(16, 131, 197, 0.15);
  box-shadow: 0 0 0 2px rgba(16, 131, 197, 0.2);
}

/* Dropdown Menu SNEA */
.nav-dropdown {
  position: relative;
}

/* Bulle/overlay pour desktop uniquement */
@media (min-width: 769px) {
  .nav-dropdown::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 37, 67, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
    pointer-events: none;
  }

  .nav-dropdown:hover::before,
  .nav-dropdown.active::before {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 101;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.nav-dropdown-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: rgba(16, 131, 197, 0.1);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: -1;
}

.nav-dropdown-toggle:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.nav-dropdown.active .nav-dropdown-toggle::before,
.nav-dropdown-toggle.active::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  background: rgba(16, 131, 197, 0.15);
  box-shadow: 0 0 0 2px rgba(16, 131, 197, 0.2);
}

.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.active .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  color: var(--primary-light);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(4, 37, 67, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  margin: 2px 0;
  background: transparent;
  border: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(16, 131, 197, 0.1);
  color: var(--primary-light);
  transform: translateX(4px);
}

.nav-dropdown-menu a.active {
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.15) 0%, rgba(4, 37, 67, 0.1) 100%);
  color: var(--primary-light);
  font-weight: 600;
  border: 1px solid rgba(16, 131, 197, 0.2);
}

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

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #fff;
  border-bottom-right-radius: 100px;
  overflow: hidden;
}

/* Image de fond (vague/océan) - s'arrête au niveau du bouton RDV */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  height: 100%;
  background: url('../images/Vector 3.png') no-repeat;
  background-size: 100% 100%;
  background-position: left top;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  gap: 40px;
  min-height: 100vh;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-left h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-left h1 .brand {
  color: var(--white);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}

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

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  padding-right: 20px;
  margin-left: 80px;
}

.hero-right img {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-top: 280px;
  align-self: flex-end;
}

/* Masquer l'image mobile sur desktop */
.hero-mobile-image {
  display: none;
}

/* ============================================
   BADGES SECTION
   ============================================ */
.badges {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.badge-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.badge-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 131, 197, 0.1), transparent);
  transition: left 0.5s;
}

.badge-item:hover::before {
  left: 100%;
}

.badge-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(4, 37, 67, 0.15);
}

.badge-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.badge-item:hover .badge-icon {
  transform: scale(1.2) rotate(10deg);
}

/* ============================================
   SERVICES / POURQUOI SECTION
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #042543 0%, #1083C5 100%);
  border-radius: 2px;
  animation: scaleIn 0.6s ease-out 0.3s both;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 50px;
}

.cards-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex: 1;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  width: 250px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 131, 197, 0.1), transparent);
  transition: left 0.6s;
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(16, 131, 197, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.card:hover .card-icon::after {
  width: 80px;
  height: 80px;
}

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

.card-icon.pink { background: #FDF2F8; }
.card-icon.blue { background: #EFF6FF; }
.card-icon.orange { background: #FFF7ED; }
.card-icon.green { background: #ECFDF5; }

.card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.cards-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.2s;
}

.cards-nav:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/cigarette.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 50px 0 40px;
  position: relative;
}

.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 300px;
  overflow: hidden;
}

.slider-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.2s;
  flex-shrink: 0;
  z-index: 10;
}

.slider-nav:hover {
  background: var(--gray-100);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.stars {
  color: #FBBF24;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.quote {
  font-size: 16px;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: var(--primary-light);
  font-size: 15px;
}

.testimonial-cta {
  text-align: center;
  margin-top: 30px;
}

/* ============================================
   APPOINTMENT SECTION
   ============================================ */
.appointment {
  padding: 100px 0;
  background: #F0F7FF;
}

.appointment .section-title {
  margin-bottom: 12px;
}

.appointment .section-subtitle {
  margin-bottom: 60px;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon.blue { background: #EFF6FF; }
.info-icon.orange { background: #FFF7ED; }
.info-icon.green { background: #ECFDF5; }

.info-box h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.info-box p {
  font-size: 14px;
  color: var(--gray-600);
}

.form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
}

/* Style spécifique pour le select Type d'addiction */
.form-group select {
  background-color: #fff;
  border-radius: 8px;
  font-size: 14px;
  color: #1F2937;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231F2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  transition: all 0.3s ease;
}

.form-group select:hover {
  border-color: var(--primary-light);
}

.form-group select:focus {
  box-shadow: 0 0 0 3px rgba(16, 131, 197, 0.1);
}

.form-group select option {
  padding: 12px;
  background-color: #fff;
  color: #1F2937;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.payment-info {
  display: flex;
  gap: 12px;
  background: #84a4df;
  border: 1px solid #84a4df;
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
}

.payment-info svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-info strong {
  font-size: 14px;
  color: var(--gray-800);
  display: block;
  margin-bottom: 4px;
}

.payment-info p {
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #042543;
  padding: 30px 0;
}

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

.footer-logo img {
  height: 36px;
}

.copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--white);
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--primary-light);
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-modal {
  transform: translateY(0);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid var(--gray-200);
}

.popup-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.popup-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--gray-500);
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: var(--gray-800);
}

.popup-form {
  padding: 30px;
}

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

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

.popup-form-row .form-group {
  margin-bottom: 0;
}

.popup-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.popup-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup-form input::placeholder {
  color: var(--gray-400);
}

.popup-form input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(16, 131, 197, 0.1);
}

.popup-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
  border-top: 1px solid var(--gray-200);
  margin-top: 10px;
}

.btn-popup-submit {
  background: #3D63AC;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-popup-submit:hover {
  background: #2d4d8a;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 60px;
  }
  
  .hero-left {
    max-width: 100%;
  }
  
  .hero-left h1 {
    font-size: 40px;
  }
  
  .hero-desc {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-right {
    justify-content: center;
  }
  
  .hero-right img {
    max-width: 350px;
    bottom: 0;
  }
  
  .hero::after {
    width: 100%;
    height: 40%;
    border-top-left-radius: 40px;
  }
  
  .cards {
    flex-wrap: wrap;
  }
  
  .appointment-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  position: relative;
}

/* Assurer que le menu est visible sur desktop */
@media (min-width: 769px) {
  .site-header {
    position: fixed !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15) !important;
  }
  
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1) !important;
  }
  
  .main-nav {
    display: flex !important;
    position: relative !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    max-width: none !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-direction: row !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    padding: 0 !important;
  }
  
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .mobile-menu-overlay {
    display: none !important;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .site-header {
    width: 100%;
    padding: 10px 16px;
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    border-left: none;
    border-right: none;
    min-height: 60px;
    transition: all 0.3s ease;
  }

  /* État quand on scroll - plus transparent */
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  }
  
  .header-inner {
    gap: 12px;
    position: relative;
    z-index: 1001;
    align-items: center;
  }
  
  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
  }
  
  .logo a {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    border-radius: 0;
    text-decoration: none;
  }
  
  .logo img {
    height: 32px;
  }
  
  .logo-tagline {
    display: none !important;
  }
  
  .header-right-mobile {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }
  
  .btn-rdv-mobile {
    padding: 10px 18px;
    font-size: 13px;
    background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    padding: 8px;
    z-index: 1003;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  
  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
  
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  
  .main-nav {
    position: fixed !important;
    top: 70px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 400px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    z-index: 1002 !important;
    padding: 24px 20px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.3) !important;
    overflow-y: auto !important;
    max-height: calc(100vh - 100px) !important;
  }
  
  .main-nav.active {
    display: flex !important;
  }
  
  .main-nav a {
    font-size: 16px;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    display: block;
    color: #1F2937;
    font-weight: 500;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .main-nav a:last-of-type {
    margin-bottom: 0;
  }
  
  .main-nav a.active {
    color: #FFFFFF !important;
    font-weight: 600;
    background: linear-gradient(135deg, #042543 0%, #1083C5 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(16, 131, 197, 0.4) !important;
    transform: scale(1.02);
  }
  
  .main-nav a:hover {
    color: #1083C5;
    background: rgba(16, 131, 197, 0.1);
    border-color: rgba(16, 131, 197, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav a.active:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(16, 131, 197, 0.5) !important;
  }
  
  /* Dropdown sur mobile */
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
  }
  
  .nav-dropdown-toggle svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
  }
  
  .nav-dropdown.active .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }
  
  .nav-dropdown-toggle:hover {
    background: rgba(16, 131, 197, 0.05) !important;
  }
  
  .nav-dropdown.active .nav-dropdown-toggle {
    background: rgba(16, 131, 197, 0.1) !important;
  }
  
  .nav-dropdown-menu {
    position: static !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: translateY(-10px) !important;
    min-width: 100% !important;
    margin-top: 0 !important;
    padding: 0 8px !important;
    background: rgba(16, 131, 197, 0.05) !important;
    border: none !important;
    border-radius: 12px;
    box-shadow: none !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                margin 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  
  .nav-dropdown.active .nav-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 1000px !important;
    margin-top: 12px !important;
    padding: 12px !important;
    border: 1px solid rgba(16, 131, 197, 0.15) !important;
    transform: translateY(0) !important;
    box-shadow: 0 4px 12px rgba(16, 131, 197, 0.1) !important;
  }
  
  .nav-dropdown-menu a {
    padding: 12px 16px;
    font-size: 15px;
    margin: 4px 0;
  }
  
  .header-actions {
    display: none !important;
  }
  
  .hero {
    padding-top: 70px;
    min-height: auto;
  }
  
  .hero::before {
    display: none;
  }
  
  .hero-content {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    flex-direction: row;
    align-items: stretch;
    min-height: auto;
    gap: 0;
    height: calc(100vh - 60px);
  }
  
  .hero-left {
    flex: 1;
    background: #042543;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 100%;
  }
  
  .hero-left::before {
    display: none;
  }
  
  .hero-left h1 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  
  .hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  
  .hero-actions {
    display: none;
  }
  
  .hero-right {
    flex: 1;
    margin-left: 0;
    padding-right: 0;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    min-height: 100%;
  }
  
  .hero-right img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: 0;
    object-fit: contain;
    max-height: 100%;
  }
  
  /* Mobile: Afficher l'image mobile et masquer le contenu */
  @media (max-width: 768px) {
    .hero-mobile-image {
      display: block;
      width: 100%;
      height: calc(100vh - 290px);
      overflow: hidden;
      position: relative;
      margin: 0 auto;
    }
    
    .hero-mobile-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }
    
    .hero-content {
      display: none !important;
    }
  }
  
  .badge-list {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .badge-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .cards-wrapper {
    flex-direction: column;
  }
  
  .cards-nav {
    display: none;
  }
  
  .cards {
    flex-direction: column;
    align-items: center;
  }
  
  .card {
    width: 100%;
    max-width: 100%;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  
  .slider-nav {
    display: none;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .appointment-grid {
    grid-template-columns: 1fr;
  }
  
  .info-col {
    margin-bottom: 30px;
  }
  
  .form-card {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta h2 {
    font-size: 26px;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .site-header {
    width: 100%;
    top: 0;
    border-radius: 0;
    padding: 8px 12px;
  }
  
  .logo img {
    height: 28px;
  }
  
  .mobile-menu-toggle {
    padding: 5px;
  }
  
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }
  
  .main-nav {
    width: 95% !important;
    padding: 24px 16px !important;
    max-width: 360px !important;
  }
  
  .main-nav a {
    font-size: 15px;
    padding: 14px 20px;
    text-align: center;
  }
  
  .hero {
    padding-top: 55px;
  }
  
  .hero-content {
    padding-top: 50px;
    min-height: auto;
  }
  
  .hero-left h1 {
    font-size: 28px;
  }
  
  .hero-right img {
    max-width: 240px;
    margin-top: 30px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .card {
    padding: 24px 20px;
  }
  
  .form-card {
    padding: 24px 16px;
  }
}

/* ============================================
   PAGE TÉMOIGNAGES
   ============================================ */

/* Hero Témoignages */
.temoignages-hero {
  padding: 180px 0 60px;
  text-align: center;
  background: var(--white);
}

.temoignages-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.temoignages-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Grille de témoignages */
.temoignages-grid-section {
  padding: 60px 0 80px;
  background: var(--white);
}

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

.temoignage-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-height: 220px;
}

.temoignage-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: transparent;
  transform: translateY(-4px);
}

.temoignage-stars {
  color: #1083C5;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.temoignage-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.temoignage-author {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.temoignage-author strong {
  font-size: 14px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.temoignage-date {
  font-size: 12px;
  color: var(--primary-light);
}

/* Navigation témoignages */
.temoignages-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.temoignages-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.2s;
}

.temoignages-nav-btn:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

/* Section Partager votre histoire */
.partager-histoire {
  padding: 80px 0 100px;
  background: transparent;
}

.partager-histoire .section-title {
  margin-bottom: 12px;
}

.partager-histoire .section-subtitle {
  margin-bottom: 50px;
}

.partager-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.partager-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.partager-form .form-group {
  margin-bottom: 24px;
}

.partager-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.partager-form .form-group input[type="text"],
.partager-form .form-group input[type="email"],
.partager-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.partager-form .form-group input:focus,
.partager-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
}

.form-hint {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
}

/* Star Rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 28px;
  color: var(--gray-300);
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #1083C5;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  color: var(--gray-600);
  cursor: pointer;
}

/* Responsive Témoignages */
@media (max-width: 1024px) {
  .temoignages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .temoignages-hero h1 {
    font-size: 36px;
  }
  
  .temoignages-grid {
    grid-template-columns: 1fr;
  }
  
  .partager-form {
    padding: 24px;
  }
}

/* ============================================
   PAGE À PROPOS
   ============================================ */

/* Page À Propos - Fond */
.apropos-page {
  position: relative;
}

.apropos-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/cigar.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}

.apropos-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

/* Hero À Propos */
.apropos-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: transparent;
}

.apropos-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.apropos-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section Approche - Design Moderne avec Image */
.approche-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
}

.approche-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.approche-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.approche-text-content {
  position: relative;
  z-index: 2;
}

.approche-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.approche-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(16, 131, 197, 0.3);
}

.approche-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.3;
}

.approche-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approche-text {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.9;
  margin: 0;
}

.approche-image {
  position: relative;
}

.approche-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(4, 37, 67, 0.2);
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  padding: 8px;
}

.approche-image-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.2) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 50%;
  z-index: 1;
}

.approche-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.approche-image-wrapper:hover .approche-img {
  transform: scale(1.05);
}

.approche-image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-light);
  border: 1px solid rgba(16, 131, 197, 0.1);
}

.approche-image-badge svg {
  flex-shrink: 0;
  color: var(--primary-light);
}

.approche-stats {
  background: #3D63AC;
  border-radius: var(--radius-lg);
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
}

.stat-card {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:last-child {
  border-bottom: none;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* Section Valeurs */
.valeurs-section {
  padding: 0 0 80px;
  background: transparent;
}

.valeurs-diamond {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 60px 0;
}

.valeurs-middle {
  display: flex;
  gap: 200px;
  justify-content: center;
}

.valeur-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  width: 220px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.valeur-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.valeur-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.valeur-icon.purple { background: #3D63AC; }
.valeur-icon.cyan { background: #3D63AC; }
.valeur-icon.green { background: #3D63AC; }
.valeur-icon.blue { background: #3D63AC; }

.valeur-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.valeur-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.valeurs-cta {
  text-align: center;
  margin-top: 60px;
  margin-bottom: -40px;
  position: relative;
  z-index: 10;
}

.btn-equipe {
  background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
  color: var(--white);
  border: none;
}

.btn-equipe:hover {
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
}

/* Section Équipe */
.equipe-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
}

.equipe-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.equipe-card-modern {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(4, 37, 67, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipe-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(4, 37, 67, 0.15);
}

.equipe-image-modern {
  position: relative;
}

.equipe-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(4, 37, 67, 0.2);
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  padding: 8px;
}

.equipe-image-decoration {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.15) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 50%;
  z-index: 1;
}

.equipe-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.equipe-role-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-light);
  border: 1px solid rgba(16, 131, 197, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.equipe-content-modern {
  position: relative;
  z-index: 2;
}

.equipe-nom-modern {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 24px;
  line-height: 1.3;
}

.equipe-desc-modern {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.9;
  margin: 0;
}

.equipe-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Section Expérience Personnel */
/* Section Expérience Professionnelle - Design Moderne */
.experience-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.experience-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.experience-bg-image {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
  position: absolute;
  right: 0;
  top: 0;
}

.experience-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 1;
}

.experience-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.experience-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.experience-text-content {
  position: relative;
  z-index: 2;
}

.experience-badge-overlay {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 20px;
}

.experience-image-badge {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-light);
  border: 1px solid rgba(16, 131, 197, 0.2);
  position: relative;
  z-index: 3;
}

.experience-image-badge svg {
  flex-shrink: 0;
  color: var(--primary-light);
}

.experience-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.experience-image-badge {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-light);
  border: 1px solid rgba(16, 131, 197, 0.2);
  position: relative;
  z-index: 3;
}

.experience-image-badge svg {
  flex-shrink: 0;
  color: var(--primary-light);
}

.experience-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(16, 131, 197, 0.3);
}

.experience-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
  margin: 0;
}

.experience-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.experience-text-block {
  padding: 32px 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(4, 37, 67, 0.08);
  border-left: 4px solid var(--primary-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-text-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 131, 197, 0.15);
  border-left-color: var(--primary-dark);
}

.experience-text {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

/* Section Expertises & Compétences - Design Moderne */
.expertises-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #F0F7FF 0%, #E8F4FD 100%);
  position: relative;
}

.expertises-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.expertises-content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.expertises-image {
  position: relative;
}

.expertises-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(4, 37, 67, 0.15);
  background: var(--white);
  padding: 8px;
}

.expertises-image-decoration {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.15) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 50%;
  z-index: 1;
}

.expertises-icon-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(4, 37, 67, 0.15);
}

.expertises-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertises-image-wrapper:hover .expertises-img {
  transform: scale(1.05);
}

.expertises-text-content {
  position: relative;
  z-index: 2;
}

.expertises-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.expertises-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(4, 37, 67, 0.3);
}

.expertises-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
  margin: 0;
}

.expertises-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.expertises-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.expertises-intro-text {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.9;
  margin: 0;
}

.expertises-cta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 2px solid rgba(16, 131, 197, 0.2);
  box-shadow: 0 8px 24px rgba(4, 37, 67, 0.1);
}

.expertises-cta-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.1) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.expertises-cta-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.7;
  margin: 0;
}

.expertise-percentage {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-light);
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #042543 0%, #1083C5 100%);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s ease-out;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Responsive À Propos */
@media (max-width: 1024px) {
  .approche-content-grid,
  .experience-content-grid,
  .expertises-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .approche-image,
  .experience-image {
    order: -1;
  }
  
  .experience-image-wrapper {
    margin-top: 0;
  }
  
  .approche-title,
  .experience-title,
  .expertises-title {
    font-size: 28px;
  }
  
  .experience-text-block,
  .expertises-cta {
    padding: 24px 28px;
  }
  
  .experience-text,
  .expertises-intro-text {
    font-size: 16px;
  }
  
  .approche-stats {
    max-width: 400px;
  }
  
  .valeurs-middle {
    gap: 40px;
  }
  
  .equipe-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .apropos-hero h1 {
    font-size: 32px;
  }
  
  .valeurs-middle {
    flex-direction: column;
    gap: 20px;
  }
  
  .valeur-card {
    width: 100%;
    max-width: 280px;
  }
  
  .equipe-card-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }
  
  .equipe-image-modern {
    order: -1;
  }
  
  .equipe-nom-modern {
    font-size: 24px;
  }
  
  .equipe-desc-modern {
    font-size: 16px;
  }
  
  .approche-section {
    padding: 80px 0;
  }
  
  .approche-header,
  .experience-header,
  .expertises-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .approche-icon,
  .experience-icon,
  .expertises-icon {
    width: 48px;
    height: 48px;
  }
  
  .approche-title,
  .experience-title,
  .expertises-title {
    font-size: 24px;
  }
  
  .approche-content-grid,
  .experience-content-grid,
  .expertises-content-grid {
    gap: 40px;
  }
  
  .approche-image-wrapper,
  .experience-image-wrapper,
  .expertises-image-wrapper {
    margin-top: 0;
  }
  
  .experience-section,
  .expertises-section {
    padding: 80px 0;
  }
  
  .experience-content {
    gap: 24px;
  }
  
  .experience-text-block {
    padding: 20px 24px;
  }
  
  .experience-text {
    font-size: 15px;
  }
  
  .expertises-content {
    gap: 30px;
  }
  
  .expertises-intro {
    gap: 20px;
  }
  
  .expertises-intro-text {
    font-size: 16px;
  }
  
  .expertises-cta {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  
  .expertises-cta-icon {
    width: 40px;
    height: 40px;
  }
  
  .expertises-cta-text {
    font-size: 16px;
  }
}

/* ============================================
   PAGE CONTACT
   ============================================ */

/* Hero Contact */
.contact-hero {
  padding: 180px 0 60px;
  text-align: center;
  background: var(--white);
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section Contact */
.contact-section {
  padding: 60px 0 100px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Infos Contact */
.contact-info-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 30px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all 0.2s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon.green { background: #D1FAE5; }
.contact-card-icon.yellow { background: #D1FAE5; }

.contact-card-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.contact-card-content p {
  font-size: 14px;
  color: var(--gray-500);
}

/* Formulaire Contact */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.contact-form-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 24px;
  text-align: center;
}

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

.contact-form-card .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus {
  outline: none;
  border-color: #10B981;
}

.btn-green {
  background: #008C4E;
  color: var(--white);
  border-color: #008C4E;
}

.btn-green:hover {
  background: #006b3c;
  border-color: #006b3c;
}

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  position: relative;
  background: linear-gradient(135deg, #e8f4f0 0%, #d1e7dd 100%);
  box-shadow: var(--shadow);
}

.map-clickable {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.map-clickable:hover .map-placeholder {
  background: rgba(4, 37, 67, 0.05);
}

.map-icon {
  color: var(--primary-light);
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.map-text {
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 500;
  margin: 0;
}

.map-link-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary-light);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.map-clickable:hover .map-link-button {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.map-link-button svg {
  width: 18px;
  height: 18px;
}

/* Responsive Contact */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
  }
}

/* ============================================
   BOUTON SCROLL TO TOP
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(4, 37, 67, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow: hidden;
}

.scroll-to-top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.scroll-to-top:hover::before {
  width: 100px;
  height: 100px;
}

.scroll-to-top:hover {
  transform: translateY(0) scale(1.1);
  box-shadow: 0 8px 24px rgba(16, 131, 197, 0.4);
}

.scroll-to-top:active {
  transform: translateY(0) scale(0.95);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  box-shadow: 0 6px 16px rgba(4, 37, 67, 0.4);
  transform: translateY(-2px);
}

.scroll-to-top:active {
  transform: translateY(0);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* Responsive scroll to top */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
  }
  
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   PAGE SERVICES
   ============================================ */

/* Hero Services */
.services-hero {
  padding: 180px 0 80px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.services-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.services-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px);
  transform: scale(1.05);
}

.services-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(4, 37, 67, 0.2) 0%, rgba(16, 131, 197, 0.15) 100%);
  z-index: 1;
}

.services-hero .container {
  position: relative;
  z-index: 2;
}

.services-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-text {
  width: 100%;
}

.services-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grille de Services */
.services-grid-section {
  padding: 60px 0 80px;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #042543 0%, #1083C5 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(4, 37, 67, 0.15);
  border-color: transparent;
  transform: translateY(-8px);
}

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

.service-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: #E8F4FF;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-title-wrap h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.service-title-wrap p {
  font-size: 14px;
  color: var(--gray-500);
}

.service-points {
  list-style: none;
  margin-bottom: 24px;
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.point-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.point-check.green { background: #10B981; color: #fff; }
.point-check.orange { background: #F97316; color: #fff; }
.point-check.yellow { background: #FBBF24; color: #fff; }
.point-check.blue { background: #3B82F6; color: #fff; }

.service-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px dashed var(--gray-300);
}

.service-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-stat .stat-label {
  font-size: 12px;
  color: var(--gray-500);
}

.service-stat .stat-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
}

.service-stat .stat-value.highlight {
  color: var(--primary-light);
}

/* Section Méthode */
.methode-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
}

.methode-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/image%202.png') no-repeat center center;
  background-size: cover;
  opacity: 0.4;
}

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

.etape-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.etape-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.05) 0%, rgba(4, 37, 67, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.etape-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(4, 37, 67, 0.12);
  border-color: var(--primary-light);
}

.etape-card:hover::before {
  opacity: 1;
}

.etape-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.etape-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
}

.etape-numero {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
}

.etape-titre {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.etape-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

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

/* Section Paiement */
.paiement-section {
  padding: 60px 0 100px;
  background: transparent;
}

.paiement-image {
  text-align: center;
}

.paiement-image img {
  max-width: 350px;
  height: auto;
}

/* Responsive Services */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .etapes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 140px 0 60px;
    min-height: 400px;
  }
  
  .services-hero h1 {
    font-size: 32px;
  }
  
  .services-subtitle {
    font-size: 15px;
  }
  
  .etapes-grid {
    grid-template-columns: 1fr;
  }
  
  .paiement-image img {
    max-width: 280px;
  }
}

/* ============================================
   PAGE SNEA
   ============================================ */

/* Hero SNEA */
.snea-hero {
  padding: 180px 0 80px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.snea-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.snea-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px);
  transform: scale(1.05);
}

.snea-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(4, 37, 67, 0.2) 0%, rgba(16, 131, 197, 0.15) 100%);
  z-index: 1;
}

.snea-hero .container {
  position: relative;
  z-index: 2;
}

.snea-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}

.snea-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.snea-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.snea-tagline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

.snea-hero-image {
  position: relative;
}

.snea-main-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

/* Section Introduction */
.snea-intro {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.snea-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.snea-intro-text {
  position: relative;
  z-index: 2;
}

.snea-intro-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-weight: 400;
}

.snea-intro-paragraph:last-child {
  margin-bottom: 0;
}

.snea-intro-paragraph strong {
  color: var(--primary-light);
  font-weight: 600;
}

.snea-intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(4, 37, 67, 0.12);
}

.snea-intro-image .snea-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.snea-intro-image:hover .snea-image {
  transform: scale(1.05);
}

.snea-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.snea-image:hover {
  transform: scale(1.02);
}

.snea-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.snea-feature-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  animation: arrow-pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .snea-feature-arrow {
    animation: none;
  }
}

@keyframes arrow-pulse {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.7;
  }
}

.snea-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.snea-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.snea-feature-icon {
  width: 64px;
  height: 64px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.snea-feature-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
}

/* Section Comment ça agit */
.snea-how {
  padding: 100px 0;
  background: #F0F7FF;
}

.snea-how-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 50px;
}

.snea-how-image-left,
.snea-how-image-right {
  position: relative;
}

.snea-how-image-left img,
.snea-how-image-right img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.snea-how-text {
  padding: 0 20px;
}

.snea-how-intro {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 30px;
}

.snea-how-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.snea-how-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.snea-how-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.snea-how-icon {
  width: 48px;
  height: 48px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.snea-how-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-800);
}

.snea-how-result {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.snea-how-result h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.snea-benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.snea-benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6;
}

.snea-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
  font-size: 20px;
}

.snea-how-conclusion {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  font-style: italic;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gray-200);
}

/* Section Processus */
.snea-process {
  padding: 120px 0;
  background: var(--white);
}

.snea-process-header {
  text-align: center;
  margin-bottom: 80px;
}

.snea-process-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.snea-step-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

.snea-step-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 40px;
}

.snea-step-number-modern {
  position: relative;
}

.step-num {
  font-size: 120px;
  font-weight: 800;
  background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.15;
  font-family: 'Inter', sans-serif;
  letter-spacing: -4px;
}

.snea-step-content-modern {
  position: relative;
  z-index: 2;
}

.snea-step-title-modern {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 24px;
  line-height: 1.3;
}

.snea-step-text-modern {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.9;
  margin: 0;
}

.snea-step-right {
  position: relative;
}

.snea-step-image-modern {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 60px rgba(4, 37, 67, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.snea-step-modern:hover .snea-step-image-modern {
  box-shadow: 0 30px 80px rgba(4, 37, 67, 0.25);
  transform: translateY(-8px);
}

.snea-step-img-modern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.snea-step-modern:hover .snea-step-img-modern {
  transform: scale(1.1);
}

.snea-step-badge-modern {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-light);
  border: 1px solid rgba(16, 131, 197, 0.1);
}

.snea-step-badge-modern svg {
  flex-shrink: 0;
  color: var(--primary-light);
}

.snea-connector-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  height: 60px;
}

.connector-line {
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, #1083C5 50%, transparent 100%);
  left: 50%;
  transform: translateX(-50%);
}

.connector-arrow {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(16, 131, 197, 0.2);
  color: var(--primary-light);
  animation: arrow-float 3s ease-in-out infinite;
}

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

/* Section Addictions */
.snea-addictions {
  padding: 100px 0;
  background: #F0F7FF;
}

.snea-addictions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.snea-addiction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.snea-addiction-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.snea-addiction-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.snea-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.snea-addiction-card:hover .snea-card-image {
  transform: scale(1.15);
}

.snea-addiction-card h3 {
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: center;
  margin: 0;
}

/* Section Résultats */
/* Section Résultats - Design Moderne */
.snea-results {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

.snea-results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(16, 131, 197, 0.3) 50%, transparent 100%);
}

.snea-results-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.snea-results-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.snea-results-text {
  position: relative;
  z-index: 2;
}

.snea-results-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.snea-results-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(16, 131, 197, 0.3);
}

.snea-results-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
  margin: 0;
}

.snea-results-list-wrapper {
  margin: 40px 0;
}

.snea-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.snea-result-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(4, 37, 67, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(16, 131, 197, 0.1);
}

.snea-result-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(16, 131, 197, 0.15);
  border-color: rgba(16, 131, 197, 0.2);
}

.result-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.1) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.result-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.6;
}

.snea-results-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(16, 131, 197, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--primary-light);
}

.snea-results-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-light);
}

.snea-results-note p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.snea-results-image {
  position: relative;
}

.snea-results-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(4, 37, 67, 0.2);
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  padding: 8px;
}

.image-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.2) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 50%;
  z-index: 1;
}

.snea-results-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.snea-results-image-wrapper:hover .snea-results-img {
  transform: scale(1.05);
}

/* Section Éthique - Design Moderne */
.snea-ethics {
  padding: 120px 0;
  background: linear-gradient(180deg, #F0F7FF 0%, #E8F4FD 100%);
  position: relative;
}

.snea-ethics-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.snea-ethics-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.snea-ethics-image {
  position: relative;
}

.snea-ethics-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(4, 37, 67, 0.15);
  background: var(--white);
  padding: 8px;
}

.ethics-image-decoration {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.15) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 50%;
  z-index: 1;
}

.ethics-icon-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(4, 37, 67, 0.15);
}

.snea-ethics-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.snea-ethics-image-wrapper:hover .snea-ethics-img {
  transform: scale(1.05);
}

.snea-ethics-text {
  position: relative;
  z-index: 2;
}

.snea-ethics-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.snea-ethics-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(4, 37, 67, 0.3);
}

.snea-ethics-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
  margin: 0;
}

.snea-ethics-content-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.snea-ethics-main-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--gray-800);
  margin: 0;
}

.snea-ethics-sub-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 0;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border-left: 3px solid var(--primary-light);
}

/* Section Piliers SNEA */
.snea-piliers {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
}

.snea-piliers-header {
  text-align: center;
  margin-bottom: 80px;
}

.snea-piliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.snea-pilier-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(4, 37, 67, 0.08);
  border: 1px solid rgba(16, 131, 197, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.snea-pilier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #042543 0%, #1083C5 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.snea-pilier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(16, 131, 197, 0.15);
  border-color: rgba(16, 131, 197, 0.2);
}

.pilier-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.1) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary-light);
  transition: all 0.3s ease;
}

.snea-pilier-card:hover .pilier-icon {
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  color: var(--white);
  transform: scale(1.1);
}

.pilier-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pilier-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Section Bénéfices SNEA */
.snea-benefices {
  padding: 120px 0;
  background: linear-gradient(180deg, #F0F7FF 0%, #E8F4FD 100%);
  position: relative;
}

.snea-benefices-content {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 0;
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.snea-benefices-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  background: linear-gradient(180deg, #F0F7FF 0%, #E8F4FD 100%);
}

.snea-benefices-text .section-title {
  text-align: left;
  font-size: 42px;
  margin-bottom: 40px;
  line-height: 1.2;
}

.snea-benefices-text .section-title::after {
  left: 0;
  transform: none;
  width: 80px;
}

.snea-benefices-intro {
  font-size: 20px;
  color: var(--gray-700);
  line-height: 1.9;
  margin: 0;
  font-weight: 400;
}

.snea-benefices-image {
  position: relative;
  overflow: hidden;
}

.snea-benefices-image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  padding: 0;
  height: 100%;
  min-height: 600px;
  width: 100%;
}

.benefices-image-decoration {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(16, 131, 197, 0.15) 0%, rgba(4, 37, 67, 0.1) 100%);
  border-radius: 50%;
  z-index: 1;
}

.snea-benefices-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.snea-benefices-image-wrapper:hover .snea-benefices-img {
  transform: scale(1.08);
}

.snea-benefices-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 16px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-light);
  border: 1px solid rgba(16, 131, 197, 0.15);
}

.snea-benefices-badge svg {
  flex-shrink: 0;
  color: var(--primary-light);
  width: 22px;
  height: 22px;
}

/* Section Pour Qui SNEA */
.snea-pour-qui {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
}

.snea-pour-qui-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.snea-pour-qui-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1083C5 0%, #042543 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 40px;
  box-shadow: 0 8px 24px rgba(16, 131, 197, 0.3);
}

.snea-pour-qui-text {
  font-size: 19px;
  color: var(--gray-700);
  line-height: 1.9;
  margin-top: 30px;
}

/* Section CTA */
.snea-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #042543 0%, #1083C5 100%);
  color: var(--white);
  text-align: center;
}

.snea-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.snea-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.snea-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.snea-cta-actions .btn {
  padding: 16px 32px;
  font-size: 16px;
}

/* Footer SNEA */
.snea-footer {
  padding: 80px 0;
  background: var(--white);
}

.snea-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: center;
}

.snea-footer-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.snea-footer-text p {
  font-size: 18px;
  color: var(--gray-600);
  font-style: italic;
}

/* Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s ease, transform 1s ease;
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s ease, transform 1s ease;
}

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

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

/* Responsive SNEA */
@media (max-width: 1024px) {
  .snea-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .snea-intro {
    padding: 60px 0;
  }
  
  .snea-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .snea-intro-image {
    order: -1;
  }
  
  .snea-intro-paragraph {
    font-size: 15px;
  }
  
  .snea-how-content {
    grid-template-columns: 1fr;
  }
  
  .snea-how-image-left,
  .snea-how-image-right {
    order: -1;
  }
  
  .snea-step-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
    text-align: center;
  }
  
  .snea-step-left {
    padding-right: 0;
    align-items: center;
  }
  
  .step-num {
    font-size: 80px;
  }
  
  .snea-step-title-modern {
    font-size: 28px;
  }
  
  .snea-step-text-modern {
    font-size: 16px;
  }
  
  .snea-step-image-modern {
    height: 300px;
  }
  
  .snea-connector-modern {
    transform: rotate(90deg);
    margin: 20px 0;
    height: 40px;
  }
  
  .connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1083C5 50%, transparent 100%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .snea-addictions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .snea-results-content,
  .snea-ethics-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .snea-benefices-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .snea-benefices-text {
    padding: 60px 30px;
    background: linear-gradient(180deg, #F0F7FF 0%, #E8F4FD 100%);
  }
  
  .snea-benefices-text .section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .snea-benefices-text .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .snea-benefices-intro {
    font-size: 18px;
    text-align: center;
  }
  
  .snea-benefices-image-wrapper {
    margin-top: 0;
    min-height: 400px;
  }
  
  .snea-benefices-image {
    order: -1;
  }
  
  .snea-benefices-badge {
    bottom: 20px;
    left: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .snea-results-title,
  .snea-ethics-title {
    font-size: 28px;
  }
  
  .snea-results-image-wrapper,
  .snea-ethics-image-wrapper {
    margin-top: 30px;
  }
  
  .snea-ethics-content {
    grid-template-columns: 1fr;
  }
  
  .snea-ethics-image {
    order: -1;
  }
  
  .snea-piliers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .snea-hero {
    padding: 140px 0 60px;
  }
  
  .snea-hero-text h1 {
    font-size: 32px;
  }
  
  .snea-subtitle {
    font-size: 20px;
  }
  
  .snea-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .snea-feature-arrow {
    transform: rotate(90deg) !important;
    margin: 10px 0 !important;
    width: 40px !important;
    height: 40px !important;
    animation: none !important;
  }
  
  .snea-feature-arrow svg {
    width: 40px !important;
    height: 40px !important;
  }
  
  .snea-intro {
    padding: 50px 0;
  }
  
  .snea-intro-grid {
    gap: 30px;
  }
  
  .snea-intro-paragraph {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .snea-process {
    padding: 80px 0;
  }
  
  .snea-process-header {
    margin-bottom: 50px;
  }
  
  .snea-process-steps {
    gap: 50px;
  }
  
  .snea-step-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
    text-align: center;
  }
  
  .snea-step-left {
    padding-right: 0;
    align-items: center;
    gap: 30px;
  }
  
  .step-num {
    font-size: 80px;
  }
  
  .snea-step-title-modern {
    font-size: 28px;
  }
  
  .snea-step-text-modern {
    font-size: 16px;
  }
  
  .snea-step-image-modern {
    height: 300px;
  }
  
  .snea-connector-modern {
    transform: rotate(90deg);
    margin: 20px 0;
    height: 40px;
  }
  
  .connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1083C5 50%, transparent 100%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  .snea-feature-item {
    min-width: 100%;
    max-width: 100%;
  }
  
  .snea-addictions-grid {
    grid-template-columns: 1fr;
  }
  
  .snea-cta-content h2 {
    font-size: 28px;
  }
}
