/*
Theme Name: Condiservices
Author: Ahdadouch Amine
Version: 1.0
*/


/**
 * Typography: Poppins
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #173B7B;
}

html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}

b,
strong {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.parent_container {
    width: 1190px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/**
 * Layout: Top Header
 */
.site-header-custom {
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.site-header-custom.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding-bottom: 5px;
    animation: slideDown 0.5s ease-out;
}

.site-header-custom.is-sticky .header-top {
    display: none;
}

.site-header-custom.is-sticky .header-bottom .header-logo {
    display: block !important;
    transition: opacity 0.3s ease;
}

.site-header-custom.is-sticky .header-bottom .header-logo img {
    width: 120px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.site-header-custom {
    background-color: #ffffff;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
}

.header-container {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    width: 150px;
    max-height: 60px;
    height: auto;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-content.mob {
    display: none;
}

.contact-item,
.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0.5;
    font-size: 16px;
}


.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.w-socials-item-link {
    display: block;
    position: relative;
    text-decoration: none;
    font-size: 17px;
    color: var(--primary-color);
}

.w-socials-item.linkedin .w-socials-item-link:after {
    content: '\f0e1';
    font-family: "Font Awesome 6 Brands" !important;
    font-size: 17px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: #ffffff;
    min-width: 210px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-transform: unset;
    transition: color 0.2s;
}

.nav-menu .sub-menu li.current-menu-item > a,
.nav-menu .sub-menu li.current_page_item > a {
    background-color: #f8be16;
}

.nav-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.nav-menu .sub-menu li a:after {
    content: none;
}

.nav-menu .sub-menu li a:hover {
    color: #5077c0;
}

/**
 * Layout: Bottom Header
 */
.header-bottom {
    position: relative;
}

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

.header-bottom .header-logo img {
    max-height: 50px;
    width: auto;
}

.box-menu {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
    outline: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.nav-menu li.current-menu-item a:after {
    width: 100%;
    background-color: var(--primary-color);
}

.nav-menu li a:hover:after {
    width: 100%;
    background-color: rgba(26, 59, 102, 0.5);
}

.nav-menu li.current-menu-item a:hover:after {
    background-color: var(--primary-color);
    opacity: 1;
}

.nav-menu li a:hover {
    color: #FBB90D;
}

.menu-toggle {
    display: none;
}


/**
 * Section: Banner
 */
.hero-banner {
    position: relative;
    height: 62vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/**
 * Section: About
 */
.about-section {
    padding: 50px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.about-title {
    color: var(--primary-color);
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0;
}

.about-divider {
    border: 0;
    border-top: 1px solid #e1e8f0;
    width: 45%;
    margin: 0 0 25px 0;
}

.about-intro {
    font-size: 18px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-col {
    font-size: 18px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

/**
 * Section: Chiffres Clés
 */
.counters-section {
    padding: 30px 0 70px;
    background: #fff;
    overflow: hidden;
}

.counters-grid {
    display: flex;
    margin-top: 35px;
    text-align: center;
    justify-content: space-around;
}

.counters-section .about-divider {
    width: 55%;
}

.number-container {
    color: #fbb90d;
    font-size: 70px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 1;
    display: flex;
    min-height: 80px;
    align-items: end;
    justify-content: center;
}

.number-container sup {
    margin-bottom: 25px;
}

.counter-label {
    color: var(--primary-color);
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    margin: unset;
    margin-top: 15px;
}

/**
 * Section: Footer
 */
.site-footer {
    background-color: #3366F2;
    color: #ffffff;
    padding: 55px 0 25px;
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 15px;
}

.site-footer .footer-col {
    flex: 1;
}

.site-footer .footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
}

.site-footer .footer-description {
    font-size: 14px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin: unset;
}

.site-footer .footer-contact {
    border-left: 1px solid #ffffff;
    padding-left: 30px;
}

.site-footer .contact-item {
    display: flex;
    align-items: center;
    gap: unset;
    margin-bottom: 20px;
}

.site-footer .contact-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    opacity: 1;
}

.site-footer .contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer .contact-item span {
    font-size: 14px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.site-footer .footer-bottom {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.site-footer a:hover {
    color: #ffb03a;
}

.site-footer .footer-copy {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.site-footer .fa-linkedin:before {
    content: "\f0e1";
    font-family: "Font Awesome 6 Brands" !important;
}

/**
 * Section: Engagements
 */
.engagements-section {
    padding: 40px 0;
    text-align: center;
    overflow: hidden;
}

.engagements-section .engagements-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.engagements-section .header-icon span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #3b71fe;
    border-radius: 2px;
    margin-right: 4px;
}

.engagements-section .engagements-main-title {
    color: var(--primary-color);
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.engagements-section .engagements-intro {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    margin: 0 auto 40px;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    padding: 0 10px;
}

.engagements-section .engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.engagements-section .engagement-card {
    display: flex;
    flex-direction: column;
}

.engagements-section .card-title {
    color: #fbb900;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-top: 1px solid #e0e0e0;
    margin-top: unset;
    padding-top: 25px;
}

.engagements-section .card-image-wrapper {
    width: 100%;
    height: 270px;
    overflow: hidden;
    margin-bottom: 20px;
}

.engagements-section .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.engagements-section .card-content p {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: var(--primary-color);
    line-height: 1.5;
    text-align: left;
    margin: unset;
    margin-top: 8px;
}

/**
 * Section: Valeurs
 */
.valeurs-section {
    padding: 30px 0px 50px;
    text-align: center;
    background-color: #ffffff;
    overflow: hidden;
}

.valeurs-section .valeurs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}

.valeurs-section .valeurs-main-title {
    color: var(--primary-color);
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.valeurs-section .valeurs-intro {
    max-width: 850px;
    margin: 0 auto 30px;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.1rem;
}

.valeurs-section .valeurs-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    width: 30%;
    margin: 0 auto 35px;
}

.valeurs-section .valeurs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px;
    margin-top: 20px;
}

.valeurs-section .valeur-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.valeurs-section .valeur-icon-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valeurs-section .valeur-icon-wrapper img {
    max-height: 100%;
    width: auto;
}

.valeurs-section .valeur-title {
    color: var(--primary-color);
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: unset;
}

.valeurs-section .valeur-desc {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    margin: unset;
    margin-top: 24px;
}

/**
 * Section: Égalité
 */
.index-egalite-section {
    padding: 30px 0 50px;
    background-color: #fff;
    overflow: hidden;
}

.index-egalite-section .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}

.index-egalite-section .main-title {
    color: var(--primary-color);
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.index-egalite-section .valeurs-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    width: 30%;
    margin: 0 auto 35px;
}

.index-egalite-section .index-flex-container {
    display: flex;
    gap: 60px;
    align-items: stretch;
    justify-content: stretch;
}

.index-egalite-section .index-left-col {
    flex: 1.8;
}

.index-egalite-section .index-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.index-egalite-section .main-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    margin-bottom: 20px;
}

.index-egalite-section .index-wysiwyg-content {
    color: var(--primary-color);
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

.index-egalite-section .index-wysiwyg-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.index-egalite-section .index-wysiwyg-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.index-egalite-section .index-wysiwyg-content li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.index-egalite-section .text-top-description {
    color: var(--primary-color);
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

.index-egalite-section .score-image-full {
    text-align: center;
}

.index-egalite-section .score-image-full img {
    width: 235px;
    max-width: 280px;
    height: auto;
}

/**
 * Section: Nos Solutions
 */
.hero-parent-solutions {
    height: 66vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-parent-solutions .hero-title-main {
    color: #ffffff;
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 150px;
}

.hero-parent-solutions .solutions-buttons-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-parent-solutions .btn-yellow-solution {
    background-color: #fbb90d;
    color: #ffffff;
    padding: 17px 35px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    min-width: 250px;
    display: inline-block;
}

/**
 * Section: Services Logistiques, same banner
 */
.same-banner {
    padding: 40px 0 55px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.same-banner .services-main-title {
    color: #ffffff;
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.same-banner .services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 265px);
    justify-content: space-around;
    gap: 32px;
    text-decoration: none;
    margin: 0 auto;
}

.same-banner .service-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    transition: transform 0.3s ease;
}

.same-banner .service-card-item,
.same-banner .service-card-item * {
    text-decoration: none;
}

.same-banner .service-icon {
    padding: 20px;
	aspect-ratio: 1/1;
    border-radius: 30px;
    margin-bottom: 35px;
		transition: all .3s ease-in-out;
}

.same-banner .service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.same-banner .service-text {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-transform: none;
    color: #ffffff;
	
	.more-link {
		display: block;
    	font-size: 12px;
    	font-weight: 400;
		opacity: 0;
		transform: translatex(15px);
		transition: all .3s ease-in-out;
	}
}


.same-banner .service-card-item:hover {
	.service-icon{
		scale: 1.08;
		transform: rotate(7deg);
	}
	
	.more-link {
		opacity: 1;
		transform: translatex(0);
	}
}

/**
 * Section: Cross-Docking
 */
.cross-docking-section {
    padding: 60px 0 0;
    background-color: #fff;
    overflow: hidden;
}

.cross-docking-section .section-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cross-docking-section .main-title-blue {
    color: var(--service-dynamic-color, #001a4d);
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: unset;
}

.cross-docking-section .intro-text {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: #565655;
    margin-bottom: 40px;
}

.cross-docking-section .cross-docking-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cross-docking-section .cross-docking-content {
    flex: 1;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.cross-docking-section .cross-docking-content strong,
.cross-docking-section .cross-docking-content h3,
.cross-docking-section .cross-docking-content h2,
.cross-docking-section .cross-docking-content h1,
.cross-docking-section .cross-docking-content h4 {
    color: #3366f2;
    line-height: 1.6;
}

.cross-docking-section .cross-docking-content hr {
    color: #e0e0e0;
    opacity: 0.3;
}

.cross-docking-section .cross-docking-image {
    flex: 2;
    text-align: right;
}

.cross-docking-section .cross-docking-image img {
    max-width: 100%;
    height: auto;
}

.cross-docking-section .cross-docking-content ul {
    list-style: none;
    padding-left: 15px;
}

.cross-docking-section .cross-docking-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #565655;
}

.cross-docking-section .cross-docking-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/**
 * Section: Réception et Stockage
 */
.reception-stockage-section {
    padding: 60px 0 0;
    background-color: #fff;
    overflow: hidden;
}

.reception-stockage-section .section-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.reception-stockage-section .main-title-blue {
    color: var(--service-dynamic-color, #3366ff);
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: unset;
}

.reception-stockage-section .reception-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.reception-stockage-section .reception-image {
    flex: 2;
    text-align: left;
    max-height: 700px;
}

.reception-stockage-section .reception-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.reception-stockage-section .reception-content {
    flex: 1;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #565655;
    line-height: 1.8;
}

.reception-stockage-section .reception-content p {
    margin-bottom: 24px;
}

.reception-stockage-section .reception-content strong {
    color: #3366f2;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

/**
 * Section: Préparation des Commandes
 */
.same-columns {
    padding: 60px 0 0;
    background-color: #fff;
    overflow: hidden;
}

.same-columns .section-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.same-columns .main-title-orange {
    color: var(--service-dynamic-color, #fab727);
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: unset;
}

.same-columns .intro-flex {
    display: flex;
    gap: 60px;
    margin-bottom: 10px;
}

.same-columns .intro-text-left,
.same-columns .intro-text-right {
    flex: 1;
}

.same-columns .intro-text {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: #565555;
    display: flex;
    margin-bottom: 10px;
    gap: 30px;
}

.same-columns .intro-text p {
    margin: unset;
}

.same-columns .preparation-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.same-columns .preparation-content {
    flex: 1;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #565555;
}

.same-columns .preparation-content hr {
    color: #e0e0e0;
    opacity: 0.3;
}

.same-columns .preparation-content strong,
.same-columns .preparation-content h3,
.same-columns .preparation-content h2,
.same-columns .preparation-content h4 {
    color: #3366f2;
    line-height: 1.6;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 20px;
}

.same-columns .preparation-image {
    flex: 2;
    text-align: right;
    max-height: 700px;
}

.same-columns .preparation-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.same-columns .preparation-content ul {
    list-style: none;
    padding-left: 15px;
    margin-bottom: 20px;
}

.same-columns .preparation-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
    color: #565555;
}

.same-columns .preparation-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/**
 * Section: Gestion des Flux et Retours
 */
.gestion-retours-section {
    padding: 60px 0 0;
    background-color: #fff;
    overflow: hidden;
}

.gestion-retours-section .section-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gestion-retours-section .main-title-grey {
    color: var(--service-dynamic-color, #8e9db9);
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: unset;
}

.gestion-retours-section .intro-text {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: #565655;
    margin-bottom: 40px;
}

.gestion-retours-section .retours-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.gestion-retours-section .retours-image {
    flex: 2;
    text-align: left;
}

.gestion-retours-section .retours-image img {
    max-width: 100%;
    height: auto;
}

.gestion-retours-section .retours-content {
    flex: 1;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.gestion-retours-section .intro-flex {
    display: flex;
    gap: 60px;
}

.gestion-retours-section .intro-text-left {
    flex: 0.25;
}

.gestion-retours-section .intro-text-right {
    flex: 0.75;
}

.gestion-retours-section .retours-content hr {
    color: #e0e0e0;
    opacity: 0.3;
}

.gestion-retours-section .retours-content h3,
.gestion-retours-section .retours-content h4,
.gestion-retours-section .retours-content strong {
    color: #3366f2;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    margin-top: 25px;
    margin-bottom: 15px;
}

.gestion-retours-section .retours-content ul {
    list-style: none;
    padding-left: 15px;
}

.gestion-retours-section .retours-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #565655;
}

.gestion-retours-section .retours-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/**
 * Section: navigation-solutions-footer
 */
.navigation-solutions-footer {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}

.navigation-solutions-footer .nav-solutions-flex {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.navigation-solutions-footer .btn-solution {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 30px;
    border-radius: 3px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navigation-solutions-footer .btn-solution i {
    margin-right: 15px;
    font-size: 18px;
}

.navigation-solutions-footer .btn-solution.orange {
    background-color: #F8BE16;
}

.navigation-solutions-footer .btn-solution.blue {
    background-color: #3366f2;
}

.navigation-solutions-footer .btn-solution.orange:hover,
.navigation-solutions-footer .btn-solution.blue:hover {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.3);
}

/**
 * Section: Logistique In Situ
 */
.logistique-insitu-section {
    padding: 60px 0 0;
    background-color: #fff;
    overflow: hidden;
}

.logistique-insitu-section .section-header-center {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.logistique-insitu-section .main-title-blue {
    color: #3366f2;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: unset;
}

.logistique-insitu-section .insitu-intro {
    margin: 0 auto 20px;
    font-size: 14px;
    color: #565655;
    font-family: "Poppins", sans-serif;
}

.logistique-insitu-section .insitu-grid-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px);
    gap: 50px;
    margin-bottom: 50px;
}

.logistique-insitu-section .insitu-col h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: unset;
    margin-bottom: 24px;
    min-height: 50px;
    text-transform: none;
}

.logistique-insitu-section .insitu-col-desc {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
}

.logistique-insitu-section .insitu-image-footer {
    width: 90%;
    text-align: center;
    margin: 0 auto;
}

.logistique-insitu-section .insitu-image-footer img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/**
 * Section: Logistique E-commerce (Same Columns)
 */
.logistique-ecommerce-section.same-columns .preparation-flex {
    flex-direction: row-reverse;
}

/**
 * Section: Conformité & Étiquetage (Same Columns)
 */
.conformite-etiquetage-section.same-columns .main-title-orange {
    color: var(--service-dynamic-color, #011956);
}

/**
 * Section: Tri & Contrôle Qualité (Same Columns)
 */
.tri_controle_qualite-section.same-columns .main-title-orange {
    color: var(--service-dynamic-color, #3366f2);
}

.tri_controle_qualite-section.same-columns .preparation-flex {
    flex-direction: row-reverse;
}

.tri_controle_qualite-section.same-columns .intro-text-left {
    flex: 0.35;
}

.tri_controle_qualite-section.same-columns .intro-text-right {
    flex: 0.65;
}

/**
 * Section: Conditionnement Sur Mesure (Same Columns)
 */
.conditionnement_sur_mesure.same-columns .intro-text-left {
    flex: 0.63;
}

.conditionnement_sur_mesure.same-columns .intro-text-right {
    flex: 0.37;
}

/**
 * Section: Fabrication d'Emballage (Same Columns)
 */
.fabrication_demballage.same-columns .main-title-orange {
    color: var(--service-dynamic-color, #8e9db9);
}

.fabrication_demballage.same-columns .preparation-flex {
    flex-direction: row-reverse;
}

/**
 * Section: Mentions Légales
 */
.mentions-legales-section {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}

.mentions-block {
    margin-bottom: 40px;
}

.mentions-legales-section .mentions-title {
    color: var(--primary-color);
    font-size: 34px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    margin: unset;
    margin-bottom: 24px;
}

.mentions-legales-section .mentions-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
}

.mentions-legales-section .mentions-content p {
    margin-bottom: 20px;
}

.mentions-legales-section .mentions-content a {
    color: #F8BE16;
}

.mentions-legales-section .mentions-content ul {
    list-style: none;
    padding-left: 20px;
}

.mentions-legales-section .mentions-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.mentions-legales-section .mentions-content li::before {
    content: "•";
    color: #0f2e63;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/**
 * Section: Contact
 */
.contact-page-section {
    padding: 0px 0 100px;
    overflow: hidden;
}

.contact-page-section .contact-banner {
    height: 390px;
}

.contact-page-section .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-page-section .main-title {
    border-bottom: 1px solid #eee;
    padding: 40px 0;
    background-color: #f5f5f5;
    margin-bottom: 40px;
}

.contact-page-section .main-page-title {
    font-size: 40px;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    margin: unset;
}

.contact-infos-block {
    background: #f5f5f5;
    padding: 40px 0;
}

.contact-infos-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-left h3,
.contact-right h3 {
    font-size: 24px;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-left p,
.contact-left a,
.linkedin-link {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.contact-left a {
    margin: unset;
}

.contact-left i {
    font-size: 24px;
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    text-decoration: none;
}

.linkedin-link .icon {
    background: #3366f2;
    color: #fff;
    border-radius: 50%;
    line-height: 44px;
    height: 44px;
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkedin-link .icon .fa-linkedin:before {
    content: "\f0e1";
    font-family: "Font Awesome 6 Brands" !important;
}

/* Formulaire */
.contact-form-section h3 {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin: unset;
    margin-bottom: 24px;
}

.form-flex-container {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.form-image {
    width: 335px;
}

.form-image img {
    width: 100%;
    border-radius: 3px;
}

.form-content {
    flex: 1;
}

.cf7-custom-form .input-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.cf7-custom-form p {
    margin: 0 !important;
}

.cf7-custom-form br {
    display: none !important;
}

.cf7-custom-form .icon {
    margin-right: 20px;
    padding-bottom: 8px;
    color: #0f2e63;
    opacity: 0.4;
    font-size: 18px;
    min-width: 24px;
}

.input-group:focus-within .icon {
    opacity: 1;
}

.field-container {
    flex-grow: 1;
}

.floating-input {
    width: 100% !important;
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    background: transparent !important;
    padding: 10px 0 !important;
    font-size: 16px !important;
    font-family: "Poppins", sans-serif !important;
    color: #0f2e63 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.8s, box-shadow 0.4s;
}

.floating-input:focus {
    border-bottom: 2px solid #002e5b !important;
}

.floating-input::placeholder {
    color: #0f2e63 !important;
    opacity: 0.6 !important;
}

.floating-input:focus::placeholder {
    opacity: 1 !important;
}

.textarea-group {
    align-items: flex-start;
}

.textarea-group .icon {
    padding-top: 10px;
}

textarea.floating-input {
    height: 120px;
    resize: none;
}

.cf7-custom-form [type="submit"] {
    background-color: #f8be16;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    line-height: 20px;
    border-radius: 3px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    margin: unset;
}

.cf7-custom-form [type="submit"]:hover {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* GTranslate */

.gt_float_switcher {
    box-shadow: none !important;
    position: relative;
    overflow: visible !important;

    .gt-current-lang {
        padding: 0 !important;

        & > img {
            max-height: 16px;
            max-width: 16px;
        }

        .gt-lang-code {
            display: none;
        }

        span.gt_float_switcher-arrow {
            height: 16px !important;
            color: #0f2e63 !important;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' style='fill:%23173B7B'/></svg>") !important;
        }
    }

    .gt_options {
        position: absolute !important;
        left: -15px;
        background: white;

        &.gt-open {
            position: absolute;
        }

        .nturl {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 13px;
            line-height: 15px;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            transition: color 0.2s;
            display: flex;
            flex-wrap: nowrap;
            gap: 5px;

            &:hover {
                background: white !important;
                color: #5077c0 !important;
            }

            & > img {
                height: 16px !important;
                width: 16px !important;
                margin: 0 !important;
                overflow: hidden;
                display: block;
            }
        }
    }
}

/* Page 404 */
.page-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	
	h1 {
		color: var(--service-dynamic-color, #001a4d);
    	font-size: 28px;
    	font-family: "Poppins", sans-serif;
    	font-weight: 700;
	}
	
	p {
		font-size: 14px;
    	font-family: "Poppins", sans-serif;
    	line-height: 1.7;
    	color: #565555;
	}
}

/************************* Responsive ***************************/


@media screen and (max-width: 1100px) {
    .parent_container {
        width: unset;
    }

    /**
    * Section: About
    */
    .about-title {
        font-size: 35px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-col {
        font-size: 16px;
    }

    /**
     * Section: Counters
     */
    .number-container {
        font-size: 60px;
    }

    /**
     * Section: Engagements
     */
    .engagements-section .engagements-main-title {
        font-size: 35px;
    }

    .engagements-section .card-title {
        font-size: 24px;
    }

    /**
     * Section: Valeurs
     */
    .valeurs-section .valeurs-main-title {
        font-size: 35px;
    }

    /**
    * Section: Index Égalité
    */
    .index-egalite-section .main-title {
        font-size: 35px;
    }

    /**
     * Section: Mentions Légales
     */
    .mentions-legales-section .mentions-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

}

@media screen and (max-width: 1024px) {

    /**
    * Layout: Header
    */
    .header-bottom {
        position: relative;
    }

    .header-content.mob {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-right: 5px;
    }

    .header-content.mob .contact-item .fa-phone {
        font-size: 14px;
        opacity: 0.8;
    }

    .header-content.mob .contact-item .fa-linkedin {
        opacity: 0.8;
    }

    .header-content.mob .contact-item .fa-envelope {
        font-size: 17px;
        opacity: 0.8;
    }

    .header-content.mob .fa-linkedin:before {
        content: '\f0e1';
        font-family: "Font Awesome 6 Brands" !important;
        font-size: 17px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        margin-left: unset;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        transition: 0.3s;
    }

    .main-navigation {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.5s ease-in-out, opacity 0.3s ease;
    }

    .main-navigation.toggled {
        max-height: 90dvh;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        padding-top: 15px;
    }

    .site-header-custom.is-sticky .main-navigation {
        left: 0;
        width: 100%;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
        list-style: none;
    }

    .nav-menu li a {
        padding: 15px 20px;
        font-size: 13px;
        color: var(--primary-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        text-decoration: none;
    }

    .nav-menu li a:after {
        display: none !important;
    }

    .nav-menu li.current-menu-item {
        border-bottom: 3px solid var(--primary-color);
    }

    .site-header-custom.is-sticky {
        position: fixed;
        top: 0;
        width: 100%;
        background: #fff;
        z-index: 1000;
    }

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

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

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

    .menu-item-has-children {
        position: relative;
        display: block;
    }

    .menu-item-has-children > a {
        cursor: pointer;
    }


    .menu-item-has-children::after {
        content: "▼";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        pointer-events: none;
        font-size: 13px;
    }

    .menu-item-has-children > a:first-child::after {
        transform: rotate(180deg);
    }

    .sub-menu {
        display: none;
        list-style: none;
        padding: 0;
        background: #f9f9f9;
        margin: 0;
        width: 100%;
    }

    .menu-item-has-children.active-sub > .sub-menu {
        display: block;
        position: relative;
        top: unset;
        border: unset;
        padding: unset;
        visibility: visible;
        opacity: 1;
    }
}

@media screen and (max-width: 800px) {

    /**
     * Section: Cross-docking
     */
    .cross-docking-section .cross-docking-flex {
        flex-direction: column;
    }

    /**
     * Section: Values
     */
    .valeurs-section .valeurs-grid {
        gap: 40px;
    }

    .valeurs-section .valeur-title {
        font-size: 24px;
    }


    /**
     * Section: Réception & Stockage
     */
    .reception-stockage-section .reception-flex {
        flex-direction: column;
    }

    /*section-preparation-commandes same-columns*/
    .same-columns .preparation-flex {
        flex-direction: column;
    }

    /**
     * Section: Gestion des flux de retours
     */
    .gestion-retours-section .retours-flex {
        display: flex;
        gap: 40px;
        align-items: flex-start;
        flex-direction: column;
    }

    /**
     * Section: Logistique In Situ
     */
    .logistique-insitu-section .insitu-grid-content {
        grid-template-columns: repeat(auto-fit, 45%);
    }

    /**
     * Section: Logistique E-commerce
     */
    .logistique-ecommerce-section.same-columns .preparation-flex {
        flex-direction: column-reverse;
    }

    /**
     * Section: Conformité et Étiquetage
     */
    .tri_controle_qualite-section.same-columns .preparation-flex {
        flex-direction: column-reverse;
    }

    /**
     * Section: Fabrication & Déballage
     */
    .fabrication_demballage.same-columns .preparation-flex {
        flex-direction: column-reverse;
    }

    /**
     * Section: Contact
     */
    .contact-left p,
    .linkedin-link {
        margin-bottom: unset;
        font-size: 16px;
    }

    .form-flex-container {
        gap: 30px;
    }
}

@media screen and (max-width: 600px) {

    .about-header img,
    .engagements-header img,
    .valeurs-header img,
    .section-header img,
    .section-header-left img,
    .section-header-center img,
    .section-header-right img {
        width: 90px !important;
        height: 25px !important;
        max-width: unset !important;
        flex-shrink: 0;
    }

    /**
     * Layout: Header
     */
    .header-top {
        display: none;
    }

    .header-bottom .header-logo img {
        width: 120px;
    }

    .header-bottom .header-logo {
        display: block !important;
    }

    /**
    * Section: hero banner
    */
    .hero-banner {
        height: 250px;
        min-height: unset;
    }

    /**
     * Section: About
     */
    .about-section {
        padding: 40px 0px 50px;
    }

    .about-title {
        font-size: 23px;
        line-height: 30px;
    }

    .about-divider {
        width: 100%;
    }

    .about-grid {
        display: unset;
    }

    /**
     * Section: Counters
     */
    .counters-section {
        padding: 0px 0 60px;
    }

    .counters-section .about-divider {
        width: 100%;
    }

    .counters-grid {
        margin-top: unset;
        text-align: center;
        justify-content: space-around;
        flex-direction: column;
    }

    /**
    * Section: Engagement
    */
    .engagements-section .engagements-main-title {
        font-size: 25px;
    }

    .engagements-section .engagements-grid {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    /**
     * Section: Nos Valeurs
     */
    .valeurs-section .valeurs-main-title {
        font-size: 25px;
    }

    .valeurs-section .valeurs-divider {
        width: 100%;
    }

    .valeurs-section .valeurs-grid {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    /**
     * Section: Index Égalité
     */
    .index-egalite-section {
        padding: 30px 0 30px;
    }

    .index-egalite-section .main-title {
        font-size: 25px;
        line-height: 30px;
    }

    .index-egalite-section .valeurs-divider {
        width: 100%;
    }

    .index-egalite-section .index-flex-container {
        gap: 40px;
        flex-direction: column;
    }

    .index-egalite-section .index-right-col {
        gap: 20px;
    }

    .index-egalite-section .score-image-full {
        margin: 0 auto;
    }

    /**
     * Section: Same Banner
     */
    .same-banner .services-main-title {
        font-size: 35px;
        margin-bottom: 50px;
    }

    .same-banner .services-cards-grid {
        gap: 25px;
    }

    /**
     * Section: Cross-docking
     */
    .cross-docking-section .main-title-blue {
        font-size: 23px;
    }

    .cross-docking-section .cross-docking-flex {
        gap: 30px;
    }

    .reception-stockage-section .main-title-blue {
        font-size: 23px;
    }

    /**
     * Section: Same Columns
     */
    .same-columns .main-title-orange {
        font-size: 24px;
    }

    .same-columns .intro-flex {
        gap: 30px;
        flex-direction: column;
    }

    /**
     * Section: Gestion des Flux & Retours
     */
    .gestion-retours-section .intro-text {
        margin-bottom: unset;
    }

    .gestion-retours-section .intro-flex {
        flex-direction: column;
        gap: 20px;
    }

    .gestion-retours-section .retours-flex {
        gap: 20px;
    }

    /**
     * Section: Logistique In Situ
     */
    .logistique-insitu-section .main-title-blue {
        font-size: 23px;
    }

    .logistique-insitu-section .insitu-intro {
        line-height: 1.6;
    }

    .logistique-insitu-section .insitu-col h3 {
        font-size: 22px;
        margin: unset;
        margin-bottom: 5px;
    }

    .logistique-insitu-section .insitu-grid-content {
        grid-template-columns: repeat(auto-fit, 100%);
        gap: 30px;
    }

    /**
     * Section: Mentions Légales
     */
    .mentions-legales-section .mentions-title {
        font-size: 24px;
    }

    .mentions-legales-section .mentions-content {
        font-size: 13px;
        line-height: 1.5;
    }

    /**
     * Layout: Footer
     */
    .site-footer .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .site-footer .footer-contact {
        padding-left: 15px;
    }

    .same-columns .preparation-image {
        flex: 1;
        width: 100%;
        max-height: unset;
    }

    .reception-stockage-section .reception-image {
        flex: 1;
        width: 100%;
        max-height: unset;
    }

    .reception-stockage-section .reception-image img {
        max-width: 100%;
        height: auto !important;
        object-fit: cover;
    }

    /**
     * Section: Contact
     */
    .contact-page-section {
        padding: 0px 0 50px;
    }

    .contact-page-section .contact-banner {
        height: unset;
    }

    .contact-page-section .main-page-title {
        font-size: 25px;
    }

    .contact-page-section .main-title {
        padding: 25px 0;
    }

    .contact-top-grid,
    .form-flex-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .form-image {
        width: 100%;
    }

    .contact-infos-flex {
        gap: 40px;
        flex-direction: column;
    }

}
