    /* Fond transparent pour laisser voir l'image derrière la navbar */
    body {
        background-color: transparent !important;
    }
    :root {
        --home-search-h: 52px;
    }
    .home-search-form {
        max-width: 920px;
        margin: 0 auto;
    }
    .home-search-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    /* Conteneur pour les deux inputs collés */
    .home-search-inputs-group {
        display: flex;
        align-items: center;
        margin-right: 12px;
        position: relative;
        padding: 4px;
        background: linear-gradient(90deg,rgb(252, 207, 198),rgb(247, 129, 116), #e89382,rgb(250, 186, 173), #ff8a7a,rgb(252, 201, 190),rgb(253, 129, 115), #e89382);
        background-size: 400% 100%;
        border-radius: 34px;
        animation: borderGradient 8s ease infinite;
    }
    
    @keyframes borderGradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    /* Desktop: champ "recherche" plus large que "localisation" */
    .home-search-query-wrapper {
        flex: 1.4 1 0 !important;
        min-width: 300px !important;
        max-width: none !important;
        width: auto !important;
        background: #fff;
        border-radius: 30px 0 0 30px;
    }
    .home-search-query {
        flex: 1 1 0 !important;
        width: 100% !important;
        border-radius: 30px 0 0 30px !important;
        border: none !important;
    }
    .home-location-wrapper {
        flex: 1 1 0 !important;
        min-width: 260px !important;
        max-width: none !important;
        width: auto !important;
        background: #fff;
        border-radius: 0 30px 30px 0;
    }
    .home-search-location {
        flex: 1 1 0 !important;
        width: 100% !important;
        border-radius: 0 30px 30px 0 !important;
        border: none !important;
        padding-right: 40px !important;
    }
    .location-geo-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border: none;
        background: transparent;
        color: #86868b;
        cursor: pointer;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        z-index: 4;
        transition: color 0.2s;
    }
    .location-geo-btn:hover {
        color: #1d1d1f;
    }
    .location-geo-btn:focus {
        outline: none;
    }
    /* S'assurer que le wrapper de l'autocomplete n'interfère pas */
    .home-search-inputs-group .city-autocomplete-wrapper {
        flex: 1 1 0 !important;
        min-width: 260px !important;
        max-width: none !important;
        width: auto !important;
        background: #fff;
        border-radius: 0 30px 30px 0;
    }
    .home-search-inputs-group .city-autocomplete-wrapper input {
        flex: 1 1 0 !important;
        width: 100% !important;
    }
    .home-search-input {
        font-size: 0.95rem; /* police réduite */
        height: var(--home-search-h);
        padding: 0 1rem;
        background: transparent;
        border: none !important;
    }
    /* Placeholder responsive : taille adaptée pour éviter que le texte soit coupé */
    .home-search-input::placeholder {
        font-size: clamp(0.7rem, 0.65rem + 0.5vw, 0.85rem);
    }
    .home-search-btn {
        width: 190px; /* largeur fixe desktop */
        white-space: nowrap;
        height: var(--home-search-h);
        padding: 0 1.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .home-search-btn-desktop {
        background-color: #1d1d1f !important;
        color: #fff !important;
        border: 1px solid #1d1d1f !important;
        border-radius: 30px !important;
        transition: all 0.3s ease;
    }
    .home-search-btn-desktop i {
        color: #fff !important;
    }
    .home-search-btn-desktop:hover {
        background-color: transparent !important;
        color: #1d1d1f !important;
        border-color: #1d1d1f !important;
    }
    .home-search-btn-desktop:hover i {
        color: #1d1d1f !important;
    }
    /* Autocomplétion des suggestions (prestations/salons) */
    .home-search-suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 300px;
        overflow-y: auto;
        z-index: 1000;
        margin-top: 4px;
        display: none;
    }
    .home-search-suggestions.show {
        display: block;
    }
    .home-search-suggestion-item {
        padding: 12px 16px;
        cursor: pointer;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background-color 0.2s;
        background: #ffffff;
        display: flex;
        align-items: center;
        gap: 0;
    }
    .home-search-suggestion-thumb {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
        object-fit: cover;
        background: #F9F5F3;
    }
    .home-search-suggestion-content {
        min-width: 0;
        flex: 1;
    }
    .home-search-suggestion-item:last-child {
        border-bottom: none;
    }
    .home-search-suggestion-item:hover {
        background-color: #F9F5F3;
    }
    .home-search-suggestion-item.active {
        background-color: #FEF1EF;
    }
    .home-search-suggestion-label {
        font-weight: 600;
        color: #1d1d1f;
        font-size: 0.95rem;
        margin-bottom: 4px;
        display: block;
    }
    .home-search-suggestion-item .home-search-suggestion-label { margin-bottom: 2px; }
    .home-search-suggestion-type {
        font-size: 0.875rem;
        color: #86868b;
        line-height: 1.4;
        display: block;
    }
    @media (max-width: 767.98px) {
        /* Réduire la taille du titre "Rechercher un LastCall" sur mobile */
        h3.display-3.text-white.mb-3 {
            font-size: 2rem !important;
        }
        
        /* Réduire la taille du paragraphe sur mobile */
        .home-hero-content p.text-white.mb-4,
        .home-hero-content p.mx-md-5 {
            font-size: 0.875rem !important;
            line-height: 1.4 !important;
        }
        
        /* Couleur noire pour le h6, le p et le texte "Vous recherchez" dans la section hero */
        .home-hero-content h6 {
            color: #1d1d1f !important;
        }
        .home-hero-content p.mx-md-5 {
            color: #1d1d1f !important;
        }
        .home-hero-content h1.cd-headline span:first-child,
        .home-hero-content h1.cd-headline span {
            color: #1d1d1f !important;
        }
        
        /* Agrandir le bloc hero sur desktop */
        @media (min-width: 992px) {
            .home-hero-content {
                max-width: 1200px !important;
            }
            .home-hero-content h6 {
                font-size: 1.3rem !important;
                letter-spacing: 5px !important;
                margin-bottom: 2rem !important;
            }
            .home-hero-content h1.cd-headline {
                font-size: 2.25rem !important;
                margin-bottom: 2rem !important;
            }
            .home-hero-content p.mx-md-5 {
                font-size: 1.5rem !important;
                margin-bottom: 2.5rem !important;
            }
        }
        
        /* Monter le bloc de contenu plus haut sur mobile */
        .home-hero-wrapper {
            justify-content: flex-start !important;
            padding-top: 170px !important;
        }
        
        .home-hero-content {
            margin-top: 0 !important;
        }
        
        /* Mobile : "Envie d'une pause" sur une ligne, mot rotatif en dessous, taille réduite */
        @media (max-width: 767px) {
            .home-hero-content h1.cd-headline {
                display: flex !important;
                flex-wrap: wrap !important;
                justify-content: center !important;
                font-size: 2rem !important;
                line-height: 1.3 !important;
            }
            .home-hero-content h1.cd-headline span:first-child {
                width: 100%;
            }
            .home-hero-content h1.cd-headline .cd-words-wrapper {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }
           
        }
        
        .home-search-btn-desktop {
            display: none !important; /* Cacher le bouton desktop sur mobile */
        }
        .home-search-row {
            flex-direction: column;
            gap: 10px;
        }
        .home-search-inputs-group {
            flex-direction: column;
            width: 100%;
            margin-right: 0;
            gap: 0;
            padding: 4px;
            border-radius: 34px;
        }
        
        .home-search-query-wrapper {
            border-radius: 30px !important;
            background: #fff;
        }
        
        .home-location-wrapper {
            border-radius: 30px !important;
            background: #fff;
        }
        .home-location-wrapper .location-geo-btn {
            display: none !important; /* Cacher l'icône géoloc sur mobile (page d'accueil) */
        }
        .home-search-inputs-group .city-autocomplete-wrapper {
            border-radius: 30px !important;
            background: #fff;
        }
        .home-search-location {
            display: none !important; /* Cacher l'input de localisation en mobile initialement */
        }
        .home-search-query-wrapper {
            width: 100% !important;
            background: #fff;
            border-radius: 30px !important;
        }
        .home-search-query {
            flex: none !important;
            width: 100% !important;
            min-width: 0 !important;
            max-width: 100% !important;
            border-radius: 30px !important;
            padding-right: 60px !important; /* Espace pour le bouton */
        }
        .home-search-btn-query {
            display: flex !important; /* Toujours visible sur mobile */
            position: absolute;
            right: 2px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #1d1d1f !important;
            color: #fff !important;
            border: 1px solid #1d1d1f !important;
            border-radius: 30px !important;
            width: 48px;
            height: 48px;
            padding: 0;
            align-items: center;
            justify-content: center;
            z-index: 5;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .home-search-btn-query:hover {
            background-color: transparent !important;
            color: #1d1d1f !important;
            border-color: #1d1d1f !important;
        }
        .home-search-btn-query i {
            margin: 0 !important;
            font-size: 1rem;
            color: #fff !important;
        }
        .home-search-btn-query:hover i {
            color: #1d1d1f !important;
        }
        .home-search-btn-location {
            display: none !important; /* Caché par défaut */
        }
        .home-search-mobile-step2 .home-search-row {
            flex-direction: row !important; /* Côte à côte à l'étape 2 */
            gap: 0 !important;
        }
        .home-search-mobile-step2 .home-search-inputs-group {
            flex-direction: row !important;
            width: 100% !important;
            margin-right: 0 !important;
            gap: 0 !important;
        }
        .home-search-mobile-step2 .home-location-wrapper {
            flex: 1 !important;
            width: 100% !important;
        }
        .home-search-mobile-step2 .home-search-location {
            display: block !important; /* Afficher l'input de localisation à l'étape 2 */
            border-radius: 30px !important;
            padding-right: 88px !important; /* Espace pour icône géo + bouton */
        }
        .home-search-mobile-step2 .location-geo-btn {
            right: 60px;
        }
        .home-search-mobile-step2 .home-search-btn-query {
            display: none !important; /* Cacher le bouton de l'input de recherche à l'étape 2 */
        }
        .home-search-mobile-step2 .home-search-btn-location {
            display: flex !important; /* Afficher le bouton mobile à l'étape 2 */
            position: absolute;
            right: 2px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #1d1d1f !important;
            color: #fff !important;
            border: 1px solid #1d1d1f !important;
            border-radius: 30px !important;
            width: 48px;
            height: 48px;
            padding: 0;
            align-items: center;
            justify-content: center;
            z-index: 5;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .home-search-mobile-step2 .home-search-btn-location:hover {
            background-color: transparent !important;
            color: #1d1d1f !important;
            border-color: #1d1d1f !important;
        }
        .home-search-mobile-step2 .home-search-btn-location i {
            margin: 0 !important;
            font-size: 1rem;
            color: #fff !important;
        }
        .home-search-mobile-step2 .home-search-btn-location:hover i {
            color: #1d1d1f !important;
        }
        .home-search-mobile-step2 .home-search-query {
            display: none !important; /* Cacher l'input de recherche à l'étape 2 */
        }
        .home-search-inputs-group .city-autocomplete-wrapper {
            flex: none !important;
            width: 100% !important;
            min-width: 0 !important;
            max-width: 100% !important;
        }
        .home-search-inputs-group .city-autocomplete-wrapper input {
            width: 100% !important;
        }
        .home-search-bubble {
            position: absolute;
            top: 100%;
            left: 0;
            margin-left: 6px;
            margin-top: 62px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(6px);
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 0.9rem;
            color: #1d1d1f;
            white-space: nowrap;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.05);
            line-height: 1.2;
            width: auto;
            max-width: fit-content;
        }
        .home-search-bubble-text {
            display: inline-block;
        }
        .home-search-bubble-close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            color: #1d1d1f;
            font-size: 0.75rem;
            line-height: 1;
            padding: 0;
            margin: 0;
            transition: background-color 0.2s;
        }
        .home-search-bubble-close:hover {
            background: rgba(0, 0, 0, 0.2);
        }
        .home-search-suggestions {
            max-height: 185px;
        }
    }
    @media (min-width: 768px) {
        .home-search-btn-mobile {
            display: none !important; /* Toujours caché sur desktop */
        }
        .home-search-btn-desktop {
            display: inline-flex !important;
        }
        .home-search-bubble {
            position: absolute;
            top: 100%;
            left: 0;
            margin-left: 6px;
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(6px);
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 0.9rem;
            color: #1d1d1f;
            white-space: nowrap;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
            z-index: 1001;
            border: 1px solid rgba(0, 0, 0, 0.05);
            line-height: 1.2;
            width: auto;
            max-width: fit-content;
        }
        .home-search-bubble-text {
            display: inline-block;
        }
        .home-search-bubble-close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            color: #1d1d1f;
            font-size: 0.75rem;
            line-height: 1;
            padding: 0;
            margin: 0;
            transition: background-color 0.2s;
        }
        .home-search-bubble-close:hover {
            background: rgba(0, 0, 0, 0.2);
        }
    }
    /* Bouton Rechercher un {{ env('APP_NAME', 'Last Call Beauty') }} - Responsive */
    .btn-search-lastcall {
        background: #F9A392;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 1rem 3rem;
        font-size: 1.125rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(249, 163, 146, 0.3);
        transition: all 0.3s ease;
    }
    .btn-search-lastcall:hover {
        background: #e89382;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(249, 163, 146, 0.4);
        color: white;
    }
    @media (max-width: 767.98px) {
        .btn-search-lastcall {
            padding: 0.75rem 1.5rem;
            font-size: 0.9375rem;
        }
    }
    
    /* Animated Headline - Rotate 2 Effect */
    .cd-headline {
        font-size: inherit;
        line-height: inherit;
    }
    
    /* Préserver la taille display-3 et forcer le gras du titre hero */
    h1.cd-headline.display-3 {
        font-size: 2.5rem;
        font-weight: 650 !important;
    }
    .home-hero-content h1.cd-headline .cd-words-wrapper,
    .home-hero-content h1.cd-headline .cd-words-wrapper b,
    .home-hero-content h1.cd-headline .cd-words-wrapper b i,
    .home-hero-content h1.cd-headline .cd-words-wrapper b em,
    .home-hero-content h1.cd-headline span {
        font-weight: 650 !important;
    }
    
    @media (min-width: 768px) {
        h1.cd-headline.display-3 {
            font-size: 3rem;
        }
    }
    @media (min-width: 992px) {
        .home-hero-content h1.cd-headline.display-3 {
            font-size: 3rem !important;
        }
    }
    
    .cd-words-wrapper {
        display: inline-block;
        position: relative;
        text-align: left;
    }
    
    .cd-words-wrapper b {
        display: inline-block;
        position: absolute;
        white-space: pre;
        left: 0;
        top: 0;
        color: #1d1d1f !important;
        font-weight: inherit;
        font-size: inherit;
    }
    
    .cd-words-wrapper b i,
    .cd-words-wrapper b em {
        font-weight: inherit;
        font-size: inherit;
    }
    
    .cd-words-wrapper b.is-visible {
        position: relative;
    }
    
    .cd-headline.rotate-2 .cd-words-wrapper {
        perspective: 300px;
    }
    
    .cd-headline.rotate-2 i,
    .cd-headline.rotate-2 em {
        display: inline-block;
        backface-visibility: hidden;
        font-style: normal;
        white-space: pre;
    }
    
    .cd-headline.rotate-2 b {
        opacity: 0;
    }
    
    .cd-headline.rotate-2 i {
        transform-style: preserve-3d;
        transform: translateZ(-20px) rotateX(90deg);
        opacity: 0;
    }
    
    .is-visible .cd-headline.rotate-2 i {
        opacity: 1;
    }
    
    .cd-headline.rotate-2 i.in {
        animation: cd-rotate-2-in 0.4s forwards;
    }
    
    .cd-headline.rotate-2 i.out {
        animation: cd-rotate-2-out 0.4s forwards;
    }
    
    .cd-headline.rotate-2 em {
        transform: translateZ(20px);
        font-style: normal;
    }
    
    @keyframes cd-rotate-2-in {
        0% {
            opacity: 0;
            transform: translateZ(-20px) rotateX(90deg);
        }
        60% {
            opacity: 1;
            transform: translateZ(-20px) rotateX(-10deg);
        }
        100% {
            opacity: 1;
            transform: translateZ(-20px) rotateX(0deg);
        }
    }
    
    @keyframes cd-rotate-2-out {
        0% {
            opacity: 1;
            transform: translateZ(-20px) rotateX(0);
        }
        60% {
            opacity: 0;
            transform: translateZ(-20px) rotateX(-100deg);
        }
        100% {
            opacity: 0;
            transform: translateZ(-20px) rotateX(-90deg);
        }
    }
    
    /* LastCall Carousel Styles - Style Apple */
    .lastcall-section {
        background: #fff;
        padding: 40px 0 20px 0;
        margin: 0;
    }
    .lastcall-section-header {
        margin-bottom: 42px;
        padding: 0 20px;
    }
    @media (min-width: 1200px) {
        .lastcall-section-header {
            padding-left: 12rem;
        }
    }
    .lastcall-section-header h2 {
        font-size: 2.25rem;
        font-weight: 600;
        color: #ff927c;
        margin: 0;
        line-height: 1.1;
    }
    .lastcall-gallery {
        position: relative;
        overflow: visible;
    }
    .lastcall-scroll-container {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 20px 40px;
        transform: translateZ(0);
        will-change: scroll-position;
    }
    @media (min-width: 1200px) {
        .lastcall-scroll-container {
            padding-left: 12rem;
        }
    }
    .lastcall-scroll-container::-webkit-scrollbar {
        display: none;
    }
    .lastcall-item-container {
        display: flex;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
        width: max-content;
        transform: translateZ(0);
    }
    .lastcall-item {
        flex: 0 0 auto;
        width: 320px;
        height: 400px;
        contain: layout style paint;
    }
    .lastcall-card {
        position: relative;
        width: 100%;
        height: 100%;
        background: #1d1d1f;
        border-radius: 28px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    .lastcall-card:hover {
        transform: translateZ(0);
    }
    .lastcall-card-topic {
        position: absolute;
        top: 24px;
        left: 24px;
        z-index: 2;
        font-size: 0.875rem;
        color: #fff;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .lastcall-card-headline {
        position: relative;
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin: 0;
    }
    .lastcall-card-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: #2a2a2a;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    .lastcall-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        transform: translateZ(0);
        backface-visibility: hidden;
        will-change: auto;
    }
    .lastcall-card-image-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 1;
        pointer-events: none;
    }
    .lastcall-card-link {
        position: absolute;
        bottom: 24px;
        right: 24px;
        z-index: 2;
        padding: 12px 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.875rem;
        font-weight: 500;
        white-space: nowrap;
    }
    .lastcall-card-link:hover {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
        text-decoration: none;
    }
    /* Carte promotionnelle */
    .promo-card {
        display: flex;
        flex-direction: column;
        background: #F9A392;
    }
    .promo-card-image-wrapper {
        position: relative;
        width: 100%;
        height: 45%;
        overflow: hidden;
    }
    .promo-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .promo-card-content {
        background: #F9A392;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 50%;
        flex-shrink: 0;
        min-height: 160px;
        position: relative;
    }
    .promo-card-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #fff;
        margin: 0 0 0.5rem 0;
        line-height: 1.2;
    }
    .promo-card-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
        line-height: 1.4;
    }
    .promo-card-link {
        color: #fff;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: opacity 0.3s ease;
    }
    .promo-card-link:hover {
        opacity: 0.8;
        color: #fff;
        text-decoration: none;
    }
    .promo-card-link i {
        margin-left: 0.5rem;
        font-size: 0.75rem;
    }
    .lastcall-paddle-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 0;
        padding: 0 20px;
    }
    .lastcall-paddle-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #1d1d1f;
    }
    .lastcall-paddle-btn:hover:not(:disabled) {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.1);
    }
    .lastcall-paddle-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    .lastcall-paddle-btn svg {
        width: 20px;
        height: 20px;
    }
    @media (max-width: 767.98px) {
        .lastcall-section {
            padding: 30px 0 20px 0;
        }
        .lastcall-section-header {
            margin-bottom: 28px;
        }
        .lastcall-section-header h2 {
            font-size: 1.4rem;
        }
        .lastcall-item {
            width: 260px;
            height: 340px;
        }
        .lastcall-card-headline {
            font-size: 1.5rem;
        }
        /* Désactiver les effets de hover / sélection sur mobile pour un scroll fluide */
        .lastcall-card:hover {
            transform: translateZ(0);
        }
        .lastcall-card-link:hover {
            transform: translateZ(0);
        }
        .promo-card-title {
            font-size: 1.5rem;
        }
        .promo-card-subtitle {
            font-size: 0.9rem;
        }
        .promo-card-content {
            padding: 20px;
        }
        .lastcall-card-rating {
            margin-top: 0.25rem !important;
            padding: 2px 6px !important;
            gap: 0.15rem !important;
            font-size: 0.75rem !important;
            border-radius: 6px !important;
        }
        .lastcall-card-rating .fa-star {
            font-size: 0.7rem !important;
        }
    }
    
    /* Services Category Section - Style Apple */
    .services-category-section {
        background: #F9F5F3;
        padding: 64px 0 96px;
        margin: 2rem 0 3rem 0;
    }
    .services-category-section .container-fluid {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    .services-category-section .row {
        margin-bottom: 2rem;
    }
    .services-category-section h6 {
        margin-bottom: 1rem;
    }
    .services-category-section h3 {
        font-size: 2.5rem;
        font-weight: 600;
        color: #1d1d1f;
        margin: 0;
        line-height: 1.2;
    }
    /* Service carousel styles - same as partners page */
    .service-carousel .service-item {
        min-height: 380px;
        margin: 0.75rem;
        border-radius: 24px;
        overflow: hidden;
    }
    .service-carousel .service-item img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        margin-top: 0 !important;
    }
    .service-carousel .service-item .service-text {
        height: 100%;
    }
    .service-carousel .service-item:hover .service-text {
        height: 100%;
    }
    .service-carousel .service-item-link {
        min-height: 380px;
        text-decoration: none;
        color: inherit;
    }
    .service-carousel .service-item-link:hover {
        text-decoration: none;
        color: inherit;
    }
    .service-carousel {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .services-category-section .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* Notre univers - cartes visuelles type éditorial */
    .notre-univers-grid {
        margin-top: 1.25rem;
        margin-bottom: 0 !important;
        row-gap: 14px;
        justify-content: center;
    }
    .notre-univers-col {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .universe-item {
        height: 250px;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }
    .universe-item-link {
        display: block;
        height: 100%;
        position: relative;
        text-decoration: none;
        color: inherit;
        line-height: 0;
    }
    .universe-item-link:hover {
        text-decoration: none;
        color: inherit;
    }
    .universe-item-link::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 8%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.08) 100%);
        pointer-events: none;
    }
    .universe-item img,
    .universe-item .universe-item-img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        margin: 0 !important;
        vertical-align: bottom;
        transform: scale(1);
        transition: transform 0.45s ease;
        will-change: transform;
    }
    .universe-item:hover .universe-item-img {
        transform: scale(1.07);
    }
    .universe-item .universe-item-text {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 1.15rem 1.05rem;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        line-height: 1.2;
        pointer-events: none;
        z-index: 2;
    }
    .universe-item .universe-item-text-content {
        max-width: 95%;
    }
    .universe-item .universe-item-text h4 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff !important;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
        margin-bottom: 0.45rem;
    }
    .universe-item .universe-item-subtitle {
        margin: 0 0 0.75rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        line-height: 1.35;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    }
    .universe-item .universe-item-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.35);
        color: #fff;
        border-radius: 999px;
        padding: 0.42rem 0.82rem;
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    @media (max-width: 767.98px) {
        .notre-univers-grid {
            row-gap: 12px;
        }
        .universe-item {
            height: 210px;
        }
        .universe-item .universe-item-text h4 {
            font-size: 1.28rem;
        }
        .universe-item .universe-item-subtitle {
            font-size: 0.84rem;
            margin-bottom: 0.62rem;
        }
        .universe-item .universe-item-cta {
            font-size: 0.76rem;
            padding: 0.38rem 0.72rem;
        }
    }
    @media (min-width: 768px) {
        .notre-univers-col {
            width: 20%;
            max-width: 20%;
            flex: 0 0 20%;
        }
        .universe-item {
            height: 245px;
        }
    }
    @media (min-width: 992px) {
        .universe-item {
            height: 390px;
        }
    }
    .service-category-card {
        background: #F9F5F3;
        border-radius: 28px;
        overflow: hidden;
        transition: transform 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .service-category-card:hover {
        transform: translateY(-4px);
    }
    .service-category-image-wrapper {
        width: 100%;
        height: 300px;
        overflow: hidden;
        position: relative;
    }
    .service-category-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .service-category-content {
        padding: 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .service-category-title {
        font-size: 2rem;
        font-weight: 600;
        color: #1d1d1f;
        margin-bottom: 24px;
    }
    .service-category-cities {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 24px;
    }
    .service-city-link {
        padding: 8px 16px;
        background: rgba(249, 163, 146, 0.1);
        color: #F9A392;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid rgba(249, 163, 146, 0.2);
    }
    .service-city-link:hover {
        background: #F9A392;
        color: #fff;
        text-decoration: none;
        transform: scale(1.05);
    }
    .service-category-select {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        background: #fff;
        color: #1d1d1f;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 24px;
    }
    .service-category-select:focus {
        outline: none;
        border-color: #F9A392;
        box-shadow: 0 0 0 3px rgba(249, 163, 146, 0.1);
    }
    @media (max-width: 767.98px) {
        .services-category-section {
            padding: 64px 0;
        }
        .services-category-section .container-fluid {
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }
        .services-category-header h3 {
            font-size: 2rem;
        }
        .service-category-image-wrapper {
            height: 250px;
        }
        .service-category-title {
            font-size: 1.75rem;
        }
    }
    
    /* Comment ça marche Section - Style Apple avec scroll horizontal */
    #howItWorksScrollContainer .lastcall-item {
        width: 420px;
        height: 320px;
    }
    .how-it-works-card {
        background: linear-gradient(139deg, rgba(254, 241, 239, 1) 2%, rgba(240, 229, 240, 1) 48%, rgba(249, 163, 146, 1) 93%);
        border-radius: 20px;
        padding: 2rem 1.75rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
    }
    /* Style pour la carte "Voir plus" dans les sections lastcall */
    .lastcall-item .how-it-works-card {
        border-radius: 28px;
        height: 100%;
        width: 100%;
    }
    .how-it-works-card:hover {
        transform: none;
    }
    .how-it-works-icon {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 2.5rem;
        color: #F9A392;
    }
    .how-it-works-icon i {
        font-size: 2.5rem;
        color: #F9A392;
    }
    .how-it-works-card-title {
        font-size: 1.35rem;
        font-weight: 600;
        color: #915448;
        text-align: center;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    .how-it-works-card-text {
        font-size: 0.95rem;
        color: #915448;
        text-align: center;
        line-height: 1.5;
        flex: 1;
        margin-bottom: 1rem;
    }
    .how-it-works-btn {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        color: #000;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        font-size: 1rem;
        text-decoration: none;
    }
    .how-it-works-btn:hover {
        background: #F9A392;
        color: #fff;
        transform: scale(1.1);
        text-decoration: none;
    }
    .how-it-works-btn i {
        font-size: 0.875rem;
    }
    .promo-card .how-it-works-btn {
        position: absolute;
        bottom: 50px;
        right: 24px;
        margin-top: 0;
        align-self: flex-end;
        flex-shrink: 0;
    }
    
    /* Bouton info sur les cartes Comment ça marche - Caché pour l'instant */
    .how-it-works-btn[data-step] {
        display: none !important;
    }
    
    /* Popup Comment ça marche */
    .how-it-works-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .how-it-works-popup.show {
        display: flex;
        opacity: 1;
    }
    
    .how-it-works-popup-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .how-it-works-popup-content {
        position: relative;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 24px;
        max-width: 600px;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;
        padding: 2.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s ease;
        z-index: 1;
    }
    
    .how-it-works-popup.show .how-it-works-popup-content {
        transform: scale(1) translateY(0);
    }
    
    .how-it-works-popup-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(249, 163, 146, 0.2);
        border: none;
        color: #1d1d1f;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .how-it-works-popup-close:hover {
        background: #F9A392;
        color: #fff;
        transform: rotate(90deg);
    }
    
    .how-it-works-popup-icon {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 3rem;
        color: #F9A392;
    }
    
    .how-it-works-popup-icon i {
        font-size: 3rem;
    }
    
    .how-it-works-popup-title {
        font-size: 1.75rem;
        font-weight: 600;
        color: #1d1d1f;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .how-it-works-popup-details {
        color: #1d1d1f;
        line-height: 1.7;
    }
    
    .how-it-works-popup-details p {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .how-it-works-popup-details ul {
        list-style: none;
        padding-left: 0;
        margin: 1.5rem 0;
    }
    
    .how-it-works-popup-details ul li {
        padding: 0.75rem 0;
        padding-left: 1.5rem;
        position: relative;
        font-size: 0.95rem;
    }
    
    .how-it-works-popup-details ul li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #F9A392;
        font-weight: bold;
        font-size: 1.1rem;
    }
    
    @media (max-width: 767.98px) {
        .how-it-works-popup-content {
            padding: 2rem 1.5rem;
            max-height: 90vh;
        }
        
        .how-it-works-popup-title {
            font-size: 1.5rem;
        }
        
        .how-it-works-popup-icon {
            font-size: 2.5rem;
        }
        
        .how-it-works-info-btn {
            width: 32px;
            height: 32px;
            top: 0.75rem;
            right: 0.75rem;
        }
    }
    
    /* Popup de construction */
    .construction-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .construction-popup.show {
        display: flex;
        opacity: 1;
    }
    
    .construction-popup-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .construction-popup-content {
        position: relative;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 24px;
        max-width: 600px;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;
        padding: 2.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s ease;
        z-index: 1;
        text-align: center;
    }
    
    .construction-popup.show .construction-popup-content {
        transform: scale(1) translateY(0);
    }
    
    .construction-popup-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(249, 163, 146, 0.2);
        border: none;
        color: #1d1d1f;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .construction-popup-close:hover {
        background: #F9A392;
        color: #fff;
        transform: rotate(90deg);
    }
    
    .construction-popup-icon {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 3rem;
        color: #F9A392;
    }
    
    .construction-popup-icon i {
        font-size: 3rem;
    }
    
    .construction-popup-title {
        font-size: 1.75rem;
        font-weight: 600;
        color: #1d1d1f;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .construction-popup-text {
        font-size: 1.1rem;
        color: #86868b;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .construction-countdown {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .countdown-item {
        background: #F9F5F3;
        border-radius: 12px;
        padding: 1rem;
    }
    
    .countdown-value {
        font-size: 2rem;
        font-weight: 700;
        color: #F9A392;
        line-height: 1;
    }
    
    .countdown-label {
        font-size: 0.875rem;
        color: #86868b;
        margin-top: 0.5rem;
    }
    
    .construction-popup-btn {
        border-radius: 12px;
        padding: 0.75rem 2rem;
        font-weight: 600;
        background: #F9A392;
        border: none;
    }
    
    /* FAQ Section - Design épuré similaire à l'image */
    .faq-container {
        max-width: 900px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 0;
        padding: 0;
    }
    
    .faq-item {
        background: transparent;
        border-radius: 0;
        margin-bottom: 0;
        box-shadow: none;
        overflow: hidden;
        border-bottom: 1px solid #d3d3d3;
    }
    
    .faq-item:last-child {
        border-bottom: none;
    }
    
    .faq-question {
        width: 100%;
        padding: 1.75rem 2rem;
        background: transparent;
        border: none;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1d1d1f;
        font-family: "Poppins", sans-serif;
        outline: none;
    }
    
    .faq-question:focus {
        outline: none;
        box-shadow: none;
    }
    
    .faq-question:active {
        outline: none;
        box-shadow: none;
    }
    
    .faq-question span {
        flex: 1;
        padding-right: 1rem;
    }
    
    .faq-question i {
        color: #1d1d1f;
        font-size: 0.875rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .faq-question[aria-expanded="true"] i {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 2rem;
        background: transparent;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
        max-height: 500px;
        padding: 0 2rem 1.75rem 2rem;
    }
    
    .faq-answer p {
        margin: 0 0 1.5rem 0;
        color: #86868b;
        line-height: 1.7;
        font-size: 1rem;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
    }
    
    .faq-answer a {
        color: #1d1d1f;
        text-decoration: underline;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
        transition: color 0.2s ease;
    }
    
    .faq-answer a:hover {
        color: #F9A392;
    }
    
    @media (max-width: 767.98px) {
        .faq-question {
            padding: 1.5rem 1.25rem;
            font-size: 1rem;
        }
        
        .faq-question span {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.5;
        }
        
        .faq-question[aria-expanded="true"] span {
            display: block;
            -webkit-line-clamp: unset;
            -webkit-box-orient: unset;
            overflow: visible;
            text-overflow: unset;
        }
        
        .faq-answer {
            padding: 0 1.25rem;
        }
        
        .faq-question[aria-expanded="true"] + .faq-answer {
            padding: 0 1.25rem 1.5rem 1.25rem;
        }
        
        .faq-answer p {
            margin-bottom: 1.25rem;
        }
        
        .construction-popup {
            padding: 1rem;
        }
        
        .construction-popup-content {
            padding: 2rem 1.5rem;
            max-height: 90vh;
        }
        
        .construction-popup-title {
            font-size: 1.5rem;
        }
        
        .construction-popup-icon {
            font-size: 2.5rem;
        }
        
        .construction-popup-icon i {
            font-size: 2.5rem;
        }
        
        .construction-popup-text {
            font-size: 1rem;
        }
        
        .construction-countdown {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        
        .countdown-item {
            padding: 0.75rem;
        }
        
        .countdown-value {
            font-size: 1.5rem;
        }
        
        .countdown-label {
            font-size: 0.75rem;
        }
        
        .construction-popup-close {
            width: 36px;
            height: 36px;
            top: 0.75rem;
            right: 0.75rem;
        }
    }
    @media (max-width: 767.98px) {
        #howItWorksScrollContainer .lastcall-item {
            width: 280px;
            
            height: 300px;
        }
        .how-it-works-card--mobile-right-margin {
            margin-right: 12px;
        }
        .how-it-works-card {
            padding: 1.75rem 1.5rem;
        }
        .how-it-works-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        .how-it-works-icon i {
            font-size: 2rem;
        }
        .how-it-works-card-title {
            font-size: 1.15rem;
        }
        .how-it-works-card-text {
            font-size: 0.875rem;
        }
    }
    
    /* Section Professionnel */
    .pro-section {
        background: #F9F5F3;
        margin-bottom: 0 !important;
        padding-bottom: 3rem !important;
    }
    .pro-section .container {
        padding-bottom: 3rem !important;
    }
    .pro-section-title {
        color: #1d1d1f;
        font-weight: 600;
    }
    .pro-section-subtitle {
        color: #1d1d1f;
    }
    .pro-icon {
        color: #1d1d1f;
    }
    .pro-benefit-title {
        color: #1d1d1f;
        font-weight: 600;
    }
    .pro-benefit-text {
        color: #1d1d1f;
    }
    .pro-section .btn-primary {
        background: #1d1d1f;
        border: 1px solid #1d1d1f;
        color: #fff;
        border-radius: 30px;
    }
    .pro-section .btn-primary:hover {
        background: #000;
        border-color: #000;
        color: #fff;
    }
    @media (max-width: 767.98px) {
        .pro-section .btn-primary {
            font-size: 1rem;
            padding: 0.6rem 2.5rem;
        }
    }
    
    /* Owl Carousel Dots - Petits ronds */
    .owl-dots {
        margin-top: 20px;
    }
    .owl-dot {
        display: inline-block;
        margin: 0 4px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    .owl-dot.active {
        background: #F9A392;
        width: 8px;
        height: 8px;
    }
    .owl-dot span {
        display: none;
    }
    
    /* Bulles de recherche rapide */
    .home-search-bubbles-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 4rem;
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .home-search-bubble-item {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background-color: rgba(249, 163, 146, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid rgba(249, 163, 146, 0.4);
        border-radius: 30px;
        color: #1d1d1f;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
        opacity: 0;
        transform: scale(0.8) translateY(10px);
        cursor: pointer;
        filter: blur(2px);
    }
    
    .home-search-bubble-item.animate-in {
        filter: blur(0px);
    }
    
    .home-search-bubble-item:hover {
        background-color: rgba(249, 163, 146, 0.35);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-color: rgba(249, 163, 146, 0.6);
        transform: scale(1.05) translateY(-2px);
        color: #1d1d1f;
        text-decoration: none;
        filter: blur(0px);
    }
    
    .home-search-bubble-item.animate-in {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0px);
        animation: bubbleFadeIn 0.6s ease-out forwards;
    }
    
    @keyframes bubbleFadeIn {
        0% {
            opacity: 0;
            transform: scale(0.8) translateY(10px);
            filter: blur(5px);
        }
        60% {
            transform: scale(1.05) translateY(-2px);
            filter: blur(1px);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
            filter: blur(0px);
        }
    }
    
    @media (max-width: 767.98px) {
        .home-search-bubbles-container {
            gap: 6px;
            margin-top: 3rem;
        }
        
        .home-search-bubble-item {
            padding: 0.45rem 1rem;
            font-size: 0.75rem;
            border-width: 1.5px;
        }
    }
    
    /* Bouton Voir plus sous les bulles - Desktop uniquement, toujours en bas */
    .home-search-more-btn-container {
        display: none;
        width: 100%;
        z-index: 3;
        pointer-events: none;
        flex-shrink: 0;
        padding-bottom: 6rem;
        margin-top: auto;
    }
    
    @media (min-width: 768px) {
        .home-search-more-btn-container {
            display: flex;
            justify-content: center;
        }
        /* Hero en flex : contenu centré au-dessus, bouton toujours en bas */
        .home-hero-wrapper {
            justify-content: flex-start !important;
        }
        .home-hero-content {
            flex: 1 1 auto !important;
            min-height: 0 !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            align-items: center !important;
        }
    }
    
    .home-search-more-btn-container button {
        pointer-events: all;
    }
    
    .home-search-more-btn {
        background: transparent;
        border: 2px solid rgba(249, 163, 146, 0.4);
        color:rgba(249, 163, 146, 0.94);
        padding: 0.75rem 2rem;
        border-radius: 30px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        transform: translateY(10px);
    }
    
    .home-search-more-btn.animate-in {
        opacity: 1;
        transform: translateY(0);
        animation: buttonFadeIn 0.6s ease-out forwards;
    }
    
    @keyframes buttonFadeIn {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .home-search-more-btn:hover {
        background-color: rgba(249, 163, 146, 0.15);
        border-color: rgba(249, 163, 146, 0.6);
        transform: translateY(-2px);
    }
    
    /* Animation fade-in au scroll pour les sections */
    .fade-in-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .fade-in-on-scroll.fade-in-visible {
        opacity: 1;
        transform: translateY(0);
    }
    /* Section Témoignages Clients */
    .client-testimonial-section {
        background: #F9F5F3;
        padding: 4.5rem 0;
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
    .client-testimonial-header {
        max-width: 1000px;
        margin: 0 auto 2.5rem;
        padding: 0 20px;
        text-align: center;
    }
    .client-testimonial-header h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1d1d1f;
        margin-top: 0.75rem;
        margin-bottom: 0;
    }
    .client-testimonial-section .lastcall-gallery {
        position: relative;
        overflow: visible;
    }
    .client-testimonial-section .lastcall-scroll-container {
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 20px 40px;
    }
    .client-testimonial-section .lastcall-scroll-container::-webkit-scrollbar {
        display: none;
    }
    @media (min-width: 1200px) {
        .client-testimonial-section .lastcall-scroll-container {
            padding-left: 12rem;
        }
    }
    .client-testimonial-section .lastcall-item-container {
        display: flex;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
        width: max-content;
    }
    .client-testimonial-section .lastcall-item {
        flex: 0 0 auto;
        width: 320px;
        height: auto;
    }
    .client-testimonial-section .testimonial-card {
        background: #ffffff;
        border-radius: 28px;
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
        will-change: transform;
        border: 1px solid #eee;
    }
    .client-testimonial-section .testimonial-card:hover {
        transform: none;
    }
    .client-testimonial-section .testimonial-stars {
        color: #ffc107;
        font-size: 1.1rem;
    }
    .client-testimonial-section .testimonial-stars i {
        margin-right: 2px;
    }
    .client-testimonial-section .testimonial-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1d1d1f;
        line-height: 1.3;
    }
    .client-testimonial-section .testimonial-text {
        font-size: 0.95rem;
        color: #5b5b5b;
        line-height: 1.6;
        flex-grow: 1;
    }
    .client-testimonial-section .testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: auto;
    }
    .client-testimonial-section .testimonial-avatar {
        display: none; /* Caché pour l'instant */
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
    }
    .client-testimonial-section .testimonial-info {
        flex: 1;
    }
    .client-testimonial-section .testimonial-name {
        font-weight: 600;
        color: #1d1d1f;
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    .client-testimonial-section .testimonial-location {
        font-size: 0.85rem;
        color: #86868b;
    }
    .client-testimonial-section .lastcall-paddle-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 0;
        padding: 0 20px;
    }
    .client-testimonial-section .lastcall-paddle-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.05);
        color: #1d1d1f;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .client-testimonial-section .lastcall-paddle-btn:hover:not(:disabled) {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.1);
    }
    .client-testimonial-section .lastcall-paddle-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    .client-testimonial-section .lastcall-paddle-btn svg {
        width: 20px;
        height: 20px;
    }
    @media (max-width: 767.98px) {
        .client-testimonial-section .lastcall-item {
            width: 280px;
        }
        .client-testimonial-section .testimonial-card--mobile-right-margin {
            margin-right: 12px;
        }
        .client-testimonial-section .testimonial-card {
            transition: none;
        }
        .client-testimonial-section .testimonial-card:hover {
            transform: none;
        }
    }
