﻿:root {
    --home-dark: #153d38;
    --home-green: #2f6e59;
    --home-green-hover: #255846;
    --home-light-green: #e7f0e9;
    --home-soft-green: #f3f7f3;
    --home-cream: #fbf8f1;
    --home-text: #183642;
    --home-muted: #5c6b6d;
    --home-pink: #ffdce2;
    --home-orange: #ffe5c3;
    --home-border: rgba(26, 81, 67, .10);
}




/* =========================================================
   NAVIGATION
   ========================================================= */

.FlexiNav {
    position: relative;
    z-index: 1000;
    width: 100%;
    min-height: 86px;
    padding: 9px 34px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--layout-border);
    box-shadow: 0 4px 18px rgba(25, 65, 53, 0.05);
}


/* =========================================================
   GAUCHE
   ========================================================= */

.nav-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}


.nav-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    text-decoration: none;
}


    .nav-logo img {
        display: block;
        width: 60px;
        height: 60px;
        object-fit: contain;
        transition: transform .2s ease, opacity .2s ease;
    }


    .nav-logo:hover img {
        transform: scale(1.04);
    }


/* =========================================================
   NOM DU SITE
   ========================================================= */

.nav-brand {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none;
    line-height: 1.15;
}


    .nav-brand strong {
        display: block;
        max-width: 220px;
        overflow: hidden;
        color: var(--layout-green-dark);
        font-size: 1rem;
        font-weight: 700;
        white-space: nowrap;
        text-overflow: ellipsis;
        transition: color .2s ease;
    }


    .nav-brand span {
        display: block;
        margin-top: 4px;
        color: #6f9185;
        font-size: .76rem;
        font-weight: 500;
        letter-spacing: .45px;
    }


    .nav-brand:hover strong {
        color: var(--layout-green);
    }


/* =========================================================
   CENTRE
   ========================================================= */

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    white-space: nowrap;
}


    .nav-center a {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        color: #263d37;
        font-size: .88rem;
        font-weight: 600;
        text-decoration: none;
        transition: color .2s ease;
    }


        .nav-center a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 3px;
            width: 0;
            height: 2px;
            transform: translateX(-50%);
            border-radius: 10px;
            background: var(--layout-green);
            transition: width .2s ease;
        }


        .nav-center a:hover {
            color: var(--layout-green);
        }


            .nav-center a:hover::after {
                width: 28px;
            }


/* =========================================================
   DROITE
   ========================================================= */

.nav-right {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}


/* =========================================================
   NOTIFICATIONS
   ========================================================= */

.nav-message-button {
    position: relative;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--layout-green-dark);
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}


    .nav-message-button:hover {
        color: var(--layout-green);
        background: var(--layout-green-soft);
    }


    .nav-message-button > i {
        font-size: 1rem;
    }


.nav-message-count {
    position: absolute;
    top: -1px;
    right: -1px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--layout-green);
    color: #ffffff;
    font-size: .56rem;
    font-weight: 800;
    line-height: 1;
}


/* =========================================================
   LOGIN
   ========================================================= */

.btn-login-nav {
    min-height: 44px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient( 135deg, #3f7e68, #2f6e59 );
    color: #ffffff;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(38, 102, 81, .16);
    transition: transform .2s ease, box-shadow .2s ease;
}


    .btn-login-nav:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(38, 102, 81, .24);
    }


/* =========================================================
   USER BUTTON
   ========================================================= */

.user-avatar-btn {
    max-width: 220px;
    min-height: 48px;
    padding: 4px 10px 4px 5px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(30, 83, 66, .12);
    border-radius: 28px;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(23, 66, 53, .07);
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}


    .user-avatar-btn:hover {
        transform: translateY(-1px);
        border-color: rgba(30, 83, 66, .24);
        box-shadow: 0 8px 20px rgba(23, 66, 53, .11);
    }


    .user-avatar-btn::after {
        display: none !important;
    }


.user-avatar-nav {
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dce9e0;
}


.user-name-nav {
    min-width: 0;
    max-width: 125px;
    overflow: hidden;
    color: var(--layout-green-dark);
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.user-avatar-btn > i {
    flex: 0 0 auto;
    color: var(--layout-green);
    font-size: .68rem;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.nav-user-menu {
    min-width: 230px;
    margin-top: 10px !important;
    padding: 8px;
    border: 1px solid rgba(29, 80, 64, .10);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(22, 59, 48, .15);
}


    .nav-user-menu .dropdown-header {
        padding: 10px 12px 12px;
        color: var(--layout-green-dark);
        font-weight: 700;
    }


    .nav-user-menu .dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 9px;
        color: #304842;
        font-size: .88rem;
        transition: background .15s ease, color .15s ease;
    }


        .nav-user-menu .dropdown-item i {
            width: 18px;
            color: var(--layout-green);
            text-align: center;
        }


        .nav-user-menu .dropdown-item:hover {
            color: var(--layout-green-dark);
            background: #eef5f0;
        }


    .nav-user-menu .dropdown-divider {
        margin: 6px 0;
        border-color: rgba(25, 76, 62, .09);
    }


    .nav-user-menu .nav-logout,
    .nav-user-menu .nav-logout i {
        color: #c84e4e !important;
    }


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1150px) {

    .FlexiNav {
        grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
        padding-left: 24px;
        padding-right: 24px;
    }


    .nav-center {
        gap: 20px;
    }


        .nav-center a {
            font-size: .80rem;
        }


    .nav-brand strong {
        max-width: 170px;
    }
}


/* =========================================================
   PETITE TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    .FlexiNav {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 78px;
        padding: 8px 18px;
    }


    .nav-center {
        display: none;
    }


    .nav-left {
        min-width: 0;
    }


    .nav-logo img {
        width: 52px;
        height: 52px;
    }


    .nav-right {
        grid-column: 2;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .FlexiNav {
        padding: 7px 12px;
    }


    .nav-logo img {
        width: 46px;
        height: 46px;
    }


    .nav-brand strong {
        max-width: 135px;
        font-size: .88rem;
    }


    .nav-brand span {
        font-size: .67rem;
    }


    .user-name-nav {
        display: none;
    }


    .user-avatar-btn {
        padding: 3px;
    }


        .user-avatar-btn > i {
            display: none;
        }


    .nav-message-button {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}


/* =========================================================
   TRES PETIT MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .nav-brand {
        display: none;
    }


    .nav-logo img {
        width: 43px;
        height: 43px;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    width: 100%;
    margin: 0;
    background: linear-gradient( 135deg, #194f43 0%, #286553 55%, #215849 100% );
    color: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}


    /* petit effet décoratif */

    .site-footer::before {
        content: "";
        position: absolute;
        top: -140px;
        left: -120px;
        width: 330px;
        height: 330px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.025);
        pointer-events: none;
    }


    .site-footer::after {
        content: "";
        position: absolute;
        right: -130px;
        bottom: -170px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.025);
        pointer-events: none;
    }


/* =========================================================
   CONTENEUR FOOTER
   ========================================================= */

.footer-container {
    position: relative;
    z-index: 1;
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
    padding: 65px 0 55px;
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.85fr 1.2fr 1.15fr;
    gap: 45px;
}


/* =========================================================
   MARQUE FOOTER
   ========================================================= */

.footer-brand h4 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 650;
}


.footer-brand p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 0.91rem;
}


    .footer-brand p:first-of-type {
        color: #d8eadf;
        font-weight: 600;
    }


.footer-brand i {
    width: 20px;
    margin-right: 5px;
    color: #bcd7c7;
}


/* =========================================================
   COLONNES
   ========================================================= */

.footer-column {
    min-width: 0;
}


    .footer-column h5 {
        position: relative;
        margin: 0 0 22px;
        padding-bottom: 12px;
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.3px;
    }


        .footer-column h5::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 34px;
            height: 2px;
            border-radius: 10px;
            background: #9fc9ad;
        }


    /* =========================================================
   LIENS FOOTER
   ========================================================= */

    .footer-column > a {
        position: relative;
        display: block;
        width: fit-content;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.74);
        font-size: 0.9rem;
        text-decoration: none;
        line-height: 1.5;
        transition: color 0.2s ease, transform 0.2s ease;
    }


        .footer-column > a::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: #c7dfcf;
            transition: width 0.25s ease;
        }


        .footer-column > a:hover {
            color: #ffffff;
            transform: translateX(3px);
        }


            .footer-column > a:hover::before {
                width: 100%;
            }


    /* =========================================================
   CONTACT FOOTER
   ========================================================= */

    .footer-column > p {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 14px;
        color: rgba(255, 255, 255, 0.74);
        font-size: 0.89rem;
        line-height: 1.55;
        word-break: break-word;
    }


        .footer-column > p i {
            flex: 0 0 18px;
            width: 18px;
            margin-top: 4px;
            color: #c0dcca;
            text-align: center;
        }


/* =========================================================
   HORAIRES
   ========================================================= */

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


    .footer-hours-list p {
        display: grid;
        grid-template-columns: 18px minmax(80px, 1fr) auto;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding-bottom: 7px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        color: rgba(255, 255, 255, 0.74);
        font-size: 0.86rem;
    }


        .footer-hours-list p:last-child {
            border-bottom: 0;
        }


    .footer-hours-list i {
        color: #c0dcca;
        font-size: 0.82rem;
    }


.footer-hour-day {
    color: rgba(255, 255, 255, 0.90);
    font-weight: 600;
}


/* =========================================================
   BAS DU FOOTER
   ========================================================= */

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 19px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(8, 42, 34, 0.25);
    color: rgba(255, 255, 255, 0.63);
    text-align: center;
    font-size: 0.83rem;
    line-height: 1.7;
}


    .footer-bottom a {
        margin-left: 8px;
        color: #d1e6d8;
        text-decoration: none;
    }


        .footer-bottom a:hover {
            color: #ffffff;
            text-decoration: underline;
        }


/* =========================================================
   RESPONSIVE NAVIGATION
   ========================================================= */

@media (max-width: 900px) {

    .FlexiNav {
        padding: 9px 25px;
        min-height: 82px;
        grid-template-columns: auto 1fr auto;
        column-gap: 20px;
    }


    .nav-logo img {
        height: 56px;
        max-width: 145px;
    }


    .nav-brand-center h1 {
        font-size: 1.55rem;
    }


    .nav-brand-center p {
        font-size: 0.77rem;
        letter-spacing: 0.6px;
    }


    .btn-login-nav span {
        display: none;
    }


    .btn-login-nav {
        width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        border-radius: 50%;
    }
}


/* =========================================================
   RESPONSIVE FOOTER TABLETTE
   ========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        width: min(100% - 50px, 1100px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 55px;
    }


    .footer-brand {
        grid-column: span 2;
    }
}


/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .FlexiNav {
        padding: 8px 15px;
        grid-template-columns: auto 1fr auto;
        column-gap: 10px;
    }


    .nav-logo img {
        height: 47px;
        max-width: 105px;
    }


    .nav-brand-center {
        padding: 0 5px;
    }


        .nav-brand-center h1 {
            font-size: 1.15rem;
        }


        .nav-brand-center p {
            margin-top: 3px;
            font-size: 0.65rem;
            letter-spacing: 0.2px;
        }


    .user-avatar-nav {
        width: 38px;
        height: 38px;
    }


    .user-avatar-btn {
        padding: 3px;
    }


        .user-avatar-btn i {
            display: none;
        }


    .footer-container {
        width: min(100% - 35px, 600px);
        padding-top: 48px;
        grid-template-columns: 1fr;
        gap: 36px;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-bottom {
        padding: 18px 20px;
    }
}


/* =========================================================
   TRES PETIT MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .nav-logo img {
        height: 42px;
        max-width: 80px;
    }


    .nav-brand-center h1 {
        font-size: 1rem;
    }


    .nav-brand-center p {
        display: none;
    }


    .btn-login-nav {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }
}



.home-page {
    width: 100%;
    overflow: hidden;
    color: var(--home-text);
    background: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
}

    .home-page *,
    .home-page *::before,
    .home-page *::after {
        box-sizing: border-box;
    }

.home-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* HERO */

.home-hero {
    position: relative;
    min-height: 650px;
    background: radial-gradient(circle at 80% 20%, rgba(223, 238, 223, .9), transparent 36%), linear-gradient(120deg, #fbf9f4 0%, #f8faf6 55%, #e7f0e7 100%);
    display: flex;
    align-items: center;
}

.home-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 80px 0 120px;
}

.home-signature {
    font-size: 2.3rem;
    color: var(--home-green);
    margin-bottom: 5px;
    font-weight: 300;
    letter-spacing: -.5px;
}

    .home-signature strong {
        font-weight: 600;
        color: var(--home-dark);
    }

.home-job {
    color: #608678;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 45px;
}

.home-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;
    color: #123c48;
    font-weight: 700;
    letter-spacing: -2px;
}

    .home-hero h1 span {
        display: block;
        font-weight: 400;
        color: #527e70;
        margin-top: 8px;
    }

.home-small-line {
    width: 80px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #2f6e59, #b7c64a);
    margin: 30px 0;
}

.home-hero-description {
    max-width: 530px;
    line-height: 1.65;
    font-size: 1.25rem;
    margin-bottom: 35px;
}

.home-main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 26px;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #34775f, #2a6553);
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: 0 9px 24px rgba(35, 93, 73, .18);
}

    .home-main-button:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(35, 93, 73, .28);
    }

    .home-main-button span {
        font-size: 1.5rem;
        line-height: 1;
    }

.home-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home-hero-image img {
        width: 100%;
        max-width: 600px;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 20px 30px rgba(34, 75, 54, .08));
    }

.home-hero-wave {
    position: absolute;
    height: 120px;
    width: 110%;
    left: -5%;
    bottom: -45px;
    background: white;
    border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}


/* CITATION */

.home-quote {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 55px 0 80px;
    background: #fff;
}

    .home-quote p {
        color: #4d8272;
        font-family: Georgia, "Times New Roman", serif;
        font-style: italic;
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        margin: 0;
    }

.home-quote-decoration {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

    .home-quote-decoration span:not(.home-heart) {
        width: 80px;
        height: 1px;
        background: #b3c4b5;
    }

.home-heart {
    color: #2e705c;
    font-size: 1.4rem;
}


/* SERVICES */

.home-services {
    position: relative;
    padding: 90px 0 110px;
    background: linear-gradient(180deg, #f8faf6 0%, #fff 100%);
}

.home-section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.home-section-label {
    display: inline-block;
    font-size: .88rem;
    color: #376e5c;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
}

.home-section-title h2,
.home-priority h2,
.home-final-cta h2 {
    margin: 0;
    color: #143743;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-service-card {
    position: relative;
    z-index: 2;
    padding: 42px 35px 35px;
    border-radius: 24px;
    border: 1px solid var(--home-border);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 15px 40px rgba(41, 80, 65, .08);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .home-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 45px rgba(41, 80, 65, .14);
    }

.home-service-icon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}

.home-icon-pink {
    background: var(--home-pink);
}

.home-icon-green {
    background: #dcece2;
}

.home-icon-orange {
    background: var(--home-orange);
}

.home-service-card h3 {
    color: #173746;
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 18px;
}

.home-service-card p {
    color: var(--home-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.home-card-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--home-green);
    font-weight: 700;
    text-decoration: none;
    transition: gap .2s ease;
}

    .home-card-link:hover {
        color: var(--home-dark);
        gap: 18px;
    }


/* FEUILLES */

.home-leaf {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: .65;
    width: 180px;
}

.home-leaf-left {
    left: -20px;
    top: 180px;
}

.home-leaf-right {
    right: -20px;
    top: 200px;
    transform: scaleX(-1);
}


/* PRIORITE */

.home-priority {
    padding: 100px 0;
    background: radial-gradient(circle at 30% 50%, rgba(217, 234, 220, .8), transparent 45%), #f7f8f3;
}

.home-priority-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.home-priority-content p {
    margin: 25px 0 32px;
    max-width: 580px;
    line-height: 1.8;
    font-size: 1.06rem;
    color: #43585d;
}

.home-priority-image {
    border-radius: 60px 20px 60px 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(37, 73, 58, .15);
}

    .home-priority-image img {
        display: block;
        width: 100%;
        height: 430px;
        object-fit: cover;
    }


/* CONTACT */

.home-contact {
    padding: 50px 0;
    background: #fff;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 125px;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(38, 93, 72, .09);
    box-shadow: 0 12px 30px rgba(30, 73, 55, .08);
}

.home-contact-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    background: #166450;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.home-contact-card strong {
    display: block;
    color: #173846;
    margin-bottom: 8px;
}

.home-contact-card span,
.home-contact-card a {
    color: #4e6467;
    line-height: 1.45;
    text-decoration: none;
    word-break: break-word;
}

    .home-contact-card a:hover {
        color: var(--home-green);
    }


/* CTA FINAL */

.home-final-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 90px 0 70px;
    background: radial-gradient(circle at center, rgba(255,255,255,.85), transparent 55%), linear-gradient(180deg, #eef4ed 0%, #dce9de 100%);
}

.home-final-content {
    position: relative;
    z-index: 2;
}

