/* ==========================================   VARIABLES   ========================================== */
:root {
  --primary-color: #1a3b5c;
  --secondary-color: #c19d5f;
  --dark-color: #0f2537;
  --light-bg: #f5f5f5;
  --bg-green: linear-gradient(70deg, #ffffff 0%, #dadada 100%);
  --white: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
  --transition: all 0.3s ease;
  --gold: #c19d5f;
  --navy: #1a3b5c;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --gradient: linear-gradient(135deg, var(--gold) 0%, #d4ad6f 100%);
  --gradient-dark: linear-gradient(
    135deg,
    rgba(15, 37, 55, 0.98) 0%,
    rgba(26, 59, 92, 0.98) 100%
  );
  --text: #333333;
  --border: #e0e0e0;
  --t-fast: all 0.2s ease;
  --t-normal: all 0.3s ease;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

a,
ul,
li {
  color: inherit; /* Hérite de la couleur du parent */
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================   UTILITIES   ========================================== */

.text-gold {
  color: var(--gold);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title-large {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  padding-bottom: 30px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

/* ==========================================   NAVBAR   ========================================== */

.navbar {
  background: var(--gradient-dark);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: var(--t-normal);
  border-bottom: 1px solid rgba(193, 157, 95, 0.2);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
  height: 90px;
}

.nav-container,
.nav-brand,
.nav-right,
.nav-menu,
.nav-link,
.nav-phone,
.btn-nav,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-container {
  justify-content: space-between;
}
.nav-brand {
  gap: 15px;
  transition: transform var(--t-normal);
}
.nav-brand:hover {
  transform: translateY(-2px);
}

.brand-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(193, 157, 95, 0.3);
  transition: var(--t-normal);
}

.nav-brand:hover .brand-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(193, 157, 95, 0.5);
}

.brand-icon i {
  color: var(--white);
  font-size: 26px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-name {
  font: 700 20px var(--font-heading);
  color: var(--white);
  letter-spacing: 0.5px;
}
.brand-tagline {
  font: 600 11px var(--font-main);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-right {
  gap: 40px;
}
.nav-menu {
  gap: 5px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font: 500 16px var(--font-main);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  gap: 8px;
  transition: var(--t-normal);
}
.nav-link i {
  font-size: 16px;
  opacity: 0.8;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(193, 157, 95, 0.1);
}
.nav-link.active {
  font-weight: 600;
}

.dropdown {
  position: relative;
}
.dropdown-toggle i.fa-chevron-down {
  font-size: 10px;
  margin-left: 3px;
  transition: transform 0.4s ease;
}
.dropdown:hover .dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--r-md);
  padding: 12px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--t-fast);
  border: 1px solid var(--border);
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  inset-inline: 0;
  height: 10px;
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text);
  font: 500 14px var(--font-main);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.dropdown-menu li a i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
}
.dropdown-menu li a:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateX(5px);
}
.dropdown-menu li a:hover i {
  color: var(--white);
}

.nav-actions {
  gap: 20px;
}
.nav-phone {
  gap: 10px;
  color: var(--white);
  font: 600 15px var(--font-main);
  padding: 10px 20px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(193, 157, 95, 0.3);
  transition: var(--t-normal);
}
.nav-phone i {
  color: var(--gold);
  font-size: 16px;
}
.nav-phone:hover {
  background: rgba(193, 157, 95, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--gradient);
  color: var(--white);
  padding: 12px 30px;
  border-radius: var(--r-lg);
  font: 600 14px var(--font-main);
  gap: 8px;
  box-shadow: 0 4px 15px rgba(193, 157, 95, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--t-normal);
  text-align: center;
}

