


/*=========  Start Formulaire de collette ===========*/

    * {
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      margin: 0;
      padding: 20px;
      background-color: #f5f5f5;
    }
    
    .container-form {
      max-width: 800px;
      margin: 0 auto;
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-top: 25px;
      margin-bottom: 25px;
    }
    
    h1 {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      margin-top: 50px;
    }
    
    .form-section {
      margin-bottom: 30px;
      padding: 20px;
      border-radius: 8px;
      background-color: #f8f9fa;
    }
    
    .form-section h2 {
      color: #2980b9;
      margin-top: 0;
      padding-bottom: 10px;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .form-row {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 15px;
    }
    
    .form-group {
      flex: 1;
      min-width: 250px;
      margin-right: 20px;
      margin-bottom: 15px;
      position: relative;
    }
    
    .form-group:last-child {
      margin-right: 0;
    }
    
    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #333;
    }
    
    .required::after {
      content: " *";
      color: red;
    }
    
    input, select, textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
    }
    
    input[type="file"] {
      padding: 8px;
    }
    
    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: #3498db;
      box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    }
    
    textarea {
      resize: vertical;
      min-height: 100px;
    }
    
    .buttons {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }
    
    button {
      padding: 12px 25px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .btn-primary {
      background-color: #2980b9;
      color: white;
    }
    
    .btn-primary:hover {
      background-color: #3498db;
    }
    
    .btn-secondary {
      background-color: #95a5a6;
      color: white;
    }
    
    .btn-secondary:hover {
      background-color: #7f8c8d;
    }
    
    .file-preview {
      margin-top: 8px;
      max-width: 200px;
      display: none;
    }
    
    .progress-bar {
      width: 100%;
      height: 5px;
      background-color: #ecf0f1;
      margin-top: 30px;
      border-radius: 5px;
      overflow: hidden;
    }
    
    .progress {
      height: 100%;
      background-color: #3498db;
      width: 25%;
    }
    
    .section-indicator {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    
    .section-dot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: #bdc3c7;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
      font-weight: bold;
    }
    
    .section-dot.active {
      background-color: #3498db;
    }
    
    .section-dot.completed {
      background-color: #2ecc71;
    }
    
    .section-line {
      flex-grow: 1;
      height: 2px;
      background-color: #bdc3c7;
      margin: 10px 5px;
    }
    
    .error-message {
      color: #e74c3c;
      font-size: 14px;
      margin-top: 5px;
      display: none;
    }
    
    .success-message {
      padding: 15px;
      background-color: #d4edda;
      color: #155724;
      border-radius: 4px;
      margin-bottom: 20px;
      display: none;
    }
    
    @media (max-width: 768px) {
      .form-group {
        flex: 100%;
        margin-right: 0;
      }
    }
    
    /* Styles pour la recherche de ville */
    .autocomplete-items {
      position: absolute;
      border: 1px solid #d4d4d4;
      border-top: none;
      z-index: 99;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
    }
    .autocomplete-item {
      padding: 10px;
      cursor: pointer;
      border-bottom: 1px solid #d4d4d4;
    }
    .autocomplete-item:hover {
      background-color: #e9e9e9;
    }


    /*=========  End Formulaire de collette ===========*/





    /*======Star Banner Video=========*/


    /* Section vidéo en plein écran ou hauteur fixe */
.video-banner-area {
  position: relative;
  width: 100%;
  /* Ajustez la hauteur ici (exemple : 700px) */
  height: 500px;
  overflow: hidden;
}

/* Vidéo en arrière-plan */
.video-banner-area .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ou contain selon vos besoins */
  z-index: 1;
}

/* Overlay du contenu (texte, badges, etc.) */
.video-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;           /* pour aligner verticalement */
  align-items: center;     /* centre vertical */
  padding: 0 15px;         /* marge horizontale si besoin */
}

/* Ajuster la couleur de fond (semi-transparent) si désiré */
.video-overlay::before {
  content: "";
  background: rgba(0,0,0,0.4); 
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

/* Style du badge circulaire */
.badge .curve-text {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  /* Animation de rotation si vous souhaitez que le cercle tourne */
  animation: spin 6s linear infinite; 
}

/* Ajustez la vitesse, la direction, etc. */
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pour s’assurer que le SVG occupe tout l’espace du parent */
.curve-text svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Style du lien et de l’icône dans le badge */
.curve-text a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff; /* Couleur de l’icône */
  font-size: 30px;
  background: rgb(255, 255, 255); /* exemple de fond */
  padding: 8px 10px;
  border-radius: 50%;
}




