/* Import des polices Alte Haas Grotesk */
@font-face {
    font-family: 'Alte Haas Grotesk';
    src: url('fonts/AlteHaasGroteskRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Alte Haas Grotesk Bold';
    src: url('fonts/AlteHaasGroteskBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alte Haas Grotesk', sans-serif;
    background: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Application de la police bold pour les titres et éléments importants */
h1, h2, h3, 
.nav-links a,
.card h3,
.marquee-content span,
.service-item h3,
.testimonial h3,
.dot.active,
button {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.logo img {
    width: 250px;
    /* Retirer la transition du filter puisqu'on ne l'utilise plus */
    /* transition: filter 0.3s ease; */
}

.navbar .logo {
    margin-right: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    margin-right: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Alte Haas Grotesk';
    font-size: 18px;
    transition: all 0.3s ease;
    color: #FFFFFF !important;
}

.nav-links a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Styles pour la navbar en fonction du fond */
.navbar.on-white {
    background: transparent;
}

.navbar.on-white .nav-links a {
    color: #000000 !important;
}

.navbar.on-white .nav-links a:hover {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.navbar.on-white .cta-button {
    background-color: #000000;
    color: #FFFFFF;
}

.navbar.on-white .cta-button:hover {
    background-color: #333333;
}

.navbar.scrolled {
    padding: 0.5rem 4rem;
    background: transparent;
}

/* Style pour le bouton CTA dans la navbar */
.navbar .cta-button {
    display: flex;
    padding: 0.7rem 1.8rem;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Alte Haas Grotesk', sans-serif;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    letter-spacing: 0.5px;
    align-items: center;
}

.navbar .cta-button i {
    font-size: 18px;
    margin-right: 8px;
}

.navbar .cta-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Ajout d'une classe pour le hover sur fond blanc */
.nav-links a.on-white:hover {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Hero Section */
.hero {
    min-height: 150vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.background-logo {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: url('asset/background.gif') no-repeat center center;
    background-size: 150%;
    background-position: center;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.hero h1 {
    font-family: 'Alte Haas Grotesk Bold';
    font-size: 12vw;
    line-height: 80%;
    letter-spacing: -2%;
    text-align: center;
    position: absolute;
    z-index: 2;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-text p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Sous-section pour le bandeau défilant */
.marquee-section {
    position: absolute;
    top: 100vh;
    width: 100%;
    height: 50vh;
    background: #000000;
    z-index: 2;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.marquee {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    font-size: 6vw;
    font-family: 'Alte Haas Grotesk Bold';
    padding: 0 150px;
}

.quote-left, .quote-right {
    color: #4E4D4D;
    display: inline-block;
    padding: 0 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0%);
    }
}

.discover-text {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    font-size: clamp(14px, 4vw, 20px);
    padding: 0.5rem 1rem;
    text-align: right;
    width: auto;
    max-width: 70%;
    line-height: 1.4;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    animation: none;
    font-family: 'Alte Haas Grotesk';
    font-weight: normal;
    color: #999DF2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.discover-text::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000 0%, #999DF2 100%);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.discover-text::after {
    content: '→';
    font-size: 1.2em;
    color: #999DF2;
    transition: transform 0.3s ease;
    margin-left: 4px;
    transform: translateX(4px);
}

.discover-text:hover::before {
    transform: scaleX(1);
}

.discover-text:hover::after {
    transform: translateX(8px);
}

.discover-text:hover {
    color: #999DF2;
}

.discover-text:active {
    transform: scale(0.98);
}

.discover-text span {
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-shadow: none;
}

.discover-text a {
    text-decoration: none;
    color: inherit;
}

.discover-text a:hover {
    text-decoration: none;
    color: inherit;
}

.discover-text a:visited {
    color: inherit;
}

/* Section separator */
.section-separator {
    width: 100vw!important;
    position: relative;
}

.section-separator.top {
    position: absolute;
    top: 0;
    left: 0;   
    z-index: 3;
    margin-top: 0;
    margin-bottom: 0;
    width: 100vw!important;
    display: block;

}

.section-separator img {
    width: 100vw!important;
    display: block;
}

/* Offers Section */
.offers {
    background: #FFFFFF;
    color: #000000;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.offers h2 {
    font-family: 'Alte Haas Grotesk Bold';
    font-size: 96px;
    margin-bottom: 2rem;
    margin-top: 100px;
}

.offers-subtitle {
    font-family: 'Alte Haas Grotesk';
    font-size: 20px;
    line-height: 30px;
    max-width: 1000px;
    margin: 0 auto 7rem;
    font-weight: 600;
}

.offer-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 0;
}

.card-wrapper {
    position: relative;
    width: 500px;
    height: 250px;
    perspective: 1000px;
}

.disc {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 30px;
    padding: 2rem 3rem;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-origin: center bottom;
    transition: none;
}

.card-wrapper:hover .card {
    transform: none;
}

.card-wrapper:hover .disc {
    --translateY: -40px;
}

/* Styles spécifiques pour les disques de l'index */
.offers .card-wrapper .disc {
    position: absolute;
    width: 210px; /* 30% plus petit que 300px */
    height: 210px; /* 30% plus petit que 300px */
    top: -70px; /* Ajusté pour la nouvelle taille */
    left: 50%;
    transform: translateX(-50%);
    z-index: 0; /* Place le disque derrière la carte */
    transition: transform 0.5s ease;
}

.offers .card {
    position: relative;
    z-index: 1; /* Place la carte au-dessus du disque */
}

.offers .card-wrapper:hover .disc {
    transform: translateX(-50%) translateY(-28px); /* 30% moins que -40px */
    animation: rotateHoverIndex 20s linear infinite;
}

@keyframes rotateHoverIndex {
    from {
        transform: translate(-50%, -28px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -28px) rotate(360deg);
    }
}

@keyframes rotateHover {
    from {
        transform: translate(-50%, -40px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -40px) rotate(360deg);
    }
}

.disc.gold {
    background: url('asset/or.png') no-repeat center/cover;
}

.disc.platinum {
    background: url('asset/platine.png') no-repeat center/cover;
}

.disc.diamond {
    background: url('asset/diamant.png') no-repeat center/cover;
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card h3 {
    font-family: 'Alte Haas Grotesk Bold';
    font-size: 25px;
    margin-bottom: 0.5rem;
}

.card p {
    font-family: 'Mulish';
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 0;
}

.card button {
    width: auto;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 15px;
    background: #FFFFFF;
    color: #000000;
    font-family: 'Alte Haas Grotesk Bold';
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.card button:hover {
    background: #999DF2;
    color: #FFFFFF;
}

.card .big-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 15px;
    background: #FFFFFF;
    color: #000000;
    font-family: 'Alte Haas Grotesk Bold';
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    font-weight: 100;
}

.card .big-button:hover {
    background: #999DF2;
    color: #FFFFFF;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: #000000;
}

.service-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    width: 100%;
    position: relative;
    cursor: default;
}

.service-item h3 {
    color: #000;
    font-family: "Alte Haas Grotesk";
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: -1.92px;
    transition: all 0.2s ease;
    position: relative;
}

/* Ajout du sous-texte */
.service-item::before {
    content: attr(data-description);
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    font-family: "Alte Haas Grotesk";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
    letter-spacing: -0.72px;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Effet hover */
.service-item:hover h3 {
    color: #999DF2;
    opacity: 0.5;
}

.service-item:hover::before {
    opacity: 1;
}

.service-line {
    width: 100%;
    height: 4px;
    background: #000000;
    margin-top: 13px;
    transform: scaleX(0);
    transform-origin: left;
    animation: expandLine 0.2s ease forwards;
    animation-delay: 0.1s;
}

.service-item h3 br {
    display: inline;
}

.service-item + .service-item {
    margin-top: 30px;
}

/* Outsiders Section */
.outsiders {
    padding: 0rem 0rem;
    background: #FFFFFF;
}

.outsiders h2 {
    font-size: 36px;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    text-align: center;
    color: #000000;
}

.testimonials-container {
    padding: 0;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
    /* Scroll horizontal avec snap sur mobile */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    padding: 0 calc(50vw - 150px); /* Centrer le premier élément */
    transition: none; /* Pas de transition sur mobile, laisser le scroll natif */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    width: 100%;
    min-width: 380px;
    flex-shrink: 0;
    padding: 0;
    /* Crans automatiques pour chaque slide */
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-content {
    background: #000000;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    min-height: 391px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(0.8);
    cursor: grab;
}

/* Slide actif */
.carousel-slide.active .testimonial-content {
    opacity: 1;
    transform: scale(1);
}

/* Slides adjacents */
.carousel-slide.prev .testimonial-content,
.carousel-slide.next .testimonial-content {
    opacity: 0.7;
    transform: scale(0.9);
}

/* Style du header du témoignage */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-header img {
    width: 59px;
    height: 59px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h3 {
    color: #FFFFFF;
    font-family: 'Alte Haas Grotesk Bold';
    font-size: 25px;
    margin: 0;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #FFFFFF;
    font-family: 'Alte Haas Grotesk';
    font-size: 25px;
    margin: 0;
    opacity: 0.7;
}

.testimonial-text {
    color: #FFFFFF;
    font-family: 'Mulish';
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
}

/* Navigation */
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    color: #999DF2;
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: scale(1.1);
}

.nav-button svg {
    fill: currentColor;
    width: 32px;
    height: 32px;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
    color: #D9D9D9;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #999DF2;
    transform: scale(1.2);
}

/* Footer */
footer {
    background: #000000;
    padding: 60px 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    position: relative;
}

/* COLONNE 1 (Gauche) - Logo et description */
.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-left .footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 24px;
}

.footer-left h4 {
    color: #FFFFFF;
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
    margin-bottom: 16px;
    margin: 0 0 16px 0;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.28px;
    text-align: justify;
    max-width: 400px;
    margin: 0;
}

/* COLONNE 2 (Centre) - Liens de navigation */
.footer-center {
    display: flex;
    flex-direction: column;
}

.footer-center h4 {
    color: #FFFFFF;
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
    margin-bottom: 16px;
    margin: 0 0 16px 0;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.nav-column-left,
.nav-column-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-grid a {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav-grid a:hover {
    opacity: 1;
    color: #FFFFFF;
}

/* COLONNE 3 (Droite) - Réseaux sociaux */
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-right h4 {
    color: #FFFFFF;
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
    margin-bottom: 16px;
    margin: 0 0 16px 0;
}

.footer-email {
    margin-bottom: 16px;
}

.footer-email p {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 24px;
}

.social-icons a {
    display: flex;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* SECTION PARTENAIRES */
.footer-partners {
    grid-column: 1 / -1;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-start;
}

.partner-logos img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

/* FOOTER BOTTOM */
.footer-bottom {
    max-width: 1400px;
    margin: 24px auto 0;
    padding: 24px 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    color: #FFFFFF;
}

/* RESPONSIVE MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    footer {
        padding: 32px 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-left .footer-logo {
        width: 150px;
        margin: 0 auto 16px;
    }
    
    .footer-left h4 {
        font-size: 16px;
        text-align: center;
        line-height: 1.3;
    }
    
    .footer-left p {
        font-size: 12px;
        text-align: center;
        line-height: 1.4;
        max-width: 100%;
    }
    
    .footer-center h4,
    .footer-right h4 {
        font-size: 16px;
        text-align: center;
    }
    
    .footer-nav-grid {
        justify-content: center;
        gap: 32px;
    }
    
    .nav-column-left,
    .nav-column-right {
        align-items: center;
    }
    
    .footer-nav-grid a {
        font-size: 12px;
    }
    
    .footer-email p {
        font-size: 12px;
        text-align: center;
    }
    
    .social-icons {
        gap: 20px;
        justify-content: center;
    }
    
    .social-icons a {
        width: 24px;
        height: 24px;
    }
    
    .footer-partners {
        margin-top: 32px;
        text-align: center;
    }
    
    .partner-logos {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom {
        margin: 16px auto 0;
        padding: 16px 16px 0;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 10px;
    }
    
    .legal-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .legal-links a {
        font-size: 10px;
    }
}

/* ===== STYLES POUR HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar.on-white .hamburger span {
    background-color: #000000;
}

/* Animation du hamburger en X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Hover effect pour le hamburger */
.hamburger:hover {
    background: rgba(153, 157, 242, 0.1);
}

.hamburger:active {
    transform: scale(0.95);
}

/* ===== CACHER LE SIDEPANEL SUR DESKTOP ===== */
@media (min-width: 769px) {
    .hamburger,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Media Queries pour le responsive */
@media (max-width: 768px) {
    /* ===== NAVIGATION MOBILE ===== */
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .logo img {
        width: 120px;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar .cta-button {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #FFFFFF;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .navbar.on-white .hamburger span {
        background-color: #000000;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(153, 157, 242, 0.2);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    /* Overlay pour fermer le menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Header du sidepanel */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(153, 157, 242, 0.2);
    }
    
    .mobile-menu-logo {
        width: 80px;
        height: auto;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: #FFFFFF;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-close:hover {
        background: rgba(153, 157, 242, 0.2);
        transform: rotate(90deg);
    }
    
    /* Navigation links */
    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
    }
    
    .mobile-menu a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 18px;
        font-family: 'Alte Haas Grotesk', sans-serif;
        font-weight: 400;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-menu a::before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 4px;
        height: 100%;
        background: #999DF2;
        transition: left 0.3s ease;
    }
    
    .mobile-menu a:hover {
        color: #999DF2;
        padding-left: 1rem;
        background: rgba(153, 157, 242, 0.05);
    }
    
    .mobile-menu a:hover::before {
        left: 0;
    }
    
    /* CTA Button dans le sidepanel */
    .mobile-menu-cta {
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(153, 157, 242, 0.2);
    }
    
    .mobile-menu .cta-button {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, #999DF2 0%, #7B7FE8 100%);
        color: #FFFFFF;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-family: 'Alte Haas Grotesk', sans-serif;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(153, 157, 242, 0.3);
    }
    
    .mobile-menu .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(153, 157, 242, 0.4);
    }
    
    /* Animation d'entrée des éléments */
    .mobile-menu.active .mobile-menu a {
        animation: slideInRight 0.6s ease forwards;
    }
    
    .mobile-menu.active .mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
    .mobile-menu.active .mobile-menu a:nth-child(2) { animation-delay: 0.2s; }
    .mobile-menu.active .mobile-menu a:nth-child(3) { animation-delay: 0.3s; }
    .mobile-menu.active .mobile-menu a:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* ===== HERO SECTION MOBILE ===== */
    .hero {
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 48px;
        line-height: 90%;
        padding: 0 1rem;
        text-align: center;
    }
    
    .background-logo {
        background-size: 150%;
        background-position: center;
        background-position-x: center;
        background-position-y: center;
        background-repeat: no-repeat;
    }
    
    /* ===== SECTION SEPARATOR MOBILE ===== */
    .section-separator {
        height: 50px;
        overflow: hidden;
    }
    
    .section-separator img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* ===== SECTION OFFRES MOBILE ===== */
    .offers {
        padding: 2rem 0;
    }
    
    .offers h2 {
        font-size: 36px;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .offers-subtitle {
        font-size: 16px;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .offer-cards {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
        align-items: center;
    }
    
    .card-wrapper {
        margin-top: 80px;
        width: 100%;
        max-width: 350px;
    }
    
    .disc {
        width: 200px;
        height: 200px;
        top: -80px;
    }
    
    .card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .card h3 {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    
    .card p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .card button {
        padding: 0.8rem 1.5rem;
        font-size: 14px;
        min-height: 44px; /* Touch target minimum */
    }
    
    .plus-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        background: #000000;
        border-radius: 15px;
        margin: 100px auto 0;
        text-decoration: none;
        transition: background-color 0.2s ease;
        min-height: 44px; /* Touch target minimum */
    }
    
    .plus-button span {
        color: #FFFFFF;
        font-family: 'Mulish';
        font-size: 40px;
        font-weight: 900;
        line-height: 35px;
        text-align: center;
        padding: 1px 17.656px 9px 18px;
    }
    
    .plus-button:hover {
        background-color: #999DF2;
    }
    
    /* ===== OUTSIDERS SECTION MOBILE ===== */
    .outsiders {
        padding: 0rem 0rem;
        background: #FFFFFF;
    }

    /* ===== FOOTER MOBILE ===== */
    footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left img {
        width: 150px;
        margin-bottom: 1rem;
    }
    
    .footer-left h4 {
        font-size: 16px;
        text-align: center;
        line-height: 1.3;
    }
    
    .footer-left p {
        font-size: 12px;
        text-align: center;
        line-height: 1.4;
    }
    
    .footer-right {
        justify-content: center;
        padding-top: 20px;
    }
    
    .social-icons {
        gap: 1.2rem;
        justify-content: center;
    }
    
    .social-icons a {
        width: 24px;
        height: 24px;
    }
    
    .footer-bottom {
        margin: 1rem auto 0;
        padding: 1rem 1rem 0;
    }
    
    .footer-bottom p {
        font-size: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .legal-links a {
        font-size: 10px;
    }
}

/* Animations améliorées */
.fade-in, .fade-in-left, .fade-in-right {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.6s cubic-bezier(0.5, 0, 0, 1), 
                transform 0.6s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.fade-in-left {
    transform: translateX(-50px) scale(0.98);
}

.fade-in-right {
    transform: translateX(50px) scale(0.98);
}

.fade-in.appear, .fade-in-left.appear, .fade-in-right.appear {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Animation spéciale pour les cartes */
.card-wrapper {
    perspective: 1000px;
}

.card-wrapper .card {
    transform-origin: center bottom;
    transition: none;
}

.card-wrapper:hover .card {
    transform: none;
}

/* Animation spéciale pour les services */
.service-item {
    position: relative;
    overflow: hidden;
}

.service-line {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.service-item.appear .service-line {
    transform: scaleX(1);
}

.services-section {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    padding: 150px 2rem 80px;
    min-height: auto;
}

.service-list {
    width: 100%;
    max-width: 1420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-item {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

.service-item h3 {
    color: #000;
    font-family: "Alte Haas Grotesk";
    font-size: clamp(32px, 8vw, 96px);
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: all 0.2s ease;
    position: relative;
    margin: 0;
    padding: 0;
}

.service-line {
    width: 100%;
    height: clamp(2px, 0.4vw, 4px);
    background: #000000;
    margin-top: clamp(8px, 1.5vw, 13px);
    transform: scaleX(0);
    transform-origin: left;
    animation: expandLine 0.2s ease forwards;
    animation-delay: 0.1s;
}

.service-description {
    color: #000;
    font-family: "Alte Haas Grotesk";
    font-size: clamp(18px, 4.5vw, 26px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    cursor: default;
    z-index: 1000;
    max-width: 90%;
}

.service-item:hover .service-description {
    opacity: 1;
}

.service-item:hover h3 {
    color: #999DF2;
    opacity: 0.3;
}

/* Responsive breakpoints pour les services */
@media (max-width: 1200px) {
    .services-section {
        padding: 120px 1.5rem 60px;
    }
    
    .service-list {
        max-width: 1000px;
        gap: 20px;
        padding: 0 1rem;
    }
    
    .service-item h3 {
        font-size: clamp(28px, 7vw, 80px);
    }
    
    .service-description {
        font-size: clamp(16px, 3vw, 30px);
    }
}

@media (max-width: 900px) {
    .services-section {
        padding: 100px 1rem 50px;
    }
    
    .service-list {
        max-width: 800px;
        gap: 18px;
        padding: 0 0.5rem;
    }
    
    .service-item h3 {
        font-size: clamp(24px, 6vw, 64px);
    }
    
    .service-description {
        font-size: clamp(14px, 2.5vw, 24px);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 1rem 40px;
    }
    
    .service-list {
        max-width: 100%;
        gap: 15px;
        padding: 0;
    }
    
    .service-item {
        padding: 1rem;
        background: #f8f8f8;
        border-radius: 12px;
        border-left: 3px solid #999DF2;
        position: relative;
        transition: all 0.3s ease;
        margin: 0;
    }
    
    .service-item h3 {
        font-size: clamp(20px, 5vw, 36px) !important;
        line-height: 1.1 !important;
        margin-bottom: 0.5rem;
        opacity: 1;
    }
    
    .service-description {
        font-size: clamp(16px, 4vw, 24px) !important;
        line-height: 1.3 !important;
        left: 15px !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: opacity 0.2s ease;
        max-width: calc(100% - 50px);
    }
    
    .service-item:hover {
        background: #f0f0f0;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .service-item:hover h3 {
        color: #999DF2;
        opacity: 0.2;
    }
    
    .service-item:hover .service-description {
        opacity: 1;
    }
    
    /* Indicateur point simple pour mobile */
    .service-item::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20px;
        width: 8px;
        height: 8px;
        background: #999DF2;
        border-radius: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        animation: tapPulse 2s ease-in-out infinite;
        z-index: 10;
    }
    
    .service-item:hover::after,
    .service-item.active::after,
    .service-item:active::after {
        opacity: 0 !important;
        animation-play-state: paused;
    }
    
    /* États tactiles pour mobile */
    .service-item.touching {
        background: #e8e8e8 !important;
        transform: translateY(-1px) scale(0.98);
    }
    
    .service-item.active {
        background: #f0f0f0 !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .service-item.active h3 {
        color: #999DF2 !important;
        opacity: 0.2 !important;
    }
    
    .service-item.active .service-description {
        opacity: 1 !important;
    }
    
    .service-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0.5rem 100px;
    }
    
    .service-item {
        padding: 0.8rem;
        border-radius: 10px;
        border-left: 2px solid #999DF2;
    }
    
    .service-item h3 {
        font-size: clamp(16px, 4vw, 24px) !important;
        line-height: 1.1 !important;
        margin-bottom: 0.4rem;
    }
    
    .service-description {
        font-size: clamp(16px, 4vw, 24px) !important;
        line-height: 1.3 !important;
        left: 12px !important;
        max-width: calc(100% - 40px);
    }
}

/* Styles spécifiques pour la page Offres */

/* Hero section */
.hero-offres {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000000;
    padding-top: 150px;
    overflow: hidden;
}

.tag-icon {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    z-index: 2;
}

.tag-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
}

.hero-offres h1 {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 210px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('asset/sepa1.png') no-repeat;
    background-size: cover;
    z-index: 3;
}

/* 3 OFFRES section */
.three-offers {
    background-color: #FFFFFF;
    padding: 80px 0;
    position: relative;
    color: #000000;
    text-align: center;
}

.three-offers h2 {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 110px;
    margin-bottom: 20px;
    margin-top: 150px;
    color: #000000;
    text-transform: uppercase;
}

.offers-description {
    max-width: 70%;
    margin: 0 auto 60px;
    font-size: 24px;
    line-height: 1.5;
    color: #333333;
    padding: 0 20px;
    font-weight: 500;
}

.offers-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 52px;
    margin-bottom: 78px;
    padding: 0 26px;
    margin-top: 78px;
    align-items: stretch;
}

/* Styles pour les cartes et les disques métalliques */
.card-wrapper {
    position: relative;
    margin-top: 130px;
    width: 520px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.disc {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 312px;
    height: 312px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}

.disc.gold {
    background-image: url('asset/or.png');
}

.disc.platinum {
    background-image: url('asset/platine.png');
}

.disc.diamond {
    background-image: url('asset/diamant.png');
}

.three-offers .card {
    position: relative;
    background-color: #000000;
    border-radius: 26px;
    padding: 45px 45px;
    color: #FFFFFF;
    text-align: left;
    box-shadow: 0 5px 26px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 700px;
}

.three-offers .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.three-offers .card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
    height: 100%;
}

/* Styles pour les textes et éléments dans les cartes */
.three-offers .card h3 {
    font-size: 36px;
    
    text-align: left;
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
}

.offer-tagline {
    font-size: 16px !important;
    color: #ffffff;
    text-align: left;
    margin-bottom: 35px !important;
}

/* Animation des disques */
@keyframes slowSpin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

.disc.slow-spin {
    animation: slowSpin 120s linear infinite;
}

.card-wrapper:hover .disc {
    transform: translateX(-50%) scale(1.05);
}

.hours {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: left;
    align-items: flex-start;
    position: relative;
    padding-bottom: 35px;
}

.hours::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.hours-number {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 60px;
    line-height: 1;
    margin-bottom: 0;
}

.hours-text {
    font-size: 22px;
    color: #ffffff;
    margin-top: 5px;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 60px;
    margin-top: 45px;
    flex: 1;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
}

.feature:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: #999DF2;
    font-size: 23px;
    flex-shrink: 0;
    margin-top: 3px;
    font-weight: bold;
}

.feature-text {
    font-size: 18px;
    line-height: 1.5;
    display: inline-block;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.highlight {
    color: #999DF2;
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    text-decoration: none;
}

.highlight:hover {
    text-decoration: underline;
}

/* CTA Section avec devis */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.cta-text {
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
}

.devis-button {
    padding: 12px 30px;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Alte Haas Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    font-weight: 300;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.devis-button i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.devis-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.devis-button2 i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: #ffffff;
}

.devis-button2 {
    padding: 12px 30px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Alte Haas Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    font-weight: 300;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.devis-button2:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
/* Styles pour la section OUTSIDERS (déjà présents dans styles.css, mais on les ajoute si différents) */

/* Assurer une transition fluide pour les changements de hauteur */
.card, .card-content, .offer-features {
    transition: height 0.3s ease, transform 0.3s ease;
}

/* Styles spécifiques pour les boutons des offres */
.reserve-button {
    width: 80%;
    padding: 14px 0;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 65px;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Alte Haas Grotesk', sans-serif;
    margin: 40px auto 0;
    letter-spacing: 1.2px;
    display: block;
    font-weight: 200;
    text-transform: uppercase;
}

.reserve-button:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}

.big-button {
    font-weight: 100 !important;
    letter-spacing: 2px !important;
}

/* ===== TESTIMONIALS SMALL DESKTOP - VERSION RESPONSIVE ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-container {
        position: relative;
        width: 100%;
        padding: 40px 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .carousel-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0;
        transition: none;
        transform: none !important;
        cursor: default;
    }
    
    .carousel-slide {
        width: 100%;
        min-width: auto;
        flex-shrink: 0;
        transition: all 0.3s ease;
        user-select: none;
        display: block;
    }
    
    .carousel-slide:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .testimonial-content {
        background: #000000;
        border-radius: 25px;
        padding: 30px;
        height: 100%;
        min-height: 320px;
        transition: all 0.3s ease;
        opacity: 1;
        transform: scale(1);
        cursor: default;
    }
    
    .testimonial-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* Masquer la navigation sur small desktop */
    .carousel-navigation {
        display: none;
    }
    
    /* Styles ajustés pour small desktop */
    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .testimonial-header img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .testimonial-info h3 {
        color: #FFFFFF;
        font-family: 'Alte Haas Grotesk Bold';
        font-size: 20px;
        margin: 0;
        margin-bottom: 3px;
    }
    
    .testimonial-info p {
        color: #FFFFFF;
        font-family: 'Alte Haas Grotesk';
        font-size: 18px;
        margin: 0;
        opacity: 0.7;
    }
    
    .testimonial-text {
        color: #FFFFFF;
        font-family: 'Mulish';
        font-size: 16px;
        line-height: 1.4;
    }
}

/* ===== TESTIMONIALS DESKTOP - VERSION STATIQUE SANS CAROUSEL ===== */
@media (min-width: 1025px) {
    .testimonials-container {
        position: relative;
        width: 100%;
        padding: 60px 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0;
        transition: none;
        transform: none !important;
        cursor: default;
    }
    
    .carousel-slide {
        width: 100%;
        min-width: auto;
        flex-shrink: 0;
        transition: all 0.3s ease;
        user-select: none;
        display: block;
    }
    
    .testimonial-content {
        background: #000000;
        border-radius: 30px;
        padding: 40px;
        height: 100%;
        min-height: 391px;
        transition: all 0.3s ease;
        opacity: 1;
        transform: scale(1);
        cursor: default;
    }
    
    .testimonial-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* Masquer la navigation sur desktop */
    .carousel-navigation {
        display: none;
    }
    
    /* Styles pour les témoignages */
    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .testimonial-header img {
        width: 59px;
        height: 59px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .testimonial-info h3 {
        color: #FFFFFF;
        font-family: 'Alte Haas Grotesk Bold';
        font-size: 25px;
        margin: 0;
        margin-bottom: 5px;
    }
    
    .testimonial-info p {
        color: #FFFFFF;
        font-family: 'Alte Haas Grotesk';
        font-size: 25px;
        margin: 0;
        opacity: 0.7;
    }
    
    .testimonial-text {
        color: #FFFFFF;
        font-family: 'Mulish';
        font-size: clamp(16px, 1.5vw, 20px);
        line-height: 1.5;
    }
} 

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes tapPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
}

.plus-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 15px;
    margin: 100px auto 0;
    text-decoration: none;
    transition: background-color 0.2s ease;
    min-height: 44px; /* Touch target minimum */
}

.plus-button span {
    color: #FFFFFF;
    font-family: 'Mulish';
    font-size: 40px;
    font-weight: 900;
    line-height: 35px;
    text-align: center;
    padding: 1px 17.656px 9px 18px;
}

.plus-button:hover {
    background-color: #999DF2;
}

.card-wrapper:hover .disc {
    transform: translateX(-50%) translateY(-40px);
}

.card-wrapper:hover .disc {
    animation: rotateHover 20s linear infinite;
}

@keyframes rotateHover {
    from {
        transform: translate(-50%, -40px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -40px) rotate(360deg);
    }
}

.testimonial-content:active {
    cursor: grabbing;
}

/* Media query pour les écrans en dessous de 1300px */
@media (max-width: 1300px) {
    .offer-cards {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
        align-items: center;
    }
}

/* ===== BREAKPOINTS SUPPLÉMENTAIRES POUR MARQUEE ===== */

/* Petits écrans (480px et moins) */
@media (max-width: 480px) {
    .marquee-section {
        top: 76vh;
        height: 20vh;
        min-height: 180px;
    }
    
    .marquee-content {
        font-size: clamp(16px, 5vw, 24px);
        padding: 0 0.5rem;
        animation: scroll 25s linear infinite;
    }
    
    .quote-left, .quote-right {
        font-size: clamp(16px, 5vw, 24px);
        padding: 0 3px;
    }
    
    .discover-text {
        font-size: clamp(12px, 3.5vw, 16px);
        bottom: 15px;
        right: 15px;
        max-width: 80%;
        gap: 4px;
    }
    
    .discover-text::after {
        font-size: 1.1em;
    }
}

/* Écrans moyens (481px à 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .marquee-section {
        top: 76vh;
        height: 48vh;
        min-height: 220px;
    }
    
    .marquee-content {
        font-size: clamp(20px, 6.5vw, 36px);
        padding: 0 1.5rem;
        animation: scroll 18s linear infinite;
    }
    
    .quote-left, .quote-right {
        font-size: clamp(20px, 6.5vw, 36px);
        padding: 0 6px;
    }
    
    .discover-text {
        font-size: clamp(14px, 4vw, 18px);
        bottom: 20px;
        right: 18px;
        max-width: 75%;
        gap: 5px;
    }
}

/* Tablettes portrait (641px à 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    .marquee-section {
        top: 76vh;
        height: 50vh;
        min-height: 250px;
    }
    
    .marquee-content {
        font-size: clamp(24px, 7vw, 42px);
        padding: 0 2rem;
        animation: scroll 15s linear infinite;
    }
    
    .quote-left, .quote-right {
        font-size: clamp(24px, 7vw, 42px);
        padding: 0 8px;
    }
    
    .discover-text {
        font-size: clamp(16px, 4.5vw, 22px);
        bottom: 25px;
        right: 20px;
        max-width: 70%;
        gap: 6px;
    }
}

/* ========================================
   RESPONSIVE POUR LA PAGE OFFRES
   ======================================== */

/* Mobile standard */
@media (max-width: 768px) {
    /* Section Hero Offres */
    .hero-offres {
        min-height: 80vh;
        padding-top: 120px;
    }
    
    .hero-offres h1 {
        font-size: 48px;
        line-height: 1.1;
        margin-top: 40px;
        padding: 0 1rem;
    }
    
    .tag-icon {
        width: 120px;
        height: 120px;
        top: 35%;
    }
    
    /* Section Three Offers */
    .three-offers {
        padding: 60px 0;
    }
    
    .three-offers h2 {
        font-size: 48px;
        margin-top: 80px;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .offers-description {
        max-width: 90%;
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 40px;
        padding: 0 1rem;
    }
    
    /* Layout des cartes */
    .offers-container {
        flex-direction: column;
        gap: 4rem;
        padding: 0 1rem;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .card-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        margin-top: 100px;
    }
    
    /* Disques métalliques */
    .disc {
        width: 200px;
        height: 200px;
        top: -100px;
    }
    
    /* Cartes */
    .three-offers .card {
        padding: 30px 25px;
        min-height: auto;
        border-radius: 20px;
    }
    
    .three-offers .card h3 {
        font-size: 28px;
        margin-bottom: 1rem;
    }
    
    .offer-tagline {
        font-size: 16px !important;
        margin-bottom: 25px !important;
        line-height: 1.3;
    }
    
    /* Features */
    .feature-text {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .highlight {
        font-size: 16px;
        padding: 0.2rem 0.4rem;
    }
    
    /* Section CTA */
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-text {
        font-size: 18px;
        line-height: 1.4;
        max-width: 90%;
        margin: 0 auto 2rem;
    }
    
    .devis-button2 {
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    /* Hours */
    .hours {
        margin-bottom: 15px;
        padding-bottom: 25px;
    }
    
    .hours-number {
        font-size: 24px;
    }
    
    .hours-text {
        font-size: 14px;
    }
    
    /* Offer features */
    .offer-features {
        margin-bottom: 25px;
    }
    
    .feature {
        margin-bottom: 12px;
    }
    
    .check-icon {
        font-size: 16px;
        margin-right: 8px;
    }
}

/* Très petits mobiles */
@media (max-width: 480px) {
    /* Section Hero Offres */
    .hero-offres h1 {
        font-size: 36px;
        margin-top: 30px;
    }
    
    .tag-icon {
        width: 100px;
        height: 100px;
        top: 30%;
    }
    
    /* Section Three Offers */
    .three-offers h2 {
        font-size: 36px;
        margin-top: 60px;
    }
    
    .offers-description {
        font-size: 16px;
        max-width: 95%;
    }
    
    /* Layout des cartes */
    .offers-container {
        gap: 3rem;
        padding: 0 0.5rem;
    }
    
    .card-wrapper {
        max-width: 350px;
        margin-top: 80px;
    }
    
    /* Disques métalliques */
    .disc {
        width: 150px;
        height: 150px;
        top: -75px;
    }
    
    /* Cartes */
    .three-offers .card {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .three-offers .card h3 {
        font-size: 24px;
    }
    
    .offer-tagline {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    
    /* Features */
    .feature-text {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .highlight {
        font-size: 14px;
        padding: 0.1rem 0.3rem;
    }
    
    /* Section CTA */
    .cta-text {
        font-size: 16px;
        max-width: 95%;
    }
    
    .devis-button2 {
        padding: 0.8rem 1.5rem;
        font-size: 14px;
    }
    
    /* Hours */
    .hours-number {
        font-size: 20px;
    }
    
    .hours-text {
        font-size: 12px;
    }
    
    /* Offer features */
    .feature {
        margin-bottom: 10px;
    }
    
    .check-icon {
        font-size: 14px;
        margin-right: 6px;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Section Hero Offres */
    .hero-offres h1 {
        font-size: 120px;
        margin-top: 50px;
    }
    
    .tag-icon {
        width: 160px;
        height: 160px;
    }
    
    /* Section Three Offers */
    .three-offers h2 {
        font-size: 80px;
        margin-top: 120px;
    }
    
    .offers-description {
        font-size: 20px;
        max-width: 80%;
    }
    
    /* Layout des cartes */
    .offers-container {
        gap: 40px;
        padding: 0 2rem;
    }
    
    .card-wrapper {
        width: 450px;
        margin-top: 110px;
    }
    
    /* Disques métalliques */
    .disc {
        width: 250px;
        height: 250px;
        top: -125px;
    }
    
    /* Cartes */
    .three-offers .card {
        padding: 35px 35px;
        min-height: 600px;
    }
    
    .three-offers .card h3 {
        font-size: 32px;
    }
    
    .offer-tagline {
        font-size: 15px !important;
        margin-bottom: 30px !important;
    }
    
    /* Features */
    .feature-text {
        font-size: 15px;
    }
    
    /* Section CTA */
    .cta-text {
        font-size: 20px;
        max-width: 80%;
    }
    
    .devis-button2 {
        padding: 1.2rem 2.5rem;
        font-size: 18px;
    }
} 

@media (max-width: 768px) {
    /* Compactage supplémentaire des cards offres */
    .three-offers {
        padding: 30px 0;
    }
    .offers-container {
        gap: 1.5rem;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 0.5rem;
    }
    .card-wrapper {
        margin-top: 40px;
        max-width: 320px;
    }
    .disc {
        width: 120px;
        height: 120px;
        top: -60px;
    }
    .three-offers .card {
        padding: 22px 16px;
        border-radius: 12px;
    }
    .three-offers .card h3 {
        font-size: 18px;
        margin-bottom: 0.5rem;
    }
    .offer-tagline {
        font-size: 12px !important;
        margin-bottom: 10px !important;
        line-height: 1.2;
    }
    .feature-text {
        font-size: 12px;
        line-height: 1.2;
    }
    .highlight {
        font-size: 12px;
        padding: 0.1rem 0.2rem;
    }
    .hours {
        margin-bottom: 8px;
        padding-bottom: 10px;
    }
    .hours-number {
        font-size: 16px;
    }
    .hours-text {
        font-size: 10px;
    }
    .offer-features {
        margin-bottom: 10px;
        margin-top: 10px;
        gap: 10px;
    }
    .feature {
        margin-bottom: 6px;
        gap: 8px;
    }
    .check-icon {
        font-size: 10px;
        margin-right: 4px;
    }
    .reserve-button {
        padding: 4px 0;
        font-size: 9px;
        margin: 12px auto 0;
        border-radius: 15px;
        min-height: 24px;
        max-width: 85%;
        letter-spacing: 0.5px;
    }
    
    /* Styles spécifiques pour le bouton big-button sur mobile */
    .reserve-button.big-button {
        padding: 5px 0;
        font-size: 10px;
        margin: 14px auto 0;
        border-radius: 18px;
        min-height: 28px;
        max-width: 87%;
        letter-spacing: 0.4px;
        font-weight: 200;
    }
}

.hero h1 .hero-subtitle {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 18px;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .hero h1 .hero-subtitle {
    font-size: 15px;
    margin-top: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .background-logo {
    background-size: 250%;
  }
}

.hero-cta-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-cta-mobile {
    display: inline-block;
    margin-top: 0;
    padding: 4px 24px;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 768px) {
    /* Désactiver les animations hover/click des cartes sur mobile */
    .card-wrapper:hover .card {
        transform: none !important;
    }
    
    .card-wrapper:hover .disc {
        transform: translateX(-50%) !important;
        animation: none !important;
    }
    
    .card {
        transform: none !important;
        transition: none !important;
    }
    
    .disc {
        transform: translateX(-50%) !important;
        transition: none !important;
        animation: none !important;
    }
    
    /* Supprimer les effets de surélévation sur mobile */
    .offers .card-wrapper:hover .disc {
        transform: translateX(-50%) !important;
        animation: none !important;
    }
}

.card-content a {
    align-self: flex-end;
    text-decoration: none;
}

.card-content a button {
    align-self: flex-end;
}