/* ==========================================================================
   GENERAL & REINITIALISATION
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000 !important;
    color: #fff;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* Style par dÃ©faut (transparent) */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent; /* Transparent au dÃ©but */
    padding: 0 17px;
    color: white;
    position: fixed;   /* header fixe */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: background-color 0.5s, box-shadow 0.5s; /* transition douce */
    box-sizing: border-box;
}

/* Style quand on scroll */
.header.scrolled {
    background-color: #bd9a5a1c; /* noir translucide */
    box-shadow: 0 2px 5px #bd9a5a1c ; /* ligne/bordure en bas */
}

/* Logo */
.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .logo img {
    height: 85px;
}

.header .logo span {
    font-size: 22px;
    font-weight: bold;
}

/* Menu */
.header .menu {
    display: flex;
    gap: 20px;
    margin-left: auto;
    align-items: center;
}

.header .menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
}

.header .menu a:hover {
    color: #bd9a5a;
}

/* Bouton Appeler */
.header .call-button {
   background: linear-gradient(135deg, #bd9a5a, #775f35);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-left: 32px;
    margin-right: 37px;
}

.header .call-button:hover {
    background: #534224;
}

/* Style du bouton menu mobile (icÃ´ne hachÃ©e) */
.menu-button {
    display: none; /* Masquer le bouton par dÃ©faut sur PC */
}

/* Responsive Mobile pour le Header */
@media (max-width: 768px) {
    /* Masquer le bouton Appeler */
    .header .call-button {
        display: none;
    }

    /* Afficher le bouton menu (icÃ´ne) */
    .menu-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        color: #bd9a5a;
        
    }

    .hero h1 {
        font-size: 38px !important;
        margin-bottom: 25px;
    }

    .hero {
        height: 100vh;
    }

    .badge {
        padding: 10px 14px;
        font-size: 12px;
        margin-bottom: 0px;
    }

    .cta {
        padding: 16px 19px;
        font-size: 14px;
    }

    /* Cacher le menu par dÃ©faut */
    .header .menu {
        display: none;
        position: absolute;
        top: 60px; /* juste sous le header */
        right: 15px;
        flex-direction: column;
        background-color: #0a0a0a;
        padding: 10px;
        border-radius: 5px;
        gap: 15px;
        z-index: 1000;
    }

    /* Header : logo Ã  gauche, bouton menu Ã  droite */
    .header {
        justify-content: space-between; /* garde le logo Ã  gauche et le menu-button Ã  droite */
        padding: 0 15px;
    }

    .header .logo {
        flex-shrink: 0; /* pour Ã©viter que le logo se rÃ©trÃ©cisse */
    }

    .header .logo img {
        height: 67px;
    }
}


/* ==========================================================================
   HERO AVANCÉ (F45ZGF5Z4Z5F4EZ)
   ========================================================================== */
.F45ZGF5Z4Z5F4EZ_hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: #020509;
    background-image: url('/image/image.png');
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2vh 4vw;
}

.F45ZGF5Z4Z5F4EZ_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000000 0%, #000000 40%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0) 90%),
                linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0.75) 15%, rgba(2, 5, 9, 0) 50%);
    z-index: 1;
}

.F45ZGF5Z4Z5F4EZ_wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 4vh);
}

.F45ZGF5Z4Z5F4EZ_main {
    max-width: 555px;
    margin-top: 16vh;
}

.F45ZGF5Z4Z5F4EZ_tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 8px;
}

.F45ZGF5Z4Z5F4EZ_tag .F45ZGF5Z4Z5F4EZ_line {
    height: 1px;
    flex-grow: 1;
    max-width: 50px;
    background: #bd9a5a;
}

.F45ZGF5Z4Z5F4EZ_tag span {
    background: linear-gradient(180deg, #b98525, #EDD08E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.F45ZGF5Z4Z5F4EZ_title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.F45ZGF5Z4Z5F4EZ_title .F45ZGF5Z4Z5F4EZ_accent {
    background: linear-gradient(180deg, #b98525, #EDD08E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.F45ZGF5Z4Z5F4EZ_glow {
    position: relative;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(209, 182, 120, 0) 0%, #d1b678 50%, rgba(209, 182, 120, 0) 100%);
    margin: 18px 0 22px;
}

.F45ZGF5Z4Z5F4EZ_glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 8px;
    background: #d1b67887;
    filter: blur(5px);
    border-radius: 50%;
}

.F45ZGF5Z4Z5F4EZ_services {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 22px;
}

.F45ZGF5Z4Z5F4EZ_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.F45ZGF5Z4Z5F4EZ_card .F45ZGF5Z4Z5F4EZ_icon {
    width: 42px;
    height: 42px;
    border: 1px solid #d1b67887;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1b678;
    font-size: 1.1rem;
    margin-bottom: 8px;
    background: rgba(209, 182, 120, 0.08);
    box-shadow: inset 0 0 8px rgba(209, 182, 120, 0.2);
}

.F45ZGF5Z4Z5F4EZ_card span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.1;
}