.btn-nav:hover {
  background: linear-gradient(135deg, #d4ad6f 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(193, 157, 95, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  transition: var(--t-normal);
  border-radius: 3px;
}

/* ==========================================   HERO SECTION   ========================================== */

.hero-fullwidth {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      135deg,
      rgba(15, 37, 55, 0.9) 0%,
      rgba(26, 59, 92, 0.85) 50%,
      rgba(42, 74, 106, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=1080&fit=crop")
      center/cover no-repeat;
  color: var(--white);
  padding-top: 90px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 37, 55, 0.7);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0.1;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(193, 157, 95, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(193, 157, 95, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 30%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(193, 157, 95, 0.2);
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  animation: fadeInDown 1s ease;
}

.hero-fullwidth h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-fullwidth h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero-fullwidth .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn-modern {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
}

.btn-modern.primary {
  background: var(--gold);
  color: var(--white);
}

.btn-modern.primary:hover {
  background: #d4ad6f;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(193, 157, 95, 0.4);
}

.btn-modern.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-modern.secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-stat-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
}

.hero-stat-item .label {
  font-size: 13px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.hero-scroll-indicator i {
  font-size: 24px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================   URGENCE BANNER   ========================================== */

.urgence-banner {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: var(--white);
  padding: 15px 0;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.urgence-banner i {
  margin-right: 10px;
  font-size: 18px;
  animation: pulse 2s infinite;
}

.urgence-banner a {
  color: var(--white);
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  margin-left: 5px;
  transition: var(--transition);
}

.urgence-banner a:hover {
  opacity: 0.8;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ==========================================   ABOUT FULLWIDTH   ========================================== */

.about-fullwidth {
  padding: 100px 0;
  background: var(--white);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-side {
  position: relative;
}

.about-image-side img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: var(--white);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.experience-badge .number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 600;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-content-side .lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.about-features {
  margin: 35px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: var(--gold);
  font-size: 22px;
}

.feature-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.about-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

/* Utilities pour la section about */
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 25px;
  font-family: var(--font-heading);
}

.text-gold {
  color: var(--gold);
}

.section-subtitle-large {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto;
}

/* ==========================================
   SERVICES FULLWIDTH
   ========================================== */
.services-fullwidth {
  padding: 100px 0;
  background: var(--bg-green);
  position: relative;
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card-modern {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card-modern:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.service-card-modern.featured {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--primary-color) 100%
  );
  color: var(--white);
}

.service-card-modern.featured .service-badge,
.service-card-modern.featured h3,
.service-card-modern.featured p,
.service-card-modern.featured li {
  color: var(--white);
}

.service-card-modern.featured .service-icon-modern {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-icon-modern {
  width: 64px;
  height: 64px;
  background: var(--light-bg);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.1) rotate(5deg);
}

.service-badge {
  background: rgba(193, 157, 95, 0.1);
  color: var(--gold);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card-modern h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--navy);
}

.service-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-highlights {
  list-style: none;
  margin-bottom: 25px;
}

.service-highlights li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-color);
}

.service-highlights li i {
  color: var(--gold);
  font-size: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
}

.service-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  font-weight: 700;
  color: rgba(193, 157, 95, 0.1);
  line-height: 1;
}

.service-card-modern.featured .service-card-number {
  color: rgba(255, 255, 255, 0.1);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.featured-badge i {
  font-size: 12px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ==========================================
   STATS FULLWIDTH
   ========================================== */
.stats-fullwidth {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a3b5c 0%, #0f1419 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background: radial-gradient(
      circle at 20% 50%,
      var(--gold) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 50%, var(--gold) 0%, transparent 50%);
}

.stats-decorative-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.stats-decorative-circles::before,
.stats-decorative-circles::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(193, 157, 95, 0.15) 0%,
    transparent 70%
  );
  animation: floatCircle 20s ease-in-out infinite;
}

.stats-decorative-circles::before {
  top: -100px;
  left: -100px;
}

.stats-decorative-circles::after {
  bottom: -100px;
  right: -100px;
  animation-delay: -10s;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.stats-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.stats-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: rgba(193, 157, 95, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(193, 157, 95, 0.3);
}

.stats-subtitle i {
  margin-right: 8px;
}

.stats-header h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.stats-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.stat-card-modern {
  text-align: center;
  padding: 45px 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(193, 157, 95, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.stat-card-modern:hover::before {
  left: 100%;
}

.stat-card-modern:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(193, 157, 95, 0.3);
  border-color: rgba(193, 157, 95, 0.5);
}

.stat-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.stat-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    rgba(193, 157, 95, 0.2) 0%,
    rgba(193, 157, 95, 0.05) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.stat-card-modern:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(193, 157, 95, 0.3) 0%,
    rgba(193, 157, 95, 0.1) 100%
  );
}

.stat-icon-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(193, 157, 95, 0.3);
  border-radius: 50%;
  animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.stat-value-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 15px;
  line-height: 1;
}

