*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 80px;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
}



/* ==== Topbar (Even Food Limited) ==== */
.topbar {
    background-color: #f3f8f0; /* ton clair, propre et naturel */
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 1.3rem;
    border-bottom: 2px solid #dce8d1;
    margin: 60px 0 0;
}

/* Left Section (Contact info or tagline) */
.topbar-left a {
    text-decoration: none;
    color: #bb4b13;
    margin-right: 25px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.topbar-left a:hover {
    color: #1a3c1a; 
}

.topbar-left a i {
    color: #bb4b13; 
    margin-right: 8px;
}

/* Right Section (Social links) */
.topbar-right a {
    margin-right: 10px;
    font-size: 1.2rem;
    background-color: #bb4b13;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.topbar-right a i {
    color: #fff;
    transition: color 0.3s ease;
}

.topbar-right a:hover {
    background-color: #1a3c1a;
    transform: translateY(-3px);
}

.topbar-right a:hover i {
    color: #fff;
}

/* ==== Responsive ==== */
@media (max-width: 576px) {
    .topbar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .topbar-left a {
        display: block;
        margin: 10px 0;
    }
}







/* ==== Navbar ==== */


.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background:  #295e29;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    z-index: 100;
}

.logo {
    font-size: 0.3rem;  
    padding: 10px 30px;
}

.logo img {
    border-radius: 30%;
    width: 120px;
    height: 90px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #B75E33;
    border-bottom: 2px solid ;
    padding-bottom: 30px;
}



/* Buttons */
.btn-primary, .work-btn {
    background: #B75E33;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.btn-primary:hover, .work-btn:hover {
    background: #bb4b13;
}

.btn-outline {
    background: transparent;
    border: 3px solid #B75E33;
    color: #fff;
    padding: 0.6rem 1.3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #bb4b13;
    color: #fff;
}