.F45ZGF5Z4Z5F4EZ_loc {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #d1b67866;
    background: #d1b67817;
    padding: 10px 18px;
    border-radius: 25px;
    margin-bottom: 22px;
}

.F45ZGF5Z4Z5F4EZ_loc .F45ZGF5Z4Z5F4EZ_pin {
    background-color: #d1b67857;
    color: #d1b678;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.F45ZGF5Z4Z5F4EZ_loc .F45ZGF5Z4Z5F4EZ_loc_info strong {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 700;
    display: block;
}

.F45ZGF5Z4Z5F4EZ_loc .F45ZGF5Z4Z5F4EZ_loc_info p {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 2px;
}

.F45ZGF5Z4Z5F4EZ_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, #d1b678 0%, #9a978e 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px #d1b67857;
    text-transform: uppercase;
}

.F45ZGF5Z4Z5F4EZ_cta i {
    font-size: 1rem;
}

.F45ZGF5Z4Z5F4EZ_footer {
    margin-top: auto;
    padding-top: 15px;
}

.F45ZGF5Z4Z5F4EZ_bottom_bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 15px;
}

.F45ZGF5Z4Z5F4EZ_feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.F45ZGF5Z4Z5F4EZ_feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.F45ZGF5Z4Z5F4EZ_feature i {
    font-size: 1.5rem;
    color: #d1b678;
}

.F45ZGF5Z4Z5F4EZ_feature div {
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    text-transform: uppercase;
}

.F45ZGF5Z4Z5F4EZ_reviews {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.F45ZGF5Z4Z5F4EZ_reviews .F45ZGF5Z4Z5F4EZ_stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-right: 6px;
}

.F45ZGF5Z4Z5F4EZ_reviews strong {
    color: #ffffff;
}

@media (max-width: 768px) {
    .F45ZGF5Z4Z5F4EZ_hero {
        padding: 40px 16px 20px 16px;
    }

    .F45ZGF5Z4Z5F4EZ_overlay {
        background: linear-gradient(0deg, #000000 0%, rgb(0 0 0 / 90%) 30%, rgba(2, 5, 9, 0) 70%), 
                    linear-gradient(180deg, rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 95%) 100%);
    }

    .F45ZGF5Z4Z5F4EZ_main {
        margin-top: 21vh;
    }

    .F45ZGF5Z4Z5F4EZ_services {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .F45ZGF5Z4Z5F4EZ_card span {
        font-size: 0.65rem;
    }

    .F45ZGF5Z4Z5F4EZ_cta {
        width: 100%;
    }

    .F45ZGF5Z4Z5F4EZ_feature {
        flex-direction: column;
        text-align: center;
    }

    .F45ZGF5Z4Z5F4EZ_feature div {
        font-size: 0.55rem;
    }
}

/* ==========================================================================
   3EME SECTION : TARIFS ET SHINE EFFECT
   ========================================================================== */
.about-cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(189, 154, 90, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine-effect 4s infinite ease-in-out;
}

@keyframes shine-effect {
    0% { left: -150%; }
    30% { left: 150%; } 
    100% { left: 150%; } 
}

.pricing3-bg {
    width: 100%;
    background: radial-gradient(circle at center, #d1b67830, transparent 40%), 
                linear-gradient(180deg, #000000, #000);
}

.pricing3-section {
    max-width: 1200px;
    margin: auto;
    padding: 163px 20px;
    color: #fff;
    font-family: Inter, system-ui, sans-serif;
}

.pricing3-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing3-subtitle {
    color: #d1b678;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.pricing3-header h2 {
    font-size: 42px;
    margin: 0;
}

.pricing3-header h2 span {
    color: #d1b678;
}

.pricing3-header p {
    color: #b5b5b5;
    margin-top: 10px;
}

.pricing3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing3-card {
    background: linear-gradient(180deg, #1c1c1c00, #bd9a5a2b);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid rgba(189, 154, 90, 0.3);
    overflow: hidden;
}

.pricing3-card:hover {
    transform: translateY(-6px);
}

.pricing3-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(209, 182, 120, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine-effect 5s infinite ease-in-out;
    pointer-events: none;
}

.pricing3-icon {
    width: 60px;
    height: 60px;
    background: #d1b6783d !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pricing3-price {
    color: #d1b678;
    font-size: 35px;
    font-weight: 700;
    margin: 12px 0 24px;
}

.pricing3-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.pricing3-list li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    font-size: 14px;
}

.pricing3-list li::before {
    content: "✔";
    color: #d1b678;
    position: absolute;
    left: 0;
}

/* Modifié pour supporter un rendu sous forme de lien <a> tout en conservant le style bouton */
.pricing3-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    margin-top: auto;
}

.pricing3-btn-primary {
    background: linear-gradient(135deg, #bd9a5a, #775f35);
    color: #fff;
}

.pricing3-btn-outline {
    background: transparent;
    border: 1px solid #d1b678;
    color: #fff;
}

.pricing3-featured {
    outline: 2px solid #d1b678;
}

.pricing3-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #bd9a5a, #775f35);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.pricing3-icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .pricing3-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 40px 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .pricing3-card {
        flex: 4 0 96%;
        scroll-snap-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 20px;
        padding: 32px;
        position: relative;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }

    .pricing3-grid::-webkit-scroll-snap-align {
        scroll-snap-align: center;
    }

    .pricing3-card:focus,
    .pricing3-card:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    }

    .pricing3-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing3-icon {
        width: 70px;
        height: 70px;
    }

    .pricing3-price {
        font-size: 30px;
    }

    .pricing3-header h2 {
        font-size: 28px;
    }

    .pricing3-list li {
        font-size: 13px;
    }

    .pricing3-btn {
        font-size: 14px;
        padding: 12px;
    }
}