.stat-number {
  font-size: 58px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-size: 16px;
  font-weight: 600;
  color: rgba(193, 157, 95, 0.8);
  margin-left: 6px;
  margin-top: 8px;
}

.stat-plus,
.stat-percent {
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 4px;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--white);
}

.stat-detail {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat-detail i {
  font-size: 6px;
  color: var(--gold);
}

.stat-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.stat-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, #d4ad6f 100%);
  border-radius: 10px;
  transition: width 2s ease-out;
  box-shadow: 0 0 10px rgba(193, 157, 95, 0.5);
}

.stats-bottom-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.stats-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.stats-trust i {
  font-size: 20px;
  color: var(--gold);
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-choose-us {
  padding: 100px 0;
  background: var(--white);
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-items {
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--border-color);
}

.why-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-heading);
  line-height: 1;
}

.why-content-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-content-item h3 i {
  color: var(--gold);
  font-size: 20px;
}

.why-content-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

.why-visual-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--light-bg);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 15px;
  transition: var(--transition);
}

.why-card:hover i {
  color: var(--white);
}

.why-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
  transition: var(--transition);
}

.why-card:hover h4 {
  color: var(--white);
}

.why-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-light);
  transition: var(--transition);
}

.why-card:hover p {
  color: var(--white);
  opacity: 0.95;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-green);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.stars i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 3px;
}

.testimonial-author span {
  display: block;
  color: var(--text-light);
  font-size: 13px;
}

/* ==========================================
   CTA FULLWIDTH
   ========================================== */
.cta-fullwidth {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a3b5c 0%, #0f1419 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Pattern de fond avec dégradés radiaux */
.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: radial-gradient(
      circle at 20% 80%,
      var(--gold) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, var(--gold) 0%, transparent 50%);
}

/* Conteneur des formes animées */
.cta-animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Formes flottantes en arrière-plan */
.shape {
  position: absolute;
  background: rgba(193, 157, 95, 0.1);
  border-radius: 50%;
  animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: -50px;
  animation-delay: -10s;
}

/* Animation de flottement des formes */
@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Layout en grille 2 colonnes */
.cta-content-flex {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge "Assistance Personnalisée" */
.cta-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding: 8px 18px;
  background: rgba(193, 157, 95, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(193, 157, 95, 0.3);
}

.cta-badge i {
  margin-right: 8px;
}

/* Titre principal */
.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--white);
  line-height: 1.2;
}

/* Paragraphe descriptif */
.cta-main-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

/* Liste des bénéfices */
.cta-features {
  margin-bottom: 30px;
}

.cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-feature:last-child {
  border-bottom: none;
}

/* Icône de chaque bénéfice */
.cta-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(193, 157, 95, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 22px;
  transition: all 0.3s ease;
}

.cta-feature:hover .cta-feature-icon {
  background: rgba(193, 157, 95, 0.25);
  transform: scale(1.1) rotate(5deg);
}

/* Contenu textuel de chaque bénéfice */
.cta-feature-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.cta-feature-content p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

/* Box d'urgence rouge */
.cta-urgency {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: rgba(220, 53, 69, 0.15);
  border-left: 3px solid #dc3545;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 25px;
}

.cta-urgency i {
  color: #dc3545;
  font-size: 20px;
}

/* Colonne droite - Box de contact avec glass morphism */
.cta-action {
  background: rgba(255, 255, 255, 0.08);
  padding: 45px 40px;
  border-radius: 24px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-box {
  margin-bottom: 35px;
}

/* Section téléphone */
.cta-phone-section {
  text-align: center;
}

/* Icône téléphone avec animation de pulsation */
.cta-icon-pulse {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(193, 157, 95, 0.2) 0%,
    rgba(193, 157, 95, 0.05) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--gold);
  position: relative;
  animation: iconPulse 2s ease-in-out infinite;
}

/* Animation pulsation de l'icône téléphone */
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(193, 157, 95, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(193, 157, 95, 0);
  }
}

.cta-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

/* Numéro de téléphone large */
.phone-large {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.phone-large:hover {
  color: #d4ad6f;
  transform: scale(1.05);
}

/* Indicateur de disponibilité */
.cta-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.85;
}

