.header-top #GTranslateDesktop #GTranslate .left-topbar:first-child {
    position: relative;
    /* Nécessaire pour positionner le pseudo-élément */
}

.header-top #GTranslateDesktop #GTranslate .left-topbar:first-child::before {
    content: "";
    position: absolute;
    left: -6px;
    /* Ajuste la position à gauche de l'icéne */
    top: 50%;
    width: 2px;
    /* épaisseur de la bordure */
    height: 50%;
    /* Plus petit que l'icone */
    background-color: white !important;
    transform: translateY(-50%);
}

.header-std .logo-container-main img {
    max-width: 140px !important;
}

.fixed-header .logo-container-main img {
    max-width: 70px !important;
}

.fixed-header .header-main.transparent-header {
    background-color: #fff;
}

#header-boutique .logo-container-main img {
    border-radius: 10px;
}

.cookie-banner img {
    object-fit: contain !important;
}

.main-slider-2-title.font-dancing-script {
    font-family: 'Lato';
}

.megamenu li a {
    color: #fff;
}

.fixed-header .megamenu li a {
    color: var(--main-color);
}

/* SLIDER CSS */

/* ============================= */
/* SLIDER PRINCIPAL - NAZRA */
/* ============================= */

.main-slider-2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    background: #0d1b2a;
}

.main-slider-2 .swiper-wrapper,
.main-slider-2 .swiper-slide,
.main-slider-2-item {
    width: 100%;
    height: 100%;
}

.main-slider-2-item {
    position: relative;
    overflow: hidden;
}

/* Image du slider */
.main-slider-2-item>img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.swiper-slide-active .main-slider-2-item>img {
    transform: scale(1);
}

/* Overlay sombre premium */
.main-slider-2-item .filter {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(27, 40, 56, 0.88) 0%,
            rgba(27, 40, 56, 0.70) 54%,
            rgb(27 40 56 / 14%) 70%,
            rgb(27 40 56 / 0%) 100%)
}

/* Contenu */
.main-slider-2-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    pointer-events: none;
}

.main-slider-2-content .row {
    width: 100%;
}

.main-slider-2-content .centre {
    max-width: 760px;
    padding: 0 15px;
    pointer-events: auto;
    text-align: left;
}

/* Petit titre */
.main-slider-2-title {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #c86228;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.main-slider-2-title::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #c86228;
    display: inline-block;
}

/* Titre principal */
.main-slider-2-text {
    max-width: 720px;
    color: #ffffff;
    font-size: clamp(42px, 4.3vw, 66px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: none;
    margin-bottom: 24px;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    text-align: left;
}

/* Texte d'accompagnement */
.third-text {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.55;
    font-weight: 400;
    margin: 0px;
    text-align: left;
}

/* Boutons */
.main-slider-2-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.main-slider-2-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: none;
}

.main-slider-2-cta .btn-primary {
    background: #1b2838;
    color: #ffffff;
    border-color: #fff;
}

.main-slider-2-cta .btn-primary:hover {
    background: #c86228;
    border-color: #c86228;
    color: #fff;
    transform: translateY(-3px);
}

.main-slider-2-cta .btn-ghost-light {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
}

.main-slider-2-cta .btn-ghost-light:hover {
    background: #ffffff;
    color: #1b2838;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Animation d'entrée */
.main-slider-2-content.animate .main-slider-2-title,
.main-slider-2-content.animate .main-slider-2-text,
.main-slider-2-content.animate .third-text,
.main-slider-2-content.animate .main-slider-2-cta {
    opacity: 0;
    transform: translateY(28px);
    animation: nazraFadeUp 0.9s ease forwards;
}

.main-slider-2-content.animate .main-slider-2-title {
    animation-delay: 0.15s;
}

.main-slider-2-content.animate .main-slider-2-text {
    animation-delay: 0.30s;
}

.main-slider-2-content.animate .third-text {
    animation-delay: 0.45s;
}

.main-slider-2-content.animate .main-slider-2-cta {
    animation-delay: 0.60s;
}

@keyframes nazraFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pagination Swiper */
.swiper-pagination-main-slider-2 {
    position: absolute;
    bottom: 38px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 5;
}

.swiper-pagination-main-slider-2 .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-main-slider-2 .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 28px;
    background: #ffffff;
}

