/* =========================================================
   Elect&Go - Styles modernes
   ========================================================= */

:root {
  --bleu-electrique: #1e8de6;
  --bleu-fonce: #0e1b2c;
  --gris-noir: #2a2a2a;
  --blanc: #ffffff;
  --bleu-hover: #0b6bc4;
  --bg-card: #12293f;
  --border-color: rgba(255, 255, 255, 0.06);

  /* Nouvelles couleurs vibrantes */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-blue: linear-gradient(135deg, #1e8de6 0%, #0b6bc4 100%);
  --gradient-orange: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-green: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-purple: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
  --gradient-emergency: linear-gradient(135deg, #ff6b6b 0%, #ff4444 100%);

  --orange: #ff6b35;
  --purple: #8e44ad;
  --green: #27ae60;
  --yellow: #f1c40f;
  --pink: #ff6ec7;
}

/* ===== Reset ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bleu-fonce);
  color: var(--blanc);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  /* Force explicit sizing */
  font-size: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.lien-ville {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
/* ========================================
   RESPONSIVE - Ajuster pour mobile
   ========================================*/

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .hero-title-main {
    font-size: 2.5rem;
  }

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .hero-title-main {
    font-size: 2rem;
  }

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}
/* =========================================================
   Header
   ========================================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 27, 44, 0.95);

  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.logo-elect {
  color: var(--bleu-electrique);
}

.logo-and {
  color: var(--blanc);
  margin: 0 2px;
}

.logo-go {
  color: #ff0000;
}

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  color: var(--blanc);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--bleu-electrique);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--bleu-electrique);
}

nav a:hover::after {
  width: 100%;
}
.navactive {
  color: var(--bleu-electrique);
  font-weight: 800;
}
.btn-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bleu-electrique);
  color: var(--blanc);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-header:hover {
  background: var(--bleu-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 141, 230, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

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

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

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

/* =========================================================
   Hero Section
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(images/bgimage.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(90deg, rgba(30, 141, 230, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(30, 141, 230, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(14, 27, 44, 0.8) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(30, 141, 230, 0.1);
  border: 1px solid rgba(30, 141, 230, 0.3);
  border-radius: 50px;
  color: var(--bleu-electrique);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-title-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-title-and {
  color: var(--blanc);
  margin: 0 0.2em;
}

.hero-title-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--blanc);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s backwards;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--bleu-electrique);
  color: var(--blanc);
}

.btn-primary:hover {
  background: var(--bleu-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 141, 230, 0.4);
}

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

.btn-secondary:hover {
  border-color: var(--bleu-electrique);
  background: rgba(30, 141, 230, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  z-index: 3;
  animation: bounce 2s infinite;
}

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

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

/* =========================================================
   Section Headers
   ========================================================= */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--bleu-electrique);
  border-radius: 2px;
}

.section-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* =========================================================
   Services
   ========================================================= */
.services {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bleu-fonce) 0%, #0a1520 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 141, 230, 0.2);
  border-color: rgba(30, 141, 230, 0.3);
}

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

.service-icon {
  width: 70px;
  margin: 0 auto;
  height: 70px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(30, 141, 230, 0.3),
    rgba(30, 141, 230, 0.1)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(30, 141, 230, 0.5),
    rgba(30, 141, 230, 0.2)
  );
}

.service-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--bleu-electrique);
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--blanc);
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  color: var(--bleu-electrique);
  font-weight: bold;
  font-size: 1.1rem;
}

/* =========================================================
   Zone d'intervention
   ========================================================= */
.zone-intervention {
  padding: 6rem 0;

  background-image: url(images/bgzone.png);
  background-size: cover;
  background-position: center;
}

.zone-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.zone-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.zone-subtitle {
  color: var(--bleu-electrique);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.zone-text > p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.city-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(30, 141, 230, 0.1);
  border: 1px solid rgba(30, 141, 230, 0.3);
  border-radius: 8px;
  color: var(--bleu-electrique);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.city-tag:hover {
  background: rgba(30, 141, 230, 0.2);
  transform: translateY(-2px);
}

.zone-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-placeholder {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(30, 141, 230, 0.3));
  animation: float 3s ease-in-out infinite;
}

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

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid var(--bleu-electrique);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* =========================================================
   Atouts
   ========================================================= */
.atouts {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a1520 0%, var(--bleu-fonce) 100%);
}

.atouts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.atout-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.atout-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(30, 141, 230, 0.3);
}

.atout-icon {
  width: 60px;
  margin: 0 auto;
  height: 60px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(30, 141, 230, 0.3),
    rgba(30, 141, 230, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.atout-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--bleu-electrique);
}