/* Point vert clignotant */
.availability-dot {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

/* Animation clignotement du point */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Ligne de séparation "OU" */
.cta-divider-line {
  margin: 30px 0;
  text-align: center;
  position: relative;
}

.cta-divider-line::before,
.cta-divider-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.cta-divider-line::before {
  left: 0;
}

.cta-divider-line::after {
  right: 0;
}

.cta-divider-line span {
  font-weight: 600;
  opacity: 0.7;
  font-size: 14px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

/* Bouton principal de prise de rendez-vous */
.btn-cta-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--gold) 0%, #d4ad6f 100%);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(193, 157, 95, 0.3);
  margin-bottom: 25px;
}

.btn-cta-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(193, 157, 95, 0.4);
  background: linear-gradient(135deg, #d4ad6f 0%, var(--gold) 100%);
}

.btn-cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-cta-text i {
  font-size: 20px;
}

.btn-cta-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.btn-cta-modern:hover .btn-cta-arrow {
  transform: translateX(5px);
}

/* Contact additionnel (email et adresse) */
.cta-additional-contact {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #d4ad6f;
  gap: 14px;
}

.contact-link i {
  font-size: 16px;
}

/* Adresse du cabinet */
.cta-location {
  font-size: 13px;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.cta-location i {
  color: var(--gold);
  font-size: 14px;
}

/* ==========================================
   BLOG PREVIEW
   ========================================== */
.blog-preview-section {
  padding: 100px 0;
  background: var(--white);
}

/* Grille responsive des articles */
.blog-grid-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Card d'article */
.blog-card-modern {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Image de l'article avec catégorie superposée */
.blog-image-modern {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Effet zoom sur l'image au hover */
.blog-card-modern:hover .blog-image-modern img {
  transform: scale(1.1);
}

/* Badge de catégorie */
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Contenu de l'article */
.blog-content-modern {
  padding: 30px;
}

/* Métadonnées (date et temps de lecture) */
.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: var(--gold);
}

/* Titre de l'article */
.blog-content-modern h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Extrait de l'article */
.blog-content-modern p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Lien "Lire l'article" */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  gap: 12px;
  color: var(--navy);
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--primary-color) 100%
  );
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 90px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* ==========================================
   SERVICE DETAIL PAGE
   ========================================== */
.service-detail {
  padding: 80px 0;
  background: var(--white);
}

/* Introduction bi-colonne */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.service-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-credit {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

.service-text h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 36px;
  margin-bottom: 25px;
}

.service-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Domaines d'intervention */
.service-domains {
  margin-bottom: 60px;
}

.service-domains > h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.domain-item {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
  transition: var(--transition);
}

/* Effet hover : glissement horizontal */
.domain-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.domain-item h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.domain-item ul {
  list-style: none;
  padding-left: 0;
}