.home-final-icon {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.home-final-cta p {
    color: #53686a;
    font-size: 1.05rem;
    margin: 15px 0 28px;
}

.home-public {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #42665d;
    letter-spacing: .5px;
}

    .home-public i {
        font-style: normal;
    }

.home-final-leaf {
    position: absolute;
    bottom: -30px;
    width: 240px;
    opacity: .75;
}

.home-final-leaf-left {
    left: -10px;
}

.home-final-leaf-right {
    right: -10px;
    transform: scaleX(-1);
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .home-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 900px) {

    .home-hero {
        min-height: auto;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 70px;
    }

    .home-hero-content {
        order: 1;
    }

    .home-hero-image {
        order: 2;
    }

    .home-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .home-small-line {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-image img {
        max-width: 500px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .home-priority-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-priority-content {
        text-align: center;
    }

        .home-priority-content p {
            margin-left: auto;
            margin-right: auto;
        }
}


@media (max-width: 650px) {

    .home-container {
        width: min(100% - 28px, 1180px);
    }

    .home-signature {
        font-size: 1.7rem;
    }

    .home-job {
        font-size: .95rem;
        margin-bottom: 30px;
    }

    .home-hero-grid {
        gap: 30px;
    }

    .home-hero h1 {
        letter-spacing: -1px;
    }

    .home-hero-description {
        font-size: 1.05rem;
    }

    .home-services,
    .home-priority {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .home-contact-grid {
        grid-template-columns: 1fr;
    }

    .home-contact-card {
        min-height: auto;
    }

    .home-priority-image img {
        height: 300px;
    }

    .home-leaf {
        width: 110px;
        opacity: .35;
    }

    .home-final-leaf {
        width: 150px;
        opacity: .35;
    }
}


@media (max-width: 450px) {

    .home-main-button {
        width: 100%;
        max-width: 340px;
    }

    .home-service-card {
        padding-left: 22px;
        padding-right: 22px;
    }

    .home-contact-card {
        padding: 20px;
    }
}



/* =========================================================
   AUTHENTIFICATION
   Login / Register / Lost Password / Reset Password

   Design cohérent avec la Home :
   ivoire / blanc / vert sauge / vert profond
   ========================================================= */

:root {
    --auth-dark: #153d38;
    --auth-dark-2: #12352f;
    --auth-green: #2f6e59;
    --auth-green-hover: #255846;
    --auth-green-medium: #4f8270;
    --auth-green-light: #e7f0e9;
    --auth-green-soft: #f3f7f3;
    --auth-cream: #fbf8f1;
    --auth-white: #ffffff;
    --auth-text: #183642;
    --auth-text-soft: #5c6b6d;
    --auth-muted: #82918c;
    --auth-border: rgba(26, 81, 67, 0.12);
    --auth-border-medium: rgba(26, 81, 67, 0.22);
    --auth-danger: #d64c5b;
    --auth-danger-soft: #fff0f1;
    --auth-success: #2f835f;
    --auth-success-soft: #edf8f2;
    --auth-warning: #a96f24;
    --auth-warning-soft: #fff7e8;
    --auth-shadow: 0 24px 65px rgba(31, 75, 59, 0.14);
}


/* =========================================================
   PAGE COMPLETE
   ========================================================= */

.auth-page-pro {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 24px 55px;
    overflow: hidden;
    color: var(--auth-text);
    background: radial-gradient( circle at 82% 18%, rgba(218, 234, 221, .95), transparent 34% ), radial-gradient( circle at 15% 85%, rgba(232, 240, 232, .85), transparent 32% ), linear-gradient( 120deg, #fbf9f4 0%, #f8faf6 55%, #e7f0e7 100% );
}


    /* =========================================================
   DECORATIONS DU FOND
   ========================================================= */

    .auth-page-pro::before {
        content: "";
        position: absolute;
        width: 560px;
        height: 560px;
        top: -320px;
        left: -220px;
        border: 1px solid rgba(47, 110, 89, .10);
        border-radius: 44% 56% 65% 35%;
        transform: rotate(25deg);
        pointer-events: none;
    }


    .auth-page-pro::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -260px;
        bottom: -290px;
        border: 1px solid rgba(47, 110, 89, .10);
        border-radius: 56% 44% 37% 63%;
        transform: rotate(-20deg);
        pointer-events: none;
    }


/* =========================================================
   CONTENEUR LOGIN / REGISTER
   ========================================================= */

.auth-shell {
    position: relative;
    z-index: 2;
    width: min(1040px, 100%);
    min-height: 690px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--auth-border);
    border-radius: 32px;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--auth-shadow);
}


/* =========================================================
   PANNEAU VERT MOBILE
   ========================================================= */

.auth-glow-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    z-index: 1;
    background: radial-gradient( circle at 20% 18%, rgba(255, 255, 255, .12), transparent 30% ), radial-gradient( circle at 85% 85%, rgba(181, 212, 190, .10), transparent 28% ), linear-gradient( 145deg, #3f7c66 0%, #2f6e59 48%, #1d4f42 100% );
    border-right: 2px solid rgba(112, 166, 142, .72);
    border-radius: 0 125px 125px 0;
    box-shadow: 12px 0 35px rgba(28, 83, 64, .12);
    transition: transform .65s cubic-bezier(.77, 0, .18, 1), border-radius .65s ease, border .65s ease;
}


.auth-shell.login-active .auth-glow-panel {
    transform: translateX(0);
    border-radius: 0 125px 125px 0;
    border-left: 0;
    border-right: 2px solid rgba(112, 166, 142, .72);
}


.auth-shell.register-active .auth-glow-panel {
    transform: translateX(100%);
    border-radius: 125px 0 0 125px;
    border-right: 0;
    border-left: 2px solid rgba(112, 166, 142, .72);
}


/* =========================================================
   COLONNES
   ========================================================= */

.auth-side {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 52px 54px 64px;
    transition: opacity .45s ease, filter .45s ease, transform .45s ease, color .45s ease;
}


.auth-login {
    grid-column: 1;
}


.auth-register {
    grid-column: 2;
}


/* =========================================================
   PANNEAU ACTIF / INACTIF
   ========================================================= */

.auth-shell.login-active .auth-login,
.auth-shell.register-active .auth-register {
    opacity: 1;
    filter: none;
    pointer-events: auto;
    color: #ffffff;
}


.auth-shell.login-active .auth-register,
.auth-shell.register-active .auth-login {
    opacity: .27;
    filter: blur(1px);
    pointer-events: none;
    color: var(--auth-text);
}


/* =========================================================
   TITRES
   ========================================================= */

.auth-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 27px;
}


.auth-title-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.12rem;
    transition: background .45s ease, color .45s ease, border-color .45s ease;
}


/* TITRE DU PANNEAU ACTIF */

.auth-shell.login-active .auth-login .auth-title-icon,
.auth-shell.register-active .auth-register .auth-title-icon {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .12);
}


.auth-shell.login-active .auth-login .auth-title h2,
.auth-shell.register-active .auth-register .auth-title h2 {
    color: #ffffff;
}


.auth-shell.login-active .auth-login .auth-title p,
.auth-shell.register-active .auth-register .auth-title p {
    color: rgba(255, 255, 255, .78);
}


/* TITRE DU PANNEAU INACTIF */

.auth-shell.login-active .auth-register .auth-title-icon,
.auth-shell.register-active .auth-login .auth-title-icon {
    color: var(--auth-green);
    border: 1px solid var(--auth-border-medium);
    background: var(--auth-green-soft);
}


.auth-shell.login-active .auth-register .auth-title h2,
.auth-shell.register-active .auth-login .auth-title h2 {
    color: var(--auth-dark);
}


.auth-shell.login-active .auth-register .auth-title p,
.auth-shell.register-active .auth-login .auth-title p {
    color: var(--auth-text-soft);
}


.auth-title h2 {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.4px;
}


.auth-title p {
    margin: 5px 0 0;
    font-size: .94rem;
}


/* =========================================================
   LABELS
   ========================================================= */

.auth-side label {
    display: block;
    margin: 13px 0 8px;
    font-size: .88rem;
    font-weight: 700;
    transition: color .4s ease;
}


/* panneau actif */

.auth-shell.login-active .auth-login label,
.auth-shell.register-active .auth-register label {
    color: #ffffff;
}


/* panneau inactif */

.auth-shell.login-active .auth-register label,
.auth-shell.register-active .auth-login label {
    color: var(--auth-text);
}


/* =========================================================
   CHAMPS
   ========================================================= */

.auth-field {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 14px;
    overflow: hidden;
    border-radius: 13px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}


/* =========================================================
   CHAMPS PANNEAU ACTIF
   ========================================================= */

.auth-shell.login-active .auth-login .auth-field,
.auth-shell.register-active .auth-register .auth-field {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .20);
}


    .auth-shell.login-active .auth-login .auth-field:focus-within,
    .auth-shell.register-active .auth-register .auth-field:focus-within {
        background: rgba(255, 255, 255, .16);
        border-color: rgba(255, 255, 255, .52);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
    }


/* =========================================================
   CHAMPS PANNEAU INACTIF
   ========================================================= */

.auth-shell.login-active .auth-register .auth-field,
.auth-shell.register-active .auth-login .auth-field {
    background: #f7faf7;
    border: 1px solid var(--auth-border-medium);
}


    .auth-shell.login-active .auth-register .auth-field:focus-within,
    .auth-shell.register-active .auth-login .auth-field:focus-within {
        border-color: rgba(47, 110, 89, .55);
        box-shadow: 0 0 0 3px rgba(47, 110, 89, .09);
    }


/* =========================================================
   ICONES DES CHAMPS
   ========================================================= */

.auth-field > i {
    flex: 0 0 20px;
    width: 20px;
    text-align: center;
    font-size: .95rem;
}


.auth-shell.login-active .auth-login .auth-field > i,
.auth-shell.register-active .auth-register .auth-field > i {
    color: rgba(255, 255, 255, .85);
}


.auth-shell.login-active .auth-register .auth-field > i,
.auth-shell.register-active .auth-login .auth-field > i {
    color: var(--auth-green);
}


/* =========================================================
   INPUT
   ========================================================= */

.auth-field input {
    width: 100%;
    min-width: 0;
    padding: 15px 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: .94rem;
}


/* actif */

.auth-shell.login-active .auth-login .auth-field input,
.auth-shell.register-active .auth-register .auth-field input {
    color: #ffffff !important;
}


    .auth-shell.login-active .auth-login .auth-field input::placeholder,
    .auth-shell.register-active .auth-register .auth-field input::placeholder {
        color: rgba(255, 255, 255, .58);
        opacity: 1;
    }


/* inactif */

.auth-shell.login-active .auth-register .auth-field input,
.auth-shell.register-active .auth-login .auth-field input {
    color: var(--auth-text) !important;
}


    .auth-shell.login-active .auth-register .auth-field input::placeholder,
    .auth-shell.register-active .auth-login .auth-field input::placeholder {
        color: #8a9994;
        opacity: 1;
    }


/* =========================================================
   BOUTON OEIL
   ========================================================= */

.auth-field button {
    flex: 0 0 auto;
    padding: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}


.auth-shell.login-active .auth-login .auth-field button,
.auth-shell.register-active .auth-register .auth-field button {
    color: rgba(255, 255, 255, .73);
}


.auth-shell.login-active .auth-register .auth-field button,
.auth-shell.register-active .auth-login .auth-field button {
    color: var(--auth-green);
}


.auth-field button:hover {
    transform: scale(1.08);
}


/* =========================================================
   PRENOM / NOM
   ========================================================= */

.auth-row-pro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 15px;
}


/* =========================================================
   OPTIONS LOGIN
   ========================================================= */

.auth-options-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 15px;
    font-size: .86rem;
}


    .auth-options-pro label {
        margin: 0;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-weight: 400;
        cursor: pointer;
    }


    .auth-options-pro input[type="checkbox"] {
        accent-color: #d9eee3;
    }


/* actif */

.auth-shell.login-active .auth-login .auth-options-pro {
    color: rgba(255, 255, 255, .88);
}


    .auth-shell.login-active .auth-login .auth-options-pro a {
        color: #d9eee3;
        font-weight: 700;
        text-decoration: none;
    }


        .auth-shell.login-active .auth-login .auth-options-pro a:hover {
            color: #ffffff;
        }


/* inactif */

.auth-shell.register-active .auth-login .auth-options-pro {
    color: var(--auth-text-soft);
}


    .auth-shell.register-active .auth-login .auth-options-pro a {
        color: var(--auth-green);
    }


/* =========================================================
   BOUTON PRINCIPAL
   ========================================================= */

.auth-main-btn {
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 30px;
    background: linear-gradient( 135deg, #5c947c 0%, #3f7d66 48%, #2f6e59 100% );
    color: #ffffff;
    font-size: .96rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(29, 83, 64, .20);
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}


    .auth-main-btn:hover {
        color: #ffffff;
        transform: translateY(-2px);
        filter: brightness(1.04);
        box-shadow: 0 15px 30px rgba(29, 83, 64, .28);
    }


    .auth-main-btn:active {
        transform: translateY(0);
    }


/* bouton sur le panneau vert */

.auth-shell.login-active .auth-login .auth-main-btn,
.auth-shell.register-active .auth-register .auth-main-btn {
    background: #ffffff;
    color: var(--auth-green);
    box-shadow: 0 10px 25px rgba(15, 55, 41, .16);
}


    .auth-shell.login-active .auth-login .auth-main-btn:hover,
    .auth-shell.register-active .auth-register .auth-main-btn:hover {
        color: var(--auth-dark);
        background: #f4faf6;
    }


/* =========================================================
   BOUTON CENTRAL
   ========================================================= */

.auth-center-btn {
    position: absolute;
    z-index: 6;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: linear-gradient( 145deg, #5b957c, #2f6e59 );
    color: #ffffff;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 11px 30px rgba(31, 85, 65, .28);
    transition: transform .22s ease, box-shadow .22s ease;
}


    .auth-center-btn:hover {
        transform: translate(-50%, -50%) scale(1.06);
        box-shadow: 0 15px 36px rgba(31, 85, 65, .34);
    }


/* =========================================================
   DOTS
   ========================================================= */

.auth-dots {
    position: absolute;
    z-index: 7;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 17px;
    border: 1px solid var(--auth-border);
    border-radius: 30px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 6px 18px rgba(30, 76, 59, .10);
}


    .auth-dots .dot {
        width: 12px;
        height: 12px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #c3cec8;
        cursor: pointer;
        transition: transform .2s ease, background .2s ease;
    }


        .auth-dots .dot.active {
            background: var(--auth-green);
            transform: scale(1.08);
        }


/* =========================================================
   CIVILITE
   ========================================================= */

.gender-pro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 5px;
}


    .gender-pro label {
        min-height: 48px;
        margin: 0;
        padding: 9px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        border-radius: 12px;
        font-size: .80rem;
        cursor: pointer;
        transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }


/* actif */

.auth-shell.register-active .auth-register .gender-pro label {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .09);
}


    .auth-shell.register-active .auth-register .gender-pro label:hover {
        background: rgba(255, 255, 255, .16);
        border-color: rgba(255, 255, 255, .45);
    }


/* inactif */

.auth-shell.login-active .auth-register .gender-pro label {
    color: var(--auth-text);
    background: #f5f8f5;
    border: 1px solid var(--auth-border);
}


.gender-pro input[type="radio"] {
    accent-color: var(--auth-green);
}


/* =========================================================
   CONDITIONS
   ========================================================= */

.terms-pro {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 15px;
    font-size: .80rem;
    line-height: 1.45;
}


    .terms-pro input {
        flex: 0 0 auto;
        margin-top: 3px;
        accent-color: var(--auth-green);
    }


/* actif */

.auth-shell.register-active .auth-register .terms-pro {
    color: rgba(255, 255, 255, .82);
}


    .auth-shell.register-active .auth-register .terms-pro a {
        color: #dff1e7;
        font-weight: 700;
        text-decoration: none;
    }


        .auth-shell.register-active .auth-register .terms-pro a:hover {
            color: #ffffff;
            text-decoration: underline;
        }


/* inactif */

.auth-shell.login-active .auth-register .terms-pro {
    color: var(--auth-text-soft);
}


    .auth-shell.login-active .auth-register .terms-pro a {
        color: var(--auth-green);
        font-weight: 700;
    }


/* =========================================================
   ERREURS DE VALIDATION
   ========================================================= */

.auth-side .text-danger,
.auth-validation {
    display: block;
    margin: 5px 0 2px;
    color: #ffb0b8 !important;
    font-size: .78rem;
}


/* côté blanc inactif */

.auth-shell.login-active .auth-register .text-danger,
.auth-shell.register-active .auth-login .text-danger {
    color: var(--auth-danger) !important;
}


/* =========================================================
   ALERTES
   ========================================================= */

.auth-page-pro .alert,
.auth-modal-content .alert {
    padding: 11px 14px;
    border-radius: 12px;
    font-size: .83rem;
}


.auth-page-pro .alert-danger,
.auth-modal-content .alert-danger {
    color: #a83643;
    border: 1px solid rgba(203, 70, 85, .18);
    background: #fff0f2;
}


.auth-page-pro .alert-success,
.auth-modal-content .alert-success {
    color: #286d51;
    border: 1px solid rgba(48, 132, 94, .18);
    background: #edf8f2;
}


.auth-page-pro .alert-warning {
    margin-top: 14px;
    color: #855b23;
    border: 1px solid rgba(178, 123, 47, .18);
    background: #fff8e9;
}


/* =========================================================
   LOST PASSWORD MODAL
   ========================================================= */

#lostPasswordModal .modal-dialog {
    max-width: 520px;
}


/* fond sombre bootstrap */

#lostPasswordModal.modal {
    --bs-modal-zindex: 1055;
}


#lostPasswordModal .modal-backdrop {
    background: rgba(20, 53, 44, .46);
}


.auth-modal-content {
    overflow: hidden;
    color: var(--auth-text);
    border: 1px solid var(--auth-border);
    border-radius: 24px;
    background: linear-gradient( 145deg, #ffffff 0%, #f5f9f5 100% );
    box-shadow: 0 30px 80px rgba(28, 72, 56, .22);
}


/* =========================================================
   MODAL HEADER
   ========================================================= */

.auth-modal-header {
    padding: 24px 27px;
    border-bottom: 1px solid var(--auth-border);
    background: radial-gradient( circle at 0 0, rgba(218, 234, 221, .80), transparent 46% ), linear-gradient( 135deg, #f4f8f4, #ffffff );
}


    .auth-modal-header > div {
        min-width: 0;
    }


    .auth-modal-header h5 {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--auth-dark);
        font-size: 1.25rem;
        font-weight: 800;
    }


        .auth-modal-header h5 i {
            color: var(--auth-green);
        }


    .auth-modal-header p {
        margin: 7px 0 0;
        color: var(--auth-text-soft);
        font-size: .87rem;
    }


    /* le bouton Bootstrap fourni est btn-close-white
   on le rend sombre pour le fond clair */

    .auth-modal-header .btn-close {
        filter: none !important;
        opacity: .55;
    }


        .auth-modal-header .btn-close:hover {
            opacity: .9;
        }


/* =========================================================
   MODAL BODY
   ========================================================= */

.auth-modal-body {
    padding: 27px 28px 23px;
}


    .auth-modal-body .auth-label {
        display: block;
        margin: 11px 0 8px;
        color: var(--auth-text);
        font-size: .87rem;
        font-weight: 700;
    }


    .auth-modal-body .auth-field {
        background: #ffffff;
        border: 1px solid var(--auth-border-medium);
    }


        .auth-modal-body .auth-field:focus-within {
            border-color: rgba(47, 110, 89, .60);
            box-shadow: 0 0 0 3px rgba(47, 110, 89, .09);
        }


        .auth-modal-body .auth-field > i {
            color: var(--auth-green);
        }


        .auth-modal-body .auth-field input {
            color: var(--auth-text) !important;
        }


            .auth-modal-body .auth-field input::placeholder {
                color: #899792;
                opacity: 1;
            }


/* =========================================================
   INFO MODAL / RESET
   ========================================================= */

.auth-modal-info {
    margin-top: 20px;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(47, 110, 89, .13);
    border-radius: 12px;
    background: #eef5f0;
    color: #557066;
    font-size: .82rem;
    line-height: 1.5;
}


    .auth-modal-info i {
        flex: 0 0 auto;
        margin-top: 2px;
        color: var(--auth-green);
    }


/* =========================================================
   MODAL FOOTER
   ========================================================= */

.auth-modal-footer {
    padding: 18px 28px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    border-top: 1px solid var(--auth-border);
    background: #fafcf9;
}


.auth-modal-secondary {
    min-width: 105px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--auth-border-medium);
    border-radius: 24px;
    background: #ffffff;
    color: var(--auth-dark);
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}


    .auth-modal-secondary:hover {
        background: var(--auth-green-soft);
        border-color: rgba(47, 110, 89, .30);
        transform: translateY(-1px);
    }


.auth-modal-footer .auth-main-btn {
    width: auto;
    min-width: 155px;
    min-height: 44px;
    margin-top: 0;
}


/* =========================================================
   RESET PASSWORD
   ========================================================= */

/*
    Ta vue Reset utilise :
    .auth-page-pro
    .auth-shell.login-active
    .auth-login
    .auth-register.d-flex
*/