/* Fléches navigation */
.main-slider-2-navigation {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(27, 40, 56, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.main-slider-2-navigation:hover {
    background: #c86228;
    border-color: #c86228;
}

.main-slider-2-navigation:hover svg g {
    fill: #1b2838;
}

.swiper-button-prev-main-slider-2 {
    left: 32px;
}

.swiper-button-next-main-slider-2 {
    right: 32px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 58px !important;
    width: 100%;
    display: none;
    opacity: 0.75;
    z-index: 5;
    pointer-events: none;
}

.chevron {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(45deg);
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    margin-left: -5px;
}

.eins,
.zwei,
.drei {
    animation: chevron 2.5s infinite;
}

.eins {
    margin-top: 22px;
    animation-delay: 0.1s;
}

.zwei {
    margin-top: 34px;
    animation-delay: 0.5s;
}

.drei {
    margin-top: 45px;
    animation-delay: 0.9s;
}

@keyframes chevron {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-6px, -6px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(6px, 6px);
    }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media only screen and (min-width: 992px) {
    .scroll-indicator {
        display: block;
    }
}

@media only screen and (max-width: 1199px) {
    .main-slider-2 {
        min-height: 620px;
    }

    .main-slider-2-content .centre {
        max-width: 680px;
    }

    .main-slider-2-text {
        max-width: 650px;
    }
}

@media only screen and (max-width: 991px) {
    .main-slider-2 {
        height: 760px;
        min-height: 760px;
    }

    .main-slider-2-item .filter {
        background:
            linear-gradient(180deg,
                rgba(27, 40, 56, 0.82) 0%,
                rgba(27, 40, 56, 0.70) 48%,
                rgba(27, 40, 56, 0.82) 100%);
    }

    .main-slider-2-content {
        align-items: center;
        text-align: center;
    }

    .main-slider-2-content .centre {
        max-width: 100%;
        margin: 0 auto;
    }

    .main-slider-2-title {
        justify-content: center;
    }

    .main-slider-2-title::before {
        display: none;
    }

    .main-slider-2-text,
    .third-text {
        margin-left: auto;
        margin-right: auto;
    }

    .main-slider-2-cta {
        justify-content: center;
    }

    .main-slider-2-navigation {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .main-slider-2 {
        height: 680px;
        min-height: 680px;
    }

    .main-slider-2-content .centre {
        padding: 0 24px;
    }

    .main-slider-2-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .main-slider-2-text {
        font-size: clamp(36px, 11vw, 52px);
        line-height: 1.05;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .third-text {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 28px;
    }

    .main-slider-2-cta {
        flex-direction: column;
        gap: 12px;
    }

    .main-slider-2-cta .btn {
        width: 100%;
        max-width: 310px;
        min-height: 54px;
        padding: 0 22px;
    }

    .swiper-pagination-main-slider-2 {
        bottom: 24px !important;
    }

    #header-boutique .logo-container-main img {
        background-color: #fff;
    }
}

@media only screen and (max-width: 480px) {
    .main-slider-2 {
        height: 640px;
        min-height: 640px;
    }

    .main-slider-2-text {
        font-size: 38px;
    }

    .third-text {
        font-size: 15px;
    }
}

/* Section Présentation */

/* ============================= */
/* SECTION PRéSENTATION NAZRA */
/* ============================= */

.nazra-about-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 150, 75, 0.14), transparent 28%),
        radial-gradient(circle at 90% 82%, rgba(27, 40, 56, 0.12), transparent 30%),
        linear-gradient(135deg, #f8f6f1 0%, #ffffff 48%, #f1f4f7 100%);
}

.nazra-about-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(27, 40, 56, 0.06);
    z-index: 0;
}

.nazra-about-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, transparent 50%, rgba(27, 40, 56, 0.05) 50%);
    z-index: 0;
}

.nazra-about-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: center;
}

/* Partie image */
.nazra-about-visual {
    position: relative;
}

.nazra-about-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 680px;
    box-shadow: 0 35px 90px rgba(27, 40, 56, 0.18);
    background: #1b2838;
}

.nazra-about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(27, 40, 56, 0.04), rgba(27, 40, 56, 0.30)),
        linear-gradient(135deg, rgba(200, 98, 40, 0.18), transparent 45%);
    pointer-events: none;
}

.nazra-about-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.nazra-about-visual:hover img {
    transform: scale(1.07);
}

/* Forme derriére l'image */
.nazra-about-visual::before {
    content: "";
    position: absolute;
    left: -26px;
    bottom: -26px;
    width: 72%;
    height: 72%;
    border-radius: 28px;
    background: #1b2838;
    z-index: -1;
}

.nazra-about-visual::after {
    content: "";
    position: absolute;
    top: -22px;
    right: -22px;
    width: 170px;
    height: 170px;
    border-top: 3px solid #c86228;
    border-right: 3px solid #c86228;
    border-radius: 0 28px 0 0;
}

/* Badge flottant */
.nazra-about-badge {
    position: absolute;
    left: -34px;
    bottom: 56px;
    z-index: 3;
    max-width: 260px;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 55px rgba(27, 40, 56, 0.18);
}