.atout-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--blanc);
}

.atout-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* =========================================================
   À propos
   ========================================================= */
.apropos {
  padding: 6rem 0;
  background: var(--bleu-fonce);
}

.apropos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.apropos-text .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.apropos-text .section-header h2::after {
  left: 0;
  transform: none;
}

.apropos-subtitle {
  color: var(--bleu-electrique) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  margin: 0 !important;
}

.apropos-description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.apropos-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--blanc);
  font-weight: 600;
}

.value-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--bleu-electrique);
  flex-shrink: 0;
}

.apropos-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.apropos-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 280px;
  height: 280px;
  background: var(--bg-card);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(30, 141, 230, 0.2);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(30, 141, 230, 0.1),
    transparent
  );
}

.avatar-icon {
  width: 100%;
  height: 100%;
}

.apropos-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 141, 230, 0.3);
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--bleu-electrique);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* =========================================================
   Réalisations
   ========================================================= */
.realisations {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bleu-fonce) 0%, #0a1520 100%);
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.realisation-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.realisation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 141, 230, 0.2);
  border-color: rgba(30, 141, 230, 0.3);
}

.realisation-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #0a1520;
}

.realisation-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.realisation-card:hover .realisation-image .image-placeholder {
  transform: scale(1.05);
}

.placeholder-icon {
  width: 100%;
  height: 100%;
}

.realisation-content {
  padding: 1.5rem;
}

.realisation-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--blanc);
}

.realisation-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* =========================================================
   Contact CTA
   ========================================================= */
.contact-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1520 0%, var(--bleu-fonce) 100%);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(30, 141, 230, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(30, 141, 230, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.cta-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.2rem 2.5rem !important;
  font-size: 1.1rem !important;
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  padding: 6rem 0;
  background: var(--bleu-fonce);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: var(--bleu-electrique);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(30, 141, 230, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--bleu-electrique);
}

.contact-item h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blanc);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--bleu-electrique);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--bleu-hover);
  text-decoration: underline;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--blanc);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--blanc);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bleu-electrique);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(30, 141, 230, 0.1);
}

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

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  background: var(--bleu-electrique);
  color: var(--blanc);
  border: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: var(--bleu-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 141, 230, 0.4);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(5px);
}

/* =========================================================
   Page Header
   ========================================================= */
.page-header {
  padding: 7rem 0 6rem;
  background: linear-gradient(135deg, var(--bleu-fonce) 0%, #0a1520 100%);
  background-image: url(images/bgservice.jpg);
  background-size: cover;
  background-position: left center;
  text-align: center;
  position: relative;
  margin-top: 80px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(30, 141, 230, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(30, 141, 230, 0.08) 0%,
      transparent 50%
    );
}

.page-header h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;

  color: var(--blanc);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   Service Detail Pages
   ========================================================= */
.service-detail {
  padding: 6rem 0;
  background: var(--bleu-fonce);
}

.service-detail.alt {
  background: linear-gradient(180deg, #0a1520 0%, var(--bleu-fonce) 100%);
}

.service-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-icon-large {
  width: 90px;
  height: 90px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(30, 141, 230, 0.3),
    rgba(30, 141, 230, 0.1)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-icon-large svg {
  width: 45px;
  height: 45px;
  stroke: var(--bleu-electrique);
}

.service-detail h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.service-lead {
  font-size: 1.3rem;
  color: var(--bleu-electrique);
  font-weight: 600;
  margin-bottom: 2rem;
}

.service-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.service-description p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.service-description h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--blanc);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-list li {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(30, 141, 230, 0.05);
  border-left: 3px solid var(--bleu-electrique);
  border-radius: 6px;
  font-size: 1.05rem;
}

.feature-list li::before {
  content: "⚡";
  color: var(--bleu-electrique);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 141, 230, 0.3);
  box-shadow: 0 8px 24px rgba(30, 141, 230, 0.15);
}

.benefit-card h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bleu-electrique);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.service-detail .btn-primary {
  margin-top: 2rem;
}

/* =========================================================
   About Page Styles
   ========================================================= */
.about-hero {
  padding: 6rem 0;
  background: var(--bleu-fonce);
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-image .image-placeholder.large {
  width: 100%;
  max-width: 350px;
  height: 350px;
  margin: 0 auto;
}

.about-hero-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.about-subtitle {
  color: var(--bleu-electrique);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.about-stats-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-inline {
  display: flex;
  flex-direction: column;
}

.stat-inline .stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--bleu-electrique);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-inline .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Timeline */
.about-journey {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bleu-fonce) 0%, #0a1520 100%);
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--bleu-electrique);
  border-radius: 2px;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(30, 141, 230, 0.3);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: 20px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--bleu-electrique);
  border-radius: 50%;
  border: 4px solid var(--bleu-fonce);
  box-shadow: 0 0 0 4px rgba(30, 141, 230, 0.2);
}