.auth-return-link {
    display: block;
    margin-top: 19px;
    color: #dcefe5;
    text-align: center;
    font-size: .87rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}


    .auth-return-link:hover {
        color: #ffffff;
    }


/* info dans le panneau vert du reset */

.auth-shell.login-active .auth-login .auth-modal-info {
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .16);
}


    .auth-shell.login-active .auth-login .auth-modal-info i {
        color: #d8eee3;
    }


/* =========================================================
   PANNEAU DROIT RESET PASSWORD
   ========================================================= */

.auth-shell.login-active .auth-register.d-flex {
    opacity: 1;
    filter: none;
    pointer-events: auto;
    color: var(--auth-text);
}


    .auth-shell.login-active .auth-register.d-flex h2 {
        color: var(--auth-dark) !important;
    }


    .auth-shell.login-active .auth-register.d-flex p {
        color: var(--auth-text-soft) !important;
    }


    .auth-shell.login-active .auth-register.d-flex img {
        max-width: 260px;
        filter: drop-shadow( 0 12px 25px rgba(38, 89, 69, .14) );
    }


/* =========================================================
   RESET SEPARATEUR
   ========================================================= */

.setup-separator {
    width: 78px;
    height: 3px;
    margin: 24px auto;
    border-radius: 10px;
    background: linear-gradient( 90deg, transparent, #76a58f, transparent );
}


/* =========================================================
   RESET POINTS SECURITE
   ========================================================= */

.setup-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}


    .setup-points span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 12px;
        border: 1px solid var(--auth-border);
        border-radius: 20px;
        background: #f2f7f3;
        color: #49685d;
        font-size: .81rem;
    }


    .setup-points i {
        color: var(--auth-green);
    }


/* =========================================================
   BOOTSTRAP FIXES
   ========================================================= */

.auth-page-pro .mt-4 {
    margin-top: 1.5rem !important;
}


.auth-page-pro input.form-control,
.auth-modal-content input.form-control {
    background: transparent !important;
}


.auth-page-pro input:-webkit-autofill,
.auth-page-pro input:-webkit-autofill:hover,
.auth-page-pro input:-webkit-autofill:focus {
    -webkit-text-fill-color: inherit;
    transition: background-color 9999s ease-in-out 0s;
    box-shadow: 0 0 0 1000px transparent inset !important;
}


/* =========================================================
   RESPONSIVE 1100
   ========================================================= */

@media (max-width: 1100px) {

    .auth-shell {
        width: min(960px, 100%);
    }
}


/* =========================================================
   RESPONSIVE TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    .auth-page-pro {
        padding: 35px 18px 50px;
    }


    .auth-shell {
        width: min(680px, 100%);
        min-height: 650px;
        grid-template-columns: 1fr;
    }


    /*
       Sur tablette/mobile on masque le grand
       panneau animé qui traversait les 2 colonnes.
    */

    .auth-glow-panel {
        width: 100%;
        transform: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: linear-gradient( 145deg, #3c7863, #255847 );
    }


    .auth-login,
    .auth-register {
        grid-column: 1;
        grid-row: 1;
    }


    .auth-side {
        padding: 45px 44px 80px;
    }


    /*
       Formulaire visible
    */

    .auth-shell.login-active .auth-login,
    .auth-shell.register-active .auth-register {
        position: relative;
        z-index: 2;
        opacity: 1;
        visibility: visible;
        filter: none;
        pointer-events: auto;
        color: #ffffff;
    }


    /*
       Formulaire caché
    */

    .auth-shell.login-active .auth-register:not(.d-flex),
    .auth-shell.register-active .auth-login {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }


    /* RESET PASSWORD :
       la colonne d'information ne doit pas recouvrir le formulaire */

    .auth-shell.login-active .auth-register.d-flex {
        display: none !important;
    }


    .auth-center-btn {
        top: auto;
        bottom: 15px;
        width: 55px;
        height: 55px;
        border-width: 3px;
    }


    .auth-dots {
        display: none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .auth-page-pro {
        min-height: calc(100vh - 70px);
        padding: 22px 12px 35px;
    }


    .auth-shell {
        min-height: 610px;
        border-radius: 23px;
    }


    .auth-side {
        padding: 34px 22px 75px;
    }


    .auth-title {
        align-items: flex-start;
        gap: 12px;
    }


    .auth-title-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }


    .auth-title h2 {
        font-size: 1.52rem;
    }


    .auth-title p {
        font-size: .84rem;
    }


    .auth-row-pro {
        grid-template-columns: 1fr;
    }


    .gender-pro {
        grid-template-columns: 1fr;
    }


        .gender-pro label {
            min-height: 45px;
        }


    .auth-options-pro {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }


    .auth-field {
        min-height: 51px;
    }


    .auth-main-btn {
        min-height: 50px;
    }


    .auth-center-btn {
        width: 51px;
        height: 51px;
    }


    /* MODAL */

    #lostPasswordModal .modal-dialog {
        margin: 12px;
    }


    .auth-modal-header,
    .auth-modal-body,
    .auth-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }


    .auth-modal-footer {
        flex-direction: column-reverse;
    }


        .auth-modal-footer .auth-main-btn,
        .auth-modal-secondary {
            width: 100%;
        }
}


/* =========================================================
   PETIT MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .auth-page-pro {
        padding-left: 8px;
        padding-right: 8px;
    }


    .auth-shell {
        border-radius: 18px;
    }


    .auth-side {
        padding: 29px 17px 72px;
    }


    .auth-title h2 {
        font-size: 1.35rem;
    }


    .auth-title p {
        font-size: .80rem;
    }


    .auth-field {
        padding-left: 12px;
        padding-right: 10px;
    }


        .auth-field input {
            font-size: .88rem;
        }


    .terms-pro {
        font-size: .76rem;
    }
}



/* =========================================================
   PAGES LEGALES
   Conditions / Mentions légales / Politique de confidentialité
   ========================================================= */

:root {
    --legal-dark: #153d38;
    --legal-dark-2: #12342f;
    --legal-green: #2f6e59;
    --legal-green-hover: #255846;
    --legal-green-medium: #4f8270;
    --legal-green-light: #e7f0e9;
    --legal-green-soft: #f3f7f3;
    --legal-cream: #fbf8f1;
    --legal-white: #ffffff;
    --legal-text: #183642;
    --legal-text-soft: #5c6b6d;
    --legal-muted: #83918d;
    --legal-border: rgba(26, 81, 67, .11);
    --legal-border-medium: rgba(26, 81, 67, .18);
    --legal-shadow: 0 16px 40px rgba(31, 75, 59, .08);
    --legal-shadow-hover: 0 22px 48px rgba(31, 75, 59, .13);
}


/* =========================================================
   PAGE GENERALE
   ========================================================= */

.legal-pro-page {
    position: relative;
    width: 100%;
    padding: 70px 24px 90px;
    overflow: hidden;
    color: var(--legal-text);
    background: radial-gradient( circle at 85% 8%, rgba(219, 235, 222, .78), transparent 30% ), radial-gradient( circle at 10% 88%, rgba(231, 240, 232, .82), transparent 28% ), linear-gradient( 120deg, #fbf9f4 0%, #f8faf6 55%, #e7f0e7 100% );
}


    /* décor discret */

    .legal-pro-page::before {
        content: "";
        position: absolute;
        width: 460px;
        height: 460px;
        top: -280px;
        left: -210px;
        border: 1px solid rgba(47, 110, 89, .08);
        border-radius: 46% 54% 64% 36%;
        transform: rotate(26deg);
        pointer-events: none;
    }


    .legal-pro-page::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -230px;
        bottom: -270px;
        border: 1px solid rgba(47, 110, 89, .08);
        border-radius: 58% 42% 35% 65%;
        transform: rotate(-18deg);
        pointer-events: none;
    }


/* =========================================================
   HERO
   ========================================================= */

.legal-pro-hero {
    position: relative;
    z-index: 2;
    /*    width: min(1180px, 100%);*/
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
    gap: 35px;
    align-items: stretch;
}


/* =========================================================
   TEXTE HERO
   ========================================================= */

.legal-pro-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 0;
}


    .legal-pro-hero-text h1 {
        position: relative;
        margin: 0 0 24px;
        color: var(--legal-dark);
        font-size: clamp(2.3rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -1.5px;
    }


        .legal-pro-hero-text h1::after {
            content: "";
            display: block;
            width: 76px;
            height: 4px;
            margin-top: 22px;
            border-radius: 20px;
            background: linear-gradient( 90deg, var(--legal-green), #a5bb66 );
        }


    .legal-pro-hero-text p {
        max-width: 760px;
        margin: 0;
        color: var(--legal-text-soft);
        font-size: 1.08rem;
        line-height: 1.8;
    }


/* =========================================================
   CARTE HERO
   ========================================================= */

.legal-pro-hero-card {
    position: relative;
    overflow: hidden;
    padding: 34px 30px;
    border: 1px solid var(--legal-border);
    border-radius: 26px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, .97), rgba(244, 249, 245, .97) );
    box-shadow: var(--legal-shadow);
}


    .legal-pro-hero-card::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        top: -70px;
        right: -55px;
        border-radius: 50%;
        background: rgba(95, 151, 123, .08);
    }


    .legal-pro-hero-card > i {
        width: 62px;
        height: 62px;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        color: #ffffff;
        font-size: 1.55rem;
        background: linear-gradient( 145deg, #5c947c, #2f6e59 );
        box-shadow: 0 10px 24px rgba(31, 87, 65, .18);
    }


    .legal-pro-hero-card h3 {
        margin: 0 0 12px;
        color: var(--legal-dark);
        font-size: 1.25rem;
        font-weight: 800;
    }


    .legal-pro-hero-card p {
        margin: 0 0 24px;
        color: var(--legal-text-soft);
        line-height: 1.65;
        font-size: .92rem;
    }


/* =========================================================
   DATE
   ========================================================= */

.legal-pro-date {
    padding-top: 18px;
    border-top: 1px solid var(--legal-border);
    color: var(--legal-muted);
    font-size: .82rem;
    line-height: 1.4;
}


    .legal-pro-date strong {
        display: block;
        margin-top: 4px;
        color: var(--legal-green);
        font-size: .92rem;
        font-weight: 700;
    }


/* =========================================================
   BARRE D'INFORMATIONS
   ========================================================= */

.legal-pro-info-bar {
    position: relative;
    z-index: 2;
    /*    width: min(1180px, 100%);*/
    margin: 0 auto 40px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    border: 1px solid var(--legal-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(31, 75, 59, .06);
}


/* =========================================================
   ITEM INFO
   ========================================================= */

.legal-pro-info-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 15px;
    border-radius: 16px;
    background: #f8faf7;
    border: 1px solid rgba(34, 88, 67, .07);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}


    .legal-pro-info-item:hover {
        transform: translateY(-2px);
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(31, 75, 59, .07);
    }


    .legal-pro-info-item > i {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        color: var(--legal-green);
        background: var(--legal-green-light);
        font-size: .95rem;
    }


    .legal-pro-info-item > div {
        min-width: 0;
    }


    .legal-pro-info-item span {
        display: block;
        margin-bottom: 3px;
        color: var(--legal-muted);
        font-size: .74rem;
        text-transform: uppercase;
        letter-spacing: .6px;
    }


    .legal-pro-info-item strong {
        display: block;
        overflow-wrap: anywhere;
        color: var(--legal-text);
        font-size: .88rem;
        font-weight: 700;
        line-height: 1.35;
    }


/* =========================================================
   CONTENU
   ========================================================= */

.legal-pro-content {
    position: relative;
    z-index: 2;
    /*    width: min(980px, 100%);*/
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* =========================================================
   DETAILS / SECTIONS
   ========================================================= */

.legal-pro-section {
    overflow: hidden;
    border: 1px solid var(--legal-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 28px rgba(31, 75, 59, .055);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}


    .legal-pro-section:hover {
        border-color: rgba(47, 110, 89, .20);
        box-shadow: 0 14px 32px rgba(31, 75, 59, .08);
    }


    .legal-pro-section[open] {
        border-color: rgba(47, 110, 89, .23);
        box-shadow: var(--legal-shadow);
    }


    /* =========================================================
   SUMMARY
   ========================================================= */

    .legal-pro-section summary {
        position: relative;
        min-height: 78px;
        padding: 17px 22px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 16px;
        cursor: pointer;
        list-style: none;
        user-select: none;
        background: linear-gradient( 90deg, rgba(248, 251, 248, .96), rgba(255, 255, 255, .96) );
        transition: background .2s ease;
    }


        .legal-pro-section summary::-webkit-details-marker {
            display: none;
        }


        .legal-pro-section summary::marker {
            display: none;
        }


        .legal-pro-section summary:hover {
            background: #f4f8f4;
        }


/* =========================================================
   NUMERO
   ========================================================= */

.legal-pro-section-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient( 145deg, #5d927b, #2f6e59 );
    font-size: .88rem;
    font-weight: 800;
    box-shadow: 0 7px 16px rgba(33, 89, 67, .14);
}


/* =========================================================
   TITRE SECTION
   ========================================================= */

.legal-pro-section-title {
    color: var(--legal-dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}


/* =========================================================
   FLECHE
   ========================================================= */

.legal-pro-section summary > i {
    color: var(--legal-green);
    font-size: .82rem;
    transition: transform .25s ease;
}


.legal-pro-section[open] summary > i {
    transform: rotate(180deg);
}


/* =========================================================
   CORPS DE SECTION
   ========================================================= */

.legal-pro-section-body {
    padding: 0 25px 26px 80px;
    border-top: 1px solid rgba(26, 81, 67, .07);
    color: var(--legal-text-soft);
}


    .legal-pro-section-body p {
        margin: 20px 0 0;
        color: var(--legal-text-soft);
        font-size: .94rem;
        line-height: 1.8;
    }


    .legal-pro-section-body ul {
        margin: 15px 0 0;
        padding-left: 22px;
    }


    .legal-pro-section-body li {
        position: relative;
        margin-bottom: 9px;
        color: var(--legal-text-soft);
        font-size: .93rem;
        line-height: 1.65;
    }


        .legal-pro-section-body li::marker {
            color: var(--legal-green);
        }


/* =========================================================
   CONTACT BAS DE PAGE
   ========================================================= */

.legal-pro-contact {
    position: relative;
    z-index: 2;
    /*    width: min(980px, 100%);*/
    margin: 40px auto 0;
    padding: 26px 28px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    border: 1px solid rgba(47, 110, 89, .14);
    border-radius: 22px;
    background: linear-gradient( 135deg, #eef5ef 0%, #f7faf7 60%, #ffffff 100% );
    box-shadow: 0 12px 30px rgba(31, 75, 59, .07);
}


    .legal-pro-contact::after {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        right: -55px;
        top: -65px;
        border-radius: 50%;
        background: rgba(83, 140, 113, .08);
    }


/* =========================================================
   ICONE CONTACT
   ========================================================= */

.legal-pro-contact-icon {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient( 145deg, #5c947c, #2f6e59 );
    box-shadow: 0 8px 20px rgba(34, 90, 68, .16);
    font-size: 1.18rem;
}


/* =========================================================
   TEXTE CONTACT
   ========================================================= */

.legal-pro-contact > div:nth-child(2) {
    position: relative;
    z-index: 2;
}


.legal-pro-contact h3 {
    margin: 0 0 5px;
    color: var(--legal-dark);
    font-size: 1.05rem;
    font-weight: 800;
}


.legal-pro-contact p {
    margin: 0;
    color: var(--legal-text-soft);
    font-size: .88rem;
    line-height: 1.5;
}


/* =========================================================
   BOUTON / EMAIL CONTACT
   ========================================================= */

.legal-pro-contact > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 25px;
    color: #ffffff;
    background: linear-gradient( 135deg, #4f8871, #2f6e59 );
    font-size: .84rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(31, 86, 65, .16);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}


    .legal-pro-contact > a:hover {
        color: #ffffff;
        transform: translateY(-2px);
        background: linear-gradient( 135deg, #477c67, #255846 );
        box-shadow: 0 12px 24px rgba(31, 86, 65, .23);
    }


/* =========================================================
   POLITIQUE CONFIDENTIALITE
   Accent légèrement différent sur l'icône bouclier
   ========================================================= */

.legal-pro-hero-card .fa-shield-halved {
    color: #ffffff;
}


/* =========================================================
   RESPONSIVE LARGE TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .legal-pro-hero {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
        gap: 25px;
    }
}


/* =========================================================
   RESPONSIVE TABLETTE
   ========================================================= */

@media (max-width: 850px) {

    .legal-pro-page {
        padding: 50px 18px 70px;
    }


    .legal-pro-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .legal-pro-hero-text {
        padding: 10px 0;
    }


    .legal-pro-hero-card {
        max-width: 620px;
    }


    .legal-pro-info-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .legal-pro-contact {
        grid-template-columns: auto minmax(0, 1fr);
    }


        .legal-pro-contact > a {
            grid-column: 1 / -1;
            width: fit-content;
            margin-left: 78px;
        }
}


/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .legal-pro-page {
        padding: 38px 12px 60px;
    }


    .legal-pro-hero-text h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        letter-spacing: -1px;
    }


    .legal-pro-hero-text p {
        font-size: .96rem;
    }


    .legal-pro-hero-card {
        padding: 27px 22px;
        border-radius: 21px;
    }


    .legal-pro-info-bar {
        padding: 14px;
        grid-template-columns: 1fr;
        border-radius: 20px;
    }


    .legal-pro-info-item {
        padding: 12px 13px;
    }


    .legal-pro-section {
        border-radius: 17px;
    }


        .legal-pro-section summary {
            min-height: 70px;
            padding: 14px 16px;
            gap: 12px;
        }


    .legal-pro-section-number {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }


    .legal-pro-section-title {
        font-size: .92rem;
    }


    .legal-pro-section-body {
        padding: 0 18px 22px;
    }


        .legal-pro-section-body p {
            font-size: .89rem;
        }


    .legal-pro-contact {
        padding: 22px 19px;
        grid-template-columns: 1fr;
        text-align: center;
    }


    .legal-pro-contact-icon {
        margin: 0 auto;
    }


    .legal-pro-contact > a {
        width: 100%;
        margin: 0;
        grid-column: auto;
    }
}


/* =========================================================
   PETIT MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .legal-pro-page {
        padding-left: 8px;
        padding-right: 8px;
    }


    .legal-pro-hero-card {
        padding: 23px 18px;
    }


    .legal-pro-section summary {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        padding-left: 12px;
        padding-right: 12px;
    }


    .legal-pro-section-number {
        width: 34px;
        height: 34px;
        font-size: .78rem;
    }
}

/* =========================================================
   CONTACT
   Style cohérent Home / Legal / Auth
   ========================================================= */

:root {
    --contact-dark: #153d38;
    --contact-dark-2: #12342f;
    --contact-green: #2f6e59;
    --contact-green-hover: #255846;
    --contact-green-medium: #4f8270;
    --contact-green-light: #e7f0e9;
    --contact-green-soft: #f3f7f3;
    --contact-cream: #fbf8f1;
    --contact-white: #ffffff;
    --contact-text: #183642;
    --contact-text-soft: #5c6b6d;
    --contact-muted: #82918c;
    --contact-border: rgba(26, 81, 67, .11);
    --contact-border-medium: rgba(26, 81, 67, .18);
    --contact-danger: #d64c5b;
    --contact-danger-soft: #fff0f1;
    --contact-success: #2f835f;
    --contact-success-soft: #edf8f2;
    --contact-warning: #a96f24;
    --contact-warning-soft: #fff7e8;
    --contact-shadow: 0 16px 40px rgba(31, 75, 59, .08);
    --contact-shadow-hover: 0 22px 48px rgba(31, 75, 59, .13);
}


/* =========================================================
   PAGE
   ========================================================= */

.contact-pro-page {
    position: relative;
    width: 100%;
    padding: 70px 24px 90px;
    overflow: hidden;
    color: var(--contact-text);
    background: radial-gradient( circle at 85% 10%, rgba(219, 235, 222, .78), transparent 30% ), radial-gradient( circle at 10% 90%, rgba(231, 240, 232, .82), transparent 28% ), linear-gradient( 120deg, #fbf9f4 0%, #f8faf6 55%, #e7f0e7 100% );
}


    .contact-pro-page::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        top: -280px;
        left: -230px;
        border: 1px solid rgba(47, 110, 89, .08);
        border-radius: 46% 54% 64% 36%;
        transform: rotate(24deg);
        pointer-events: none;
    }


    .contact-pro-page::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        right: -240px;
        bottom: -280px;
        border: 1px solid rgba(47, 110, 89, .08);
        border-radius: 58% 42% 35% 65%;
        transform: rotate(-18deg);
        pointer-events: none;
    }


/* =========================================================
   LAYOUT
   ========================================================= */

.contact-pro-layout {
    position: relative;
    z-index: 2;
    /*    width: min(1200px, 100%);*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    gap: 38px;
    align-items: start;
}


/* =========================================================
   COLONNE GAUCHE
   ========================================================= */

.contact-pro-left {
    min-width: 0;
}


.contact-pro-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--contact-green);
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: 2.5px;
}


.contact-pro-left > h1 {
    margin: 0 0 22px;
    color: var(--contact-dark);
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
}


    .contact-pro-left > h1 span {
        display: block;
        color: var(--contact-green-medium);
        font-weight: 400;
    }


    .contact-pro-left > h1::after {
        content: "";
        display: block;
        width: 78px;
        height: 4px;
        margin-top: 22px;
        border-radius: 20px;
        background: linear-gradient( 90deg, var(--contact-green), #a7bb67 );
    }


.contact-pro-intro {
    max-width: 760px;
    margin: 0 0 32px;
    color: var(--contact-text-soft);
    font-size: 1.06rem;
    line-height: 1.8;
}


/* =========================================================
   BENEFICES
   ========================================================= */

.contact-pro-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}


    .contact-pro-benefits > div {
        min-height: 128px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid var(--contact-border);
        border-radius: 18px;
        background: rgba(255, 255, 255, .80);
        box-shadow: 0 10px 24px rgba(31, 75, 59, .05);
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }


        .contact-pro-benefits > div:hover {
            transform: translateY(-3px);
            background: #ffffff;
            box-shadow: var(--contact-shadow);
        }


    .contact-pro-benefits i {
        width: 42px;
        height: 42px;
        margin-bottom: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 13px;
        background: var(--contact-green-light);
        color: var(--contact-green);
        font-size: 1rem;
    }


    .contact-pro-benefits strong {
        display: block;
        margin-bottom: 5px;
        color: var(--contact-dark);
        font-size: .9rem;
    }


    .contact-pro-benefits span {
        color: var(--contact-text-soft);
        font-size: .78rem;
        line-height: 1.5;
    }


/* =========================================================
   CARDS
   ========================================================= */

.contact-pro-card {
    border: 1px solid var(--contact-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--contact-shadow);
}


.contact-pro-form-card {
    padding: 30px;
}


/* =========================================================
   HEADER DE CARD
   ========================================================= */

.contact-pro-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}


.contact-pro-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(32, 87, 66, .15);
}


    .contact-pro-icon.green {
        background: linear-gradient( 145deg, #5d957d, #2f6e59 );
    }


.contact-pro-card-head h2 {
    margin: 0 0 4px;
    color: var(--contact-dark);
    font-size: 1.15rem;
    font-weight: 800;
}


.contact-pro-card-head p {
    margin: 0;
    color: var(--contact-text-soft);
    font-size: .85rem;
    line-height: 1.45;
}


/* =========================================================
   FORMULAIRE
   ========================================================= */

.contact-pro-form {
    width: 100%;
}


.contact-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px 18px;
}


.contact-pro-full {
    grid-column: 1 / -1;
}


/* =========================================================
   FIELDS
   ========================================================= */

.contact-pro-field {
    min-width: 0;
}


    .contact-pro-field label {
        display: block;
        margin-bottom: 8px;
        color: var(--contact-text);
        font-size: .86rem;
        font-weight: 700;
    }


        .contact-pro-field label span {
            color: var(--contact-muted);
            font-weight: 400;
        }


/* =========================================================
   INPUT WRAPPER
   ========================================================= */

.contact-pro-input,
.contact-pro-textarea {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid var(--contact-border-medium);
    border-radius: 13px;
    background: #ffffff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}


.contact-pro-input {
    min-height: 54px;
    padding: 0 14px;
}


.contact-pro-textarea {
    align-items: flex-start;
    min-height: 150px;
    padding: 14px;
}


    .contact-pro-input:focus-within,
    .contact-pro-textarea:focus-within {
        border-color: rgba(47, 110, 89, .55);
        box-shadow: 0 0 0 3px rgba(47, 110, 89, .08);
        background: #fcfefd;
    }


    /* =========================================================
   ICONES INPUT
   ========================================================= */

    .contact-pro-input > i,
    .contact-pro-textarea > i {
        flex: 0 0 18px;
        width: 18px;
        color: var(--contact-green);
        text-align: center;
        font-size: .92rem;
    }


    .contact-pro-textarea > i {
        margin-top: 3px;
    }


    /* =========================================================
   INPUT / SELECT / TEXTAREA
   ========================================================= */

    .contact-pro-input input,
    .contact-pro-input select,
    .contact-pro-textarea textarea {
        width: 100%;
        min-width: 0;
        border: 0 !important;
        outline: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: var(--contact-text) !important;
        font-family: inherit;
        font-size: .91rem;
    }


.contact-pro-input input,
.contact-pro-input select {
    min-height: 52px;
    padding: 0 !important;
}


.contact-pro-textarea textarea {
    min-height: 130px;
    padding: 0 !important;
    resize: vertical;
    line-height: 1.6;
}


    .contact-pro-input input::placeholder,
    .contact-pro-textarea textarea::placeholder {
        color: #94a19d;
        opacity: 1;
    }


.contact-pro-input select {
    cursor: pointer;
    appearance: none;
}


/* =========================================================
   VALIDATION
   ========================================================= */

.contact-pro-field .text-danger {
    display: block;
    margin-bottom: 5px;
    color: var(--contact-danger) !important;
    font-size: .77rem;
}


/* =========================================================
   CONFIDENTIALITE
   ========================================================= */

.contact-pro-confidentiality {
    margin-top: 20px;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(47, 110, 89, .12);
    border-radius: 12px;
    background: #eef5f0;
    color: #567067;
}


    .contact-pro-confidentiality i {
        margin-top: 2px;
        color: var(--contact-green);
    }


    .contact-pro-confidentiality p {
        margin: 0;
        font-size: .80rem;
        line-height: 1.5;
    }


/* =========================================================
   BOUTON ENVOYER
   ========================================================= */

.contact-pro-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 30px;
    background: linear-gradient( 135deg, #4f8871, #2f6e59 );
    color: #ffffff;
    font-size: .95rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(31, 86, 65, .18);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}


    .contact-pro-submit:hover {
        transform: translateY(-2px);
        filter: brightness(1.03);
        box-shadow: 0 15px 30px rgba(31, 86, 65, .26);
    }


/* =========================================================
   ALERTES
   ========================================================= */

.contact-pro-alert {
    margin-bottom: 20px;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-radius: 12px;
    font-size: .82rem;
    line-height: 1.5;
}


    .contact-pro-alert.danger {
        color: #a73744;
        background: var(--contact-danger-soft);
        border: 1px solid rgba(211, 70, 86, .18);
    }


    .contact-pro-alert.success {
        color: #286d51;
        background: var(--contact-success-soft);
        border: 1px solid rgba(48, 132, 94, .18);
    }


    .contact-pro-alert.warning {
        color: #875b22;
        background: var(--contact-warning-soft);
        border: 1px solid rgba(178, 123, 47, .18);
    }


/* =========================================================
   COLONNE DROITE
   ========================================================= */

.contact-pro-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}


.contact-pro-category-card,
.contact-pro-info-card {
    padding: 26px;
}


/* =========================================================
   LISTE CATEGORIES
   ========================================================= */

.contact-pro-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.contact-pro-category-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid rgba(47, 110, 89, .08);
    border-radius: 14px;
    background: #f8faf7;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}


    .contact-pro-category-item:hover {
        transform: translateX(3px);
        background: #ffffff;
        border-color: rgba(47, 110, 89, .16);
        box-shadow: 0 8px 18px rgba(31, 75, 59, .06);
    }


    .contact-pro-category-item > i {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: var(--contact-green-light);
        color: var(--contact-green);
    }


    .contact-pro-category-item strong {
        display: block;
        margin-bottom: 3px;
        color: var(--contact-dark);
        font-size: .86rem;
    }


    .contact-pro-category-item span {
        color: var(--contact-text-soft);
        font-size: .75rem;
        line-height: 1.4;
    }


/* =========================================================
   PETIT TITRE
   ========================================================= */

.contact-pro-small-title {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--contact-green);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: 1.8px;
}