.nazra-about-badge strong {
    display: block;
    color: #1b2838;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 8px;
}

.nazra-about-badge span {
    color: #6f7782;
    font-size: 15px;
    line-height: 1.45;
}

/* Contenu */
.nazra-about-content {
    position: relative;
}

.nazra-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #c86228;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nazra-about-tag::before {
    content: "";
    width: 46px;
    height: 2px;
    background: #c86228;
}

.nazra-about-content h2 {
    margin: 0 0 28px;
    color: #1b2838;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -1.5px;
}

.nazra-about-content h2 span {
    color: #c86228;
}

.nazra-about-lead {
    margin: 0 0 30px;
    color: #344255;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 500;
}

.nazra-about-content p {
    margin: 0 0 22px;
    color: #6d7480;
    font-size: 17px;
    line-height: 1.85;
}

.nazra-about-content strong {
    color: #1b2838;
    font-weight: 800;
}

/* Cartes de points forts */
.nazra-about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 34px 0;
}

.nazra-about-highlight {
    position: relative;
    overflow: hidden;
    padding: 22px 18px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(27, 40, 56, 0.08);
    box-shadow: 0 18px 45px rgba(27, 40, 56, 0.07);
    transition: all 0.35s ease;
}

.nazra-about-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 98, 40, 0.16), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nazra-about-highlight:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 98, 40, 0.38);
}

.nazra-about-highlight:hover::before {
    opacity: 1;
}

.nazra-about-highlight span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 10px;
    color: #c86228;
    font-size: 28px;
    font-weight: 900;
}

.nazra-about-highlight p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #1b2838;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

/* Phrase signature */
.nazra-about-signature {
    position: relative;
    margin-top: 32px;
    padding: 28px 32px;
    border-left: 4px solid #c86228;
    border-radius: 0 18px 18px 0;
    background: rgba(27, 40, 56, 0.05);
    color: #1b2838;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 850;
}

/* Boutons */
.nazra-about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.nazra-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nazra-about-btn-primary {
    background: #1b2838;
    color: #ffffff;
}

.nazra-about-btn-primary:hover {
    background: #c86228;
    color: #ffffff;
    transform: translateY(-3px);
}

.nazra-about-btn-secondary {
    color: #1b2838;
    border: 1px solid rgba(27, 40, 56, 0.22);
    background: rgba(255, 255, 255, 0.55);
}

.nazra-about-btn-secondary:hover {
    border-color: #1b2838;
    background: #ffffff;
    transform: translateY(-3px);
}

/* Responsive */
@media only screen and (max-width: 1100px) {
    .nazra-about-container {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .nazra-about-image-wrap,
    .nazra-about-image-wrap img {
        min-height: 560px;
    }

    .nazra-about-badge {
        left: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .nazra-about-section {
        padding: 80px 18px;
    }

    .nazra-about-container {
        gap: 42px;
    }

    .nazra-about-image-wrap,
    .nazra-about-image-wrap img {
        min-height: 440px;
        border-radius: 28px;
    }

    .nazra-about-visual::before,
    .nazra-about-visual::after {
        display: none;
    }

    .nazra-about-badge {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -48px 18px 0;
        max-width: none;
    }

    .nazra-about-content h2 {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .nazra-about-lead {
        font-size: 18px;
    }

    .nazra-about-content p {
        font-size: 16px;
    }

    .nazra-about-highlights {
        grid-template-columns: 1fr;
    }

    .nazra-about-signature {
        font-size: 19px;
        padding: 24px;
    }

    .nazra-about-actions {
        flex-direction: column;
    }

    .nazra-about-btn {
        width: 100%;
    }
}

/* ============================= */
/* SECTION CONSTRUCTION NAZRA */
/* ============================= */

.nazra-construction-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background:
        radial-gradient(circle at 12% 20%, rgba(200, 98, 40, 0.13), transparent 26%),
        radial-gradient(circle at 86% 74%, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(135deg, #0e1d2e 0%, #16283a 52%, #0d1725 100%);
    color: #ffffff;
}

.nazra-construction-section::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(200, 98, 40, 0.08);
    filter: blur(2px);
    z-index: 0;
}

.nazra-construction-section::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.nazra-construction-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 80px;
    align-items: center;
}

/* Contenu */
.nazra-construction-content {
    position: relative;
}

.nazra-construction-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #c86228;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nazra-construction-tag::before {
    content: "";
    width: 46px;
    height: 2px;
    background: #c86228;
}

.nazra-construction-content h2 {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -1.6px;
}

.nazra-construction-content h2 span {
    color: #c86228;
}

.nazra-construction-lead {
    max-width: 720px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.75;
}

.nazra-construction-content p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.85;
}

