.elementor-3832 .elementor-element.elementor-element-6d197248{--display:flex;--min-height:102px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-evenly;--align-items:center;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--padding-top:0%;--padding-bottom:0%;--padding-left:5%;--padding-right:2%;}.elementor-3832 .elementor-element.elementor-element-6d197248:not(.elementor-motion-effects-element-type-background), .elementor-3832 .elementor-element.elementor-element-6d197248 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(94deg, #1A1A1A 0%, #2A2A2A 54%);}.elementor-3832 .elementor-element.elementor-element-6d197248 .elementor-repeater-item-1643627.jet-parallax-section__layout .jet-parallax-section__image{background-size:auto;}.elementor-3832 .elementor-element.elementor-element-11a229d9{width:var( --container-widget-width, 20% );max-width:20%;--container-widget-width:20%;--container-widget-flex-grow:0;text-align:start;}.elementor-3832 .elementor-element.elementor-element-11a229d9 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0em 0em 0em 0em;}.elementor-3832 .elementor-element.elementor-element-11a229d9 img{width:100%;opacity:1;transition-duration:0.8s;border-radius:0px 0px 0px 0px;}.elementor-3832 .elementor-element.elementor-element-11a229d9:hover img{opacity:0.8;}@media(min-width:768px){.elementor-3832 .elementor-element.elementor-element-6d197248{--width:100%;}}@media(max-width:1024px){.elementor-3832 .elementor-element.elementor-element-11a229d9 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0em 0em 0em 0em;}.elementor-3832 .elementor-element.elementor-element-11a229d9 img{width:100%;max-width:100%;border-radius:0px 0px 0px 0px;}}@media(max-width:767px){.elementor-3832 .elementor-element.elementor-element-11a229d9 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0em 0em 0em 0em;}.elementor-3832 .elementor-element.elementor-element-11a229d9{--container-widget-width:75%;--container-widget-flex-grow:0;width:var( --container-widget-width, 75% );max-width:75%;}.elementor-3832 .elementor-element.elementor-element-11a229d9 img{width:100%;max-width:100%;border-radius:0px 0px 0px 0px;}.elementor-3832 .elementor-element.elementor-element-6d197248{--padding-top:2%;--padding-bottom:2%;--padding-left:2%;--padding-right:2%;}}/* Start custom CSS for html, class: .elementor-element-7ce4ca81 *//* ===================================================
   MENU NAVIGATION RESPONSIVE - VERSION CORRIGÉE
=================================================== */

/* Menu principal */
.main-nav {
  position: relative;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

/* Logo/Brand */
.nav-brand {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-brand:hover {
  color: #00d4ff;
}

/* Menu desktop */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 0;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  display: block;
}

.nav-link:hover {
  color: #00d4ff;
}

/* Soulignement animé desktop */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ===================================================
   MENU BURGER
=================================================== */

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  border: none;
  background: transparent;
  z-index: 1002;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animation du burger */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #00d4ff;
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #00d4ff;
}

/* ===================================================
   RESPONSIVE
=================================================== */

/* Tablettes */
@media (max-width: 968px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border: none;
    background: transparent;
    z-index: 1002;
    position: relative; /* Ajouté pour assurer la visibilité */
  }
  
  /* Toggle quand le menu est ouvert - reste visible */
  .nav-toggle.active {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1006;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 10px;
  }
  
  /* Spans du toggle */
  .nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Animation du burger actif */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ffffff;
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #00d4ff;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: linear-gradient(180deg, #1a1a1a, #2a2a2a);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0;
    gap: 0;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    pointer-events: none;
  }
  
  .nav-menu.active {
    right: 0;
    pointer-events: auto;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-link {
    padding: 1.2rem 2rem;
    width: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
    z-index: 1003;
    pointer-events: auto;
  }
  
  .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    padding-left: 2.5rem;
  }
  
  /* Suppression du soulignement desktop sur mobile */
  .nav-link::after {
    display: none;
  }
  
  /* Barre latérale colorée mobile */
  .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff, #00ff88);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
  }
  
  .nav-link:hover::before,
  .nav-link.active::before {
    transform: scaleY(1);
  }
}

/* Petits mobiles */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
    min-height: 60px;
  }
  
  .nav-brand {
    font-size: 1.3rem;
  }
  
  .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
    width: 100%;
  }
  
  .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .nav-link:hover {
    padding-left: 2rem;
  }
}