/* =========================================================
   INFO CARD
   ========================================================= */

.contact-pro-info-card > h2 {
    margin: 0 0 5px;
    color: var(--contact-dark);
    font-size: 1.16rem;
    font-weight: 800;
}


.contact-pro-info-card > p {
    margin: 0 0 20px;
    color: var(--contact-text-soft);
    font-size: .84rem;
}


/* =========================================================
   INFOS CONTACT
   ========================================================= */

.contact-pro-info-grid {
    display: flex;
    flex-direction: column;
    gap: 11px;
}


.contact-pro-info {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(47, 110, 89, .08);
    border-radius: 14px;
    background: #f8faf7;
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}


a.contact-pro-info:hover {
    color: inherit;
    transform: translateX(3px);
    background: #ffffff;
    border-color: rgba(47, 110, 89, .17);
}


.contact-pro-info > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient( 145deg, #5d947c, #2f6e59 );
    font-size: .95rem;
}


.contact-pro-info span {
    display: block;
    margin-bottom: 2px;
    color: var(--contact-muted);
    font-size: .70rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}


.contact-pro-info strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--contact-dark);
    font-size: .85rem;
    font-weight: 800;
}


.contact-pro-info small {
    display: block;
    margin-top: 2px;
    color: var(--contact-text-soft);
    font-size: .72rem;
}


/* =========================================================
   CITATION
   ========================================================= */

.contact-pro-quote {
    padding: 24px;
    text-align: center;
    border: 1px solid var(--contact-border);
    border-radius: 22px;
    background: linear-gradient( 145deg, #eef5ef, #ffffff );
    box-shadow: 0 10px 24px rgba(31, 75, 59, .06);
}


    .contact-pro-quote i {
        margin-bottom: 10px;
        color: var(--contact-green);
        font-size: 1.2rem;
    }


    .contact-pro-quote p {
        margin: 0;
        color: var(--contact-green-medium);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.1rem;
        font-style: italic;
        line-height: 1.55;
    }


/* =========================================================
   RESPONSIVE 1000
   ========================================================= */

@media (max-width: 1000px) {

    .contact-pro-layout {
        grid-template-columns: 1fr;
    }


    .contact-pro-right {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }


    .contact-pro-quote {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   RESPONSIVE TABLETTE
   ========================================================= */

@media (max-width: 760px) {

    .contact-pro-page {
        padding: 50px 18px 70px;
    }


    .contact-pro-benefits {
        grid-template-columns: 1fr;
    }


        .contact-pro-benefits > div {
            min-height: auto;
        }


    .contact-pro-right {
        grid-template-columns: 1fr;
    }


    .contact-pro-quote {
        grid-column: auto;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-pro-page {
        padding: 38px 12px 60px;
    }


    .contact-pro-left > h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        letter-spacing: -1px;
    }


    .contact-pro-intro {
        font-size: .96rem;
    }


    .contact-pro-form-card,
    .contact-pro-category-card,
    .contact-pro-info-card {
        padding: 22px 18px;
    }


    .contact-pro-grid {
        grid-template-columns: 1fr;
    }


    .contact-pro-full {
        grid-column: auto;
    }


    .contact-pro-card {
        border-radius: 20px;
    }


    .contact-pro-card-head {
        align-items: flex-start;
    }


    .contact-pro-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }


    .contact-pro-submit {
        min-height: 50px;
    }
}


/* =========================================================
   PETIT MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .contact-pro-page {
        padding-left: 8px;
        padding-right: 8px;
    }


    .contact-pro-form-card,
    .contact-pro-category-card,
    .contact-pro-info-card {
        padding: 18px 14px;
    }


    .contact-pro-card-head h2 {
        font-size: 1rem;
    }


    .contact-pro-input {
        padding: 0 11px;
    }


        .contact-pro-input input,
        .contact-pro-input select,
        .contact-pro-textarea textarea {
            font-size: .86rem;
        }
}


/* =========================================================
   ESPACE UTILISATEUR - RENDEZ-VOUS
   Version nettoyée
   ========================================================= */

:root {
    --rdv-dark: #153d38;
    --rdv-green: #2f6e59;
    --rdv-green-hover: #255846;
    --rdv-medium: #4f8270;
    --rdv-light: #e7f0e9;
    --rdv-soft: #f3f7f3;
    --rdv-cream: #fbf8f1;
    --rdv-text: #183642;
    --rdv-muted: #697873;
    --rdv-white: #ffffff;
    --rdv-border: rgba(26, 81, 67, .10);
    --rdv-shadow: 0 14px 35px rgba(31, 75, 59, .08);
}


/* =========================================================
   PAGE
   ========================================================= */

.rdv-page {
    min-height: calc(100vh - 90px);
    background: linear-gradient( 135deg, #faf9f5, #f4f8f3 );
    color: var(--rdv-text);
}


.rdv-layout {
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    width: 100%;
    min-height: calc(100vh - 90px);
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.rdv-sidebar {
    position: relative;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--rdv-border);
    background: rgba(255, 255, 255, .92);
}


/* =========================================================
   UTILISATEUR
   ========================================================= */

.rdv-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px 28px;
}


    .rdv-user img {
        width: 66px;
        height: 66px;
        flex: 0 0 66px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #e3eee6;
        box-shadow: 0 7px 18px rgba(34, 81, 62, .10);
    }


    .rdv-user span {
        display: block;
        color: var(--rdv-muted);
        font-size: .76rem;
    }


    .rdv-user strong {
        display: block;
        margin: 2px 0 7px;
        color: var(--rdv-dark);
        font-size: .98rem;
    }


    .rdv-user small {
        display: inline-flex;
        padding: 4px 9px;
        border: 1px solid rgba(47, 110, 89, .17);
        border-radius: 20px;
        color: var(--rdv-green);
        background: #f7fbf8;
        font-size: .65rem;
    }


/* =========================================================
   NAVIGATION SIDEBAR
   ========================================================= */

.rdv-user-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


    .rdv-user-nav > a {
        position: relative;
        min-height: 49px;
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 11px 13px;
        border-radius: 13px;
        color: #354a44;
        text-decoration: none;
        font-size: .84rem;
        font-weight: 600;
        transition: background .2s ease, color .2s ease, transform .2s ease;
    }


        .rdv-user-nav > a > i {
            width: 20px;
            color: var(--rdv-green);
            text-align: center;
        }


        .rdv-user-nav > a:hover {
            transform: translateX(2px);
            color: var(--rdv-dark);
            background: #f1f6f2;
        }


        .rdv-user-nav > a.active {
            color: var(--rdv-dark);
            background: #e8efe2;
        }


            .rdv-user-nav > a.active > i {
                color: var(--rdv-dark);
            }


.rdv-nav-badge {
    margin-left: auto;
    min-width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e4eddf;
    color: var(--rdv-dark);
    font-size: .68rem;
    font-weight: 700;
}


/* =========================================================
   CITATION SIDEBAR
   ========================================================= */

.rdv-sidebar-quote {
    margin-top: auto;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #f4f1e6, #edf4e9 );
    color: var(--rdv-dark);
    text-align: center;
}


    .rdv-sidebar-quote .fa-quote-left {
        display: block;
        margin-bottom: 8px;
        color: #6ca086;
    }


    .rdv-sidebar-quote p {
        margin: 0;
        font-family: Georgia, serif;
        font-size: .88rem;
        line-height: 1.55;
    }


    .rdv-sidebar-quote .fa-seedling {
        display: block;
        margin-top: 13px;
        color: #80aa76;
    }


/* =========================================================
   CONTENU PRINCIPAL
   ========================================================= */

.rdv-main {
    min-width: 0;
    padding: 32px;
}


/* =========================================================
   HEADER
   ========================================================= */

.rdv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}


.rdv-header-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient( 145deg, #518a72, #2f6e59 );
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 9px 22px rgba(31, 89, 67, .18);
}


.rdv-header h1 {
    margin: 0 0 3px;
    color: var(--rdv-dark);
    font-size: 1.7rem;
    font-weight: 800;
}


.rdv-header p {
    margin: 0;
    color: var(--rdv-muted);
    font-size: .86rem;
}


/* =========================================================
   STATISTIQUES
   ========================================================= */

.rdv-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}


.rdv-stat {
    min-height: 135px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--rdv-border);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: var(--rdv-shadow);
}


.rdv-stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rdv-light);
    color: var(--rdv-green);
    font-size: 1rem;
}


.rdv-stat-reminder .rdv-stat-icon {
    color: #c58522;
    background: #fff6e7;
}


.rdv-stat span {
    display: block;
    color: var(--rdv-muted);
    font-size: .74rem;
}


.rdv-stat strong {
    display: block;
    margin: 6px 0 2px;
    color: var(--rdv-dark);
    font-size: 1.05rem;
}


    .rdv-stat strong.rdv-stat-number {
        font-size: 1.7rem;
    }


.rdv-stat small {
    display: block;
    color: var(--rdv-muted);
    font-size: .72rem;
}


.rdv-stat em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 7px;
    padding: 4px 9px;
    border: 1px solid #cfe2d4;
    border-radius: 20px;
    color: var(--rdv-green);
    background: #f4f9f5;
    font-size: .66rem;
    font-style: normal;
}


/* =========================================================
   CONTENEUR RESERVATION
   ========================================================= */

.rdv-booking-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}


/* =========================================================
   CARTES
   ========================================================= */

.rdv-card {
    padding: 24px;
    border: 1px solid var(--rdv-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--rdv-shadow);
}


.rdv-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}


.rdv-card-title-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rdv-light);
    color: var(--rdv-green);
}