/* ==========================================================================
   4EME SECTION : OPTIONS ET ALERTE
   ========================================================================== */
.wrapper {
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 73vh;
    background: black;
    padding: 20px;
}

.lang {
    font-size: 44px;
    font-weight: bold;
    color: #bd9a5a;
    margin-bottom: 30px;
}

.card {
    background: linear-gradient(180deg, #1c1c1c00, #bd9a5a2b);
    border-radius: 14px;
    width: 100%;
    max-width: 754px;
    margin: 0 auto;
    padding: 34px 40px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(189, 154, 90, 0.3);
}

.card h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.card h2 span {
    color: #2da8ff;
}

.divider {
    margin: 15px 0 25px;
    height: 1px;
    background: rgb(255, 255, 255);
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.option:last-child {
    border-bottom: none;
}

.sub-text {
    font-size: 12px;
    color: #ff3b3b;
    margin-left: 8px;
    font-weight: 500;
}

.price {
    background: linear-gradient(135deg, #bd9a5a, #775f35);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.alert-banner {
    position: relative;
    margin: 49px auto 49px;
    width: fit-content;
    max-width: 90%;
    background: linear-gradient(180deg, #8b0000, #5a0000);
    border-radius: 999px;
    padding: 18px 30px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

.alert-icon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #00000000;
    padding: 4px;
    border-radius: 50%;
}

.alert-text {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

@media (max-width: 768px) {
    .wrapper {
        min-height: 100vh;
        height: auto;
        padding: 40px 16px;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .lang {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 25px;
        background: linear-gradient(90deg, #bd9a5a, #ffdea1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        word-break: break-word;
    }

    .card {
        width: 100%;
        max-width: 100%;
        padding: 24px 18px;
        border-radius: 20px;
        background: linear-gradient(180deg, #1c1c1c00, #bd9a5a2b);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(189, 154, 90, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                    inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .card h2 {
        font-size: 17px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .card h2 span {
        background: linear-gradient(90deg, #2da8ff, #5ac8ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .divider {
        margin: 20px 0 25px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    }

    .option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.2s ease;
        flex-direction: column;
        gap: 10px;
    }

    .option:last-child {
        border-bottom: none;
    }

    .option span:first-child {
        font-weight: 500;
        opacity: 0.92;
    }

    .price {
        font-size: 13px;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 999px;
        letter-spacing: 0.5px;
    }

    .option:hover {
        padding-left: 0;
    }

    .option:active {
        transform: scale(0.97);
        opacity: 0.8;
    }

    .alert-banner {
        margin: 25px auto;
        padding: 18px 16px;
        border-radius: 999px;
        gap: 10px;
        width: 100%;
    }

    .alert-icon {
        font-size: 20px;
    }

    .alert-text {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* ==========================================================================
   5EME SECTION : CARROUSEL AVANCÉ
   ========================================================================== */

        /* EN-TÊTE ET TITRES */
        .text-top-container {
            text-align: center;
            padding: 30px 20px 20px 20px;
            background-color: transparent;
            margin-bottom: 10px;
        }

        .subtitle-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: #e5c182;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .text-top-container h2 { 
            font-size: 36px; 
            font-weight: 800; 
            margin: 0;
            color: #ffffff;
        }

        .text-top-container h1 {
            font-size: 56px;
            font-weight: 900;
            margin: 6px 0 0 0;
            background: linear-gradient(180deg, #e5c182 40%, #fffefd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* CARROUSEL PRINCIPAL */
        .carousel-container {
           position: relative;
    width: 93%;
    height: 70vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background-color: #000000;
    border: 2px solid rgba(189, 154, 90, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    text-align: center;
        }

        .carousel-stage {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* DIAPOSITIVES */
        .carousel-slide {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: row; 
            width: 100%;
            height: 100%;
            z-index: 1;
            background-color: #000000;
            transform: translate3d(100%, 0, 0); 
            will-change: transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .carousel-slide.active {
            transform: translate3d(0, 0, 0); 
            z-index: 2;
        }

        /* ANIMATIONS DE SORTIE / ENTRÉE */
        .carousel-slide.exit-left { transform: translate3d(-100%, 0, 0); }
        .carousel-slide.exit-right { transform: translate3d(100%, 0, 0); }
        .carousel-slide.exit-top { transform: translate3d(0, -100%, 0); }
        .carousel-slide.exit-bottom { transform: translate3d(0, 100%, 0); }

        .carousel-slide img {
            width: 50%;
            height: 100%;
            object-fit: cover; 
            object-position: center;
            pointer-events: none;
            user-select: none;
        }

        /* LIGNE DE SÉPARATION AVANT / APRÈS */
        .carousel-slide::after {
            content: '';
            position: absolute;
            background: rgba(229, 193, 130, 0.6);
            box-shadow: 0 0 10px rgba(229, 193, 130, 0.8);
            z-index: 3;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            transform: translateX(-50%);
        }

        .carousel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
            z-index: 4;
            pointer-events: none;
        }

        /* MINIATURES */
        .thumbs-wrapper {
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        .thumbs-container {
            display: flex;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow-x: auto;
            max-width: 93%;
            scrollbar-width: thin;
            scrollbar-color: #e5c182 rgba(255, 255, 255, 0.05);
        }

        .thumb-item {
            display: flex;
            flex-direction: row;
            min-width: 90px;
            height: 55px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            opacity: 0.35;
            will-change: transform, opacity;
            transition: all 0.3s ease;
            position: relative;
        }

        .thumb-item img {
            width: 50%;
            height: 100%;
            object-fit: cover;
        }

        .thumb-item.active, 
        .thumb-item:hover {
            border-color: #e5c182;
            opacity: 1;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 6px 15px rgba(229, 193, 130, 0.3);
        }

        /* RESPONSIVE MOBILE */
        @media (max-width: 768px) {
            .text-top-container { padding: 20px 15px 10px 15px; }
            .text-top-container h2 { font-size: 22px; }
            .text-top-container h1 { font-size: 32px; }
            .subtitle-tag { font-size: 11px; letter-spacing: 2px; }

            .carousel-container { height: 55vh; }

            .carousel-slide {
                flex-direction: column; 
                transform: translate3d(0, 100%, 0);
            }

            .carousel-slide img {
                width: 100%;
                height: 50%; 
            }

            .carousel-slide::after {
                top: 50%;
                left: 0;
                right: 0;
                width: 100%;
                height: 2px;
                transform: translateY(-50%);
            }

            .thumb-item {
                flex-direction: column;
                min-width: 65px;
                height: 60px;
            }
            
            .thumb-item img {
                width: 100%;
                height: 50%;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
/* ==========================================================================
   FOOTER MAIN
   ========================================================================== */
.footer {
    background-color: rgba(189, 154, 90, 0.11);
    color: #fff;
    padding: 60px 20px 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-top: 1px solid rgba(189, 154, 90, 0.3);
    border-left: 1px solid rgba(189, 154, 90, 0.15);
    border-right: 1px solid rgba(189, 154, 90, 0.15);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: translateY(-3px) scale(1.05);
}

.footer-col h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    color: #bd9a5a;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #bd9a5a;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: #a0a0a0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }
}