.nazra-construction-content strong {
    color: #ffffff;
    font-weight: 800;
}

/* Bloc texte important */
.nazra-construction-note {
    margin: 34px 0;
    padding: 26px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.nazra-construction-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
}

/* Points clés */
.nazra-construction-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 36px 0 38px;
}

.nazra-construction-step {
    position: relative;
    overflow: hidden;
    padding: 22px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: all 0.35s ease;
}

.nazra-construction-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 98, 40, 0.24), transparent 58%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nazra-construction-step:hover {
    transform: translateY(-7px);
    border-color: rgba(200, 98, 40, 0.45);
}

.nazra-construction-step:hover::before {
    opacity: 1;
}

.nazra-construction-step span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 14px;
    color: #c86228;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.nazra-construction-step p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

/* Boutons */
.nazra-construction-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nazra-construction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nazra-construction-btn-primary {
    background: #c86228;
    color: #1b2838;
    box-shadow: 0 18px 42px rgba(200, 98, 40, 0.22);
}

.nazra-construction-btn-primary:hover {
    background: #ffffff;
    color: #1b2838;
    transform: translateY(-3px);
}

.nazra-construction-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.04);
}

.nazra-construction-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.72);
    transform: translateY(-3px);
}

/* Image */
.nazra-construction-visual {
    position: relative;
}

.nazra-construction-image-card {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 45px 110px rgba(0, 0, 0, 0.34);
}

.nazra-construction-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, transparent 42%, rgba(27, 40, 56, 0.38) 100%),
        linear-gradient(135deg, rgba(200, 98, 40, 0.14), transparent 46%);
    pointer-events: none;
}

.nazra-construction-image-card img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.nazra-construction-visual:hover img {
    transform: scale(1.07);
}

/* Décor image */
.nazra-construction-visual::before {
    content: "";
    position: absolute;
    top: -26px;
    left: -26px;
    width: 52%;
    height: 52%;
    border-radius: 30px;
    border: 2px solid rgba(200, 98, 40, 0.55);
    z-index: -1;
}

.nazra-construction-visual::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -32px;
    width: 70%;
    height: 70%;
    border-radius: 30px;
    background: rgba(200, 98, 40, 0.16);
    z-index: -1;
}

/* Badge image */
.nazra-construction-badge {
    position: absolute;
    left: -34px;
    bottom: 46px;
    z-index: 3;
    width: 250px;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.nazra-construction-badge strong {
    display: block;
    margin-bottom: 8px;
    color: #1b2838;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.nazra-construction-badge span {
    display: block;
    color: #657080;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

/* Pastille haute */
.nazra-construction-mini-card {
    position: absolute;
    top: 34px;
    right: -30px;
    z-index: 3;
    padding: 16px 20px;
    border-radius: 28px;
    background: #1b2838;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.nazra-construction-mini-card span {
    display: block;
    color: #c86228;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nazra-construction-mini-card strong {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-size: 16px;
}

/* Responsive */
@media only screen and (max-width: 1180px) {
    .nazra-construction-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nazra-construction-visual {
        max-width: 780px;
        margin: 0 auto;
        width: 100%;
    }

    .nazra-construction-image-card,
    .nazra-construction-image-card img {
        min-height: 560px;
    }

    .nazra-construction-badge {
        left: 30px;
    }

    .nazra-construction-mini-card {
        right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .nazra-construction-section {
        padding: 80px 18px;
    }

    .nazra-construction-tag::before {
        width: 34px;
    }

    .nazra-construction-content h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .nazra-construction-lead {
        font-size: 18px;
    }

    .nazra-construction-content p {
        font-size: 16px;
    }

    .nazra-construction-steps {
        grid-template-columns: 1fr;
    }

    .nazra-construction-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nazra-construction-btn {
        width: 100%;
    }

    .nazra-construction-image-card,
    .nazra-construction-image-card img {
        min-height: 460px;
        border-radius: 24px;
    }

    .nazra-construction-visual::before,
    .nazra-construction-visual::after {
        display: none;
    }

    .nazra-construction-badge,
    .nazra-construction-mini-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: auto;
        margin: -42px 18px 0;
    }

    .nazra-construction-mini-card {
        margin: 18px 18px 0;
    }
}

@media only screen and (max-width: 480px) {
    .nazra-construction-content h2 {
        font-size: 32px;
    }

    .nazra-construction-image-card,
    .nazra-construction-image-card img {
        min-height: 390px;
    }
}

/* ============================= */
/* SECTION RéNOVATION - DESIGN ALTERNATIF */
/* ============================= */

.nazra-reno-alt {
    position: relative;
    overflow: hidden;
    min-height: 820px;
    padding: 120px 20px;
    background: #f6f2ea;
}

/* Grand fond décoratif */
.nazra-reno-alt::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: #1b2838;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.nazra-reno-alt::after {
    content: "RENO";
    position: absolute;
    left: 4%;
    bottom: -35px;
    color: #1b2838;
    font-size: clamp(90px, 16vw, 250px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -10px;
    z-index: 0;
}

/* Container */
.nazra-reno-alt-container {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}

/* Image en découpe */
.nazra-reno-alt-visual {
    position: relative;
    min-height: 660px;
}

.nazra-reno-alt-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0 90px 0 90px;
    box-shadow: 0 40px 100px rgba(27, 40, 56, 0.24);
}

.nazra-reno-alt-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(27, 40, 56, 0.06), rgba(27, 40, 56, 0.38)),
        linear-gradient(135deg, rgba(200, 98, 40, 0.22), transparent 48%);
}

