* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #2c2c2c;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
    overflow: hidden;
    background: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00000040 !important;
    height: 100%;
    padding: 0 40px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background: #ffffff !important;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand-logo-link:hover {
    opacity: 0.7;
}

.brand-logo {
    max-width: 280px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 24px !important;
}


.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    padding: 0 15px;
    transition: color 0.3s ease, opacity 0.3s;
    position: relative;
}

button.nav-link {
    background: none;
    border: none;
    cursor: pointer;
}

.devis-btn {
    padding: 10px 25px;
    border: 1px solid #282b4c;
    background: #282b4c;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.devis-btn:hover {
    background: #ffffff;
    color: #000000;
    border: none !important;
}

.navbar.scrolled .devis-btn {
    border-color: #282b4c;
    background: #282b4c;
    color: #ffffff;
}

.navbar.scrolled .devis-btn:hover {
    background: #ffffff;
    color: #000000;
    border: none;
}

.navbar.scrolled .nav-link {
    color: #2c2c2c;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    display: inline-block;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.navbar.scrolled .nav-separator {
    background: #666;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar.scrolled .hamburger-menu span {
    background-color: #2c2c2c;
}

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

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Backdrop */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 40px 50px;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

.menu-overlay.active {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 32px;
    color: #282b4c;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 2001;
}

.menu-close:hover {
    opacity: 0.7;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.menu-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #282b4c;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s, color 0.3s;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(40, 43, 76, 0.1);
}