.rdv-card-title h2 {
    margin: 0 0 2px;
    color: var(--rdv-dark);
    font-size: 1rem;
    font-weight: 800;
}


.rdv-card-title p {
    margin: 0;
    color: var(--rdv-muted);
    font-size: .72rem;
}


/* =========================================================
   RESERVATION
   ========================================================= */

.rdv-reservation {
    padding: 28px;
}


/* =========================================================
   ETAPES
   ========================================================= */

.rdv-reservation-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    margin: 10px 0 30px;
    border-bottom: 1px solid var(--rdv-border);
}

    .rdv-reservation-steps > div {
        position: relative;
        min-width: 0;
        padding: 0 8px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #9aa7a2;
    }

        /* Barre active sous chaque étape */

        .rdv-reservation-steps > div::after {
            content: "";
            position: absolute;
            left: 10%;
            right: 10%;
            bottom: -1px;
            height: 2px;
            border-radius: 20px;
            background: transparent;
        }

    /* Numéro */

    .rdv-reservation-steps span {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #edf3ef;
        color: var(--rdv-green);
        font-size: .67rem;
        font-weight: 800;
    }

    /* Texte */

    .rdv-reservation-steps strong {
        min-width: 0;
        color: inherit;
        font-size: .72rem;
        font-weight: 700;
        white-space: nowrap;
    }

    /* Etape active */

    .rdv-reservation-steps > div.active {
        color: var(--rdv-green);
    }

        .rdv-reservation-steps > div.active::after {
            background: var(--rdv-green);
        }

        .rdv-reservation-steps > div.active span {
            background: var(--rdv-green);
            color: #ffffff;
        }

    /* Etape terminée */

    .rdv-reservation-steps > div.completed {
        color: var(--rdv-green);
    }

        .rdv-reservation-steps > div.completed span {
            background: var(--rdv-green);
            color: #ffffff;
        }

        .rdv-reservation-steps > div.completed::after {
            background: rgba(47, 110, 89, .35);
        }


/* =========================================================
   RESPONSIVE ETAPES
   ========================================================= */

@media (max-width: 900px) {

    .rdv-reservation-steps > div {
        padding-left: 4px;
        padding-right: 4px;
        gap: 6px;
    }

    .rdv-reservation-steps strong {
        font-size: .64rem;
    }
}


@media (max-width: 700px) {

    .rdv-reservation-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

        .rdv-reservation-steps > div {
            flex-direction: column;
            justify-content: flex-start;
            gap: 5px;
            padding-left: 2px;
            padding-right: 2px;
            text-align: center;
        }

        .rdv-reservation-steps strong {
            font-size: .58rem;
            line-height: 1.2;
            white-space: normal;
        }
}


@media (max-width: 430px) {

    .rdv-reservation-steps {
        gap: 2px;
    }

        .rdv-reservation-steps span {
            width: 21px;
            height: 21px;
            flex-basis: 21px;
            font-size: .6rem;
        }

        .rdv-reservation-steps strong {
            font-size: .53rem;
        }
}

/* =========================================================
   SECTIONS RESERVATION
   ========================================================= */

.rdv-reservation-section {
    padding: 23px 0;
    border-bottom: 1px solid var(--rdv-border);
}


.rdv-reservation-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}


    .rdv-reservation-section-title > span {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        background: var(--rdv-green);
        font-size: .75rem;
        font-weight: 800;
    }


    .rdv-reservation-section-title strong,
    .rdv-reservation-section-title small {
        display: block;
    }


    .rdv-reservation-section-title strong {
        color: var(--rdv-dark);
        font-size: .88rem;
    }


    .rdv-reservation-section-title small {
        margin-top: 2px;
        color: var(--rdv-muted);
        font-size: .70rem;
    }


/* =========================================================
   TYPE DE RENDEZ-VOUS
   ========================================================= */

.rdv-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}


.rdv-type {
    position: relative;
    min-height: 105px;
    padding: 17px 20px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    border: 1px solid var(--rdv-border);
    border-radius: 15px;
    background: #ffffff;
    color: var(--rdv-text);
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}


    .rdv-type:hover {
        transform: translateY(-2px);
        border-color: rgba(47, 110, 89, .30);
        box-shadow: 0 7px 18px rgba(47, 110, 89, .07);
    }


    .rdv-type.active {
        border-color: #5f9c78;
        background: #fbfefb;
    }


.rdv-type-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rdv-green);
    color: #ffffff;
    font-size: .55rem;
}


.rdv-type.active .rdv-type-check {
    display: flex;
}


.rdv-type-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 145deg, #5c987c, #2f6e59 );
    color: #ffffff;
}


.rdv-type-content {
    min-width: 0;
}


    .rdv-type-content strong {
        display: block;
        margin-bottom: 4px;
        color: var(--rdv-dark);
        font-size: .87rem;
    }


    .rdv-type-content p {
        max-width: 390px;
        margin: 0;
        color: var(--rdv-muted);
        font-size: .72rem;
        line-height: 1.5;
    }


/* =========================================================
   CALENDRIER JOURS
   ========================================================= */

.rdv-calendar-days {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}


.rdv-calendar-day {
    min-height: 78px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rdv-border);
    border-radius: 13px;
    background: #ffffff;
    color: var(--rdv-text);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}


    .rdv-calendar-day:hover {
        transform: translateY(-2px);
        border-color: rgba(47, 110, 89, .28);
        background: #f8fbf8;
    }


    .rdv-calendar-day.active {
        border-color: #a9c9b1;
        background: #e8f1e6;
        box-shadow: inset 0 -3px 0 var(--rdv-green);
    }


    .rdv-calendar-day span {
        color: var(--rdv-muted);
        font-size: .67rem;
        font-weight: 700;
    }


    .rdv-calendar-day strong {
        margin: 3px 0;
        color: var(--rdv-dark);
        font-size: 1.15rem;
    }


    .rdv-calendar-day small {
        color: var(--rdv-muted);
        font-size: .65rem;
    }


/* =========================================================
   CRENEAUX
   ========================================================= */

.rdv-slots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
}


.rdv-slot {
    position: relative;
    min-height: 78px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    text-align: left;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}


    .rdv-slot > i {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: .80rem;
    }


    .rdv-slot strong,
    .rdv-slot span {
        display: block;
    }


    .rdv-slot strong {
        font-size: .85rem;
    }


    .rdv-slot span {
        margin-top: 1px;
        font-size: .69rem;
    }


    .rdv-slot small {
        grid-column: 2;
        margin-top: -6px;
        font-size: .62rem;
    }


    /* =========================================================
   CRENEAU DISPONIBLE
   ========================================================= */

    .rdv-slot.available {
        border: 1px solid #b5d2ba;
        background: #f6fbf6;
        color: var(--rdv-dark);
        cursor: pointer;
    }


        .rdv-slot.available > i {
            color: var(--rdv-green);
            background: #e3efe5;
        }


        .rdv-slot.available small {
            color: #62916e;
        }


        .rdv-slot.available:hover {
            transform: translateY(-2px);
            border-color: #66a675;
            background: #edf7ef;
            box-shadow: 0 7px 15px rgba(50, 100, 70, .10);
        }


    /* =========================================================
   CRENEAU INDISPONIBLE
   ========================================================= */

    .rdv-slot.unavailable {
        border: 1px solid #efc8c8;
        background: #fff4f4;
        color: #a65a5a;
        cursor: not-allowed;
        opacity: .82;
    }


        .rdv-slot.unavailable > i {
            color: #d05b5b;
            background: #ffe4e4;
        }


        .rdv-slot.unavailable small {
            color: #c16464;
        }


    /* =========================================================
   CRENEAU SELECTIONNE
   ========================================================= */

    .rdv-slot.selected {
        border-color: var(--rdv-green);
        background: linear-gradient( 135deg, #3e8068, #2f6e59 );
        color: #ffffff;
        box-shadow: 0 9px 20px rgba(47, 110, 89, .20);
    }


        .rdv-slot.selected > i {
            color: var(--rdv-green);
            background: #ffffff;
        }


        .rdv-slot.selected small {
            color: rgba(255, 255, 255, .78);
        }


        .rdv-slot.selected:hover {
            background: linear-gradient( 135deg, #3e8068, #2f6e59 );
        }


/* =========================================================
   LEGENDE CRENEAUX
   ========================================================= */

.rdv-slot-legend {
    margin-top: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--rdv-muted);
    font-size: .68rem;
}


    .rdv-slot-legend span {
        display: flex;
        align-items: center;
        gap: 6px;
    }


    .rdv-slot-legend i {
        width: 9px;
        height: 9px;
        display: block;
        border-radius: 50%;
    }


.rdv-legend-green {
    background: #73ae7b;
}


.rdv-legend-red {
    background: #d96969;
}


.rdv-legend-selected {
    background: var(--rdv-green);
}


/* =========================================================
   RECAPITULATIF
   ========================================================= */

.rdv-selection-summary {
    margin-top: 22px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid #bad1bf;
    border-radius: 14px;
    background: linear-gradient( 135deg, #edf5ea, #f7faf5 );
}


.rdv-selection-summary-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--rdv-green);
}


.rdv-selection-summary span,
.rdv-selection-summary strong {
    display: block;
}


.rdv-selection-summary span {
    margin-bottom: 3px;
    color: var(--rdv-muted);
    font-size: .68rem;
}


.rdv-selection-summary strong {
    color: var(--rdv-dark);
    font-size: .83rem;
}


/* =========================================================
   FOOTER RESERVATION
   ========================================================= */

.rdv-reservation-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.rdv-duration-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--rdv-muted);
    font-size: .72rem;
}


    .rdv-duration-inline > i {
        color: #83a979;
    }


    .rdv-duration-inline strong {
        color: var(--rdv-dark);
    }


/* =========================================================
   BOUTON SUIVANT
   ========================================================= */

.rdv-next {
    min-height: 42px;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient( 135deg, #4f8a72, #2f6e59 );
    color: #ffffff;
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(47, 110, 89, .16);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}


    .rdv-next:hover {
        transform: translateY(-2px);
        background: linear-gradient( 135deg, #447a65, #255846 );
        box-shadow: 0 10px 22px rgba(47, 110, 89, .24);
    }


/* =========================================================
   LISTE DES RENDEZ-VOUS
   ========================================================= */

.rdv-list-card {
    padding: 22px;
}


.rdv-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--rdv-border);
    border-radius: 14px;
}


.rdv-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}


    .rdv-table th {
        padding: 13px 14px;
        background: #fafbf8;
        color: var(--rdv-muted);
        font-size: .68rem;
        font-weight: 700;
        text-align: left;
    }


    .rdv-table td {
        padding: 14px;
        border-top: 1px solid var(--rdv-border);
        color: var(--rdv-text);
        font-size: .75rem;
        vertical-align: middle;
    }


        .rdv-table td > strong,
        .rdv-table td > small {
            display: block;
        }


        .rdv-table td > small {
            margin-top: 2px;
            color: var(--rdv-muted);
        }


/* =========================================================
   CELLULE DATE
   ========================================================= */

.rdv-date-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}


    .rdv-date-cell > i {
        color: var(--rdv-green);
        font-size: 1rem;
    }


    .rdv-date-cell strong,
    .rdv-date-cell span {
        display: block;
    }


    .rdv-date-cell span {
        color: var(--rdv-muted);
        font-size: .67rem;
    }


/* =========================================================
   BADGES
   ========================================================= */

.rdv-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #edf5ee;
    color: var(--rdv-green);
    font-size: .68rem;
}


    .rdv-type-badge.domicile {
        background: #eef3e8;
    }


.rdv-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #eff6ec;
    color: #3d7454;
    font-size: .67rem;
}


    .rdv-status i {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #5b9c6e;
    }


/* =========================================================
   ACTIONS
   ========================================================= */

.rdv-actions {
    display: flex;
    gap: 7px;
}


    .rdv-actions button {
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 7px;
        font-size: .67rem;
        cursor: pointer;
        transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }


        .rdv-actions button:hover {
            transform: translateY(-1px);
        }


.rdv-detail-btn {
    border: 1px solid var(--rdv-border);
    background: #ffffff;
    color: var(--rdv-text);
}


    .rdv-detail-btn:hover {
        background: #f4f8f4;
        border-color: rgba(47, 110, 89, .20);
    }


.rdv-cancel-btn {
    border: 1px solid #f0d3d3;
    background: #fffafa;
    color: #c74e4e;
}


    .rdv-cancel-btn:hover {
        background: #fff1f1;
        border-color: #e6bcbc;
    }



.rdv-step-error {
    margin-top: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5bcbc;
    border-radius: 11px;
    background: #fff3f3;
    color: #a94444;
    font-size: .73rem;
    font-weight: 600;
}

    .rdv-step-error > i {
        color: #cf5d5d;
    }

/* =========================================================
   RESPONSIVE - GRAND ECRAN / TABLETTE
   ========================================================= */

@media (max-width: 1200px) {

    .rdv-stats {
        grid-template-columns: repeat(2, 1fr);
    }


    .rdv-slots {
        grid-template-columns: repeat(3, 1fr);
    }


    .rdv-calendar-days {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   RESPONSIVE - TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    .rdv-layout {
        grid-template-columns: 1fr;
    }


    .rdv-sidebar {
        display: none;
    }


    .rdv-main {
        padding: 25px 18px;
    }
}


/* =========================================================
   RESPONSIVE - PETITE TABLETTE
   ========================================================= */

@media (max-width: 700px) {

    .rdv-reservation {
        padding: 18px 14px;
    }


    .rdv-types {
        grid-template-columns: 1fr;
    }


    .rdv-calendar-days {
        display: flex;
        overflow-x: auto;
        padding-bottom: 7px;
        scroll-snap-type: x proximity;
    }


    .rdv-calendar-day {
        min-width: 92px;
        scroll-snap-align: start;
    }


    .rdv-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .rdv-reservation-footer {
        flex-direction: column;
        align-items: stretch;
    }


    .rdv-next {
        width: 100%;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .rdv-main {
        padding: 20px 12px;
    }


    .rdv-header {
        align-items: flex-start;
    }


    .rdv-header-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }


    .rdv-header h1 {
        font-size: 1.4rem;
    }


    .rdv-header p {
        font-size: .78rem;
    }


    .rdv-stats {
        grid-template-columns: 1fr;
    }


    .rdv-card {
        padding: 18px 14px;
    }


    .rdv-card-title {
        align-items: flex-start;
    }

    .rdv-reservation-section-title {
        align-items: flex-start;
    }
}


/* =========================================================
   RESPONSIVE - PETIT MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .rdv-slots {
        grid-template-columns: 1fr;
    }

    .rdv-type {
        padding: 14px;
    }


    .rdv-type-icon {
        width: 46px;
        height: 46px;
    }


    .rdv-selection-summary {
        padding: 13px;
    }


        .rdv-selection-summary strong {
            font-size: .76rem;
        }
}

/* =========================================================
   ETAPE 2 - INFORMATIONS CLIENT
   ========================================================= */

.rdv-information-card {
    overflow: hidden;
    border: 1px solid var(--rdv-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(31, 75, 59, .05);
}


/* =========================================================
   HEADER
   ========================================================= */

.rdv-information-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 18px;
}

.rdv-information-number {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 145deg, #3e8068, #2f6e59 );
    color: #ffffff;
    font-size: .78rem;
    font-weight: 800;
}

.rdv-information-header strong {
    display: block;
    color: var(--rdv-dark);
    font-size: .95rem;
    font-weight: 800;
}

.rdv-information-header p {
    margin: 4px 0 0;
    color: var(--rdv-muted);
    font-size: .72rem;
}


/* =========================================================
   CONTENU
   ========================================================= */

.rdv-information-content {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(270px, .9fr);
    gap: 42px;
    padding: 18px 24px 26px;
}


/* =========================================================
   TITRES
   ========================================================= */

.rdv-information-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--rdv-green);
}

    .rdv-information-subtitle > i {
        width: 20px;
        text-align: center;
    }

    .rdv-information-subtitle strong {
        color: var(--rdv-dark);
        font-size: .82rem;
    }

.rdv-address-title {
    margin-top: 30px;
}


/* =========================================================
   FORMULAIRE
   ========================================================= */

.rdv-client-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.rdv-form-group {
    min-width: 0;
}

.rdv-form-group-full {
    grid-column: 1 / -1;
}

.rdv-form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--rdv-text);
    font-size: .75rem;
    font-weight: 600;
}

    .rdv-form-group label > span {
        margin-left: 2px;
        color: #dc5858;
    }

.rdv-field-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 9px;
}

.rdv-input-wrapper {
    position: relative;
}

    .rdv-input-wrapper > i {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: var(--rdv-text);
        font-size: .84rem;
        pointer-events: none;
    }

    .rdv-input-wrapper input {
        width: 100%;
        height: 46px;
        padding: 0 15px 0 44px;
        border: 1px solid #d5ddda;
        border-radius: 9px;
        background: #ffffff;
        color: var(--rdv-text);
        font-family: inherit;
        font-size: .78rem;
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

        .rdv-input-wrapper input:hover {
            border-color: #b7cac2;
        }

        .rdv-input-wrapper input:focus {
            border-color: var(--rdv-green);
            box-shadow: 0 0 0 3px rgba(47, 110, 89, .08);
        }

        .rdv-input-wrapper input.rdv-input-invalid {
            border-color: #dc7777;
            background: #fffafa;
        }

.rdv-field-valid {
    display: none;
    color: #259269;
    font-size: .9rem;
}

    .rdv-field-valid.visible {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.rdv-input-help {
    display: block;
    margin-top: 6px;
    color: var(--rdv-muted);
    font-size: .64rem;
}


/* =========================================================
   AIDE
   ========================================================= */

.rdv-information-help {
    align-self: start;
    display: flex;
    gap: 13px;
    margin-top: 2px;
    padding: 20px;
    border: 1px solid #bcd7ca;
    border-radius: 12px;
    background: linear-gradient( 135deg, #fbfefd, #f6faf7 );
}

.rdv-information-help-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rdv-green);
    color: #ffffff;
    font-size: .72rem;
}

.rdv-information-help strong {
    display: block;
    margin-bottom: 8px;
    color: var(--rdv-dark);
    font-size: .75rem;
}

.rdv-information-help p {
    margin: 0;
    color: var(--rdv-text);
    font-size: .70rem;
    line-height: 1.65;
}


/* =========================================================
   ADRESSE EXISTANTE
   ========================================================= */

.rdv-address-valid {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 17px 18px;
    border: 1px solid #b9d8c4;
    border-radius: 12px;
    background: #f6fbf7;
}

.rdv-address-valid-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e2f1e6;
    color: var(--rdv-green);
}

.rdv-address-valid-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--rdv-dark);
    font-size: .74rem;
}

.rdv-address-valid-content p {
    margin: 0;
    color: var(--rdv-muted);
    font-size: .70rem;
    line-height: 1.55;
}


/* =========================================================
   ADRESSE MANQUANTE
   ========================================================= */

.rdv-address-warning {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 17px 18px;
    border: 1px solid #f0c66b;
    border-radius: 12px;
    background: linear-gradient( 135deg, #fffaf0, #fffdf8 );
}

.rdv-address-warning-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc981b;
    font-size: 1.15rem;
}