/* Style de la zone info (titre, texte, bouton) */
.info h2 {
  font-size: 70px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.info p {
  font-size: 18px;
  margin-bottom: 25px;
  max-width: 600px; /* Pour limiter la largeur du paragraphe */
  
}



/*************************************
 * Rendre le tout responsive via media queries
 *************************************/
 @media (max-width: 992px) {
  .info h2 {
    font-size: 30px;
  }
  .info p {
    font-size: 16px;
  }
  .curve-text {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .info h2 {
    font-size: 20px;
  }
  .info p {
    font-size: 10px;
  }
  .curve-text {
    width: 80px;
    height: 80px;
  }
}
    /*====== End Banner Video ========*/







/* DEBUT AnCIEN FOOTER */

  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #27ae60, #2980b9, #8e44ad, #f39c12);
  }
  
  /* FIN  ANCIEN FOOTER */



  /* DEBUT  NEW STYLE POR LE FOOTER */


/* Import de la police pour un look moderne */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.pro-footer {
    position: relative;
    padding: 60px 20px;
    background-image: url('https://images.unsplash.com/photo-1560493676-04071c5f467b?q=80&w=1974&auto=format&fit=crop'); /* Image de fond agricole */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet parallax simple */
    color: white;
    font-family: 'Roboto', sans-serif;
}

/* Voile sombre pour la lisibilité */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 25, 15, 0.8); /* Vert très sombre et opaque */
    z-index: 1;
}

/* Conteneur pour le contenu, au-dessus du voile */
.footer-content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Grille pour les liens */
.footer-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Espace entre les liens */
    margin-bottom: 40px;
}

.footer-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px); /* Effet de verre dépoli */
}

.footer-link-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05); /* Effet de lévitation */
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-link-item i {
    margin-right: 10px;
    color: #facc15; /* Un jaune doré comme couleur d'accent */
}

/* Section du bas (copyright et réseaux sociaux) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 30px;
}

.social-icons-footer a {
    color: #ffffff;
    margin: 0 12px;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons-footer a:hover {
    color: #facc15; /* Accent jaune au survol */
    transform: scale(1.2);
}

.footer-bottom p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #cccccc;
}

/* Responsive pour les mobiles */
@media (max-width: 768px) {
    .pro-footer {
        padding: 40px 15px;
    }

    .footer-main-title {
        font-size: 1.8rem;
    }

    .footer-link-item {
        width: 100%; /* Les liens prennent toute la largeur */
        justify-content: flex-start; /* Aligner le texte à gauche */
    }
}
   
/* FIN  NEW STYLE POR LE FOOTER */





  /* debut  Personnalisation du carrousel déjà intégré */

/* ========= Variables et Reset ========= */
:root {
  --primary-color: #ff6600;
  --secondary-color: #e65c00;
  --overlay-bg: rgba(0, 0, 0, 0.85);
  --transition-speed: 0.8s;
}

.carousel-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

/* ========= Carrousel ========== */
.custom-carousel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.custom-carousel .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.custom-carousel .swiper-slide img {
  width: 100%;
  height: 300px; /* Hauteur importante pour agrandir l'image */
  object-fit: cover;
  transition: transform var(--transition-speed) ease, filter 0.5s ease;
}

.custom-carousel .swiper-slide:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* ========= Overlay ========= */
.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, var(--overlay-bg), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.slide-overlay h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.slide-overlay button {
  padding: 10px 25px;
  background: var(--primary-color);
  border: none;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-overlay button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* ========= Boutons de navigation ========= */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.75);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* ========= Pagination ========= */
.swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* ========= Section Détails ========= */
.product-details-section {
  display: none;
  padding: 40px 0;
  background: #fff;
  transition: opacity 0.5s ease;
  text-align: center;
}

.product-details-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.product-details-section h2 {
  margin-bottom: 20px;
  font-size: 2em;
  color: #333;
}

.product-details-section p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #666;
}


/* Fin  Personnalisation du carrousel déjà intégré */