.timeline-item.highlight .timeline-marker {
  width: 30px;
  height: 30px;
  left: 15px;
  animation: pulse-marker 2s ease infinite;
}

@keyframes pulse-marker {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(30, 141, 230, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(30, 141, 230, 0);
  }
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.timeline-item.highlight .timeline-content {
  border-color: rgba(30, 141, 230, 0.4);
  box-shadow: 0 0 20px rgba(30, 141, 230, 0.2);
}

.timeline-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.timeline-date {
  color: var(--bleu-electrique);
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.timeline-content ul {
  list-style: none;
  margin: 1rem 0;
}

.timeline-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.timeline-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--bleu-electrique);
  font-weight: bold;
}

/* Values */
.about-values {
  padding: 6rem 0;
  background: var(--bleu-fonce);
}

.values-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 141, 230, 0.2);
  border-color: rgba(30, 141, 230, 0.3);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(30, 141, 230, 0.3),
    rgba(30, 141, 230, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--bleu-electrique);
}

.value-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Personal Section */
.about-personal {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bleu-fonce) 0%, #0a1520 100%);
}

.personal-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.personal-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 2rem;
}

.personal-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.personal-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(8px);
  border-color: rgba(30, 141, 230, 0.3);
}

.highlight-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.25rem;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive About Page */
@media (max-width: 1024px) {
  .about-hero-content,
  .personal-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero-image .image-placeholder.large {
    max-width: 280px;
    height: 280px;
  }

  .about-stats-inline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-marker {
    left: 5px;
  }

  .timeline-item.highlight .timeline-marker {
    left: 0;
  }
}

/* =========================================================
   Realisations Page Styles
   ========================================================= */
.realisations-intro {
  padding: 3rem 0;
  background: var(--bleu-fonce);
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.gallery-section {
  padding: 5rem 0;
  background: var(--bleu-fonce);
}

.gallery-section.alt {
  background: linear-gradient(180deg, #0a1520 0%, var(--bleu-fonce) 100%);
}

.category-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 3rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 141, 230, 0.2);
  border-color: rgba(30, 141, 230, 0.3);
}

.gallery-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0a1520;
}

.gallery-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image .image-placeholder {
  transform: scale(1.05);
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-info h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blanc);
  margin-bottom: 0.75rem;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(30, 141, 230, 0.1);
  border: 1px solid rgba(30, 141, 230, 0.3);
  border-radius: 6px;
  color: var(--bleu-electrique);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Testimonial Section */
.testimonial-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a1520 0%, var(--bleu-fonce) 100%);
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(30, 141, 230, 0.2);
  border-radius: 16px;
}

.quote-icon {
  width: 60px;
  height: 60px;
  color: var(--bleu-electrique);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-content blockquote {
  margin: 0;
}

.testimonial-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-content cite {
  color: var(--bleu-electrique);
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
}

/* =========================================================
   Contact Page Styles
   ========================================================= */
.contact-page {
  padding: 5rem 0;
  background: var(--bleu-fonce);
}

.contact-wrapper-page {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-full h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-details-full {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.contact-icon-large {
  width: 60px;
  height: 60px;
  background: rgba(30, 141, 230, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-large svg {
  width: 28px;
  height: 28px;
  stroke: var(--bleu-electrique);
}

.contact-detail-text h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.contact-detail-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--bleu-electrique);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--bleu-hover);
  text-decoration: underline;
}

.location-list {
  color: var(--bleu-electrique) !important;
  font-weight: 500 !important;
}

.availability-note {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.95rem !important;
  font-style: italic;
}

.contact-promises {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.contact-promises h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 1.5rem;
}

.promises-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promises-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.promises-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--bleu-electrique);
  flex-shrink: 0;
}

/* Contact Form Full */
.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.contact-form-full {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blanc);
  margin-bottom: 1.5rem;
}

.contact-form-full select {
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--blanc);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-form-full select:focus {
  outline: none;
  border-color: var(--bleu-electrique);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(30, 141, 230, 0.1);
}

/* Correction pour les options des listes déroulantes */
.contact-form-full select option {
  background-color: var(--bleu-fonce);
  color: var(--blanc);
  padding: 0.5rem;
}

