:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-76cd2dc *//* ==========================================================================
   PAGE RECYCLAGE - HERO PREMIUM (Animations & Design)
   ========================================================================== */

:root {
  --cp-forest: #2D5016;
  --cp-forest-dark: #1A300D;
  --cp-ocre: #BA7517;
}

.cp-recycling-hero-premium {
  position: relative;
  min-height: 85vh; /* Un peu plus haut pour un impact premium */
  display: flex;
  align-items: center;
  /* MODIFICATION ICI : padding top augmenté à 180px */
  padding: 180px 24px 120px 24px; 
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* --- ARRIÈRE-PLAN ET IMAGE (Effet Ken Burns) --- */
.cp-recycling-hero-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cp-recycling-hero-premium__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  /* L'image zoome très lentement à l'infini */
  animation: cpKenBurns 25s ease-in-out infinite alternate;
}

/* Dégradé riche pour garantir la lisibilité du texte blanc */
.cp-recycling-hero-premium__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 48, 13, 0.95) 0%, rgba(45, 80, 22, 0.7) 40%, rgba(45, 80, 22, 0.1) 100%);
  z-index: 1;
}

@keyframes cpKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); } /* Zoom de 15% */
}

/* --- CONTENEUR GLOBAL --- */
.cp-recycling-hero-premium__container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.cp-recycling-hero-premium__content {
  max-width: 800px;
}

/* --- SUR-TITRE ET ICÔNE ANIMÉE --- */
.cp-r-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--cp-ocre);
}

/* Le svg tourne lentement à l'infini */
.cp-icon-spin {
  width: 24px;
  height: 24px;
  animation: cpSpinSlow 15s linear infinite;
}

@keyframes cpSpinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- TEXTES --- */
.cp-recycling-hero-premium__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 30px;
  color: #FFFFFF !important; /* Forçage absolu en blanc */
  letter-spacing: -0.02em;
}

.cp-title-accent {
  color: var(--cp-ocre);
  font-style: italic;
  font-weight: 700;
}

.cp-recycling-hero-premium__subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* --- BADGES (Touche Glassmorphism légère) --- */
.cp-recycling-hero-premium__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cp-r-badge {
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05); /* Blanc très transparent */
  backdrop-filter: blur(8px); /* Flou léger du fond */
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
}

.cp-r-badge:hover {
  background: var(--cp-ocre);
  border-color: var(--cp-ocre);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(186, 117, 23, 0.3);
}

/* --- CHORÉGRAPHIE D'APPARITION (STAGGER) --- */
.cp-animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: cpHeroFadeUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Gestion des délais pour l'effet cascade */
.cp-delay-1 { animation-delay: 0.1s; }
.cp-delay-2 { animation-delay: 0.3s; }
.cp-delay-3 { animation-delay: 0.5s; }
.cp-delay-4 { animation-delay: 0.7s; }

@keyframes cpHeroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-00d2590 *//* ==========================================================================
   PAGE RECYCLAGE - SECTION DÉTAILS (Blanc Premium & Line Art)
   ========================================================================== */

:root {
  --cp-bg-white: #FFFFFF;
  --cp-vert: #2D5016;
  --cp-ocre: #BA7517;
  --cp-texte-dark: #111111;
  --cp-texte-grey: #666666;
  --cp-border-light: #EAE8E3;
}

.cp-eco-light-premium {
  position: relative;
  padding: 140px 24px;
  background-color: var(--cp-bg-white);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  z-index: 1;
}

/* --- ANIMATION DE FOND (Lignes filaires) --- */
.cp-eco-light-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  color: var(--cp-vert); /* La couleur de base des SVG */
}

/* Le Soleil tournant */
.cp-eco-anim-sun {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  opacity: 0.04; /* Ultra discret */
  animation: cpSpinSun 60s linear infinite;
}

/* La Boucle d'infinité ondoyante */
.cp-eco-anim-loop {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 900px;
  height: 900px;
  opacity: 0.03;
  animation: cpFloatLoop 20s ease-in-out infinite alternate;
}