/* ===================================================
   OVERLAY
=================================================== */

.nav-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 480px) {
  .nav-overlay {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

/* ===================================================
   ACCESSIBILITÉ
=================================================== */

.nav-link:focus,
.nav-toggle:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle span,
  .nav-link::after,
  .nav-link::before,
  .nav-menu {
    transition: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5a19b9e */.nav-btn-primary {
  display: inline-block;
  padding: 10px 40px;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #ffffff !important; /* Force la couleur */
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  box-shadow: 
    0 8px 25px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  min-width: 100px;
  z-index: 1; /* Contexte de stacking */
}

/* Contenu du bouton au premier plan */
.nav-btn-primary * {
  position: relative;
  z-index: 3; /* Texte au-dessus de tout */
}

/* Effet de vague DERRIÈRE le texte */
.nav-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  z-index: 2; /* Sous le texte */
}

.nav-btn-primary:hover::before {
  left: 100%;
}

/* Hover avec couleur renforcée */
.nav-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(0, 212, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  color: #ffffff !important; /* Maintient la couleur blanche */
}

/* Tablettes */
@media (max-width: 968px) {

}

/* Mobiles */
@media (max-width: 768px) {
    .nav-btn-primary {
        display: none;
    }
    
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7ce4ca81 *//* ===================================================
   MENU NAVIGATION RESPONSIVE - VERSION CORRIGÉE
=================================================== */

/* Menu principal */
.main-nav {
  position: relative;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

/* Logo/Brand */
.nav-brand {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-brand:hover {
  color: #00d4ff;
}

/* Menu desktop */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 0;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  display: block;
}

.nav-link:hover {
  color: #00d4ff;
}

/* Soulignement animé desktop */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ===================================================
   MENU BURGER
=================================================== */

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  border: none;
  background: transparent;
  z-index: 1002;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animation du burger */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #00d4ff;
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #00d4ff;
}

/* ===================================================
   RESPONSIVE
=================================================== */

/* Tablettes */
@media (max-width: 968px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border: none;
    background: transparent;
    z-index: 1002;
    position: relative; /* Ajouté pour assurer la visibilité */
  }
  
  /* Toggle quand le menu est ouvert - reste visible */
  .nav-toggle.active {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1006;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 10px;
  }
  
  /* Spans du toggle */
  .nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Animation du burger actif */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ffffff;
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #00d4ff;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: linear-gradient(180deg, #1a1a1a, #2a2a2a);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0;
    gap: 0;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    pointer-events: none;
  }
  
  .nav-menu.active {
    right: 0;
    pointer-events: auto;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-link {
    padding: 1.2rem 2rem;
    width: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
    z-index: 1003;
    pointer-events: auto;
  }
  
  .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    padding-left: 2.5rem;
  }
  
  /* Suppression du soulignement desktop sur mobile */
  .nav-link::after {
    display: none;
  }
  
  /* Barre latérale colorée mobile */
  .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff, #00ff88);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
  }
  
  .nav-link:hover::before,
  .nav-link.active::before {
    transform: scaleY(1);
  }
}

/* Petits mobiles */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
    min-height: 60px;
  }
  
  .nav-brand {
    font-size: 1.3rem;
  }
  
  .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
    width: 100%;
  }
  
  .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .nav-link:hover {
    padding-left: 2rem;
  }
}

/* ===================================================
   OVERLAY
=================================================== */