.contact-form-full select option:hover,
.contact-form-full select option:focus,
.contact-form-full select option:checked {
  background-color: var(--bleu-electrique);
  color: var(--blanc);
}

/* =========================================================
   Messages d'alerte (succès/erreur)
   ========================================================= */
#message-alert {
  margin: 1.5rem 0;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.6;
  animation: slideDown 0.4s ease-out;
  position: relative;
  display: none;
}

#message-alert.show {
  display: block;
}

#message-alert.succes {
  background: linear-gradient(
    135deg,
    rgba(39, 174, 96, 0.15) 0%,
    rgba(46, 204, 113, 0.15) 100%
  );
  border: 2px solid rgba(39, 174, 96, 0.3);
  color: #27ae60;
}

#message-alert.erreur {
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.15) 0%,
    rgba(192, 57, 43, 0.15) 100%
  );
  border: 2px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

#message-alert.info {
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.15) 0%,
    rgba(41, 128, 185, 0.15) 100%
  );
  border: 2px solid rgba(52, 152, 219, 0.3);
  color: #3498db;
}

#message-alert::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
}

#message-alert.succes::before {
  background: #27ae60;
}

#message-alert.erreur::before {
  background: #e74c3c;
}

#message-alert.info::before {
  background: #3498db;
}

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

.form-consent {
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

.btn-submit-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem 2rem;
  background: var(--bleu-electrique);
  color: var(--blanc);
  border: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-full:hover {
  background: var(--bleu-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 141, 230, 0.4);
}

.btn-submit-full svg {
  transition: transform 0.3s ease;
}

.btn-submit-full:hover svg {
  transform: translateX(5px);
}

.form-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bleu-fonce) 0%, #0a1520 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 141, 230, 0.3);
  box-shadow: 0 8px 24px rgba(30, 141, 230, 0.15);
}

.faq-item h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bleu-electrique);
  margin-bottom: 1rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Responsive Contact & Realizations */
