/* ============================================
   FONT FACES
   ============================================ */
@font-face {
    font-family: 'Amelia Basic Black';
    src: url('/assets/fonts/Amelia-Basic-Black.eot');
    src: url('/assets/fonts/Amelia-Basic-Black.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/Amelia-Basic-Black.woff2') format('woff2'),
        url('/assets/fonts/Amelia-Basic-Black.woff') format('woff'),
        url('/assets/fonts/Amelia-Basic-Black.ttf') format('truetype'),
        url('/assets/fonts/Amelia-Basic-Black.svg#Amelia-Basic-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Amelia Basic Bold';
    src: url('/assets/fonts/Amelia-Basic-Bold.eot');
    src: url('/assets/fonts/Amelia-Basic-Bold.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/Amelia-Basic-Bold.woff2') format('woff2'),
        url('/assets/fonts/Amelia-Basic-Bold.woff') format('woff'),
        url('/assets/fonts/Amelia-Basic-Bold.ttf') format('truetype'),
        url('/assets/fonts/Amelia-Basic-Bold.svg#Amelia-Basic-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
}

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

@media (min-width: 1400px) {
    .container {
        padding: 0;
    }
}

/* ============================================
   NAVIGATION MENU
   ============================================ */
.menu {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.25);
    transition: background-color 0.3s ease;
}

.menu.scrolled .menu-background {
    background-color: #FFFFFF;
}

.menu-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
}

.menu-logo {
    position: absolute;
    left: 0;
    height: 60px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
    z-index: 100000;
}

.menu-logo img {
    height: 35px;
    width: auto;
    display: block;
}

.menu.scrolled .menu-logo {
    opacity: 1;
    visibility: visible;
}

.menu.drawer-open .menu-logo {
    opacity: 1;
    visibility: visible;
}

.menu-links {
    display: flex;
    align-items: center;
    gap: 60px;
}

.menu-link {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 13px;
    transition: opacity 0.3s ease;
    transition: .2s;
}

.menu-link:hover {
    color: white;
}

.scrolled .menu-link:hover {
    color: #4eb0c4;
}

/* Burger Menu Button */
.menu-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100000;
    position: relative;
}

.menu-burger span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    position: absolute;
    left: 0;
}

.menu-burger span:nth-child(1) {
    top: 6px;
}

.menu-burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-burger span:nth-child(3) {
    bottom: 6px;
}

.menu-burger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.menu-burger.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Menu Drawer */
.menu-drawer {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 60px);
    background-color: #FFFFFF;
    z-index: 99998;
    transition: right 0.3s ease;
    /* box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); */
    overflow-y: auto;
}

.menu-drawer.open {
    right: 0;
    width: 100%;
}

.menu-drawer-content {
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 30px;
}