.rdv-address-warning-content strong {
    display: block;
    margin-bottom: 4px;
    color: #69490a;
    font-size: .74rem;
}

.rdv-address-warning-content p {
    margin: 0;
    color: #805e20;
    font-size: .68rem;
    line-height: 1.5;
}


/* =========================================================
   BOUTON MODIFICATION
   ========================================================= */

.rdv-update-info-btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #83b49b;
    border-radius: 8px;
    background: #ffffff;
    color: var(--rdv-green);
    text-decoration: none;
    font-size: .69rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

    .rdv-update-info-btn:hover {
        transform: translateY(-1px);
        background: #f1f8f3;
    }

    .rdv-update-info-btn.warning {
        border-color: #ef9d27;
        color: #d8790e;
    }

        .rdv-update-info-btn.warning:hover {
            background: #fff7e9;
        }


/* =========================================================
   CHAMPS OBLIGATOIRES
   ========================================================= */

.rdv-required-info {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid #d1e1d8;
    border-radius: 10px;
    background: #f8fbf9;
}

.rdv-required-info-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--rdv-green);
    color: #ffffff;
}

.rdv-required-info strong {
    display: block;
    margin-bottom: 2px;
    color: var(--rdv-dark);
    font-size: .72rem;
}

.rdv-required-info p {
    margin: 0;
    color: var(--rdv-muted);
    font-size: .66rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.rdv-information-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
    border-top: 1px solid var(--rdv-border);
}

.rdv-information-next {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
}

    .rdv-information-next .rdv-next {
        min-width: 180px;
    }

        .rdv-information-next .rdv-next:disabled {
            transform: none;
            background: #a9cabb;
            cursor: not-allowed;
            box-shadow: none;
            opacity: .78;
        }

    .rdv-information-next small {
        color: var(--rdv-muted);
        font-size: .62rem;
    }

        .rdv-information-next small i {
            margin-right: 5px;
        }


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

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

    .rdv-information-help {
        order: -1;
    }
}

@media (max-width: 700px) {

    .rdv-client-info-grid {
        grid-template-columns: 1fr;
    }

    .rdv-form-group-full {
        grid-column: auto;
    }

    .rdv-address-valid,
    .rdv-address-warning {
        grid-template-columns: auto minmax(0, 1fr);
    }

        .rdv-address-valid .rdv-update-info-btn,
        .rdv-address-warning .rdv-update-info-btn {
            grid-column: 1 / -1;
            width: 100%;
        }

    .rdv-information-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .rdv-information-next {
        align-items: stretch;
    }

        .rdv-information-next .rdv-next {
            width: 100%;
        }

        .rdv-information-next small {
            text-align: center;
        }
}

/* =========================================================
   BOUTON RETOUR
   ========================================================= */

.rdv-back {
    min-height: 42px;
    padding: 9px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #8ab4a0;
    border-radius: 9px;
    background: #ffffff;
    color: var(--rdv-dark);
    font-family: inherit;
    font-size: .74rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 3px 9px rgba(31, 75, 59, .04);
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

    .rdv-back > i {
        color: var(--rdv-green);
        font-size: .78rem;
    }

    .rdv-back:hover {
        transform: translateY(-1px);
        border-color: var(--rdv-green);
        background: #f5faf6;
        color: var(--rdv-green);
        box-shadow: 0 5px 13px rgba(31, 75, 59, .08);
    }

    .rdv-back:active {
        transform: translateY(0);
    }

/* =========================================================
   MODAL MISE A JOUR INFORMATIONS
   ========================================================= */

body.rdv-modal-open {
    overflow: hidden;
}


.rdv-profile-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .rdv-profile-modal.open {
        display: flex;
    }


/* =========================================================
   FOND
   ========================================================= */

.rdv-profile-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 35, 31, .58);
    backdrop-filter: blur(2px);
}


/* =========================================================
   DIALOGUE
   ========================================================= */

.rdv-profile-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(820px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border: 1px solid rgba(26, 81, 67, .10);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(14, 39, 31, .25);
    animation: rdvModalIn .22s ease;
}


@keyframes rdvModalIn {

    from {
        opacity: 0;
        transform: translateY(14px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =========================================================
   HEADER
   ========================================================= */

.rdv-profile-modal-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--rdv-border);
}

.rdv-profile-modal-header-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rdv-light);
    color: var(--rdv-green);
    font-size: 1rem;
}

.rdv-profile-modal-header h3 {
    margin: 0 45px 3px 0;
    color: var(--rdv-dark);
    font-size: 1.08rem;
    font-weight: 800;
}

.rdv-profile-modal-header p {
    margin: 0;
    color: var(--rdv-muted);
    font-size: .72rem;
}

.rdv-profile-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--rdv-text);
    cursor: pointer;
    font-size: .9rem;
    transition: background .2s ease, color .2s ease;
}

    .rdv-profile-modal-close:hover {
        background: #f0f5f1;
        color: var(--rdv-green);
    }


/* =========================================================
   FORMULAIRE
   ========================================================= */

#rdvProfileForm {
    padding: 4px 24px 24px;
}


.rdv-modal-section {
    padding: 22px 0;
    border-bottom: 1px solid var(--rdv-border);
}

.rdv-modal-section-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--rdv-green);
}

    .rdv-modal-section-title > i {
        width: 18px;
        text-align: center;
    }

    .rdv-modal-section-title strong {
        color: var(--rdv-dark);
        font-size: .80rem;
    }


.rdv-modal-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
}


.rdv-modal-grid-three {
    display: grid;
    grid-template-columns: .75fr 1.15fr 1fr;
    gap: 16px;
    margin-top: 16px;
}


.rdv-modal-field {
    min-width: 0;
}

.rdv-modal-full {
    margin-bottom: 16px;
}


.rdv-modal-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--rdv-text);
    font-size: .72rem;
    font-weight: 600;
}

    .rdv-modal-field label span {
        color: #d95858;
    }


.rdv-modal-input {
    position: relative;
}

    .rdv-modal-input > i {
        position: absolute;
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        width: 17px;
        color: #526a63;
        text-align: center;
        pointer-events: none;
    }


    .rdv-modal-input input,
    .rdv-modal-input select {
        width: 100%;
        height: 44px;
        padding: 0 14px 0 42px;
        border: 1px solid #d4deda;
        border-radius: 8px;
        background: #ffffff;
        color: var(--rdv-text);
        font-family: inherit;
        font-size: .74rem;
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    .rdv-modal-input select {
        cursor: pointer;
    }


        .rdv-modal-input input:focus,
        .rdv-modal-input select:focus {
            border-color: var(--rdv-green);
            box-shadow: 0 0 0 3px rgba(47, 110, 89, .08);
        }


.rdv-modal-field-error {
    display: block;
    min-height: 15px;
    margin-top: 5px;
    color: #b94d4d;
    font-size: .63rem;
}

.rdv-modal-hint {
    display: block;
    margin-top: 5px;
    color: var(--rdv-muted);
    font-size: .62rem;
}


/* =========================================================
   MESSAGE SERVEUR
   ========================================================= */

.rdv-modal-message {
    margin-top: 18px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #ebc0c0;
    border-radius: 9px;
    background: #fff4f4;
    color: #a94444;
    font-size: .69rem;
}

    .rdv-modal-message.success {
        border-color: #bddbc7;
        background: #f1faf4;
        color: var(--rdv-green);
    }


/* =========================================================
   INFO
   ========================================================= */

.rdv-modal-information {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 20px;
    padding: 13px 15px;
    border: 1px solid #c7ded2;
    border-radius: 9px;
    background: #f4faf6;
    color: var(--rdv-green);
    font-size: .67rem;
}

    .rdv-modal-information > i {
        font-size: .9rem;
    }


/* =========================================================
   FOOTER MODAL
   ========================================================= */

.rdv-profile-modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}


.rdv-modal-cancel,
.rdv-modal-save {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 17px;
    border-radius: 8px;
    font-family: inherit;
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
}


.rdv-modal-cancel {
    border: 1px solid #d1dbd6;
    background: #ffffff;
    color: var(--rdv-text);
}

    .rdv-modal-cancel:hover {
        border-color: #aebfb7;
        background: #f7f9f8;
    }


.rdv-modal-save {
    border: 0;
    background: linear-gradient( 135deg, #4f8a72, #2f6e59 );
    color: #ffffff;
    box-shadow: 0 7px 17px rgba(47, 110, 89, .18);
}

    .rdv-modal-save:hover {
        background: linear-gradient( 135deg, #447a65, #255846 );
    }

    .rdv-modal-save:disabled {
        cursor: wait;
        opacity: .65;
    }


/* =========================================================
   RESPONSIVE MODAL
   ========================================================= */

@media (max-width: 700px) {

    .rdv-profile-modal {
        padding: 12px;
    }

    .rdv-profile-modal-dialog {
        max-height: calc(100vh - 24px);
    }

    .rdv-modal-grid-two,
    .rdv-modal-grid-three {
        grid-template-columns: 1fr;
    }

    .rdv-profile-modal-header,
    #rdvProfileForm {
        padding-left: 17px;
        padding-right: 17px;
    }
}

/* =========================================================
   ETAPE 3 - PAIEMENT
   ========================================================= */

.rdv-payment-card {
    overflow: hidden;
    border: 1px solid var(--rdv-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(31, 75, 59, .05);
}


/* HEADER */

.rdv-payment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid var(--rdv-border);
}

.rdv-payment-number {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 145deg, #3e8068, #2f6e59 );
    color: #ffffff;
    font-size: .78rem;
    font-weight: 800;
}

.rdv-payment-header strong {
    display: block;
    color: var(--rdv-dark);
    font-size: .95rem;
    font-weight: 800;
}

.rdv-payment-header p {
    margin: 4px 0 0;
    color: var(--rdv-muted);
    font-size: .72rem;
}


/* CONTENU */

.rdv-payment-content {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, .75fr);
    gap: 38px;
    padding: 24px;
}


/* =========================================================
   RECAP RDV
   ========================================================= */

.rdv-payment-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid #c9ddd3;
    border-radius: 12px;
    background: linear-gradient( 135deg, #f8fcf9, #f2f8f4 );
}

.rdv-payment-summary-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dceee4;
    color: var(--rdv-green);
    font-size: 1.05rem;
}

.rdv-payment-summary-content {
    min-width: 0;
}

    .rdv-payment-summary-content > strong {
        display: block;
        margin-bottom: 8px;
        color: var(--rdv-dark);
        font-size: .84rem;
    }

.rdv-payment-summary-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

    .rdv-payment-summary-details > span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--rdv-muted);
        font-size: .68rem;
    }

    .rdv-payment-summary-details i {
        color: var(--rdv-green);
    }


/* =========================================================
   METHODES
   ========================================================= */

.rdv-payment-method-title {
    margin-top: 28px;
}

.rdv-payment-methods {
    display: grid;
    gap: 11px;
}

.rdv-payment-method {
    width: 100%;
    display: grid;
    grid-template-columns: 20px 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border: 1px solid #d5dfda;
    border-radius: 11px;
    background: #ffffff;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

    .rdv-payment-method:hover {
        transform: translateY(-1px);
        border-color: #8fb8a5;
        background: #fafdfb;
    }

    .rdv-payment-method.selected {
        border-color: var(--rdv-green);
        background: #f4faf6;
        box-shadow: 0 0 0 3px rgba(47, 110, 89, .07);
    }


/* RADIO */

.rdv-payment-radio {
    position: relative;
    width: 17px;
    height: 17px;
    border: 1.5px solid #9baba4;
    border-radius: 50%;
    background: #ffffff;
}

.rdv-payment-method.selected
.rdv-payment-radio {
    border-color: var(--rdv-green);
}

    .rdv-payment-method.selected
    .rdv-payment-radio::after {
        content: "";
        position: absolute;
        inset: 3px;
        border-radius: 50%;
        background: var(--rdv-green);
    }


/* ICON */

.rdv-payment-method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--rdv-light);
    color: var(--rdv-green);
    font-size: 1rem;
}

    .rdv-payment-method-icon.paypal {
        color: #193b7a;
    }


/* TEXTE */

.rdv-payment-method-content {
    min-width: 0;
}

    .rdv-payment-method-content strong {
        display: block;
        margin-bottom: 3px;
        color: var(--rdv-dark);
        font-size: .76rem;
    }

    .rdv-payment-method-content small {
        display: block;
        color: var(--rdv-muted);
        font-size: .64rem;
    }


/* LOGOS */

.rdv-payment-cards {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #304f68;
    font-size: 1.25rem;
}

.rdv-payment-paypal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #193b7a;
    font-size: .73rem;
    font-weight: 800;
}


/* =========================================================
   SECURITE
   ========================================================= */

.rdv-payment-security {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid #d1e1d8;
    border-radius: 10px;
    background: #f8fbf9;
}

.rdv-payment-security-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--rdv-green);
    color: #ffffff;
}

.rdv-payment-security strong {
    display: block;
    margin-bottom: 2px;
    color: var(--rdv-dark);
    font-size: .72rem;
}

.rdv-payment-security p {
    margin: 0;
    color: var(--rdv-muted);
    font-size: .65rem;
}


/* =========================================================
   TOTAL
   ========================================================= */

.rdv-payment-total {
    align-self: start;
    padding: 20px;
    border: 1px solid #c8dcd2;
    border-radius: 13px;
    background: linear-gradient( 145deg, #fbfefc, #f4f9f6 );
}

.rdv-payment-total-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--rdv-green);
}

    .rdv-payment-total-header strong {
        color: var(--rdv-dark);
        font-size: .78rem;
    }

.rdv-payment-total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--rdv-muted);
    font-size: .71rem;
}

    .rdv-payment-total-line strong {
        color: var(--rdv-dark);
    }

.rdv-payment-total-separator {
    height: 1px;
    margin: 17px 0;
    background: #d9e4de;
}

.rdv-payment-total-final {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
}

    .rdv-payment-total-final span {
        color: var(--rdv-dark);
        font-size: .77rem;
        font-weight: 700;
    }

    .rdv-payment-total-final strong {
        color: var(--rdv-green);
        font-size: 1.35rem;
        font-weight: 800;
    }

.rdv-payment-tax {
    margin-top: 4px;
    color: var(--rdv-muted);
    text-align: right;
    font-size: .59rem;
}


/* EXPIRATION */

.rdv-payment-expiration {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #d9e4de;
    color: #7b6651;
    font-size: .63rem;
    line-height: 1.45;
}

    .rdv-payment-expiration > i {
        margin-top: 2px;
        color: #c18b42;
    }


/* =========================================================
   BOUTON PAYER
   ========================================================= */

#rdvPayButton {
    min-width: 190px;
}

#rdvPayButtonAmount {
    margin-left: 2px;
    font-weight: 800;
}

#rdvPayButton:disabled {
    transform: none;
    background: #a9cabb;
    cursor: not-allowed;
    box-shadow: none;
    opacity: .78;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

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

    .rdv-payment-total {
        order: -1;
    }
}


@media (max-width: 600px) {

    .rdv-payment-method {
        grid-template-columns: 20px 38px minmax(0, 1fr);
    }

    .rdv-payment-cards,
    .rdv-payment-paypal {
        display: none;
    }

    .rdv-payment-summary-details {
        flex-direction: column;
        gap: 5px;
    }
}

/* =========================================================
   MODALS ACTIONS RENDEZ-VOUS
   ========================================================= */

.rdv-action-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .rdv-action-modal.open {
        display: flex;
    }

.rdv-action-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 48, 42, .42);
    backdrop-filter: blur(3px);
}

.rdv-action-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(600px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border: 1px solid #d9e5df;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(21, 61, 56, .18);
}

.rdv-cancel-dialog {
    width: min(540px, 100%);
}


/* HEADER */

.rdv-action-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-bottom: 1px solid #e4ece8;
}

.rdv-action-modal-title-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e7f2ec;
    color: #2f6e59;
}

    .rdv-action-modal-title-icon.danger {
        background: #fff0f0;
        color: #c95757;
    }

.rdv-action-modal-header h3 {
    margin: 0;
    color: #153d38;
    font-size: .95rem;
}

.rdv-action-modal-header p {
    margin: 4px 0 0;
    color: #788b84;
    font-size: .68rem;
}

.rdv-action-modal-close {
    width: 34px;
    height: 34px;
    margin-left: auto;
    border: 0;
    border-radius: 9px;
    background: #f4f7f5;
    color: #667a72;
    cursor: pointer;
}


/* BODY */

.rdv-action-modal-body {
    padding: 24px;
}

.rdv-detail-main {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid #cfe0d7;
    border-radius: 12px;
    background: #f5faf7;
}

.rdv-detail-type-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #dceee4;
    color: #2f6e59;
}

.rdv-detail-main span,
.rdv-detail-item span {
    display: block;
    margin-bottom: 3px;
    color: #84948e;
    font-size: .62rem;
}

.rdv-detail-main strong,
.rdv-detail-item strong {
    color: #153d38;
    font-size: .76rem;
}

.rdv-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.rdv-detail-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid #e0e8e4;
    border-radius: 10px;
}

    .rdv-detail-item > i {
        width: 28px;
        text-align: center;
        color: #2f6e59;
    }

.rdv-detail-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #edf1ef;
}

    .rdv-detail-line > span {
        color: #788b84;
        font-size: .67rem;
    }

        .rdv-detail-line > span i {
            width: 18px;
            color: #2f6e59;
        }

    .rdv-detail-line > strong {
        max-width: 65%;
        color: #153d38;
        text-align: right;
        font-size: .7rem;
    }

.rdv-detail-payment-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 16px;
    border-radius: 11px;
    background: #f5faf7;
}

    .rdv-detail-payment-box span {
        display: block;
        color: #788b84;
        font-size: .62rem;
    }

    .rdv-detail-payment-box strong {
        color: #2f6e59;
        font-size: 1rem;
    }

.rdv-detail-payment-method {
    padding: 6px 9px;
    border-radius: 20px;
    background: #e1efe7;
    color: #2f6e59 !important;
    font-weight: 700;
}

.rdv-detail-visio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    border-radius: 10px;
    background: #2f6e59;
    color: #fff;
    text-decoration: none;
}


/* ANNULATION */

.rdv-cancel-summary {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border: 1px solid #dce6e1;
    border-radius: 11px;
    background: #f8fbf9;
}

    .rdv-cancel-summary > i {
        color: #2f6e59;
        font-size: 1.15rem;
    }

    .rdv-cancel-summary strong {
        display: block;
        color: #153d38;
        font-size: .76rem;
    }

    .rdv-cancel-summary span {
        color: #788b84;
        font-size: .66rem;
    }

.rdv-cancel-warning,
.rdv-cancel-refund {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    padding: 14px;
    border-radius: 10px;
}

.rdv-cancel-warning {
    border: 1px solid #f0d6b5;
    background: #fff9f1;
}

    .rdv-cancel-warning > i {
        color: #ce8a36;
    }

.rdv-cancel-refund {
    border: 1px solid #cbd9ec;
    background: #f5f8fd;
}

    .rdv-cancel-refund > i {
        color: #193b7a;
        font-size: 1.1rem;
    }

    .rdv-cancel-warning strong,
    .rdv-cancel-refund strong {
        color: #153d38;
        font-size: .7rem;
    }

    .rdv-cancel-warning p,
    .rdv-cancel-refund p {
        margin: 3px 0 0;
        color: #70817a;
        font-size: .64rem;
    }

    .rdv-cancel-refund small {
        display: block;
        margin-top: 5px;
        color: #687b91;
        font-size: .59rem;
    }