.nazra-reno-alt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s ease;
}

.nazra-reno-alt-visual:hover img {
    transform: scale(1.06);
}

/* Bloc flottant sur image */
.nazra-reno-alt-floating {
    position: absolute;
    left: -24px;
    bottom: 42px;
    z-index: 4;
    max-width: 320px;
    padding: 26px 28px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(27, 40, 56, 0.22);
}

.nazra-reno-alt-floating span {
    display: block;
    margin-bottom: 8px;
    color: #c86228;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nazra-reno-alt-floating strong {
    display: block;
    color: #1b2838;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

/* Carte contenu */
.nazra-reno-alt-card {
    position: relative;
    padding: 58px 58px 54px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 35px 100px rgba(27, 40, 56, 0.16);
    overflow: hidden;
}

.nazra-reno-alt-card::before {
    content: "02";
    position: absolute;
    top: -22px;
    right: 34px;
    color: rgba(200, 98, 40, 0.16);
    font-size: 145px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -8px;
}

.nazra-reno-alt-tag {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 16px;
    border-radius: 50px;
    color: #1b2838;
    background: rgba(200, 98, 40, 0.18);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nazra-reno-alt-card h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 26px;
    color: #1b2838;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.nazra-reno-alt-card h2 span {
    color: #c86228;
}

.nazra-reno-alt-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: #68717e;
    font-size: 17px;
    line-height: 1.85;
}

.nazra-reno-alt-card strong {
    color: #1b2838;
    font-weight: 850;
}

/* Liste moderne */
.nazra-reno-alt-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin: 34px 0;
}

.nazra-reno-alt-list-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 18px;
    background: #f7f5ef;
    border: 1px solid rgba(27, 40, 56, 0.08);
    transition: all 0.3s ease;
}

.nazra-reno-alt-list-item:hover {
    transform: translateX(8px);
    background: #ffffff;
    border-color: rgba(200, 98, 40, 0.45);
    box-shadow: 0 16px 38px rgba(27, 40, 56, 0.08);
}

.nazra-reno-alt-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b2838;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.nazra-reno-alt-list-item div:last-child {
    color: #1b2838;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
}

/* CTA */
.nazra-reno-alt-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.nazra-reno-alt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nazra-reno-alt-btn-primary {
    color: #ffffff !important;
    background: #1b2838;
}

.nazra-reno-alt-btn-primary:hover {
    background: #c86228;
    transform: translateY(-3px);
}

.nazra-reno-alt-btn-secondary {
    color: #1b2838;
    background: transparent;
    border: 1px solid rgba(27, 40, 56, 0.22);
}

.nazra-reno-alt-btn-secondary:hover {
    background: #ffffff;
    border-color: #1b2838;
    transform: translateY(-3px);
}

/* Responsive */
@media only screen and (max-width: 1180px) {
    .nazra-reno-alt-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .nazra-reno-alt::before {
        width: 100%;
        height: 38%;
        clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%);
    }

    .nazra-reno-alt-visual {
        max-width: 820px;
        width: 100%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .nazra-reno-alt {
        padding: 80px 18px;
    }

    .nazra-reno-alt-visual {
        min-height: 480px;
    }

    .nazra-reno-alt-image {
        border-radius: 0 50px 0 50px;
    }

    .nazra-reno-alt-floating {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: none;
        margin: -42px 18px 0;
    }

    .nazra-reno-alt-card {
        padding: 42px 26px;
        border-radius: 26px;
    }

    .nazra-reno-alt-card::before {
        font-size: 100px;
        right: 18px;
    }

    .nazra-reno-alt-card h2 {
        font-size: 34px;
    }

    .nazra-reno-alt-card p {
        font-size: 16px;
    }

    .nazra-reno-alt-list-item {
        grid-template-columns: 40px 1fr;
        padding: 16px;
    }

    .nazra-reno-alt-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .nazra-reno-alt-actions {
        flex-direction: column;
    }

    .nazra-reno-alt-btn {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .nazra-reno-alt-visual {
        min-height: 400px;
    }

    .nazra-reno-alt-card h2 {
        font-size: 30px;
    }
}

/* ============================= */
/* BLOC SUIVEZ-NOUS - NAZRA */
/* ============================= */

.mainindex-192-silver-presta-icon {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    margin-bottom: 0 !important;
    background:
        radial-gradient(circle at 12% 20%, rgba(200, 98, 40, 0.18), transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.08), transparent 30%),
}