.domain-item li {
  padding: 12px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.domain-item li:last-child {
  border-bottom: none;
}

/* Flèche dorée avant chaque item */
.domain-item li::before {
  content: "→";
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

.domain-item strong {
  color: var(--text-color);
  font-weight: 600;
}

/* Processus d'accompagnement */
.service-process {
  background: var(--light-bg);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.service-process h2 {
  text-align: center;
  color: var(--navy);
  font-size: 36px;
  margin-bottom: 50px;
  font-family: var(--font-heading);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.step {
  text-align: center;
  position: relative;
}

/* Numéros de step circulaires */
.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, #d4ad6f 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(193, 157, 95, 0.3);
  transition: var(--transition);
}

/* Effet hover sur les numéros : zoom + rotation */
.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy);
}

.step p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Call-to-Action final */
.service-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-color) 100%);
  color: var(--white);
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.service-cta h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.service-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Bloc Urgence Pénal 24h/24 */
.urgence-notice {
  background: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 30px;
  margin-bottom: 60px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.urgence-notice h2 {
  color: #856404;
  font-size: 28px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
}

.urgence-notice p {
  color: #856404;
  line-height: 1.7;
  margin-bottom: 15px;
}

.urgence-phone {
  font-size: 24px;
  color: #856404;
  font-weight: 700;
  margin: 20px 0;
}

.urgence-phone strong {
  color: #d39e00;
  font-size: 28px;
}

/* Bloc Info (Droit du Travail) */
.info-box {
  background: #d1ecf1;
  border-left: 5px solid #0c5460;
  padding: 30px;
  margin-bottom: 60px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.info-box h3 {
  color: #0c5460;
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
}

.info-box p {
  color: #0c5460;
  line-height: 1.7;
  margin-bottom: 15px;
}

.info-box strong {
  font-weight: 700;
  color: #0a3d46;
}

.info-box em {
  font-style: italic;
  color: #0a3d46;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box li {
  padding: 12px 0;
  color: #0c5460;
  border-bottom: 1px solid rgba(12, 84, 96, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-box li:last-child {
  border-bottom: none;
}

.info-box li::before {
  content: "✓";
  color: #0c5460;
  font-weight: bold;
  flex-shrink: 0;
}

/* ==========================================
   TEAM SECTION (PAGE ÉQUIPE)
   ========================================== */
.team-section {
  padding: 80px 0;
  background: var(--white);
}

.team-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.team-intro p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.8;
}

.team-category {
  margin: 60px 0 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--gold);
  color: var(--navy);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.team-card {
  display: flex;
  gap: 30px;
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  flex-shrink: 0;
}

.team-photo img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.team-info h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.team-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}

.team-specialty {
  color: var(--text-light);
  font-style: italic;
  font-size: 15px;
  margin-bottom: 20px;
  display: block;
}

.team-bio {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.team-contact {
  font-size: 14px;
  color: var(--text-light);
}

.team-contact p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-card-small {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card-small:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.team-photo-small img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.team-info-small h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 5px;
}

.team-info-small .team-title {
  font-size: 14px;
  margin-bottom: 5px;
}

.team-info-small .team-specialty {
  font-size: 13px;
  margin-bottom: 0;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

/* Grille 2 colonnes : formulaire + coordonnées */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

/* Titres des sections */
.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  margin-bottom: 25px;
  color: var(--navy);
  font-size: 32px;
}

/* Texte d'introduction du formulaire */
.form-intro {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Formulaire */
.contact-form {
  background: var(--white);
}

.form-group {
  margin-bottom: 25px;
}

/* 2 colonnes pour email + téléphone */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Labels */
.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 15px;
}

/* Inputs, Select, Textarea */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 15px;
  transition: var(--transition);
  background: var(--white);
}

/* Focus state avec bordure dorée */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 157, 95, 0.1);
}

/* Textarea */
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Checkbox RGPD */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

/* Bouton Submit */
.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: #d4ad6f;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(193, 157, 95, 0.4);
}

/* Note "Champs obligatoires" */
.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 20px;
  font-style: italic;
}

/* Cards d'informations de contact */
.contact-info-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-card p {
  color: var(--text-light);
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--navy);
}

.contact-info-card .note {
  font-size: 13px;
  font-style: italic;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================
   MAP SECTION
   ========================================== */
.map-section {
  padding: 0 0 80px 0;
}

.map-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 40px;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 60px;
}

/* Grille flexible des FAQ */
.faq-grid {
  display: grid;
  gap: 30px;
}