@media (max-width: 1024px) {
  .contact-wrapper-page {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

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

@media (max-width: 768px) {
  .gallery-image {
    height: 220px;
  }

  .testimonial-content p {
    font-size: 1.1rem;
  }
  .service-nav-bubbles {
    gap: 1rem;
  }
  .bubble-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Service Navigation Bubbles */
.service-nav-bubbles {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0;
  flex-wrap: wrap;
}

.nav-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  text-decoration: none;
  color: var(--blanc);
  transition: all 0.3s ease;
}

.bubble-icon {
  width: 70px;
  height: 70px;
  background: rgba(14, 27, 44, 0.8); /* Fond sombre opaque */
  backdrop-filter: blur(10px); /* Ajoutez cette ligne */
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.nav-bubble span {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-bubble:hover .bubble-icon {
  background: linear-gradient(135deg, #667eea 0%, #0b6bc4 100%) !important;
  border-color: transparent;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.7); /* Ombre plus visible */
}

/* =========================================================
   Services Modern
   ========================================================= */
.services-modern {
  padding: 4rem 0;
  background: var(--bleu-fonce);
}

.service-block {
  background: linear-gradient(135deg, #1a2f4a 0%, #0e1b2c 100%);
  border-radius: 20px;
  margin-bottom: 3rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-block.alt-style {
  background: linear-gradient(135deg, #0e1b2c 0%, #1a2f4a 100%);
}

/* Service Header */
.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--gradient-blue);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-wrapper.orange {
  background: var(--gradient-orange);
}

.service-icon-wrapper.purple {
  background: var(--gradient-purple);
}

.service-icon-wrapper.green {
  background: var(--gradient-green);
}

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

.service-title-section {
  flex: 1;
  margin-left: 1.5rem;
}

.service-title-section h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--blanc);
  margin-bottom: 0.3rem;
}

.service-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.service-price-tag {
  background: var(--gradient-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.service-price-tag.orange-bg {
  background: var(--gradient-orange);
}

.service-price-tag.purple-bg {
  background: var(--gradient-purple);
}

.service-price-tag.green-bg {
  background: var(--gradient-green);
}

.price-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.price-value {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blanc);
}

/* Service Content */
.service-content-modern {
  padding: 2rem;
}

/* Quick Info */
.service-quick-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(30, 141, 230, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(30, 141, 230, 0.3);
}

.info-icon {
  font-size: 1.2rem;
}

/* Feature Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(30, 141, 230, 0.1);
  transform: translateY(-3px);
  border-color: rgba(30, 141, 230, 0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

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

/* Benefit Cards Modern */
.benefit-cards-modern {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.benefit-modern {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.benefit-check {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-weight: 700;
}

.benefit-modern h4 {
  font-size: 1.1rem;
  color: var(--blanc);
  font-weight: 600;
}

.benefit-modern p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-left: 2.5rem;
}

/* Urgency Banner */
.urgency-banner {
  background: var(--gradient-blue);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.pulse {
  width: 20px;
  height: 20px;
  background: var(--blanc);
  border-radius: 50%;
  position: relative;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.urgency-banner p {
  color: var(--blanc);
  font-size: 1.05rem;
  margin: 0;
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.problem-item:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateX(5px);
}

.problem-icon {
  font-size: 1.2rem;
}

/* Intervention Process */
.intervention-process {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  flex-wrap: wrap;
  gap: 2rem;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blanc);
}

.process-step h4 {
  color: var(--blanc);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.process-arrow {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Diagnostic Visual */
.diagnostic-visual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.diagnostic-card.main {
  background: linear-gradient(
    135deg,
    rgba(142, 68, 173, 0.2) 0%,
    rgba(74, 0, 224, 0.2) 100%
  );
  border: 2px solid rgba(142, 68, 173, 0.3);
  border-radius: 15px;
  padding: 2rem;
}

.diagnostic-card h3 {
  color: var(--blanc);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.check-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.diagnostic-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: rgba(142, 68, 173, 0.1);
  border: 1px solid rgba(142, 68, 173, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Diagnostic Benefits */
.diagnostic-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.diag-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.diag-benefit:hover {
  background: rgba(142, 68, 173, 0.1);
  transform: translateX(10px);
}

.diag-icon {
  font-size: 1.5rem;
}

.diag-benefit h4 {
  color: var(--blanc);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.diag-benefit p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Smart Home Showcase */
.smart-home-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.house-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.room {
  background: rgba(79, 172, 254, 0.1);
  border: 2px solid rgba(79, 172, 254, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.room.active {
  background: var(--gradient-green);
  border-color: transparent;
  transform: scale(1);
}
.room:hover {
  background: var(--gradient-green);
  border-color: transparent;
  transform: scale(1.05);
}
.room-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.room-name {
  color: var(--blanc);
  font-weight: 600;
}

.showcase-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.smart-benefit {
  background: linear-gradient(
    135deg,
    rgba(79, 172, 254, 0.2) 0%,
    rgba(0, 242, 254, 0.2) 100%
  );
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.benefit-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}

.benefit-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Compatible Brands */
.compatible-brands {
  text-align: center;
  margin: 2rem 0;
}

.compatible-brands p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.brands {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-badge {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--blanc);
  font-weight: 600;
}

/* CTA Buttons */
.service-cta {
  display: flex;
  margin: 0 auto;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--blanc);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-gradient.purple {
  background: var(--gradient-purple);
}

.btn-gradient.green {
  background: var(--gradient-green);
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-emergency);
  color: var(--blanc);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: emergency-pulse 2s ease-in-out infinite;
}

@keyframes emergency-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.5);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(255, 107, 107, 0);
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--blanc);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* =========================================================
   CTA Section Modern
   ========================================================= */
.cta-modern {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 15s ease-in-out infinite reverse;
}

.cta-content-modern {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--blanc);
  color: var(--purple);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.or-divider {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.phone-number {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--blanc);
  border-radius: 30px;
  color: var(--blanc);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.phone-number:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Styles spécifiques pour la galerie Instagram */
.instagram-gallery {
  padding: 1rem 0 6rem;
}

.gallery-grid-instagram {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item-instagram {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item-instagram:hover {
  transform: translateY(-5px);
}

.gallery-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image-bg svg {
  width: 60%;
  height: 60%;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
  padding: 2rem 1.5rem 1.5rem;
  transition: all 0.3s ease;
}

.gallery-item-instagram:hover .gallery-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.gallery-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blanc);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(30, 141, 230, 0.9);
  color: var(--blanc);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid-instagram {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .gallery-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid-instagram {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* =========================================================
   Footer
   ========================================================= */
footer {
  background: var(--gris-noir);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--bleu-electrique);
  transform: translateX(5px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--bleu-electrique);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   Animations AOS
   ========================================================= */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background: rgba(18, 41, 63, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-color);
  }

  nav.mobile-active {
    right: 0;
  }

  nav a {
    width: 100%;
    padding: 0.75rem 0;
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .zone-content,
  .apropos-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .header-content {
    padding: 0 1.5rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-title-main {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .services-grid,
  .atouts-grid,
  .realisations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .apropos-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-scroll {
    display: none;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .zone-cities {
    flex-direction: column;
  }

  .city-tag {
    text-align: center;
  }
}