.mainindex-192-silver-presta-icon::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(200, 98, 40, 0.08);
    z-index: 0;
}

.mainindex-192-silver-presta-icon::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.mainindex-192-silver-presta-icon .container {
    position: relative;
    z-index: 1;
}

/* Titre */
.mainindex-192-silver-presta-icon .bloc-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 0 55px !important;
}

.mainindex-192-silver-presta-icon .line {
    height: 1px;
    max-width: 260px;
    background: linear-gradient(90deg, transparent, rgba(200, 98, 40, 0.6), transparent);
    flex: 1;
}

.mainindex-192-silver-presta-icon .bloc-title {
    margin: 0;
    color: #1b2838;
    font-size: clamp(34px, 4vw, 29px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: none;
    text-align: center;
}

.mainindex-192-silver-presta-icon .bloc-title sup {
    display: none;
}

/* Grille */
.mainindex-192-silver-presta-icon .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin: 0;
}

.mainindex-192-silver-presta-icon .blocPictoPresta {
    width: 100%;
    max-width: none;
    flex: none;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* Carte sociale */
.mainindex-192-silver-presta-icon .blocPictoPresta>.text-center {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 48px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.mainindex-192-silver-presta-icon .blocPictoPresta>.text-center::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(200, 98, 40, 0.22), transparent 55%),
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.12), transparent 28%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mainindex-192-silver-presta-icon .blocPictoPresta>.text-center::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(200, 98, 40, 0.25);
    transition: all 0.35s ease;
}

.mainindex-192-silver-presta-icon .blocPictoPresta>.text-center:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 98, 40, 0.46);
    background: rgba(255, 255, 255, 0.105);
}

.mainindex-192-silver-presta-icon .blocPictoPresta>.text-center:hover::before {
    opacity: 1;
}

.mainindex-192-silver-presta-icon .blocPictoPresta>.text-center:hover::after {
    transform: scale(1.25);
    border-color: rgba(200, 98, 40, 0.48);
}

/* Icénes */
.mainindex-192-silver-presta-icon .u-icon-v3 {
    position: relative;
    z-index: 1;
    width: 118px;
    height: 118px;
    margin: 0 auto 28px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 32px !important;
    background: #ffffff !important;
    color: #1b2838 !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
    transition: all 0.35s ease;
}

.mainindex-192-silver-presta-icon .u-icon-v3 div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainindex-192-silver-presta-icon .u-icon-v3 i {
    font-size: 54px;
    line-height: 1;
}

.mainindex-192-silver-presta-icon .blocPictoPresta>.text-center:hover .u-icon-v3 {
    background: #c86228 !important;
    color: #ffffff !important;
    transform: rotate(-3deg) scale(1.05);
}

/* Titres réseaux */
.mainindex-192-silver-presta-icon .titrePrestaIcon {
    position: relative;
    z-index: 1;
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.3px;
    text-transform: none;
}

.mainindex-192-silver-presta-icon .titrePrestaIcon::after {
    content: "Suivez nos projets et nos realisations";
    display: block;
    max-width: 260px;
    margin: 14px auto 0;
    color: #1b2838be;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    text-transform: none;
}

/* Bouton visuel */
.mainindex-192-silver-presta-icon .g-color-gray-dark-v4 {
    position: relative;
    z-index: 1;
    margin-top: 26px;
}