@keyframes cpSpinSun {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes cpFloatLoop {
  0% { transform: translate(0, 0) scale(1) rotate(-5deg); }
  100% { transform: translate(5%, -5%) scale(1.05) rotate(5deg); }
}

/* --- GRILLE ET CONTENEUR --- */
.cp-eco-light-premium__container {
  max-width: 1200px;
  margin: 0 auto;
}

.cp-eco-light-premium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

/* --- LES BLOCS DE CONTENU --- */
.cp-eco-item {
  position: relative;
  padding: 20px 0 40px 40px; /* Espace à gauche pour l'effet de décalage */
  border-left: 2px solid var(--cp-border-light);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  background: transparent;
}

/* L'index typographique "creux" (Outlined Text) */
.cp-eco-item__index {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  color: transparent; /* Rend l'intérieur du texte invisible */
  -webkit-text-stroke: 1.5px rgba(45, 80, 22, 0.15); /* Dessine uniquement le contour en vert pâle */
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  transition: all 0.5s ease;
}

.cp-eco-item__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  color: var(--cp-texte-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.cp-eco-accent {
  color: var(--cp-vert);
  font-style: italic;
}

.cp-eco-item__desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--cp-texte-grey);
  max-width: 420px;
  margin: 0;
}

/* Ligne de décoration animée en bas */
.cp-eco-item__line {
  position: absolute;
  bottom: 0;
  left: -2px; /* Superposé sur la bordure gauche */
  width: 2px; /* Démarre comme une ligne verticale */
  height: 0;
  background-color: var(--cp-ocre);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- HOVER EFFECTS (Interactions Premium) --- */
.cp-eco-item:hover {
  padding-left: 60px; /* Le texte glisse doucement vers la droite */
  border-left-color: transparent; /* Cache la bordure grise */
}

/* La ligne ocre grandit sur le côté puis tourne en bas */
.cp-eco-item:hover .cp-eco-item__line {
  height: 100%;
  width: 4px; /* S'épaissit légèrement */
}

/* Le chiffre s'illumine subtilement */
.cp-eco-item:hover .cp-eco-item__index {
  -webkit-text-stroke: 1.5px var(--cp-ocre);
  transform: translateX(-10px); /* Contre-mouvement très chic */
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .cp-eco-light-premium__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 576px) {
  .cp-eco-item { padding-left: 30px; }
  .cp-eco-item:hover { padding-left: 40px; }
  .cp-eco-item__index { font-size: 4.5rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6a4e7b2 *//* ==========================================================================
   SECTION 3 : COLLECTE & RECYCLAGE (V2 - Robuste et Premium)
   ========================================================================== */

:root {
  --cp-vert: #2D5016;
  --cp-ocre: #BA7517;
  --cp-bg-light: #FDFCFB; /* Blanc très légèrement chaud/premium */
  --cp-texte-dark: #1A1A18;
  --cp-texte-grey: #555552;
}

.cp-recycling-process-v2 { 
  padding: 120px 24px; 
  background-color: var(--cp-bg-light);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

.cp-recycling-process-v2__container { 
  max-width: 1150px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 80px; 
  align-items: center; 
}

/* --- TYPOGRAPHIE ET TEXTES --- */
.cp-process-v2-badge { 
  text-transform: uppercase; 
  font-size: 12px; 
  letter-spacing: 0.2em; 
  color: var(--cp-ocre); 
  margin-bottom: 24px; 
  font-weight: 800; 
}

.cp-process-v2-title { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2.5rem, 4vw, 3.2rem); 
  color: var(--cp-texte-dark);
  margin-bottom: 24px; 
  line-height: 1.15; 
}

.cp-process-v2-text { 
  font-size: 1.15rem;
  line-height: 1.7; 
  color: var(--cp-texte-grey); 
  margin-bottom: 30px; 
}

.cp-process-v2-highlight { 
  border-left: 2px solid var(--cp-ocre); 
  padding-left: 24px; 
  margin-top: 20px;
}

.cp-process-v2-highlight p {
  font-style: italic;
  font-weight: 600; 
  font-size: 1.15rem; 
  color: var(--cp-texte-dark);
  line-height: 1.6;
  margin: 0;
}

/* --- CARTE DE TÉLÉCHARGEMENT PREMIUM --- */

/* Le wrapper gère uniquement le mouvement perpétuel lent */
.cp-download-floating-wrapper {
  animation: cpFloatSmooth 6s ease-in-out infinite;
  padding: 10px; /* Sécurité pour les ombres */
}

/* La carte gère le design et l'interaction au survol */
.cp-download-card-v2 { 
  background: #FFFFFF; 
  padding: 50px 40px; 
  border-radius: 20px; 
  text-align: center; 
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cp-download-card-v2:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border-color: rgba(186, 117, 23, 0.2);
}

.cp-download-card-v2__icon-wrap {
  width: 72px; 
  height: 72px; 
  background: #F9F8F6;
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin: 0 auto 24px; 
  transition: transform 0.4s ease, background 0.4s ease;
}

.cp-download-card-v2__icon { 
  width: 32px; 
  height: 32px; 
  color: var(--cp-ocre); 
  transition: color 0.4s ease;
}

/* Interaction icône au survol de la carte */
.cp-download-card-v2:hover .cp-download-card-v2__icon-wrap {
  background: var(--cp-ocre);
  transform: scale(1.05);
}

.cp-download-card-v2:hover .cp-download-card-v2__icon {
  color: #FFFFFF;
}

.cp-download-card-v2__title { 
  font-size: 22px; 
  font-weight: 700;
  color: var(--cp-texte-dark);
  margin-bottom: 12px; 
}

.cp-download-card-v2__desc { 
  font-size: 15px; 
  color: var(--cp-texte-grey); 
  line-height: 1.5;
  margin-bottom: 30px; 
}

.cp-download-card-v2__btn { 
  display: inline-block; 
  padding: 16px 32px; 
  background: var(--cp-vert); 
  color: #FFFFFF; 
  text-decoration: none; 
  border-radius: 50px; 
  font-size: 14px; 
  font-weight: 700;
  transition: all 0.3s ease; 
}

.cp-download-card-v2__btn:hover { 
  background: var(--cp-ocre); 
  transform: translateY(-2px);
}

/* --- ANIMATIONS CLÉS --- */
@keyframes cpFloatSmooth {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Animations d'entrée CSS simples et robustes */
.cp-anim-slide-right {
  animation: cpSlideRight 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.cp-anim-slide-left {
  animation: cpSlideLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

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

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .cp-recycling-process-v2__container { 
    grid-template-columns: 1fr; 
    gap: 60px; 
  }
  
  .cp-process-v2-content {
    text-align: center;
  }

  .cp-process-v2-highlight {
    text-align: left; /* Garde la citation lisible */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3659d83 *//* ==========================================================================
   SECTION PARTENAIRES : DARK PREMIUM & GLOW
   ========================================================================== */

:root {
  --cp-forest-dark: #1A300D; /* Vert très sombre presque noir */
  --cp-forest: #2D5016;
  --cp-ocre: #BA7517;
}

.cp-partners-dark-premium { 
  position: relative;
  padding: 120px 24px; 
  background-color: var(--cp-forest-dark); 
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  z-index: 1;
}

/* Lueur animée en arrière-plan */
.cp-partners-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(186, 117, 23, 0.15) 0%, rgba(26, 48, 13, 0) 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: cpPulseGlow 8s ease-in-out infinite alternate;
}

@keyframes cpPulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cp-partners-dark-premium__container { 
  max-width: 1200px; 
  margin: 0 auto; 
}

/* --- EN-TÊTE --- */
.cp-partners-dark-premium__header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-sur-titre-light {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cp-asterisk { color: var(--cp-ocre); font-size: 16px; }

.cp-partners-dark-premium__title { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2.5rem, 4vw, 3.5rem); 
  color: #FFFFFF !important; /* C'est ici que l'on force le blanc */
  margin: 0; 
  line-height: 1.1;
}

.cp-title-accent {
  color: var(--cp-ocre);
  font-style: italic;
}

/* --- GRILLE & CARTES --- */
.cp-partners-dark-premium__grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
}

.cp-partner-card-dark { 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 3px solid transparent; /* Prépare la ligne de survol */
  padding: 40px; 
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 220px;
}

/* Interaction Premium au survol */
.cp-partner-card-dark:hover { 
  background: rgba(255, 255, 255, 0.06); 
  border-top-color: var(--cp-ocre); /* La ligne ocre s'allume en haut */
  border-bottom-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cp-partner-card-dark__logo { 
  font-family: 'DM Sans', sans-serif; 
  font-size: 2.2rem; 
  font-weight: 800; 
  color: #FFFFFF; 
  display: block; 
  margin-bottom: 15px; 
  transition: color 0.3s ease;
}

.cp-partner-card-dark__desc { 
  font-size: 1.05rem; 
  color: rgba(255, 255, 255, 0.7); 
  line-height: 1.6; 
  margin: 0; 
}

/* Icône flèche en bas à droite */
.cp-partner-card-dark__action {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.cp-partner-card-dark__action svg {
  width: 24px;
  height: 24px;
  color: var(--cp-ocre);
  opacity: 0.5;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* La flèche s'anime au survol de la carte */
.cp-partner-card-dark:hover .cp-partner-card-dark__action svg {
  opacity: 1;
  transform: translateX(0);
}
.cp-partner-card-dark:hover .cp-partner-card-dark__logo {
  color: var(--cp-ocre);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .cp-partners-dark-premium__grid { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
}/* End custom CSS */