button.menu-link {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.menu-link:hover {
    opacity: 0.7;
    color: #282b4c;
}

.menu-link-whatsapp {
    color: #25D366;
    border-bottom: none;
    margin-top: 20px;
}

.menu-link-whatsapp:hover {
    color: #128C7E;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #282b4c;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.menu-logo {
    width: auto;
    height: auto;
    max-width:270px;
    object-fit: contain;
    display: block;
    margin-bottom: 0;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-list li {
    margin: 0;
}

.menu-list a {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: #282b4c;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    display: block;
}

.menu-list a:hover {
    opacity: 0.7;
}

.menu-list-serif {
    font-family: 'Montserrat', sans-serif;
}

.menu-list-serif a {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.menu-divider {
    width: 100%;
    height: 1px;
    background: rgba(40, 43, 76, 0.2);
    margin: 10px 0;
}

.menu-connect {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #282b4c;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.menu-email {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #282b4c;
    letter-spacing: 0.5px;
    margin: 20px 0 0 0;
}

/* Overlay backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

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

/* Hero Section */
.hero {
    margin-top: 0;
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    color: #282b4c;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 30px;
}

.slider-btn-next {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Content Section */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
}

.manifesto {
    background: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto h2 {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    border: 1px solid #2c2c2c;
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.tag:hover {
    background: #2c2c2c;
    color: #f5f0e8;
}

.tag a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.partners {
    background: #282b4c;
    color: #ffffff !important;
    padding: 80px 60px;
}

.partners h3 {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Color Grid - Style Instagram */
.color-grid-section {
    padding: 60px 20px;
    background: #ffffff;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
    letter-spacing: 2px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
    justify-items: center;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

#colorGrid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.color-tile {
    aspect-ratio: 4/5;
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
    margin: 0 auto;
}

.color-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

/* Overlay avec icônes au hover */
.color-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.color-tile:hover::before {
    opacity: 1;
}

/* .color-tile:hover img {
    transform: scale(1.05);
} */

/* Icônes like et commentaire */
.instagram-icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 30px;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.color-tile:hover .instagram-icons {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.instagram-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.instagram-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    color: #ffffff;
}

.instagram-icon.like svg {
    fill: none;
    stroke: #ffffff;
}

.instagram-icon.comment svg {
    fill: none;
    stroke: #ffffff;
}

.see-more {
    text-align: center;
    margin-top: 40px;
    display: none; /* Cacher le bouton car on a seulement 3 images */
    justify-content: center;
    align-items: center;
}

.see-more button {
    border: 1px solid #2c2c2c;
    background: transparent;
    padding: 12px 40px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: inline-block;
    margin: 0 auto;
}

.see-more button:hover {
    background: #2c2c2c;
    color: #f5f0e8;
}

/* Color Grid Slider pour mobile */
.color-grid-slider {
    display: none;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.color-slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.color-slider-slide {
    min-width: 100%;
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
}

.color-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Navigation buttons pour le slider */
.color-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #282b4c;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.color-slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.color-slider-prev {
    left: 15px;
}

.color-slider-next {
    right: 15px;
}

/* Slider indicators */
.color-slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.color-slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-slider-indicator.active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Contact Drawer */
.contact-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.contact-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.contact-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: #ffffff;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 40px 50px;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

.contact-drawer.active {
    transform: translateX(0);
}

.contact-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 32px;
    color: #282b4c;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 3001;
}

.contact-close:hover {
    opacity: 0.7;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #282b4c;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #282b4c;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 12px 15px;
    border: 1px solid rgba(40, 43, 76, 0.2);
    background: #ffffff;
    color: #282b4c;
    border-radius: 0;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #282b4c;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Open Sans', sans-serif;
}

.submit-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 40px;
    background: #282b4c;
    color: #ffffff;
    border: 1px solid #282b4c;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #ffffff;
    color: #282b4c;
}

/* Footer */
footer {
    background: #282b4c;
    color: #ffffff;
    padding: 30px 40px 15px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.footer-column {
    padding: 0 30px;
    position: relative;
    box-sizing: border-box;
}

.footer-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: -15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-column:first-child {
    padding-left: 0;
}

.footer-column:last-child {
    padding-right: 0;
}

.footer-column h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-column li:hover {
    opacity: 0.7;
}

.footer-column li a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.arrow-icon {
    display: inline-block;
    margin-left: 5px;
    font-size: 10px;
}

.footer-logo {
    text-align: left;
    margin-top: 15px;
    padding-top: 15px;
    width: 100%;
    box-sizing: border-box;
}

.footer-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-logo h1 {
    font-size: 80px;
    letter-spacing: 10px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    line-height: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tablettes moyennes */
@media (max-width: 900px) and (min-width: 769px) {
    footer {
        padding: 45px 25px 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .footer-column {
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-column li {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .footer-logo img {
        max-width: 160px;
    }
}

/* Tablettes */
@media (max-width: 1024px) and (min-width: 769px) {
    header {
        height: 90px;
    }

    .menu-overlay {
        width: 450px;
        padding: 35px 40px;
    }

    .menu-title {
        font-size: 26px;
    }

    .menu-logo {
        height: 150px;
        max-width: 450px;
    }

    .logo {
        max-width: 300px;
        height: auto;
    }

    .hero {
        height: 60vh;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .slider-btn-prev {
        left: 20px;
    }

    .slider-btn-next {
        right: 20px;
    }

    .slider-indicators {
        bottom: 25px;
    }

    .manifesto,
    .partners {
        padding: 60px 40px;
    }

    .manifesto h2 {
        font-size: 16px;
    }

    .partners h3 {
        font-size: 16px;
    }

    .service-description {
        padding: 3.75rem 2.5rem;
    }

    .service-description .main-text {
        font-size: 1.5rem;
    }

    .service-description .sub-text {
        font-size: 1rem;
    }

    .color-grid-section {
        padding: 50px 0;
    }

    .color-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        justify-items: center;
    }

    footer {
        padding: 50px 30px 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-column {
        padding: 0 20px;
        margin-bottom: 30px;
        box-sizing: border-box;
    }

    .footer-column:nth-child(2n)::after {
        display: none;
    }

    .footer-column:nth-child(2) {
        border-right: none;
    }

    .footer-column:nth-child(2)::after {
        display: none;
    }

    .footer-column:nth-child(1)::after,
    .footer-column:nth-child(3)::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: -15px;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
        display: block;
    }

    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .footer-column li {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-logo h1 {
        font-size: 80px;
        letter-spacing: 12px;
    }

    .footer-logo img {
        max-width: 180px;
        width: 100%;
    }
}

/* Contact Drawer Responsive */
@media (max-width: 768px) {
    .contact-drawer {
        width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }

    .contact-close {
        top: 20px;
        right: 20px;
        font-size: 28px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Mobiles */
@media (max-width: 768px) {
    header {
        height: 70px;
    }

    .navbar {
        padding: 0 15px;
        position: relative;
    }

    /* Cacher les liens de navigation sur mobile */
    .nav-left,
    .nav-right {
        display: none;
    }

    /* Afficher le bouton hamburger */
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Ajuster le logo au centre */
    .nav-brand {
        flex: 1;
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .brand-logo {
        max-width: 180px;
        height: auto;
        object-fit: contain;
        display: block;
    }

    /* Menu overlay responsive */
    .menu-overlay {
        width: 100%;
        max-width: 100%;
        padding: 40px 30px;
    }

    .menu-content {
        gap: 20px;
        margin-top: 40px;
    }

    .menu-link {
        font-size: 20px;
        padding: 15px 0;
    }

    .menu-backdrop {
        display: block;
    }

    .hero {
        margin-top: 0;
        height: 50vh;
        min-height: 300px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .slider-btn-prev {
        left: 15px;
    }

    .slider-btn-next {
        right: 15px;
    }

    .slider-indicators {
        display: none;
    }

    .slider-indicator {
        width: 10px;
        height: 10px;
    }

    .content-section {
        grid-template-columns: 1fr;
    }

    .manifesto,
    .partners {
        padding: 40px 25px;
    }

    .manifesto h2 {
        font-size: 14px;
        letter-spacing: 2px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .service-description {
        padding: 3.125rem 1.5625rem;
    }

    .service-description .main-text {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.9375rem;
        max-width: 100%;
    }

    .service-description .sub-text {
        font-size: 0.875rem;
    }

    .tags {
        gap: 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tag {
        padding: 10px 15px;
        font-size: 11px;
        letter-spacing: 1.5px;
        width: 100%;
        text-align: center;
    }

    .partners {
        padding: 70px 40px;
    }

    .partners h3 {
        font-size: 18px;
        letter-spacing: 2.5px;
        margin-bottom: 35px;
        font-weight: 400;
    }

    .partner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px 25px;
        font-size: 14px;
        letter-spacing: 0.8px;
        line-height: 1.5;
    }

    .color-grid-section {
        padding: 40px 0;
    }

    .grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 11px;
        margin-bottom: 25px;
    }

    /* Cacher la grille sur mobile */
    .color-grid {
        display: none;
    }

    /* Afficher le slider sur mobile */
    .color-grid-slider {
        display: block;
    }

    .color-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .color-slider-prev {
        left: 10px;
    }

    .color-slider-next {
        right: 10px;
    }

    .color-slider-indicators {
        display: none;
    }

    .instagram-icons {
        gap: 20px;
    }

    .instagram-icon {
        font-size: 16px;
    }

    .instagram-icon svg {
        width: 20px;
        height: 20px;
    }

    .see-more button {
        padding: 10px 30px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    footer {
        padding: 50px 25px 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 50px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
        box-sizing: border-box;
    }

    .footer-column {
        padding: 0 10px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-column:not(:last-child)::after {
        display: none;
    }

    .footer-column:nth-child(1)::after,
    .footer-column:nth-child(3)::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
        display: block;
    }

    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        margin-top: 0;
    }

    .footer-column h4 {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        font-weight: 600;
        word-wrap: break-word;
    }

    .footer-column li {
        font-size: 13px;
        margin-bottom: 15px;
        letter-spacing: 0.8px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-column li a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        max-width: 100%;
    }

    .footer-logo {
        margin-top: 40px;
        padding-top: 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-logo h1 {
        font-size: 60px;
        letter-spacing: 8px;
        word-wrap: break-word;
    }

    .footer-logo img {
        max-width: 200px;
        width: 100%;
    }
}

/* Très petits mobiles */
@media (max-width: 480px) {
    header {
        height: 60px;
    }

    .navbar {
        padding: 0 10px;
    }

    .hamburger-menu {
        width: 25px;
        height: 25px;
        right: 10px;
    }

    .hamburger-menu span {
        height: 2.5px;
    }

    .nav-brand {
        margin: 0;
    }

    .brand-logo {
        max-width: 150px;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .menu-overlay {
        padding: 30px 20px;
    }

    .menu-close {
        top: 20px;
        right: 20px;
        font-size: 28px;
    }

    .menu-content {
        margin-top: 30px;
        gap: 15px;
    }

    .menu-link {
        font-size: 18px;
        padding: 12px 0;
    }

    .hero {
        margin-top: 0;
        height: 40vh;
        min-height: 250px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .slider-indicators {
        display: none;
    }

    .slider-indicator {
        width: 8px;
        height: 8px;
    }

    .manifesto,
    .partners {
        padding: 30px 20px;
    }

    .manifesto h2 {
        font-size: 12px;
    }

    .service-description {
        padding: 2.5rem 1.25rem;
    }

    .service-description .main-text {
        font-size: 0.9375rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
        max-width: 100%;
    }

    .service-description .sub-text {
        font-size: 0.8125rem;
    }

    .tags {
        gap: 8px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tag {
        padding: 8px 12px;
        font-size: 10px;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
    }

    .partners {
        padding: 60px 30px;
    }

    .partners h3 {
        font-size: 16px;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .partner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }

    /* Cacher la grille sur très petits écrans */
    .color-grid {
        display: none;
    }

    /* Afficher le slider sur très petits écrans */
    .color-grid-slider {
        display: block;
    }

    .color-slider-btn {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .color-slider-prev {
        left: 8px;
    }

    .color-slider-next {
        right: 8px;
    }

    .color-slider-indicators {
        display: none;
    }

    .color-slider-indicator {
        width: 6px;
        height: 6px;
    }

    .instagram-icons {
        gap: 20px;
    }

    .instagram-icon {
        font-size: 14px;
    }

    .instagram-icon svg {
        width: 18px;
        height: 18px;
    }

    footer {
        padding: 40px 15px 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-column {
        padding: 0 8px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer-column:nth-child(1)::after,
    .footer-column:nth-child(3)::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
        display: block;
    }

    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 15px;
        letter-spacing: 1px;
        word-wrap: break-word;
    }

    .footer-column li {
        font-size: 11px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-column li a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        max-width: 100%;
    }

    .footer-logo {
        margin-top: 30px;
        padding-top: 30px;
    }

    .footer-logo h1 {
        font-size: 48px;
        letter-spacing: 6px;
        word-wrap: break-word;
    }

    .footer-logo img {
        max-width: 150px;
        width: 100%;
    }
}

/* Landscape orientation on phones */
@media (max-width: 768px) and (orientation: landscape) {
    footer {
        padding: 40px 20px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-column {
        padding: 0 10px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer-column:nth-child(1)::after,
    .footer-column:nth-child(3)::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
        display: block;
    }

    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .footer-column li {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-logo {
        margin-top: 30px;
        padding-top: 15px;
    }

    .footer-logo img {
        max-width: 180px;
    }
}



/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 95px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #666;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