/* FOOTER */

.rdv-action-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #e4ece8;
    background: #fafcfb;
}

.rdv-modal-secondary,
.rdv-modal-danger {
    padding: 9px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: .67rem;
    font-weight: 700;
    cursor: pointer;
}

.rdv-modal-secondary {
    border: 1px solid #d5dfda;
    background: #fff;
    color: #51665e;
}

.rdv-modal-danger {
    border: 1px solid #e9b9b9;
    background: #fff1f1;
    color: #c34e4e;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .rdv-detail-grid {
        grid-template-columns: 1fr;
    }

    .rdv-action-modal-footer {
        flex-direction: column-reverse;
    }

    .rdv-modal-secondary,
    .rdv-modal-danger {
        width: 100%;
    }
}

.user-sidebar-badge {
    min-width: 20px;
    height: 20px;
    margin-left: auto;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #2f6e59;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
}

/* =========================================================
   STEP 4 - CONFIRMATION
   ========================================================= */

#rdvStep4 {
    width: 100%;
}

.rdv-confirmation-card {
    width: 100%;
    padding: 48px 40px 40px;
    background: #ffffff;
}


/* =========================================================
   ZONE SUCCES
   ========================================================= */

.rdv-confirmation-success {
    position: relative;
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}


.rdv-confirmation-check {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, #edf6e9, #dcebd8 );
    color: #287a59;
    font-size: 46px;
    box-shadow: 0 12px 30px rgba(40, 122, 89, 0.12);
}


.rdv-confirmation-success h2 {
    margin: 0 0 12px;
    color: #153d38;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}


.rdv-confirmation-success p {
    margin: 0;
    color: #64736f;
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   PETITS ELEMENTS DECORATIFS
   ========================================================= */

.rdv-confirmation-confetti {
    position: absolute;
    inset: -10px 0 auto;
    height: 110px;
    pointer-events: none;
}


    .rdv-confirmation-confetti span {
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 2px;
        background: #4a9872;
        transform: rotate(45deg);
    }


        .rdv-confirmation-confetti span:nth-child(1) {
            left: 25%;
            top: 18px;
        }


        .rdv-confirmation-confetti span:nth-child(2) {
            left: 32%;
            top: 2px;
            background: #9fc99a;
        }


        .rdv-confirmation-confetti span:nth-child(3) {
            right: 30%;
            top: 12px;
            background: #78ad72;
        }


        .rdv-confirmation-confetti span:nth-child(4) {
            right: 23%;
            top: 40px;
            background: #c6ddc2;
        }


        .rdv-confirmation-confetti span:nth-child(5) {
            left: 36%;
            top: 62px;
            width: 6px;
            height: 6px;
        }


        .rdv-confirmation-confetti span:nth-child(6) {
            right: 37%;
            top: 66px;
            width: 6px;
            height: 6px;
            background: #b6d5ae;
        }


/* =========================================================
   RECAPITULATIF
   ========================================================= */

.rdv-confirmation-summary {
    max-width: 920px;
    margin: 0 auto 24px;
    padding: 24px 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: #ffffff;
    border: 1px solid #dfe7e3;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(21, 61, 56, 0.07);
}


.rdv-confirmation-summary-item {
    min-width: 0;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-right: 1px solid #edf1ef;
}


    .rdv-confirmation-summary-item:last-child {
        border-right: none;
    }


.rdv-confirmation-summary-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf6ec;
    color: #287a59;
    font-size: 18px;
}


.rdv-confirmation-summary-item > div:last-child {
    min-width: 0;
}


.rdv-confirmation-summary-item span {
    display: block;
    margin-bottom: 3px;
    color: #87938f;
    font-size: 12px;
    font-weight: 500;
}


.rdv-confirmation-summary-item strong {
    display: block;
    color: #153d38;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}


.rdv-confirmation-summary-item small {
    display: block;
    margin-top: 2px;
    color: #87938f;
    font-size: 11px;
}


/* =========================================================
   CONSEIL
   ========================================================= */

.rdv-confirmation-advice {
    max-width: 920px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient( 90deg, #f2f8ee 0%, #fbfdf9 100% );
    border: 1px solid #bfd8b9;
    border-radius: 12px;
}


.rdv-confirmation-advice-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5f1df;
    color: #287a59;
    font-size: 20px;
}


.rdv-confirmation-advice strong {
    display: block;
    margin-bottom: 4px;
    color: #174d3d;
    font-size: 14px;
    font-weight: 700;
}


.rdv-confirmation-advice p {
    margin: 0;
    color: #64736f;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   BOUTONS
   ========================================================= */

.rdv-confirmation-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


.rdv-confirmation-primary,
.rdv-confirmation-secondary {
    min-width: 205px;
    min-height: 46px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}


/* BOUTON PRINCIPAL */

.rdv-confirmation-primary {
    color: #ffffff !important;
    background: #2f795d;
    border: 1px solid #2f795d;
    box-shadow: 0 7px 16px rgba(47, 121, 93, 0.16);
}


    .rdv-confirmation-primary:hover {
        color: #ffffff !important;
        background: #25684f;
        border-color: #25684f;
        transform: translateY(-1px);
        box-shadow: 0 9px 20px rgba(47, 121, 93, 0.22);
    }


/* BOUTON SECONDAIRE */

.rdv-confirmation-secondary {
    color: #27684f !important;
    background: #ffffff;
    border: 1px solid #a7c8b4;
}


    .rdv-confirmation-secondary:hover {
        color: #174d3d !important;
        background: #f4f9f3;
        border-color: #7dad91;
        transform: translateY(-1px);
    }


/* =========================================================
   STEPS TERMINES
   ========================================================= */

.rdv-reservation-steps > div.completed span {
    background: #287a59;
    color: #ffffff;
}


.rdv-reservation-steps > div.completed strong {
    color: #287a59;
}


.rdv-reservation-steps > div.completed::after {
    background: #72a98c;
}


/* =========================================================
   STEP 4 ACTIF
   ========================================================= */

.rdv-reservation-steps
[data-step-indicator="4"].active span {
    background: #287a59;
    color: #ffffff;
}


.rdv-reservation-steps
[data-step-indicator="4"].active strong {
    color: #174d3d;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .rdv-confirmation-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }


    .rdv-confirmation-summary-item {
        border-right: none;
        padding: 5px;
    }
}


@media (max-width: 650px) {

    .rdv-confirmation-card {
        padding: 35px 18px 28px;
    }


    .rdv-confirmation-check {
        width: 78px;
        height: 78px;
        font-size: 36px;
    }


    .rdv-confirmation-success h2 {
        font-size: 25px;
    }


    .rdv-confirmation-summary {
        grid-template-columns: 1fr;
        padding: 20px;
    }


    .rdv-confirmation-summary-item {
        padding: 8px 0;
    }


    .rdv-confirmation-actions {
        flex-direction: column;
    }


    .rdv-confirmation-primary,
    .rdv-confirmation-secondary {
        width: 100%;
    }
}
/* =========================================================
       LISTES / PAGINATION RENDEZ-VOUS
       ========================================================= */

.rdv-history-card {
    margin-top: 24px;
}

.rdv-pagination {
    padding: 18px 16px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid #edf1ef;
}

.rdv-page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rdv-page-button,
.rdv-page-number {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce6e1;
    border-radius: 8px;
    background: #ffffff;
    color: #315f53;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
}

.rdv-page-button {
    padding: 0 13px;
    gap: 7px;
}

.rdv-page-number {
    min-width: 36px;
    padding: 0 8px;
}

    .rdv-page-button:hover,
    .rdv-page-number:hover {
        color: #1f624d;
        background: #f0f7f1;
        border-color: #a9cbb8;
    }

    .rdv-page-number.active {
        color: #ffffff;
        background: #2f795d;
        border-color: #2f795d;
        box-shadow: 0 5px 12px rgba(47, 121, 93, .15);
    }

.rdv-page-button.disabled {
    pointer-events: none;
    opacity: .42;
}

.rdv-status.completed {
    background: #edf6ec;
    color: #37775d;
}

.rdv-status.cancelled {
    background: #fff0f0;
    color: #bf5555;
}

.rdv-status.absence {
    background: #fff7e8;
    color: #a76f16;
}

@media (max-width: 650px) {
    .rdv-pagination {
        flex-wrap: wrap;
    }

    .rdv-page-button {
        min-width: 110px;
    }
}


/* =========================================================
   PAGE MES INFORMATIONS
   ========================================================= */

.user-info-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* =========================================================
   MESSAGE SUCCES
   ========================================================= */

.user-info-success {
    margin-bottom: 20px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #b9d7c4;
    border-radius: 10px;
    background: #f1f8f3;
    color: #256749;
    font-size: 14px;
    font-weight: 600;
}


    .user-info-success i {
        font-size: 18px;
        color: #2f795d;
    }


/* =========================================================
   CARTE
   ========================================================= */

.user-info-card {
    padding-bottom: 26px;
}


    .user-info-card + .user-info-card {
        margin-top: 0;
    }


/* =========================================================
   GRILLE
   ========================================================= */

.user-info-grid {
    padding: 10px 26px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}


.user-info-full {
    grid-column: 1 / -1;
}


/* =========================================================
   CHAMP
   ========================================================= */

.user-info-field {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}


    .user-info-field label {
        color: #153d38;
        font-size: 13px;
        font-weight: 700;
    }


/* =========================================================
   INPUT WRAPPER
   ========================================================= */

.user-info-input {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid #dce6e1;
    border-radius: 9px;
    background: #ffffff;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}


    .user-info-input:focus-within {
        border-color: #6ea98b;
        box-shadow: 0 0 0 3px rgba(47, 121, 93, .08);
        background: #ffffff;
    }


    /* =========================================================
   ICONE CHAMP
   ========================================================= */

    .user-info-input > i {
        width: 46px;
        flex: 0 0 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #4f8170;
        font-size: 15px;
        border-right: 1px solid #edf1ef;
    }


    /* =========================================================
   INPUTS
   ========================================================= */

    .user-info-input input,
    .user-info-input select {
        width: 100%;
        height: 46px;
        padding: 0 14px;
        border: none;
        outline: none;
        background: transparent;
        color: #163d38;
        font-size: 14px;
        font-family: inherit;
    }


        .user-info-input input::placeholder {
            color: #9aa6a2;
        }


    .user-info-input select {
        cursor: pointer;
    }


    /* =========================================================
   DATE
   ========================================================= */

    .user-info-input input[type="date"] {
        color: #163d38;
    }


/* =========================================================
   ERREURS
   ========================================================= */

.user-info-error {
    min-height: 16px;
    color: #c94f4f;
    font-size: 12px;
    line-height: 1.35;
}


    .user-info-error:empty {
        display: none;
    }


/* =========================================================
   ERREUR VALIDATION ASP.NET
   ========================================================= */

.input-validation-error {
    color: #163d38;
}


.user-info-input:has(.input-validation-error) {
    border-color: #e5a4a4;
    background: #fffafa;
}


.field-validation-error {
    color: #c94f4f;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.user-info-actions {
    margin-top: 26px;
    padding: 22px 26px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #edf1ef;
}


/* =========================================================
   BOUTON ENREGISTRER
   ========================================================= */

.user-info-save {
    min-height: 45px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #2f795d;
    border-radius: 8px;
    background: #2f795d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 7px 16px rgba(47, 121, 93, .14);
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}


    .user-info-save:hover {
        background: #25664e;
        border-color: #25664e;
        transform: translateY(-1px);
        box-shadow: 0 9px 20px rgba(47, 121, 93, .20);
    }


    .user-info-save:active {
        transform: translateY(0);
    }


/* =========================================================
   PETIT RAPPEL VISUEL POUR LES CARTES
   ========================================================= */

.user-info-card .rdv-card-title {
    margin-bottom: 8px;
}


.user-info-card .rdv-card-title-icon {
    background: #edf6ec;
    color: #2f795d;
}


/* =========================================================
   HOVER CHAMPS
   ========================================================= */

.user-info-input:hover {
    border-color: #c9d9d1;
}


/* =========================================================
   AUTOFILL CHROME
   ========================================================= */

.user-info-input input:-webkit-autofill,
.user-info-input input:-webkit-autofill:hover,
.user-info-input input:-webkit-autofill:focus {
    -webkit-text-fill-color: #163d38;
    box-shadow: 0 0 0 1000px #ffffff inset;
    transition: background-color 5000s ease-in-out 0s;
}


/* =========================================================
   RESPONSIVE TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    .user-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .user-info-full {
        grid-column: auto;
    }
}


/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .user-info-grid {
        padding: 8px 16px 0;
    }


    .user-info-actions {
        padding: 20px 16px 0;
    }


    .user-info-save {
        width: 100%;
    }


    .user-info-input {
        min-height: 46px;
    }


        .user-info-input input,
        .user-info-input select {
            height: 44px;
            font-size: 13px;
        }


        .user-info-input > i {
            width: 42px;
            flex-basis: 42px;
        }
}


/* =========================================================
   CALENDRIER RENDEZ-VOUS - NAVIGATION PAR MOIS
   ========================================================= */

.rdv-calendar-month-navigation {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
}

.rdv-calendar-months {
    display: flex;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: thin;
}

.rdv-calendar-month {
    min-width: 135px;
    padding: 11px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border: 1px solid #dfe8e3;
    border-radius: 12px;
    background: #fff;
    color: #315f53;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

    .rdv-calendar-month span {
        font-weight: 700;
        text-transform: capitalize;
    }

    .rdv-calendar-month small {
        color: #84938d;
    }

    .rdv-calendar-month:hover {
        border-color: #9fc5b2;
        background: #f5faf4;
    }

    .rdv-calendar-month.active {
        border-color: #2f795d;
        background: #eaf4e8;
        color: #174d3d;
        box-shadow: inset 0 -3px 0 #2f795d;
    }

.rdv-calendar-month-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe6e0;
    border-radius: 12px;
    background: #fff;
    color: #286b55;
    cursor: pointer;
    transition: .2s ease;
}

    .rdv-calendar-month-arrow:hover:not(:disabled) {
        background: #edf6ed;
        border-color: #8ebba4;
    }

    .rdv-calendar-month-arrow:disabled {
        opacity: .3;
        cursor: not-allowed;
    }

.rdv-calendar-current-month {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: #174d3d;
}

    .rdv-calendar-current-month i {
        color: #2f795d;
    }

    .rdv-calendar-current-month strong {
        font-size: 15px;
        text-transform: capitalize;
    }

.rdv-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.rdv-calendar-day[hidden] {
    display: none !important;
}

.rdv-calendar-day.is-past,
.rdv-calendar-day.is-sunday {
    opacity: .48;
    background: #f2f4f3;
    border-color: #e3e7e5;
    color: #8b9692;
    cursor: not-allowed;
    box-shadow: none;
}

.rdv-calendar-day.is-today:not(:disabled) {
    border-color: #75a88e;
}

@media (max-width: 900px) {
    .rdv-calendar-days {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .rdv-calendar-days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rdv-calendar-month {
        min-width: 115px;
    }

    .rdv-calendar-month-navigation {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
    }

    .rdv-calendar-month-arrow {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   MES RENDEZ-VOUS - CARTES LISTE / ETAT VIDE CENTRE
   ========================================================= */

.rdv-list-card {
    padding: 30px 34px 34px;
}

/* En-tête centré uniquement sur les cartes de la page Mes rendez-vous */
.rdv-list-card-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 28px;
    padding-bottom: 20px;
    text-align: center;
}

    .rdv-list-card-title::after {
        content: "";
        width: 88px;
        height: 2px;
        margin-top: 4px;
        border-radius: 999px;
        background: linear-gradient( 90deg, transparent, rgba(47, 110, 89, .42), transparent );
    }

    .rdv-list-card-title .rdv-card-title-icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        margin: 0 auto 2px;
        border: 1px solid rgba(47, 110, 89, .08);
        background: #eaf3ec;
        color: #2f6e59;
        font-size: 1.05rem;
    }

    .rdv-list-card-title h2 {
        margin: 0 0 5px;
        color: #153d38;
        font-size: 1.06rem;
        font-weight: 800;
    }

    .rdv-list-card-title p {
        max-width: 560px;
        margin: 0 auto;
        color: #6d8079;
        font-size: .76rem;
        line-height: 1.55;
    }


/* =========================================================
   ETAT VIDE
   ========================================================= */

.rdv-empty-centered {
    width: min(720px, 100%);
    min-height: 112px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid rgba(47, 110, 89, .16);
    border-radius: 16px;
    background: linear-gradient( 135deg, rgba(247, 250, 247, .96), rgba(252, 253, 251, .98) );
    text-align: left;
}

    .rdv-empty-centered .rdv-empty-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #e7f1e9;
        color: #2f6e59;
        font-size: 1.15rem;
    }

    .rdv-empty-centered .rdv-empty-content {
        min-width: 0;
    }

    .rdv-empty-centered strong {
        display: block;
        margin: 0 0 5px;
        color: #153d38;
        font-size: .92rem;
        font-weight: 800;
    }

    .rdv-empty-centered p {
        margin: 0;
        color: #657872;
        font-size: .78rem;
        line-height: 1.55;
    }


/* =========================================================
   CARTE HISTORIQUE
   ========================================================= */

.rdv-history-card {
    margin-top: 24px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .rdv-list-card {
        padding: 24px 18px 26px;
    }

    .rdv-list-card-title {
        margin-bottom: 22px;
    }

    .rdv-empty-centered {
        flex-direction: column;
        padding: 24px 18px;
        text-align: center;
    }

        .rdv-empty-centered .rdv-empty-icon {
            width: 52px;
            height: 52px;
            flex-basis: 52px;
        }
}


/* =========================================================
   MES DOCUMENTS
   ========================================================= */

.documents-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

    .documents-header h1 {
        margin: 0 0 6px 0;
        font-size: 30px;
        font-weight: 700;
        color: #153d38;
    }

    .documents-header p {
        margin: 0;
        color: #74817d;
        font-size: 15px;
    }


/* =========================================================
   BOUTON UPLOAD
   ========================================================= */

.documents-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border: none;
    border-radius: 12px;
    background: #2f6e59;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .documents-upload-button:hover {
        background: #245947;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(47, 110, 89, 0.18);
    }

    .documents-upload-button:active {
        transform: translateY(0);
    }


/* =========================================================
   STATISTIQUES
   ========================================================= */

.documents-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.documents-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 110px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e7ece9;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(21, 61, 56, 0.045);
}

.documents-stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 19px;
}

    .documents-stat-icon.green {
        color: #2f6e59;
        background: #e7f2ed;
    }

    .documents-stat-icon.blue {
        color: #4d7384;
        background: #eaf2f5;
    }

    .documents-stat-icon.orange {
        color: #aa7429;
        background: #fbf1df;
    }

    .documents-stat-icon.red {
        color: #a85050;
        background: #f8eaea;
    }

.documents-stat > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.documents-stat strong {
    font-size: 25px;
    line-height: 1;
    color: #153d38;
    font-weight: 700;
}

.documents-stat span {
    font-size: 13px;
    color: #7a8581;
}


/* =========================================================
   CARTE LISTE
   ========================================================= */

.documents-card {
    background: #fff;
    border: 1px solid #e6ece8;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 24px rgba(21, 61, 56, 0.045);
}

.documents-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    border-bottom: 1px solid #edf0ee;
}

    .documents-card-header h2 {
        margin: 0;
        color: #153d38;
        font-size: 18px;
        font-weight: 700;
    }