.mainindex-192-silver-presta-icon .blocPictoPresta>.text-center:hover .g-color-gray-dark-v4::before {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Masque les outils admin cassés sur le rendu */
.mainindex-192-silver-presta-icon .adminTOOLS {
    display: none !important;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .mainindex-192-silver-presta-icon {
        padding: 80px 18px;
    }

    .mainindex-192-silver-presta-icon .bloc-title-container {
        margin-bottom: 42px !important;
    }

    .mainindex-192-silver-presta-icon .line {
        max-width: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .mainindex-192-silver-presta-icon .row {
        grid-template-columns: 1fr;
    }

    .mainindex-192-silver-presta-icon .bloc-title-container {
        gap: 14px;
    }

    .mainindex-192-silver-presta-icon .line {
        display: none;
    }

    .mainindex-192-silver-presta-icon .blocPictoPresta>.text-center {
        min-height: 290px;
        padding: 42px 24px;
    }

    .mainindex-192-silver-presta-icon .u-icon-v3 {
        width: 104px;
        height: 104px;
        border-radius: 26px !important;
    }

    .mainindex-192-silver-presta-icon .u-icon-v3 i {
        font-size: 48px;
    }

    .mainindex-192-silver-presta-icon .titrePrestaIcon {
        font-size: 24px;
    }
}

/* ---------------- */
/* BLOC DIAPO CUBE */
/* ---------------- */

.mainindex-213-blocDiaporamaCubeV02 {
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 12% 20%, rgba(200, 98, 40, 0.16), transparent 28%),
        radial-gradient(circle at 86% 76%, rgba(255, 255, 255, 0.08), transparent 30%),
}

/* Forme décorative haute */
.mainindex-213-blocDiaporamaCubeV02::before {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(200, 98, 40, 0.10);
    z-index: 0;
}

/* Forme décorative basse */
.mainindex-213-blocDiaporamaCubeV02::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 0;
}

/* ============================= */
/* FAQ / ACCORDéON - NAZRA */
/* ============================= */

.mainindex-186-silver-accordionV02 {
    position: relative;
    overflow: hidden;
    padding: 110px 20px !important;
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(200, 98, 40, 0.13), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(27, 40, 56, 0.10), transparent 30%),
        linear-gradient(135deg, #f8f6f1 0%, #ffffff 48%, #eef1f4 100%) !important;
}

.mainindex-186-silver-accordionV02::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(200, 98, 40, 0.10);
    z-index: 0;
}

.mainindex-186-silver-accordionV02::after {
    content: "";
    position: absolute;
    left: -130px;
    bottom: -180px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(27, 40, 56, 0.10);
    z-index: 0;
}

.mainindex-186-silver-accordionV02 .bloc_silver_accordion {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Titre */
.mainindex-186-silver-accordionV02 .headline {
    margin-bottom: 55px;
}

.mainindex-186-silver-accordionV02 .headline h2,
.mainindex-186-silver-accordionV02 .hTitle {
    position: relative;
    max-width: 980px;
    margin: 0 auto !important;
    padding-bottom: 26px;
    color: #1b2838;
    font-size: clamp(32px, 4vw, 29px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -1.2px;
    text-align: center;
}

.mainindex-186-silver-accordionV02 .headline h2::after,
.mainindex-186-silver-accordionV02 .hTitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 82px;
    height: 4px;
    border-radius: 50px;
    background: #c86228;
    transform: translateX(-50%);
}

.mainindex-186-silver-accordionV02 .headline::after {
    content: "Retrouvez les réponses aux questions les plus fréquentes sur nos prestations, notre accompagnement et notre zone d'intervention.";
    display: block;
    max-width: 720px;
    margin: 22px auto 0;
    color: #6d7480;
    font-size: 18px;
    line-height: 1.65;
    text-align: center;
}

/* Cache les badges admin H2 / H3 */
.mainindex-186-silver-accordionV02 sup {
    display: none !important;
}

/* Accordéon */
.mainindex-186-silver-accordionV02 .u-accordion {
    display: grid;
    gap: 18px;
}

.mainindex-186-silver-accordionV02 .accordion-item {
    position: relative;
    overflow: hidden;
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border: 0 !important;
    border-radius: 22px !important;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(27, 40, 56, 0.08);
    transition: all 0.35s ease;
}

.mainindex-186-silver-accordionV02 .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 65px rgba(27, 40, 56, 0.12);
}

/* Bouton question */
.mainindex-186-silver-accordionV02 .accordion-header {
    margin: 0 !important;
}

.mainindex-186-silver-accordionV02 .accordion-button {
    position: relative;
    width: 100%;
    min-height: 78px;
    padding: 24px 72px 24px 82px !important;
    border: 0 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    color: #1b2838 !important;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 800;
    text-align: left;
    box-shadow: none !important;
    transition: all 0.35s ease;
}

/* Pastille fléche */
.mainindex-186-silver-accordionV02 .accordion-button::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 50%;
    width: 38px;
    height: 38px;
    margin: 0 !important;
    border-radius: 50%;
    background-color: rgba(200, 98, 40, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%231b2838' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    transform: translateY(-50%) rotate(0deg) !important;
    transition: all 0.35s ease;
}

/* Supprime léicéne Bootstrap par défaut si elle existe */
.mainindex-186-silver-accordionV02 .accordion-button::after {
    display: none !important;
}