.menu-drawer-link {
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.menu-drawer-link:hover {
    color: #5AC0CC;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(255 255 255 / 100%);
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    height: 740px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #4EB0C4;
}

.hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-logo-small {
    position: absolute;
    left: 0;
    top: 159px;
    width: 481px;
    height: 143px;
    z-index: 3;
}

.hero-logo-small img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text-container {
    position: absolute;
    top: 360px;
    z-index: 3;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
}

.hero-subtitle-wrapper {
    position: relative;
}

.hero-subtitle-bg {
    background-color: #FDB912;
    display: block;
    height: 55px;
    padding: 0 10px;
    line-height: 60px;
    width: fit-content;
    margin-top: 10px;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    position: relative;
    text-transform: uppercase;
    text-align: left;
}

.hero-subtitle > span:first-child {
    margin-top: 0 !important;
}

.hero-map {
    position: absolute;
    left: 390px;
    top: 140px;
    width: 480px;
    height: 497px;
    z-index: 2;
}

.hero-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-products-image {
    position: absolute;
    left: 630px;
    top: 205px;
    width: 760px;
    height: 554px;
    background-image: url('/assets/images/produits.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.hero-logo-large {
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 157.62px;
    height: 201.39px;
    opacity: 0.8;
    z-index: 1;
}

.hero-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-decorative-circles {
    position: absolute;
    right: -140px;
    top: -10px;
    width: 1032px;
    z-index: 3;
    opacity: .8;
}

.hero-decorative-circles img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-decorative-circles-2 {
    position: absolute;
    left: 0;
    bottom: 110px;
    top: auto;
    right: -140px;
    width: 1032px;
    z-index: 3;
    opacity: .8;
}

.hero-decorative-circles-2 img {
    width: 240px;
}

/* ============================================
   QUI SOMMES NOUS SECTION
   ============================================ */
.qui-sommes-nous {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0 70px 0;
}

.qui-sommes-nous-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/qui-somme-nous-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.qui-sommes-nous-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.qui-sommes-nous-title {
    font-family: 'Amelia Basic Black', sans-serif;
    font-size: 60px;
    color: #000000;
    text-align: center;
    margin: 0;
    padding-top: 80px;
    padding-bottom: 60px;
}

.qui-sommes-nous-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 auto;
}

.qui-sommes-nous-left {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.qui-sommes-nous-text-large {
    font-family: 'Amelia Basic Bold', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    color: #5AC0CC;
    margin-bottom: 0;
    text-align: left;
}

.qui-sommes-nous-text-large p {
    margin: 0;
    padding: 0;
}

.qui-sommes-nous-underline {
    width: 85px;
    height: 5px;
    background-color: #FDB912;
    margin-top: 30px;
    margin-bottom: 30px;
}

.qui-sommes-nous-map {
    width: 291px;
    height: 285px;
    margin-top: 0;
}

.qui-sommes-nous-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qui-sommes-nous-description {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.3;
    color: #000000;
    margin: 0;
    margin-bottom: 20px;
}

.qui-sommes-nous-description strong {
    font-weight: bold;
}

/* ============================================
   NOS MARQUES SECTION
   ============================================ */
.nos-marques {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 120px 0;
}

.nos-marques-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/nos-marques-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.nos-marques-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nos-marques-title {
    font-family: 'Amelia Basic Black', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding-top: 0;
    padding-bottom: 60px;
    position: relative;
    bottom: 10px;
    line-height: 1;
}

.nos-marques-logos {
    width: 100%;
    max-width: 1344px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 0 20px;
}

.nos-marques-logo-item {
    width: 100%;
    max-width: 200px;
    /* height: 120px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    /* cursor: pointer; */
}

.nos-marques-logo-item:hover {
    /* transform: scale(1.15); */
    /* background-color: rgba(255, 255, 255, 0.2); */
}

.nos-marques-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nos-marques-logo-item:hover img {
    /* transform: scale(1.1); */
}

/* ============================================
   NOS VALEURS SECTION
   ============================================ */
.nos-valeurs {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 100px 20px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.nos-valeurs > .hero-decorative-circles {
    opacity: .1;
    width: 798px;
    right: -50px;
    top: 0;
}

.nos-valeurs-content {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.nos-valeurs-title {
    font-family: 'Amelia Basic Black';
    font-size: 60px;
    color: #000000;
    text-align: center;
    margin: 0;
    margin-bottom: 55px;
}

.nos-valeurs-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 990px;
    margin: 0 auto;
}

.nos-valeurs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.nos-valeurs-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 24px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.qualite-circle {
    background-color: #AFCC08;
}

.engagement-circle {
    background-color: #E72F7D;
}

.confiance-circle {
    background-color: #FDB912;
}

.nos-valeurs-icon {
    width: 89px;
    object-fit: contain;
}

[alt="Icône Confiance"] {
    width: 125px;
}

[alt="Icône Engagement"] {
    width: 103px;
}

.nos-valeurs-label {
    font-family: 'Inter';
    font-size: 35px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.qualite-label {
    color: #AFCC08;
}

.engagement-label {
    color: #E72F7D;
}

.confiance-label {
    color: #FDB912;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    width: 100%;
    margin: 0 auto;
    background-color: #E8E8E8;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.newsletter-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-left {
    flex: 0 0 auto;
}

.newsletter-title {
    font-family: 'Amelia Basic Black';
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.newsletter-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.newsletter-subtitle {
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #000000;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 515px;
}

.newsletter-input {
    flex: 1;
    height: 50px;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    background-color: #FFFFFF;
    font-family: 'Inter';
    font-size: 18px;
    color: #000000;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.newsletter-button {
    width: 161px;
    height: 50px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    background-color: #FDB912;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    outline: none;
}

.newsletter-button:hover {
    background-color: #FFFFFF;
    color: #FDB912;
    border-color: #FDB912;
    transform: translateY(-2px);
}

.newsletter-button:active {
    transform: translateY(0);
}

.newsletter-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0 0;
    overflow: hidden;
}

.footer-content {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    z-index: 2;
    padding-bottom: 60px;
}

.footer-title {
    font-family: 'Amelia Basic Black';
    font-size: 45px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-top: 2px;
    background: #5ac0cc;
    padding: 6px;
    border-radius: 80px;
}

.footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    bottom: 2px;
}

.footer-contact-item p {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-form-row:last-of-type {
    grid-template-columns: 1fr;
}

.footer-input,
.footer-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #5AC0CC;
    background-color: #FFFFFF;
    font-family: 'Inter';
    font-size: 15px;
    color: #000000;
    outline: none;
    box-sizing: border-box;
}

.footer-input::placeholder,
.footer-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    text-transform: uppercase;
}

.footer-textarea {
    min-height: 175px;
    resize: vertical;
    font-family: 'Montserrat', sans-serif;
}

.footer-submit {
    width: 220px;
    height: 55px;
    border: 1px solid #5AC0CC;
    border-radius: 10px;
    background-color: #5AC0CC;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    outline: none;
    margin-top: 10px;
    margin: 0 auto;
}

.footer-submit:hover {
    background-color: #FFFFFF;
    color: #5AC0CC;
    border-color: #5AC0CC;
    transform: translateY(-2px);
}

.footer-submit:active {
    transform: translateY(0);
}

.footer-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.footer-decorative {
    position: absolute;
    left: 203px;
    top: 259px;
    width: 791px;
    height: 472px;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.footer-decorative img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-copyright {
    width: 100%;
    background-color: #5AC0CC;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: relative;
    z-index: 22222;
}

.footer-copyright > .container {
    text-align: left;
    width: 1344px;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
    padding: 10px 0;
}

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

/* Menu Responsive */
@media (max-width: 1024px) {
    .menu-links {
        gap: 40px;
    }

    .menu-link {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .menu-background {
        height: 50px;
    }

    .menu-container {
        height: 50px;
    }

    .menu-logo {
        left: 20px;
        height: 50px;
    }

    .menu-logo img {
        height: 35px;
    }

.drawer-open .menu-logo img {
    height: 50px;
    position: relative;
    top: 15px;
}

    .menu.drawer-open .menu-logo {
        opacity: 1;
        visibility: visible;
        z-index: 100000;
    }

    .menu-burger {
        display: flex;
    }

.menu-burger.active {
    position: relative;
    top: 10px;
}

    .menu-links {
        display: none;
    }

    .menu-drawer {
        top: 50px;
        height: calc(100vh - 50px);
        width: 100%;
    }
}

@media (max-width: 480px) {
    .menu-background {
        height: 55px;
    }

    .menu-container {
        height: 55px;
    }

    .menu-logo {
        height: 55px;
    }

    .menu-drawer {
        width: 100%;
        top: 55px;
        height: calc(100vh - 55px);
    }
}

/* Hero Responsive */
@media (max-width: 1920px) {
    .hero {
        min-height: 800px;
    }

    .hero-background {
        width: 100%;
    }
}

@media (max-width: 1400px) {
    .hero-logo-small {
        width: 400px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 50px;
    }
}

@media (max-width: 1200px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 80px 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        gap: 30px;
    }

    .hero-logo-small {
        position: relative;
        left: auto;
        top: auto;
        width: 300px;
        margin-bottom: 0;
        height: auto;
        margin-top: 20px;
    }

    .hero-text-container {
        position: relative;
        left: auto;
        top: auto;
        /* padding: 0 20px; */
        text-align: center;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 40px;
    }

    .hero-map {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 200px;
        height: auto;
        max-height: 300px;
        margin: 0 auto;
    }

    .hero-products-image {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 90%;
        max-width: 600px;
        height: auto;
        min-height: 300px;
        margin: 0 auto;
    }

    .hero-logo-large {
        position: absolute;
        bottom: 20px;
        width: 100px;
        height: auto;
    }

    .hero-decorative-circles {
        right: -200px;
        width: 600px;
        opacity: 0.5;
    }

    .hero-decorative-circles-2 {
        left: -200px;
        width: 400px;
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
        height: 640px;
    }

    .hero-content {
        gap: 25px;
        padding: 0 25px;
    }

    .hero-logo-small {
        width: 300px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 40px;
    }

    .hero-subtitle-bg {
        height: 32px;
        line-height: 35px;
        padding: 0 8px;
        /* margin-top: 10px; */
    }

    .hero-map {
        width: 206px;
        max-height: 230px;
        top: -50px;
    }

    .hero-products-image {
        /* width: 85%; */
        /* max-width: 500px; */
        min-height: 220px;
        right: 10px;
        bottom: 50px;
        background-position: 0 10px;
    }

    .hero-logo-large {
        /* width: 80px; */
        bottom: 165px;
    }

    .hero-decorative-circles {
        right: 0;
        top: -30px;
        width: 400px;
        opacity: 0.4;
    }

    .hero-decorative-circles-2 {
        left: -250px;
        width: 300px;
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 40px 0;
        height: 600px;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-logo-small {
        width: 270px;
        margin-top: 40px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 24px;
    }

    .hero-subtitle-bg {
        height: 35px;
        line-height: 40px;
        padding: 0 6px;
    }

    .hero-map {
        width: 110px;
        max-height: 200px;
    }

    .hero-products-image {
        /* width: 80%; */
        max-width: 400px;
        min-height: 200px;
    }

    .hero-logo-large {
    bottom: 210px;
    }

    .hero-decorative-circles {
        right: 0;
        width: 400px;
        opacity: 0.3;
    }

    .hero-decorative-circles-2 {
        left: -300px;
        width: 250px;
        opacity: 0.3;
    }
}

/* Qui sommes nous Responsive */
@media (max-width: 1400px) {
    .qui-sommes-nous-left {
        padding-left: 50px;
    }

    .qui-sommes-nous-right {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 1200px) {
    .qui-sommes-nous-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .qui-sommes-nous-left {
        display: flex;
        padding-left: 0;
        align-items: center;
        text-align: center;
        /* flex-direction: column; */
        justify-content: center;
    }

    .qui-sommes-nous-right {
        padding-left: 0;
        padding-right: 0;
    }

    .qui-sommes-nous-text-large {
        font-size: 36px;
    }

    .qui-sommes-nous-description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .qui-sommes-nous {
        padding-bottom: 40px;
    }

    .qui-sommes-nous-title {
        font-size: 32px;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .qui-sommes-nous-text-large {
        font-size: 28px;
    }

    .qui-sommes-nous-map {
        width: 200px;
        height: auto;
        margin-top: 20px;
    }

    .qui-sommes-nous-description {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .qui-sommes-nous-title {
        font-size: 24px;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .qui-sommes-nous-text-large {
        font-size: 22px;
    }

    .qui-sommes-nous-map {
        width: 150px;
    }

    .qui-sommes-nous-description {
        font-size: 16px;
    }
}

/* Nos marques Responsive */
@media (max-width: 1400px) {
    .nos-marques-logos {
        display: flex;
    }

    .nos-marques-logo-item {
        max-width: 180px;
        /* height: 100px; */
    }

    .hero-text-container-wrapper {
        display: flex;
        flex-direction: row;
    }

.hero-text-container-wrapper {
}
}

@media (max-width: 1024px) {
    .nos-marques {
        padding: 80px 0;
    }

    .nos-marques-title {
        font-size: 48px;
    }

    .nos-marques-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 25px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .nos-marques-logo-item {
        max-width: 150px;
        /* height: 90px; */
        /* padding: 15px; */
    }
}

@media (max-width: 768px) {
    .nos-marques {
        padding: 60px 0 40px;
    }

    .nos-marques-title {
        font-size: 32px;
        padding-top: 0;
        padding-bottom: 40px;
    }

    .nos-marques-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
        display: flex;
        flex-direction: column;
    }

    .nos-marques-logo-item {
        /* max-width: 100%; */
        /* height: 80px; */
        /* padding: 10px; */
    }

    .nos-marques-logo-item:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .nos-marques {
        padding: 40px 0 30px;
    }

    .nos-marques-title {
        font-size: 24px;
        padding-bottom: 30px;
    }

    .nos-marques-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .nos-marques-logo-item {
        /* height: 70px; */
        /* padding: 8px; */
    }

    .nos-marques-logo-item:hover {
        transform: scale(1.08);
    }
}

/* Nos valeurs Responsive */
@media (max-width: 1200px) {
    .nos-valeurs {
        padding: 60px 20px 80px;
    }

    .nos-valeurs-grid {
        gap: 40px;
    }

    .nos-valeurs-circle {
        width: 200px;
        height: 200px;
        border-width: 20px;
    }
}

@media (max-width: 1024px) {
    .nos-valeurs-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nos-valeurs {
        padding: 60px 20px;
    }

    .nos-valeurs-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .nos-valeurs-grid {
        flex-direction: column;
        gap: 50px;
    }

    .nos-valeurs-circle {
        width: 180px;
        height: 180px;
        border-width: 18px;
    }

    .nos-valeurs-label {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .nos-valeurs {
        padding: 40px 20px;
    }

    .nos-valeurs-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .nos-valeurs-circle {
        width: 150px;
        height: 150px;
        border-width: 15px;
    }

    .nos-valeurs-label {
        font-size: 18px;
    }

    .nos-valeurs-icon {
        width: 60px;
    }

    [alt="Icône Confiance"] {
        width: 80px;
    }

    [alt="Icône Engagement"] {
        width: 70px;
    }
}

/* Newsletter Responsive */
@media (max-width: 1200px) {
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 0 20px;
    }

    .newsletter-title {
        font-size: 32px;
    }

    .newsletter-right {
        width: 100%;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .newsletter-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .newsletter {
        padding: 40px 20px;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-subtitle {
        font-size: 15px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
        min-width: 100%;
    }

    .newsletter-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter {
        padding: 30px 15px;
    }

    .newsletter-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .newsletter-subtitle {
        font-size: 14px;
    }

    .newsletter-input {
        font-size: 16px;
        width: 100%;
        min-width: 100%;
        padding: 10px 15px;
    }
}

/* Footer Responsive */
@media (max-width: 1400px) {
    .footer-right {
        padding-right: 50px;
    }

    .footer-copyright {
        padding: 0 50px;
    }
}

@media (max-width: 1200px) {
    .footer {
        padding: 80px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-left {
        padding-left: 0;
    }

    .footer-right {
        padding-right: 0;
    }

    .footer-decorative {
        display: none;
    }

    .footer-icon {
        width: 28px;
        height: 28px;
        padding: 5px;
    }

    .footer-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .footer-contact-item {
        gap: 10px;
    }

    .footer-icon {
        width: 24px;
        height: 24px;
        padding: 5px;
    }

    .footer-contact-item p {
        font-size: 14px;
    }

    .footer-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-submit {
        width: 100%;
    }

    .footer-copyright {
        padding: 0 20px;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .footer-copyright > .container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-icon {
        width: 20px;
        height: 20px;
        padding: 4px 0px 3px 0;
    }

    .footer-contact-item p {
        font-size: 12px;
    }

    .footer-input,
    .footer-textarea {
        font-size: 14px;
        padding: 12px 15px;
    }

    .footer-submit {
        height: 50px;
        font-size: 16px;
    }
}

/* Ensure smooth transitions for AOS elements */
[data-aos] {
    transition-timing-function: ease-in-out;
}

/* Custom animations for specific elements */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(300px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-down"] {
    opacity: 0;
    transform: translateY(-300px);
}

[data-aos="fade-down"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-300px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(300px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.7);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

.hero-text-container-wrapper > div {
    width: 50%;
}
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


@media (max-width:520px){
    .hero-title, .hero-subtitle{
        font-size: 35px;
    }
    .hero-map{
        top: -66px;
    }
}

@media (max-width:480px){
    .hero-map{
        top: -32px;
        max-height: 204px;
    }
    .hero-products-image{
        bottom: 20px;
    }
}


@media (max-width:462px){
    .hero-title, .hero-subtitle{
        font-size: 32px;
    }
    .hero-map{
        top: -32px;
        max-height: 195px;
    }
}


@media (max-width:428px){
    .hero-title, .hero-subtitle{
        font-size: 30px;
    }
    .hero-map{
        top: -32px;
        max-height: 188px;
    }
    .hero{
        height: 570px;
    }
    .hero-logo-large{
        bottom: 160px;
    }
}

@media (max-width:406px){
    .hero-title, .hero-subtitle{
        font-size: 28px;
    }
    .hero-map{
        top: -32px;
        max-height: 178px;
    }
    .hero{
        height: 540px;
    }
    .hero-logo-large{
        bottom: 140px;
    }
    .hero-map{
        top: -27px;
    }
}

@media (max-width:390px){
    .hero-title, .hero-subtitle{
        font-size: 26px;
    }
    .hero-map{
        top: -27px;
    }
    .hero{
        height: 540px;
    }
    .hero-logo-large{
        bottom: 140px;
    }
}


@media (max-width:375px){
    .hero-title, .hero-subtitle{
        font-size: 24px;
    }
    .hero-map{
        top: -27px;
        max-height: 168px;
    }
    .hero{
        height: 510px;
    }
    .hero-logo-large{
        bottom: 120px;
    }
}

@media (max-width:360px){
    .hero-title, .hero-subtitle{
        font-size: 22px;
    }
    .hero-map{
        top: -27px;
        max-height: 168px;
    }
    .hero{
        height: 510px;
    }
    .hero-logo-large{
        bottom: 120px;
    }
    .hero-subtitle-bg{
        height: 29px;
        line-height: 34px;
        padding: 0 4px;
    }
}


@media (max-width:320px){
    .hero-title, .hero-subtitle{
        font-size: 20px;
    }
    .hero-map{
        top: -27px;
        max-height: 168px;
    }
    .hero{
        height: 480px;
    }
    .hero-logo-large{
        bottom: 100px;
    }
    .hero-subtitle-bg{
        height: 28px;
        line-height: 33px;
        padding: 0 3px;
    }
}