/* =========================================================
   FILTRES
   ========================================================= */

.documents-filters {
    display: flex;
    align-items: center;
    gap: 10px;
}

.documents-search {
    position: relative;
    min-width: 250px;
}

    .documents-search > i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #98a19e;
        font-size: 13px;
        pointer-events: none;
    }

    .documents-search input {
        width: 100%;
        height: 42px;
        padding: 0 14px 0 39px;
        border: 1px solid #dce3df;
        border-radius: 10px;
        outline: none;
        background: #fff;
        color: #153d38;
        font-size: 13px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .documents-search input::placeholder {
            color: #a0aaa6;
        }

        .documents-search input:focus {
            border-color: #6b9787;
            box-shadow: 0 0 0 3px rgba(47, 110, 89, 0.09);
        }

.documents-filters select {
    height: 42px;
    min-width: 145px;
    padding: 0 34px 0 13px;
    border: 1px solid #dce3df;
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #51605b;
    font-size: 13px;
    cursor: pointer;
}

    .documents-filters select:focus {
        border-color: #6b9787;
        box-shadow: 0 0 0 3px rgba(47, 110, 89, 0.09);
    }


/* =========================================================
   TABLEAU
   ========================================================= */

.documents-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.documents-table {
    width: 100%;
    border-collapse: collapse;
}

    .documents-table thead {
        background: #f8faf8;
    }

    .documents-table th {
        padding: 14px 20px;
        text-align: left;
        color: #78837f;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        white-space: nowrap;
        border-bottom: 1px solid #e9eeeb;
    }

    .documents-table td {
        padding: 17px 20px;
        color: #53605c;
        font-size: 13px;
        vertical-align: middle;
        border-bottom: 1px solid #eef1ef;
    }

    .documents-table tbody tr {
        transition: background 0.18s ease;
    }

        .documents-table tbody tr:hover {
            background: #fbfcfb;
        }

        .documents-table tbody tr:last-child td {
            border-bottom: none;
        }


/* =========================================================
   NOM DOCUMENT
   ========================================================= */

.documents-name {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 230px;
}

    .documents-name > div:last-child {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .documents-name strong {
        max-width: 260px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #263c36;
        font-size: 13px;
        font-weight: 600;
    }

    .documents-name span {
        max-width: 260px;
        margin-top: 3px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #929b98;
        font-size: 11px;
    }


/* =========================================================
   ICÔNES FICHIERS
   ========================================================= */

.documents-file-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 17px;
}

    .documents-file-icon.pdf {
        background: #fbeaea;
        color: #b85252;
    }

    .documents-file-icon.image {
        background: #e8f2ed;
        color: #39725e;
    }

    .documents-file-icon.word {
        background: #eaf0f7;
        color: #4d6f98;
    }

    .documents-file-icon.excel {
        background: #e6f2eb;
        color: #397658;
    }

    .documents-file-icon.file {
        background: #f0f2f1;
        color: #66736e;
    }


/* =========================================================
   DATE
   ========================================================= */

.documents-table td > strong {
    display: block;
    color: #45534e;
    font-size: 12px;
    font-weight: 600;
}

.documents-date-time {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: #929c98;
}


/* =========================================================
   STATUTS
   ========================================================= */

.documents-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

    .documents-status.valid {
        background: #e6f3ec;
        color: #39725d;
    }

    .documents-status.pending {
        background: #fbf0dc;
        color: #9b6b26;
    }

    .documents-status.expired {
        background: #f6e8e8;
        color: #a45151;
    }

    .documents-status.refused {
        background: #f4e4e4;
        color: #983f3f;
    }


/* =========================================================
   ACTIONS
   ========================================================= */

.documents-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.documents-action {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    color: #78847f;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

    .documents-action:hover {
        color: #2f6e59;
        background: #edf5f1;
        border-color: #dce9e3;
    }


/* =========================================================
   PAGINATION
   ========================================================= */

.documents-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 25px;
    border-top: 1px solid #edf0ee;
    background: #fff;
}

    .documents-pagination > span {
        color: #89938f;
        font-size: 12px;
    }

.documents-page-buttons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.documents-page-button,
.documents-page-number {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe5e2;
    border-radius: 9px;
    background: #fff;
    color: #5c6964;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

    .documents-page-button:hover,
    .documents-page-number:hover {
        background: #edf5f1;
        color: #2f6e59;
        border-color: #cfe1d9;
    }

    .documents-page-number.active {
        background: #2f6e59;
        border-color: #2f6e59;
        color: #fff;
    }


/* =========================================================
   ÉTAT VIDE
   ========================================================= */

.documents-empty {
    min-height: 380px;
    padding: 55px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.documents-empty-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #edf5f1;
    color: #2f6e59;
    font-size: 28px;
}

.documents-empty > strong {
    margin-bottom: 7px;
    color: #153d38;
    font-size: 18px;
    font-weight: 700;
}

.documents-empty > p {
    max-width: 380px;
    margin: 0 0 22px 0;
    color: #87918d;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   BLOC SÉCURITÉ
   ========================================================= */

.documents-security {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 18px 20px;
    background: #edf5f1;
    border: 1px solid #dcebe4;
    border-radius: 14px;
}

.documents-security-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dcece5;
    color: #2f6e59;
    font-size: 17px;
}

.documents-security strong {
    display: block;
    margin-bottom: 3px;
    color: #31564a;
    font-size: 13px;
    font-weight: 700;
}

.documents-security p {
    margin: 0;
    color: #6d8179;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .documents-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .documents-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .documents-filters {
        width: 100%;
    }

    .documents-search {
        flex: 1;
    }
}


@media (max-width: 768px) {

    .documents-header {
        align-items: stretch;
        flex-direction: column;
    }

    .documents-upload-button {
        width: 100%;
    }

    .documents-stats {
        grid-template-columns: 1fr;
    }

    .documents-card-header {
        padding: 20px;
    }

    .documents-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .documents-search {
        width: 100%;
        min-width: 0;
    }

    .documents-filters select {
        width: 100%;
    }

    .documents-table {
        min-width: 820px;
    }

    .documents-pagination {
        align-items: flex-start;
        flex-direction: column;
    }

    .documents-security {
        align-items: flex-start;
    }
}


@media (max-width: 480px) {

    .documents-header h1 {
        font-size: 25px;
    }

    .documents-stat {
        padding: 17px;
    }

    .documents-empty {
        min-height: 330px;
        padding: 40px 20px;
    }
}

/* =========================================================
   MODAL DOCUMENTS
   ========================================================= */

.documents-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

    .documents-modal.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.documents-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 38, 34, .55);
    backdrop-filter: blur(3px);
}

.documents-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(21, 61, 56, .22);
    transform: translateY(15px) scale(.98);
    transition: transform .2s ease;
}

.documents-modal.show .documents-modal-dialog {
    transform: translateY(0) scale(1);
}

.documents-modal-open {
    overflow: hidden;
}


/* HEADER */

.documents-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid #e7ece9;
}

.documents-modal-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.documents-modal-header-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: #e6f2ec;
    color: #2f6e59;
    font-size: 18px;
}

.documents-modal-header h3 {
    margin: 0 0 4px;
    color: #153d38;
    font-size: 19px;
}

.documents-modal-header p {
    margin: 0;
    color: #85908c;
    font-size: 12px;
}

.documents-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #73807b;
    cursor: pointer;
    font-size: 16px;
}

    .documents-modal-close:hover {
        background: #f2f5f3;
        color: #153d38;
    }


/* BODY */

.documents-modal-body {
    padding: 24px;
}

.documents-form-group {
    margin-bottom: 20px;
}

    .documents-form-group > label {
        display: block;
        margin-bottom: 8px;
        color: #31433d;
        font-size: 13px;
        font-weight: 600;
    }

        .documents-form-group > label span {
            color: #b65353;
        }

    .documents-form-group select,
    .documents-form-group textarea {
        width: 100%;
        border: 1px solid #dce4df;
        border-radius: 11px;
        background: #fff;
        color: #33453f;
        font-size: 13px;
        outline: none;
    }

    .documents-form-group select {
        height: 45px;
        padding: 0 13px;
    }

    .documents-form-group textarea {
        min-height: 100px;
        padding: 12px 13px;
        resize: vertical;
    }

        .documents-form-group select:focus,
        .documents-form-group textarea:focus {
            border-color: #6c9989;
            box-shadow: 0 0 0 3px rgba(47, 110, 89, .08);
        }


/* DROP ZONE */

.documents-drop-zone {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 2px dashed #cadbd3;
    border-radius: 14px;
    background: #f9fbfa;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

    .documents-drop-zone:hover,
    .documents-drop-zone.dragging {
        border-color: #2f6e59;
        background: #f1f7f4;
    }

.documents-drop-zone-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #e4f0ea;
    color: #2f6e59;
    font-size: 20px;
}

.documents-drop-zone strong {
    color: #29463d;
    font-size: 14px;
}

.documents-drop-zone p {
    margin: 5px 0;
    color: #87938e;
    font-size: 12px;
}

.documents-drop-zone small {
    color: #9ba5a1;
    font-size: 11px;
}


/* FICHIER SÉLECTIONNÉ */

.documents-file-preview {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid #dce7e1;
    border-radius: 12px;
    background: #f8fbf9;
}

.documents-file-preview-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: #e6f2ec;
    color: #2f6e59;
    font-size: 18px;
}

.documents-file-preview-info {
    min-width: 0;
    flex: 1;
}

    .documents-file-preview-info strong {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #31473f;
        font-size: 13px;
    }

    .documents-file-preview-info span {
        display: block;
        margin-top: 3px;
        color: #8a9590;
        font-size: 11px;
    }

.documents-file-preview button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #8b9691;
    cursor: pointer;
}

    .documents-file-preview button:hover {
        background: #f4e9e9;
        color: #a34b4b;
    }


/* ERREUR */

.documents-upload-error {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #efd2d2;
    border-radius: 10px;
    background: #fbefef;
    color: #9c4d4d;
    font-size: 12px;
}


/* SÉCURITÉ */

.documents-modal-security {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #edf5f1;
    color: #41675a;
}

    .documents-modal-security > i {
        margin-top: 2px;
        color: #2f6e59;
    }

    .documents-modal-security strong {
        display: block;
        margin-bottom: 3px;
        font-size: 12px;
    }

    .documents-modal-security p {
        margin: 0;
        color: #758a82;
        font-size: 11px;
    }


/* FOOTER */

.documents-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px 24px;
    border-top: 1px solid #e7ece9;
    background: #fbfcfb;
}

.documents-modal-cancel,
.documents-modal-submit {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.documents-modal-cancel {
    border: 1px solid #dce3df;
    background: #fff;
    color: #64726d;
}

.documents-modal-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #2f6e59;
    background: #2f6e59;
    color: #fff;
}

    .documents-modal-submit:hover {
        background: #245947;
    }
.documents-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.documents-alert-success {
    background: #e8f4ee;
    border: 1px solid #cfe6da;
    color: #2f6e59;
}

.documents-alert-error {
    background: #faecec;
    border: 1px solid #efd1d1;
    color: #a34d4d;
}

.documents-delete-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
}

.documents-action-delete {
    color: #a75a5a;
}

    .documents-action-delete:hover {
        color: #a13f3f;
        background: #f9eaea;
        border-color: #efd4d4;
    }

/* ============================================================
   MODALE UTILISATEUR
   ============================================================ */

.dashboard-user-modal {
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 22px 70px rgba(22, 57, 49, 0.18);
}


.dashboard-user-modal-header {
    padding: 21px 24px;
    background: #fbfcfa;
    border-bottom: 1px solid rgba(21, 61, 56, 0.07);
}


.dashboard-user-modal-eyebrow {
    display: block;
    margin-bottom: 2px;
    color: #82918c;
    font-size: 9px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .8px;
}


.dashboard-user-modal-header h5 {
    margin: 0;
    color: #183f39;
    font-size: 18px;
    font-weight: 750;
}


.dashboard-user-modal-close {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #eef3f0;
    color: #65756f;
    cursor: pointer;
}


    .dashboard-user-modal-close:hover {
        background: #e5eee9;
        color: #2f6e59;
    }


.dashboard-user-modal-body {
    padding: 25px;
}


.dashboard-user-modal-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 23px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(21, 61, 56, 0.07);
}


    .dashboard-user-modal-profile img {
        width: 68px;
        height: 68px;
        flex-shrink: 0;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #edf3ef;
    }


    .dashboard-user-modal-profile h3 {
        margin: 0 0 3px;
        color: #24483f;
        font-size: 18px;
        font-weight: 750;
    }


    .dashboard-user-modal-profile > div > span {
        color: #899590;
        font-size: 10px;
    }


.dashboard-user-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}


.dashboard-user-modal-status,
.dashboard-user-modal-access {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
}


.dashboard-user-modal-status {
    background: #e7f3ec;
    color: #39745d;
}


.dashboard-user-modal-access {
    background: #eef0f5;
    color: #66758c;
}


.dashboard-user-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}


.dashboard-user-modal-field {
    padding: 14px;
    background: #f8faf8;
    border: 1px solid rgba(21, 61, 56, 0.06);
    border-radius: 13px;
}


    .dashboard-user-modal-field span {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 5px;
        color: #8e9a95;
        font-size: 8px;
    }


    .dashboard-user-modal-field strong {
        color: #3a524b;
        font-size: 10px;
        font-weight: 680;
    }


.dashboard-user-modal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


    .dashboard-user-modal-stats > div {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px;
        background: #ffffff;
        border: 1px solid rgba(21, 61, 56, 0.08);
        border-radius: 13px;
    }


.dashboard-user-modal-stat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}


    .dashboard-user-modal-stat-icon.documents {
        background: #e8f2ec;
        color: #3d775f;
    }


    .dashboard-user-modal-stat-icon.appointments {
        background: #eeebf5;
        color: #73668c;
    }


.dashboard-user-modal-stats strong {
    display: block;
    color: #26483f;
    font-size: 15px;
}


.dashboard-user-modal-stats div div span {
    color: #939d99;
    font-size: 8px;
}


.dashboard-user-modal-footer {
    padding: 15px 24px;
    background: #fbfcfa;
    border-top: 1px solid rgba(21, 61, 56, 0.07);
}


.dashboard-user-modal-secondary {
    min-height: 38px;
    padding: 0 17px;
    border: 1px solid rgba(21, 61, 56, 0.1);
    border-radius: 10px;
    background: #ffffff;
    color: #687772;
    font-size: 10px;
    font-weight: 700;
}


@media (max-width: 600px) {

    .dashboard-user-modal-grid,
    .dashboard-user-modal-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PAGE A PROPOS
   ========================================================= */

.about-page {
    background: #ffffff;
    color: #153d38;
}

.about-container {
    width: min(1480px, calc(100% - 64px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.about-hero {
    overflow: hidden;
    background: linear-gradient( 90deg, #ffffff 0%, #ffffff 48%, #f4f8f5 100% );
}

.about-hero-grid {
    min-height: 570px;
    display: grid;
    grid-template-columns: .95fr 1.15fr;
    align-items: stretch;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 76px 62px 76px 0;
}

.about-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #3e8c6d;
    letter-spacing: .28em;
    font-size: 13px;
    font-weight: 800;
}

.about-hero-content h1 {
    max-width: 610px;
    margin: 0 0 20px;
    color: #143f3a;
    font-size: clamp(42px, 4.5vw, 70px);
    line-height: 1.05;
    font-weight: 800;
}

.about-hero-content p {
    max-width: 620px;
    margin: 0 0 30px;
    color: #52635c;
    font-size: 17px;
    line-height: 1.7;
}

.about-main-button,
.about-secondary-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.about-main-button {
    padding: 14px 22px;
    color: #fff;
    background: #27855f;
    box-shadow: 0 10px 22px rgba(39, 133, 95, .18);
}

    .about-main-button:hover {
        transform: translateY(-2px);
        color: #fff;
        background: #216f50;
    }

.about-hero-image {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-bottom-left-radius: 48% 34%;
}

    .about-hero-image::before {
        content: "";
        position: absolute;
        z-index: 2;
        inset: 0 auto 0 -1px;
        width: 100px;
        background: #fff;
        border-radius: 0 100% 100% 0 / 0 52% 52% 0;
        transform: translateX(-52px);
    }

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


/* =========================================================
   VALEURS
   ========================================================= */

.about-values {
    padding: 36px 0;
    background: linear-gradient( 90deg, #f4faf6 0%, #eef7f1 50%, #f4faf6 100% );
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.about-value-item {
    text-align: center;
    padding: 20px;
}

.about-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #4f9a78;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 24px rgba(30, 84, 63, .07);
    font-size: 24px;
}

.about-value-item strong {
    display: block;
    margin-bottom: 8px;
    color: #153d38;
    font-size: 17px;
}

.about-value-item p {
    max-width: 240px;
    margin: 0 auto;
    color: #607068;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   MISSION
   ========================================================= */

.about-mission {
    padding: 72px 0 54px;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
    gap: 58px;
    align-items: center;
}

.about-mission-image {
    height: 390px;
    overflow: hidden;
    border-radius: 28px;
    background: #eef4ef;
    box-shadow: 0 16px 40px rgba(20, 61, 56, .09);
}

    .about-mission-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.about-mission-content {
    padding-right: 70px;
}

    .about-mission-content h2 {
        max-width: 680px;
        margin: 0 0 18px;
        color: #153d38;
        font-size: clamp(32px, 3.4vw, 52px);
        line-height: 1.08;
    }

    .about-mission-content p {
        max-width: 700px;
        margin: 0 0 26px;
        color: #586860;
        font-size: 16px;
        line-height: 1.7;
    }

.about-secondary-button {
    padding: 12px 18px;
    color: #246d52;
    background: #e7f3eb;
}

    .about-secondary-button:hover {
        color: #1f6048;
        background: #dceee3;
        transform: translateY(-2px);
    }


/* =========================================================
   STATS
   ========================================================= */

.about-stats {
    padding: 26px 0 58px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.about-stats article {
    text-align: center;
    padding: 24px 16px;
}

.about-stats strong {
    display: block;
    margin-bottom: 7px;
    color: #237553;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}

.about-stats span {
    color: #67756e;
    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {
    .about-container {
        width: min(100% - 36px, 900px);
    }

    .about-hero-grid,
    .about-mission-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
        padding: 58px 0 38px;
    }

    .about-hero-image {
        min-height: 420px;
        border-radius: 26px;
    }

        .about-hero-image::before {
            display: none;
        }

    .about-values-grid,
    .about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-mission-content {
        padding-right: 0;
    }
}

@media (max-width: 620px) {
    .about-container {
        width: min(100% - 28px, 560px);
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

    .about-values-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-mission-image {
        height: 310px;
    }
}