/* Cache les anciennes icénes internes */
.mainindex-186-silver-accordionV02 .accordion-button span {
    display: none !important;
}

/* état ouvert */
.mainindex-186-silver-accordionV02 .accordion-button:not(.collapsed) {
    background:
        linear-gradient(135deg, #1b2838 0%, #263a50 100%) !important;
    color: #ffffff !important;
    border-radius: 22px 22px 0 0 !important;
}

.mainindex-186-silver-accordionV02 .accordion-button:not(.collapsed)::before {
    background-color: #c86228;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    transform: translateY(-50%) rotate(180deg) !important;
}

/* Corps de réponse */
.mainindex-186-silver-accordionV02 .accordion-collapse {
    background: #ffffff;
}

.mainindex-186-silver-accordionV02 .accordion-body {
    padding: 0 !important;
    border-top: 1px solid rgba(27, 40, 56, 0.08);
}

.mainindex-186-silver-accordionV02 .accordion-body .texte {
    position: relative;
    padding: 30px 38px 34px 82px;
}

.mainindex-186-silver-accordionV02 .accordion-body .texte::before {
    content: "";
    position: absolute;
    left: 42px;
    top: 36px;
    width: 4px;
    height: calc(100% - 72px);
    border-radius: 50px;
    background: #c86228;
}

.mainindex-186-silver-accordionV02 .accordion-body p {
    margin: 0 !important;
    color: #6d7480;
    font-size: 17px;
    line-height: 1.8;
}

.mainindex-186-silver-accordionV02 .accordion-body strong {
    color: #1b2838 !important;
    font-weight: 850;
}

/* Nettoyage outils admin */
.mainindex-186-silver-accordionV02 .adminTOOLS,
.mainindex-186-silver-accordionV02 .docftp {
    display: none !important;
}

/* Suppression des espacements Bootstrap génants */
.mainindex-186-silver-accordionV02 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mainindex-186-silver-accordionV02 [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .mainindex-186-silver-accordionV02 {
        padding: 85px 18px !important;
    }

    .mainindex-186-silver-accordionV02 .headline {
        margin-bottom: 42px;
    }

    .mainindex-186-silver-accordionV02 .headline::after {
        font-size: 16px;
    }

    .mainindex-186-silver-accordionV02 .accordion-button {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .mainindex-186-silver-accordionV02 {
        padding: 75px 16px !important;
    }

    .mainindex-186-silver-accordionV02 .headline h2,
    .mainindex-186-silver-accordionV02 .hTitle {
        font-size: 32px;
        letter-spacing: -0.6px;
    }

    .mainindex-186-silver-accordionV02 .accordion-button {
        min-height: auto;
        padding: 22px 24px 22px 68px !important;
        font-size: 17px;
        line-height: 1.45;
        border-radius: 18px !important;
    }

    .mainindex-186-silver-accordionV02 .accordion-button::before {
        left: 20px;
        width: 34px;
        height: 34px;
    }

    .mainindex-186-silver-accordionV02 .accordion-button:not(.collapsed) {
        border-radius: 18px 18px 0 0 !important;
    }

    .mainindex-186-silver-accordionV02 .accordion-item {
        border-radius: 18px !important;
    }

    .mainindex-186-silver-accordionV02 .accordion-body .texte {
        padding: 26px 24px 28px 48px;
    }

    .mainindex-186-silver-accordionV02 .accordion-body .texte::before {
        left: 24px;
        top: 30px;
        height: calc(100% - 60px);
    }

    .mainindex-186-silver-accordionV02 .accordion-body p {
        font-size: 16px;
    }
}

.main-slider-2-content.animate .main-slider-2-text p {
    display: unset;
    font-weight: 500;
}

.diaporamaCube {
    box-shadow: rgba(0, 0, 0, 0.22) 0px 28px 70px;
    margin-bottom: 40px;
    border-radius: 28px;
}

#formulaireV02>div>div {
    background: #00000078;
    border-radius: 28px;
}

#bloc-formulairev02-contact label,
#bloc-formulairev02-contact a,
#bloc-formulairev02-contact b {
    color: #fff !important;
}

#blocFormV2 i {
    color: #ffffff !important;
}

#BFW-cmsV02-217>div.texte>p>img,
#BFW-cmsV02-219>div.texte>p>img,
.blocDATEACTU img {
    border-radius: 28px !important;
}

/* FOOTER */

.footer-101-footer {
    background-color: rgb(29 40 56) !important;
}

.logo-footer img {
    border-radius: 28px;
}

#BFW-footer-101>div>div>div.bas-footer>div>div>div>ul>li>a:hover {
    color: var(--main-hover);
}