/* Card FAQ */
.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Titre FAQ avec "Q:" avant */
.faq-item h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-item h3::before {
  content: "Q:";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

/* ==========================================
   BLOG PAGE
   ========================================== */
.blog-section {
  padding: 80px 0;
  background: var(--white);
}

/* Grille flexible auto-fit */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Card d'article */
.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

/* Hover avec élévation importante */
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Image de l'article */
.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Zoom image au hover */
.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

/* Badge de catégorie (en haut à droite) */
.blog-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Contenu de l'article */
.blog-content {
  padding: 35px;
}

/* Date de publication */
.blog-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-date i {
  color: var(--gold);
}

/* Titre de l'article */
.blog-content h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Extrait de l'article */
.blog-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Lien "Lire la suite" */
.blog-link {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.blog-link:hover {
  color: var(--navy);
  gap: 12px;
}

.blog-link i {
  font-size: 14px;
}

/* ==========================================
   FOOTER FULLWIDTH
   ========================================== */
.footer-fullwidth {
  background: var(--dark-color);
  color: var(--white);
}

.footer-main {
  padding: 80px 0 40px;
}

/* Grille 4 colonnes */
.footer-grid-modern {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* Logo et nom du cabinet */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 32px;
  color: var(--gold);
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

/* Description du cabinet */
.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 25px;
}

/* Badges de certification */
.footer-certifications {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(193, 157, 95, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Titres des colonnes */
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--white);
}

/* Listes de liens */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links li a i {
  color: var(--gold);
  font-size: 12px;
}

/* Effet hover sur les liens */
.footer-links li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

/* Liste de contact (adresse, téléphone, email) */
.footer-contact-list {
  list-style: none;
  margin-bottom: 25px;
}

.footer-contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
}

.footer-contact-list li i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-list li a:hover {
  color: var(--gold);
}

/* Réseaux sociaux */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* Barre inférieure du footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content p {
  font-size: 14px;
  opacity: 0.8;
}

/* Liens légaux */
.footer-legal-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.footer-legal-links .separator {
  opacity: 0.5;
}

/* ------------------------------- Responsive -------------------------------------- */

@media (max-width: 1430px) {
  .nav-phone {
    display: none;
  }
}
@media (max-width: 1200px) {
  .nav-container {
    padding: 0 30px;
  }
  .nav-right {
    gap: 10px;
  }
  .hero-fullwidth h1 {
    font-size: 56px;
  }
  .about-split {
    gap: 50px;
  }
  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 968px) {
  .nav-container {
    padding: 0 20px;
  }
  .nav-right {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--navy);
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    align-items: flex-start;
    gap: 20px;
    overflow-y: auto;
    opacity: 0;
  }
  .nav-right.active {
    left: 0;
    opacity: 1;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 30px 0;
    width: 100%;
  }
  .nav-link i {
    color: var(--gold);
  }
  .nav-link:hover,
  .nav-link.active {
    color: var(--gold);
    background: transparent;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-normal);
    background: transparent;
  }
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding-left: 20px;
  }
  .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0;
  }
  .dropdown-menu li a:hover {
    background: transparent;
    color: var(--gold);
    transform: translateX(5px);
  }
  .nav-actions {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    padding-top: 50px;
  }
  .nav-phone {
    display: flex;
    width: 70%;
    justify-content: center;
    border: 2px solid var(--gold);
    color: var(--white);
  }
  .btn-nav {
    width: 70%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .hamburger {
    display: flex;
  }
  .hero-fullwidth h1 {
    font-size: 42px;
  }

  .hero-fullwidth .lead {
    font-size: 18px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Services responsive tablette */
  .services-fullwidth {
    padding: 80px 0;
  }

  .section-title-large {
    font-size: 32px;
  }

  .services-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .container-wide {
    padding: 0 20px;
  }

  /* Stats responsive tablette */
  .stats-fullwidth {
    padding: 80px 0;
  }

  .stats-header h2 {
    font-size: 38px;
  }

  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stats-bottom-info {
    gap: 30px;
  }

  /* Why Choose Us responsive tablette */
  .why-choose-us {
    padding: 80px 0;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-title {
    font-size: 32px;
  }

  /* Testimonials responsive tablette */
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* CTA responsive tablette */
  .cta-content-flex {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-text h2 {
    font-size: 38px;
  }

  .cta-fullwidth {
    padding: 80px 0;
  }

  /* Blog responsive tablette */
  .blog-grid-preview {
    grid-template-columns: 1fr;
  }

  /* Footer responsive tablette */
  .footer-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  /* Contact responsive tablette */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stat-item {
    padding: 20px 15px;
  }

  .hero-stat-item .number {
    font-size: 32px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-side img {
    height: 400px;
  }

  /* Service Detail Responsive Tablet */
  .service-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-image img {
    height: 400px;
  }

  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
  }

  /* Team responsive tablet */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
  }

  .team-photo img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .why-visual-side {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .nav-brand {
    gap: 10px;
  }
  .brand-name {
    font-size: 18px;
  }
  .hero-fullwidth {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-fullwidth h1 {
    font-size: 32px;
  }

  .hero-fullwidth .lead {
    font-size: 16px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-modern {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-fullwidth {
    padding: 60px 0;
  }

  .about-image-side {
    order: 1;
  }

  .about-content-side {
    order: 2;
  }

  .about-image-side img {
    height: 300px;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 20px;
  }

  .experience-badge .number {
    font-size: 36px;
  }

  .experience-badge .text {
    font-size: 12px;
  }

  .about-btn-group {
    flex-direction: column;
  }

  .about-btn-group a {
    width: 100%;
    justify-content: center;
  }

  /* Services responsive mobile */
  .services-fullwidth {
    padding: 60px 0;
  }

  .section-title-large {
    font-size: 28px;
  }

  .section-header-centered {
    margin-bottom: 40px;
  }

  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-modern {
    padding: 30px 24px;
  }

  .service-card-number {
    font-size: 60px;
  }

  /* Stats responsive mobile */
  .stats-fullwidth {
    padding: 60px 0;
  }

  .stats-header h2 {
    font-size: 32px;
  }

  .stats-header p {
    font-size: 16px;
  }

  .stats-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card-modern {
    padding: 35px 25px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .stats-bottom-info {
    flex-direction: column;
    gap: 20px;
  }

  /* Why Choose Us responsive mobile */
  .why-choose-us {
    padding: 60px 0;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .why-items {
    margin-top: 30px;
  }

  .why-item {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .why-number {
    font-size: 32px;
  }

  .why-content-item h3 {
    font-size: 18px;
  }

  .why-card {
    padding: 25px 20px;
  }

  .why-card i {
    font-size: 30px;
  }

  .why-card h4 {
    font-size: 15px;
  }

  .why-card p {
    font-size: 12px;
  }

  /* Testimonials responsive mobile */
  .testimonials-section {
    padding: 60px 0;
  }

  .section-title-large {
    font-size: 28px;
  }

  .section-header-centered {
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 35px 30px;
  }

  .testimonial-card::before {
    font-size: 70px;
    top: 15px;
    right: 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .testimonial-author strong {
    font-size: 15px;
  }

  .testimonial-author span {
    font-size: 12px;
  }

  /* CTA responsive mobile */
  .cta-text h2 {
    font-size: 32px;
  }

  .cta-main-text {
    font-size: 16px;
  }

  .phone-large {
    font-size: 28px;
  }

  .cta-action {
    padding: 30px 25px;
  }

  .btn-cta-modern {
    padding: 18px 25px;
    font-size: 15px;
  }

  .cta-fullwidth {
    padding: 60px 0;
  }

  /* Blog responsive mobile */
  .blog-preview-section {
    padding: 60px 0;
  }

  .blog-grid-preview {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .blog-image-modern {
    height: 200px;
  }

  .blog-content-modern {
    padding: 20px;
  }

  .blog-content-modern h3 {
    font-size: 18px;
  }

  .blog-content-modern p {
    font-size: 14px;
  }

  /* Footer responsive mobile */
  .footer-main {
    padding: 60px 0 30px;
  }

  .footer-grid-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal-links .separator {
    display: none;
  }

  /* Contact responsive mobile */
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-wrapper h2,
  .contact-info-wrapper h2 {
    font-size: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-header {
    padding: 100px 0 60px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .map-container {
    height: 350px;
    border-radius: 12px;
  }

  .faq-section h2 {
    font-size: 32px;
  }

  .faq-grid {
    gap: 20px;
  }

  /* Blog page responsive mobile */
  .blog-section {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 25px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

  .blog-content p {
    font-size: 14px;
  }

  .btn-modern.secondary {
    display: none;
  }

  /* Service Detail Responsive Mobile */
  .service-detail {
    padding: 60px 0;
  }

  .service-text h2 {
    font-size: 28px;
  }

  .service-intro {
    gap: 30px;
  }

  .service-image img {
    height: 300px;
  }

  .service-domains > h2 {
    font-size: 28px;
  }

  .domain-item {
    padding: 20px;
  }

  .domain-item h3 {
    font-size: 20px;
  }

  .service-process {
    padding: 30px 20px;
  }

  .service-process h2 {
    font-size: 28px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .service-cta {
    padding: 40px 25px;
  }

  .service-cta h2 {
    font-size: 24px;
  }

  .service-cta p {
    font-size: 16px;
  }

  /* Bloc urgence responsive mobile */
  .urgence-notice {
    padding: 20px;
  }

  .urgence-notice h2 {
    font-size: 22px;
  }

  .urgence-phone {
    font-size: 20px;
  }

  .urgence-phone strong {
    font-size: 24px;
  }

  /* Bloc info responsive mobile */
  .info-box {
    padding: 20px;
  }

  .info-box h3 {
    font-size: 20px;
  }

  .info-box p {
    font-size: 14px;
  }

  /* Team responsive mobile */
  .team-section {
    padding: 60px 0;
  }

  .team-category {
    font-size: 28px;
  }
}