/* bouton work witch us */

 

    .work-btn.send{
      background-color: #00c9a7;
      color: #fff;
    }

    /* Modal */
    .modal-bg {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal {
      background: #fff;
      width: 100%;
      max-width: 400px;
      padding: 20px;
      border-radius: 8px;
    }

    label { display: block; margin: 10px 0 5px; }
    select, input, textarea {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .close-btn {
      background: red;
      padding: 8px 12px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 10px;
    }



/* Mobile toggle */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    border: 2px solid #d35400;
    border-radius: 12px;
    background-color: #e67e22;
    padding: 5px 15px;
    margin-right: 25px;
}



/* ==== Hero Section ==== */


.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 9rem 5% 3rem;
    background: linear-gradient(to bottom right, #F2B321, #B75E33); /* rouge sombre naturel */
    color: #fff;
}

.hero-content {
    flex: 1 1 500px;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}



.hero-content p {
    margin: 1.5rem 0;
    color: #d8d8d8;
    font-size: 1.25rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}



.hero-image {
    flex: 1 1 400px;
    height: 400px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    animation: float 4s ease-in-out infinite;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==== Responsive ==== */
@media (max-width: 576px) {

    .logo img {
        width: 80px;
        height: 60px;
        margin-left: -40px;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: -100%;
        background: #1a3c1a;
        flex-direction: column;
        width: 220px;
        padding: 1rem 0;
        border-radius: 6px;
        transition: right 0.3s ease;
    }

    .nav-links.show {
        right: 5%;
    }

    .menu-toggle {
        display: block;
    }

    .btn-primary, .work-btn {
        padding: 0.5rem ;
        margin-right: 10px;
        font-size: 13px;
    }

    .hero {
        text-align: center;
        flex-direction: column;
    }

    .hero-content {
        padding-top: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }


    .hero-image {
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 300px;
        height: auto;
    }
}






/* ==== Services Section ==== */


.services {
    background: #1a3c1a;
    color: #fff;
    padding: 5rem 5% 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3.5rem;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}

.service-item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    z-index: 2;
}

.service-item::before{
  content: '';
  position: absolute;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  height: 10px;
  background-color: #bb4b13;
  z-index: 1;
  width: 100%;
  left: 0;
  bottom: 0;
  transition: height 0.5s ease;
}

.service-item:hover::before{
  height: 100%;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item i {
     position: relative;
    border-radius: 50%;
    padding: 20px;
    background-color: #fff;
    font-size: 3rem;
    color: #bb4b13;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-item h3 {
     position: relative;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.7rem;
    z-index: 2;
}

.service-item p {
  position: relative;
    color: #333;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 15px;
    z-index: 2;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.service-item:hover i {
    transform: scale(1.1);
}


@media (max-width: 576px) {
  
    .hero, .services, .values , .about , .products-container, .white-label, .contact , .testimonials .cta-final , .values-section , .history-expertise
    , .section-benefits , .section-products , .capacity-section , .supermarket-section{
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 3.5rem;
    }

}



/* ------ SECTION VALEURS SAVE (Premium B2) ------ */



.values {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
}

.values h2 {
    font-size: 2.2rem;
    color: #098809; 
    margin-bottom: 50px;
    font-weight: 700;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease-in-out;
    border: 1px solid #e9e9e9;
}

.value-card i {
    background: #bb4b13; 
    color: #098809; 
    font-size: 1.6rem;
    padding: 16px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.value-card h3 {
    font-size: 1.2rem;
    color: #0A3D2E;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5rem;
}

/* Effet hover premium */
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    border-color: #D4AF37;
}

.value-card:hover i {
    background: #D4AF37; /* Or */
    color: #0A3D2E; /* Vert foncé */
    transform: scale(1.08);
    transition: 0.3s;
}






/* ==== Values Section dans la page about.html ==== */


.values-section {
  padding: 60px 20px;
  background-color: #fffaf3;
  font-family: Arial, sans-serif;
  color: #333;
  text-align: center;
}
.values-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #098809;
  font-weight: bold;
}
.values-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.value {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.value .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.value h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #ff8c42;
}
.value p {
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .values-grid {
    gap: 20px;
  }
}


/* ===== About Section ===== */




/* Container général */
.container {
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Texte d'introduction */
.history-expertise .intro {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #098809;
    font-weight: bold;
}

/* Colonnes flexibles */
.two-col {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Carte */
.card {
    background-color: #fff9f4;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1 1 45%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Histoire */
.story h2 {
    color: #e67e22;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.story p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Image de la section histoire */
.story-img {
    width: 60%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Expertise */
.expertise h2 {
    color: #e67e22;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.bullets {
    list-style: none;
    padding: 0;
}

.bullets li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.bullets li .icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

/* Responsive */
@media (max-width: 576px) {
    .two-col {
        flex-direction: column;
    }

    .col {
        flex: 1 1 100%;
    }
}



.about {
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #F2B321, #B75E33);
  color: #fff;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* ===== Left Images ===== */
.about-images {
  flex: 1 1 45%;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.img-item {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-item.mt {
  margin-top: 25%;
}

.img-item.zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Right Text ===== */
.about-text {
  flex: 1 1 45%;
}

.about-text .subtitle {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #098809;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.about-text h2 {
  font-size: 2rem;
  margin: 10px 0 20px;
  color: #333;
  line-height: 1.3;
}

.about-text p span {
  color: #098809;
}

.about-text p {
  color: #111;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* ===== Stats ===== */
.stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.stat-box {
  border-left: 5px solid #098809;
  padding-left: 15px;
}

.stat-box h3 {
  color: #098809;
  font-size: 2rem;
  margin: 0;
}

.stat-box p {
  margin: 5px 0 0;
  font-weight: 600;
  color: #fff;
}

/* ===== Button ===== */
.btn {
  display: inline-block;
  background: #098809;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #1a3c1a;
  transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .img-grid {
    gap: 10px;
  }

  .stats {
    justify-content: center;
  }

  .stat-box {
    border-left: none;
    border-top: 4px solid #84ff00;
    padding-top: 10px;
  }
}



/* ==== style pour Products Section de la page produit.html ==== */




/* Section présentation */


.section-intro {
    text-align: center;
    padding: 60px 20px;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #3A7A3F;
}

.section-intro p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
}

/* Catalogue produits */
.section-products {
    padding: 60px 20px;
}

.section-products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #3A7A3F;
    margin-bottom: 40px;
}

/* Grille produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Carte produit */
.product-card {
    background: #FAF5E9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3 {
    margin: 15px 0 10px;
    color: #3A7A3F;
    font-size: 1.3rem;
}

.product-card p {
    padding: 0 15px;
    font-size: 1.2rem;
    color: #555;
}

/* Effet hover */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 576px) {
    .section-intro h2 {
        font-size: 1.8rem;
    }
    .section-intro p {
        font-size: 1rem;
    }
    .product-card img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .section-intro h2 {
        font-size: 1.5rem;
    }
    .product-card img {
        height: 350px;
    }
}



/* Section Benefits */

.section-benefits {
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
    text-align: center;
}

.section-benefits h2 {
    font-size: 2.5rem;
    color: #098809;
    font-weight: bold;
    margin-bottom: 30px;
}

.section-benefits ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.section-benefits ul li {
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
    padding-left: 60px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.section-benefits ul li .icon {
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    color: #3A7A3F;
}

/* Section CTA */

.section-cta {
    padding: 60px 20px;
    background-color: #3A7A3F;
    color: #FAF5E9;
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 900px;
}

.section-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}



/* ==== Products Section ==== */

 .products-container {
    text-align: center;
    padding: 40px 15px;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
  }

  .products-header h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #098809;
  }

  .products-header .subtitle {
    margin-top: 16px;
    color: #333;
    font-size: 2rem;
  }

  .product-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 50px;
  }

  @media (max-width: 900px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .product-grid {
      grid-template-columns: 1fr;
    }

    .products-header .subtitle {
        font-size: 1.7rem;
        line-height: 1.4;
    }
  }

  .product {
    background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.35));
    border: 1px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .product:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  }

  .product-media {
    width: 100%;
    height: 470px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f3f3;
    margin-bottom: 14px;
  }

  .product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
  }

  .product:hover .product-media img {
    transform: scale(1.05);
  }

  .product h3 {
    margin: 10px 0 6px;
    font-size: 1.8rem;
    font-weight: 700;
  }

  .product .desc {
    font-size: 1.2rem;
    color: #5b6573;
    margin-bottom: 16px;
    margin-top: 10px;
  }

  /* Bouton Style C (Orange/jaune alimentaire) */
  .btn {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(90deg, #ffb200, #ff8c00);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background .25s ease, transform .2s ease;
  }

  .btn:hover {
    background: linear-gradient(90deg, #ffa200, #ff7c00);
    transform: translateY(-2px);
  }




/* ==== White Label Section ==== */

  .white-label {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
    font-family: 'Poppins', sans-serif;
}

.white-label-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #098809;
    font-weight: 700;
}

.white-label-header p {
    font-size: 2rem;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.7;
}

.pillars {
    display: flex;
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.pillar {
    background: #fff3e6;
    border-radius: 12px;
    padding: 25px 20px;
    flex: 1 1 350px;
    max-width: 520px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.pillar:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pillar .icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #e67e22;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #e67e22;
}

.pillar p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Bouton CTA */
.white-label-cta .btn {
    display: inline-block;
    padding: 12px 35px;
    margin-right: 50px;
    background-color: #f39c12;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.white-label-cta .btn:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 576px) {

    .white-label-header p {
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .pillars {
        flex-direction: column;
        align-items: center;
    }
    .pillar {
        max-width: 90%;
    }
}






/* ---------- HERO white label---------- */


.hero_white_label{position:relative;min-height:470px;display:flex;align-items:center;justify-content:center;overflow:visible}


/* Background image + orange->yellow gradient overlay */
.hero_white_label::before{
content:'';position:absolute;inset:0;background-image: url('img/hero-bg.webp');background-size:cover;background-position:center;z-index:0}
.hero_white_label::after{
/* gradient overlay */
content:'';position:absolute;inset:0;background:linear-gradient(120deg, rgba(255,140,0,0.3), rgba(255,210,60,0.48));mix-blend-mode:normal;z-index:1}


.hero_white_label-content{position:relative;z-index:2;max-width:1100px;padding:64px 24px;text-align:center}


.hero_white_label h1{font-size:clamp(28px,4.6vw,48px);color:#fff;font-weight:700;margin-bottom:10px;line-height:1.05;text-shadow:0 6px 18px rgba(0,0,0,0.25);transform:translateY(12px);opacity:0;animation:fadeUp .7s ease forwards .25s; margin-top: -4em;}
.hero_white_label p{font-size:clamp(23px,1.6vw,18px);color:#111;max-width:820px;margin:0 auto 24px;opacity:0;transform:translateY(10px);animation:fadeUp .7s ease forwards .45s;line-height: 1.7; }


.hero_white_label-buttons{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;opacity:0;transform:translateY(8px);animation:fadeUp .7s ease forwards .65s}


/* ---------- PRODUCTS MOCKUPS (bottom) ---------- */
.hero_white_label-mockups{position:absolute;left:50%;transform:translateX(-50%);bottom:-48px;display:flex;gap:18px;align-items:flex-end;z-index:3;padding:0 18px}


.mockup{width:140px;border-radius:18px;background:#fff;padding:8px;box-shadow:0 20px 50px rgba(15,15,15,0.18);transform:translateY(20px);transition:transform .36s cubic-bezier(.2,.9,.3,1),box-shadow .36s;opacity:0;animation:fadeScale .8s ease forwards .9s}
.mockup img{width:100%;height:auto;border-radius:12px;display:block}


.mockup.large{width:190px;transform:translateY(28px);animation-delay:1.02s}
.mockup.tall{width:120px;height:170px;padding:6px;display:flex;align-items:center}


.mockup:hover{transform:translateY(-6px) rotate(-1.2deg);box-shadow:0 34px 70px rgba(15,15,15,0.24)}


/* subtle float animation for each mockup */
.mockup:nth-child(1){animation-name:fadeScale;animation-delay:0.95s}
.mockup:nth-child(2){animation-name:fadeScale;animation-delay:1.05s}
.mockup:nth-child(3){animation-name:fadeScale;animation-delay:1.15s}


/* ---------- MOBILE ADJUSTMENTS ---------- */
@media (max-width:880px){
.hero_white_label{min-height:520px}
.hero_white_label-content{padding:48px 18px}
.hero_white_label-mockups{bottom:-34px;gap:12px}
.mockup{width:110px}
.mockup.large{width:150px}
}


@media (max-width:520px){
    .hero_white_label{min-height:480px}
    .hero_white_label-content{padding:36px 16px}
    .hero_white_label-mockups{position:relative;bottom:0;margin-top:25px;transform:none;left:0;justify-content:center}
    .mockup{width:92px}
    .mockup.large{width:150px}
    .hero_white_label p{font-size:15px}
}


/* ---------- KEYFRAMES ---------- */
@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeScale{from{opacity:0;transform:translateY(36px) scale(.96)}to{opacity:1;transform:translateY(0) scale(1)}}


/* small utility */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}



/* ==============================
   Section Présentation
============================== */
.section-intro , .section-services{
    text-align: center;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
    padding: 80px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.section-intro h2 {
    margin-top: 50px;
    font-size: 2.5rem;
    color: #098809; 
    margin-bottom: 20px;
}

.section-intro p {
    font-size: 2rem;
    color: #333;
    line-height: 1.7;
}

/* ==============================
   Section Services White Label
============================== */
.section-services h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #098809;
    margin-bottom: 50px;
}

/* Grille des services */
.services-grid-white-label {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
}

/* Cartes de services */
.service-card-white-label {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card-white-label:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.service-card-white-label h3 {
    font-size: 1.5rem;
    color: #bb4b13;
    margin-bottom: 15px;
}

/* Icônes */
.service-card-white-label .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.service-card-white-label:hover .icon {
    transform: rotate(10deg) scale(1.2);
    color: #098809;
}

.service-card-white-label p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}



/* ==============================
   Section Capacités

============================== */
.capacity-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
    font-family: 'Segoe UI', sans-serif;;
}

/* --- Titres --- */
.capacity-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #098809;
    font-weight: bold;
}

/* --- Grille deux colonnes --- */
.two-col {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* --- Colonnes --- */
.col {
    flex: 1 1 45%;
    min-width: 280px;
}

/* --- Cartes --- */
.card {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- Aside différencié --- */
.aside-card {
    background-color: #f8fdfd;
}

.aside-card h3 {
    color: #bb4b13;
    margin-bottom: 15px;
    font-size: 1.3rem;   
}

/* --- Info items avec icônes --- */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    color: #098809;
    min-width: 40px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #bb4b13;
}

.info-item p {
    margin: 0;
    line-height: 1.5;
}

/* --- Liste à puces avec icônes --- */
.bullets {
    list-style: none;
    padding-left: 0;
}

.bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.bullets li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #098809;
}

/* --- Responsive --- */
@media screen and (max-width: 576px) {

    .section-intro p {
        font-size: 1.5rem;
    }

    .services-grid-white-label {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .two-col {
        flex-direction: column;
    }

    .col {
        flex: 1 1 90%;
    }

    .info-item {
        gap: 15px;
    }
}

/* ==============================
   Section Supermarché
============================== */
.supermarket-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
    font-family: 'Segoe UI', sans-serif;;
}

/* --- Section spécifique --- */
.supermarket-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #098809;
}

/* --- Info items avec icônes (colonne principale) --- */
.supermarket-section .info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.supermarket-section .info-item i {
    color: #bb4b13;
    min-width: 40px;
}

.supermarket-section .info-item p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* --- Aside avec bullets et icônes --- */
.supermarket-section .aside-card {
    background-color: #f8fdfd;
}

.supermarket-section .bullets {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.supermarket-section .bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.supermarket-section .bullets li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #bb4b13;
}

/* --- Cartes --- */
.supermarket-section .card {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.supermarket-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- Grille responsive --- */
.supermarket-section .two-col {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.supermarket-section .col {
    flex: 1 1 45%;
    min-width: 280px;
}

/* --- Responsive --- */
@media screen and (max-width: 576px) {
    .supermarket-section .two-col {
        flex-direction: column;
    }

    .supermarket-section .col {
        flex: 1 1 100%;
    }

    .supermarket-section .info-item {
        gap: 15px;
    }
}

/* ==============================
   Section Témoignages et Stats
============================== */

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
    font-family: 'Segoe UI', sans-serif;;
}

/* --- Section générale --- */
.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #098809;
    font-weight: bold;
}

/* --- Témoignages --- */
.testimonials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.testimonial.card {
    background-color: #f8fdfd;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 300px;
    max-width: 500px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial blockquote {
    font-style: italic;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-weight: bold;
    color: #bb4b13;
}

/* --- Statistiques --- */
.stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat.card {
    background-color: #fff;
    flex: 1 1 200px;
    max-width: 250px;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.stat.card i {
    color: #098809;
    margin-bottom: 10px;
}

.stat.card strong.counter {
    display: block;
    font-size: 2rem;
    color: #098809;
}

.stat.card p {
    margin-top: 8px;
    font-size: 1.2rem;
}

/* --- Responsive --- */
@media screen and (max-width: 576px) {
    .testimonials {
        flex-direction: column;
        align-items: center;
    }

    .testimonials .container .section-header p{
        font-size: 25px;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stat.card {
        margin-bottom: 20px;
    }
}




/* ==============================
   Section Call to Action
============================== */

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #3A7A3F, #5CA85C);
    color: #FAF5E9;
    text-align: center;
    padding: 80px 20px;
    border-radius: 12px;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffb200;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* --- Bouton stylisé --- */
.cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FAF5E9;
    color: #3A7A3F;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-section .btn i {
    font-size: 1.2rem;
}

/* --- Hover effect --- */
.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    background-color: #e6e1d8;
}

/* --- Responsive --- */
@media screen and (max-width: 576px) {
    .cta-section {
        padding: 60px 15px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-section .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}



/* ==== Contact Section ==== */


.contact {
    padding: 80px 20px;
    background-color: #1a3c1a;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #d35400;
    margin-bottom: 35px;
}

.contact-header p {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

/* Formulaire */
.contact-form {
    flex: 1 1 350px;
    max-width: 450px;
    background: #bb4b13;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    position: relative;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #e67e22;
    font-weight: 600;
}

.input-icon {
    position: absolute;
    top: 38px;
    left: 12px;
    color: #d35400;
    font-size: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px; /* espace pour icône */
    border-radius: 8px;
    border: 2px solid #ccc;
    font-size: 1rem;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #098809;
    box-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
}

.contact-form select {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    appearance: none; /* supprime la flèche par défaut */
    background: #fff url('data:image/svg+xml;charset=UTF-8,<svg fill="%23d35400" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M5.516 7.548a.75.75 0 011.06-.024l3.424 3.415 3.423-3.415a.75.75 0 111.058 1.06l-3.954 3.943a.75.75 0 01-1.058 0L5.54 8.584a.75.75 0 01-.024-1.036z"/></svg>') no-repeat right 12px center;
    background-size: 16px 16px;
}

.contact-form select:focus {
    border-color: #098809;
    box-shadow: 0 0 5px rgba(25, 243, 18, 0.732);
}

.contact-form .btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #f39c12;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form .btn:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

/* Infos de contact */
.contact-info {
    flex: 1 1 350px;
    max-width: 450px;
    background: #bb4b13;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    position: relative;
}

.contact-info h3 {
    color: #098809;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 45px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #bb4b13;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 30px;
    background: #fff3e6;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.info-icon {
    margin-right: 10px;
    color: #098809;
}

/* Réseaux sociaux stylisés */
.social-links a {
    display: inline-block;
    margin-right: 25px;
    color: #fff;
    background-color: #f39c12;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a i {
    margin-right: 5px;
}

.social-links a:hover {
    background-color: #d35400;
}

/* Responsive */
@media (max-width: 576px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-info {
        max-width: 90%;
    }
}



/* ==== Testimonials Section ==== */


.testimonials {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #F2B321, #B75E33);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials .section-header h2 {
    font-size: 2.5rem;
    color: #098809;
    margin-bottom: 15px;
}

.testimonials .section-header p {
    font-size: 2rem;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.6;
}




.section-header .subtitle {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 30px;
}


/* ===== Carousel ===== */
.testimonial-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}



.testimonial-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quote-icon {
  color: #bb4b13;
  font-size: 2rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h5 {
  margin: 0;
  font-size: 1rem;
  color: #111;
}

.client-info small {
  color: #777;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    flex: 0 0 80%;
  }

  .testimonial-carousel{
    flex-direction: column;
  }
}



/* section cta final */


.cta-final {
    background: #f39c12; /* couleur chaude pour CTA */
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    margin: 60px 0;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-final .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-final .btn-primary {
    background-color: #d35400;
    color: #fff;
}

.cta-final .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.cta-final .btn-secondary {
    background-color: #fff;
    color: #d35400;
    border: 2px solid #d35400;
}

.cta-final .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }
}







/* Footer section */




.footer {
    background-color: #1a3c1a;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

/* Top Part */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 20px 40px;
}

/* Section Titles */
.footer-section h5 {
    color: #bb4b13;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #bb4b13;
}

/* Contact Info */
.footer-section.contacts p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-section.contacts p a{
  text-decoration: none;
  font-size: 14px;
  color: #bb4b13;
}

.footer-section.contacts span {
    margin-right: 8px;
}

/* Socials */
.footer-section.contacts .socials a {
    display: inline-block;
    margin-top: 10px;
    margin-right: 8px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #bb4b13;
    color: #bb4b13;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section.contacts .socials a:hover {
    background-color: #d35400;
    color: #fff;
}

/* Newsletter */
.footer-section.newsletter .newsletter-form {
    display: flex;
    margin-top: 10px;
}

.footer-section.newsletter input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid #bb4b13;
    background-color: #fff;
    color: #fff;
    font-size: 14px;
}

.footer-section.newsletter button {
    padding: 0 20px;
    margin-left: 10px;
    border: none;
    border-radius: 50px;
    background-color: #bb4b13;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.footer-section.newsletter button:hover {
    background-color: #d35400;
}

/* Bottom Part */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px;
    font-size: 14px;
    text-align: center;
}


.footer-bottom a{
  text-decoration: none;
  color: #bb4b13;
}



/* Responsive */
@media (max-width: 576px) {

  .footer{
    text-align: center;
  }
    .footer-bottom {
        flex-direction: column;
    }

    
}