.nav-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 480px) {
  .nav-overlay {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

/* ===================================================
   ACCESSIBILITÉ
=================================================== */

.nav-link:focus,
.nav-toggle:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle span,
  .nav-link::after,
  .nav-link::before,
  .nav-menu {
    transition: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5a19b9e */.nav-btn-primary {
  display: inline-block;
  padding: 10px 40px;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #ffffff !important; /* Force la couleur */
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  box-shadow: 
    0 8px 25px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  min-width: 100px;
  z-index: 1; /* Contexte de stacking */
}

/* Contenu du bouton au premier plan */
.nav-btn-primary * {
  position: relative;
  z-index: 3; /* Texte au-dessus de tout */
}

/* Effet de vague DERRIÈRE le texte */
.nav-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  z-index: 2; /* Sous le texte */
}

.nav-btn-primary:hover::before {
  left: 100%;
}

/* Hover avec couleur renforcée */
.nav-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(0, 212, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  color: #ffffff !important; /* Maintient la couleur blanche */
}

/* Tablettes */
@media (max-width: 968px) {

}

/* Mobiles */
@media (max-width: 768px) {
    .nav-btn-primary {
        display: none;
    }
    
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-6d197248 */.elementor-3832 .elementor-element.elementor-element-6d197248 {
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}/* End custom CSS */
/* Start custom CSS *//* ===================================================
   BACKGROUNDS POUR CONTAINERS ELEMENTOR
   Design sombre cohérent - Neith Consulting
=================================================== */

/* ===================================================
   SECTION 1 - SERVICES CRÉATION SITE INTERNET NOUMÉA
=================================================== */
.background-section-1 {
  background: #0a0a0a;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 153, 204, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  height: 100vh;
}

/* Effet de grille subtile en arrière-plan */
.background-section-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 1;
}

/* ===================================================
   SECTION 2 - POURQUOI NOUS CHOISIR
=================================================== */
.background-section-2 {
  background: #0f0f0f;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 153, 204, 0.02) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

/* Effet de particules en arrière-plan */
.background-section-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.01) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.01) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: floatingParticles 20s linear infinite;
  opacity: 0.4;
  z-index: 1;
}

@keyframes floatingParticles {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

/* ===================================================
   SECTION 3 - CONTACT
=================================================== */
.background-section-3 {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/* Effet de constellation en arrière-plan */
.background-section-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(0, 212, 255, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(0, 255, 136, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(0, 153, 204, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(0, 212, 255, 0.1), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 4s ease-in-out infinite alternate;
  opacity: 0.6;
  z-index: 1;
}

@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}

/* ===================================================
   SECTION 4 - HERO/INTRODUCTION (si besoin)
=================================================== */
.background-section-4 {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 153, 204, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

/* Grille subtile */
.background-section-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 1;
}

/* ===================================================
   SECTION 5 - PORTFOLIO/TÉMOIGNAGES (si besoin)
=================================================== */
.background-section-5 {
  background: #0c0c0c;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

/* Effet de vagues subtiles */
.background-section-5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 212, 255, 0.01) 50%,
    transparent 70%
  );
  background-size: 200px 200px;
  animation: waveMove 12s ease-in-out infinite;
  opacity: 0.5;
  z-index: 1;
}

@keyframes waveMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -20px) rotate(1deg); }
}

/* ===================================================
   SECTION 6 - ALTERNATIVE CLAIRE (si besoin)
=================================================== */
.background-section-6 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

/* Effet hexagonal */
.background-section-6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.03) 30%, transparent 30%);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
  opacity: 0.6;
  z-index: 1;
}

/* ===================================================
   BACKGROUNDS RESPONSIFS
=================================================== */

/* Désactive les effets complexes sur mobile pour les performances */
@media (max-width: 768px) {
  .background-section-1::before,
  .background-section-2::before,
  .background-section-3::before,
  .background-section-4::before,
  .background-section-5::before,
  .background-section-6::before {
    display: none;
  }
  
  /* Backgrounds simplifiés sur mobile */
  .background-section-1 {
    background: #0a0a0a;
  }
  
  .background-section-2 {
    background: #0f0f0f;
  }
  
  .background-section-3 {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-attachment: scroll;
  }
  
  .background-section-4 {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  }
  
  .background-section-5 {
    background: #0c0c0c;
  }
  
  .background-section-6 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  }
}

/* ===================================================
   UTILITAIRES POUR ELEMENTOR
=================================================== */

/* Assure que les containers Elementor héritent de la hauteur */
.background-section-1,
.background-section-2,
.background-section-3,
.background-section-4,
.background-section-5,
.background-section-6 {
  min-height: 100%;
  width: 100%;
}

/* Pour les sections avec parallax */
.background-parallax {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .background-parallax {
    background-attachment: scroll;
  }
}

/* Classes de contrôle d'animation */
.no-animations .background-section-2::before,
.no-animations .background-section-3::before,
.no-animations .background-section-5::before {
  animation: none;
}

/* Support des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .background-section-2::before,
  .background-section-3::before,
  .background-section-5::before {
    animation: none;
  }
}/* End custom CSS */