/* =============================================================================
   Villa de la Paix - CSS Custom autonome
   Couleurs exactes de villadelapaix.ca extraites du thème original
   ============================================================================= */

:root {
    --villa-bleu: #272D43;
    --villa-bleu-fonce: #1a1f30;
    --villa-rouge: #E83A18;
    --villa-rouge-fonce: #c12d10;
    --villa-rouge-clair: #E24129;
    --villa-orange-clair: #FFCD9E;
    --villa-beige: #FCF4ED;
    --villa-gris-fonce: #333;
    --villa-gris: #666;
    --villa-gris-clair: #f5f5f5;
}

/* === RESET === */
* { box-sizing: border-box; }

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: var(--villa-gris-fonce);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a { color: var(--villa-rouge); text-decoration: none; }
a:hover { color: var(--villa-rouge-fonce); text-decoration: none; }
a:visited { color: inherit; }

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--villa-bleu);
    font-weight: 700;
    line-height: 1.2;
}

img { max-width: 100%; height: auto; }
ul { padding: 0; margin: 0; list-style: none; }

/* === BANDEAU SUPÉRIEUR === */
.top-banner {
    background: var(--villa-bleu-fonce);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    text-align: center;
}

.banner-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* === HEADER === */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 30px;
}

/* Logo : couleurs originales préservées */
.site-branding .logo-main {
    max-height: 75px;
    width: auto;
    display: block;
}

/* === NAVIGATION === */
.main-navigation {
    flex: 1;
}

.main-navigation .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .menu > li {
    position: relative;
    white-space: nowrap;
    list-style: none;
}

.main-navigation .menu > li > a {
    color: var(--villa-bleu) !important;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 25px 0;
    transition: color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.main-navigation .menu > li > a:hover {
    color: var(--villa-rouge) !important;
}

/* Indicateur de sous-menu */
.main-navigation .has-submenu > a::after {
    content: " ▾";
    font-size: 0.7em;
    margin-left: 4px;
    opacity: 0.6;
}

/* === SOUS-MENUS DROPDOWN === */
.main-navigation .submenu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    min-width: 240px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1001;
    list-style: none;
    border: 1px solid #f0e6dc;
}

.main-navigation .submenu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
    border-left: 1px solid #f0e6dc;
    border-top: 1px solid #f0e6dc;
}

.main-navigation .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .submenu li {
    list-style: none;
}

.main-navigation .submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--villa-bleu) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s;
    text-decoration: none;
}

.main-navigation .submenu li a:hover {
    background: var(--villa-beige);
    color: var(--villa-rouge) !important;
    padding-left: 25px;
}

/* === BOUTON TÉLÉPHONE === */
.btn-phone {
    background: var(--villa-rouge) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block !important;
    font-size: 0.95rem !important;
}

.btn-phone:hover {
    background: var(--villa-rouge-fonce) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(232,58,24,0.3);
}

.main-navigation .menu > li > a.btn-phone {
    padding: 10px 22px !important;
    color: #fff !important;
}

.main-navigation .menu > li > a.btn-phone:hover {
    color: #fff !important;
}

/* === BOUTON TÉLÉPHONE === */
.btn-phone {
    background: var(--villa-rouge) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block !important;
    font-size: 0.95rem !important;
}

.btn-phone:hover {
    background: var(--villa-rouge-fonce) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(232,58,24,0.3);
}

.main-navigation .menu > li > a.btn-phone {
    padding: 10px 22px !important;
}

/* === HERO === */
.hero-section {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(rgba(39,45,67,0.55), rgba(39,45,67,0.55));
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-overlay .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-overlay h1 {
    color: #fff !important;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    max-width: 900px;
    font-weight: 700;
}

.hero-overlay .lead {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-features {
    margin: 1.5rem 0 2.5rem 0;
}

.hero-features li {
    color: #fff;
    padding: 8px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.hero-features li::before {
    content: "♡";
    color: var(--villa-rouge);
    font-weight: bold;
    margin-right: 14px;
    font-size: 1.4rem;
    line-height: 1;
}

.hero-cta .btn,
.hero-cta a.btn {
    margin-right: 1rem;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid;
}

.hero-cta .btn-primary {
    background: var(--villa-rouge);
    color: #fff !important;
    border-color: var(--villa-rouge);
}

.hero-cta .btn-primary:hover {
    background: var(--villa-rouge-fonce);
    border-color: var(--villa-rouge-fonce);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,58,24,0.3);
}

.hero-cta .btn-outline-light {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
}

.hero-cta .btn-outline-light:hover {
    background: #fff;
    color: var(--villa-bleu) !important;
}

/* === SECTIONS === */
section {
    padding: 70px 0;
}

section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.bg-light {
    background: var(--villa-beige) !important;
}

/* === 3 CARTES (thérapie/admission/avantages) === */
.three-cards {
    margin-top: -80px;
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 70px;
}

.three-cards .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.three-cards .col-md-4 {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(39,45,67,0.1);
}

.three-cards .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    object-fit: contain;
    display: block;
}

.three-cards h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--villa-rouge);
}

.three-cards p {
    color: var(--villa-gris);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-link {
    color: var(--villa-rouge);
    font-weight: 600;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--villa-rouge-fonce);
}

/* === BOUTONS === */
.btn-primary {
    background: var(--villa-rouge);
    color: #fff !important;
    padding: 14px 32px;
    border: 2px solid var(--villa-rouge);
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--villa-rouge-fonce);
    border-color: var(--villa-rouge-fonce);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,58,24,0.3);
}

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

.btn-outline-primary {
    background: transparent;
    color: var(--villa-rouge) !important;
    border: 2px solid var(--villa-rouge);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-primary:hover {
    background: var(--villa-rouge);
    color: #fff !important;
}

/* === CTA PRÉADMISSION avec vidéo YouTube === */
.preadmission-cta {
    padding: 80px 0;
}

.preadmission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.preadmission-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--villa-rouge);
    font-family: 'Playfair Display', 'Georgia', serif;
}

.preadmission-text p {
    color: var(--villa-gris);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.preadmission-text a:not(.btn) {
    color: var(--villa-rouge);
    font-weight: 600;
    text-decoration: underline;
}

.preadmission-text a:not(.btn):hover {
    color: var(--villa-rouge-fonce);
}

.preadmission-text .btn-primary {
    margin-top: 1rem;
}

.preadmission-video .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(39,45,67,0.2);
}

.preadmission-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .preadmission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .preadmission-text {
        text-align: center;
    }
}

/* === CARTES DE CONTACT (4 cartes avec fond bleu marine) === */
.contact-cards {
    background: #fff;
    padding: 60px 0;
}

.contact-cards h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--villa-rouge);
    font-family: 'Playfair Display', 'Georgia', serif;
}

.contact-cards .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    align-items: stretch;
}

.contact-cards .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
}

.contact-cards .contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 35px 25px;
    background: var(--villa-bleu);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s;
    height: 100%;
    text-decoration: none;
    text-align: center;
    min-height: 250px;
}

.contact-cards .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    background: var(--villa-bleu-fonce);
}

/* La 4e carte (Prêt?) en rouge */
.contact-cards .col-md-3:last-child .contact-card {
    background: var(--villa-rouge);
}

.contact-cards .col-md-3:last-child .contact-card:hover {
    background: var(--villa-rouge-fonce);
}

.contact-cards .contact-card h3 {
    font-size: 1.5rem;
    margin: 0 0 15px;
    color: #fff !important;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

.contact-cards .contact-card p {
    color: #fff !important;
    font-weight: 600;
    margin: 10px 0 0;
    font-size: 0.95rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 15px auto;
    display: block;
    object-fit: contain;
    /* Filtre pour rendre les icônes en rouge sur le fond bleu */
    filter: brightness(0) saturate(100%) invert(28%) sepia(95%) saturate(2890%) hue-rotate(360deg) brightness(95%) contrast(95%);
}

/* Les icônes restent rouges même sur la carte rouge (Prêt?) */
.contact-cards .col-md-3:last-child .contact-icon {
    /* Inverser : icône blanche sur fond rouge */
    filter: brightness(0) invert(1);
}

/* === À PROPOS (fond rouge avec 2 colonnes) === */
.apropos-section {
    background: var(--villa-rouge);
    background-image:
        linear-gradient(rgba(232,58,24,0.92), rgba(232,58,24,0.92)),
        url("{{ asset('uploads/2024/08/intro-batiment-vdlp.mp4') }}");
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    color: #fff;
    padding: 0;
    overflow: hidden;
}

/* Si tu veux ajouter une vraie image de fond, change le fichier ici */
.apropos-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(232,58,24,0.85) 0%, rgba(193,45,16,0.95) 100%);
    z-index: 1;
}

.apropos-overlay {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

.apropos-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.apropos-title {
    color: #fff !important;
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

.apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.apropos-col p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
}

.apropos-col p:last-child {
    margin-bottom: 0;
}

.apropos-cta {
    text-align: center;
}

.btn-bleu-marine {
    background: var(--villa-bleu);
    color: #fff !important;
    padding: 14px 40px;
    border: 2px solid var(--villa-bleu);
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-bleu-marine:hover {
    background: var(--villa-bleu-fonce);
    border-color: var(--villa-bleu-fonce);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

@media (max-width: 991px) {
    .apropos-section { padding: 60px 0; }
    .apropos-overlay { padding: 60px 0; }
    .apropos-title { font-size: 2rem; margin-bottom: 2rem; }
    .apropos-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .apropos-col p { font-size: 0.95rem; }
}

/* === POURQUOI CHOISIR (3 cartes avec photos) === */
.pourquoi-section {
    background: #fff;
    padding: 80px 0;
}

.pourquoi-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.pourquoi-title {
    font-size: 2.4rem;
    color: var(--villa-rouge);
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

.pourquoi-intro {
    text-align: center;
    color: var(--villa-gris);
    max-width: 850px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.7;
}

.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pourquoi-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #f0e6dc;
    box-shadow: 0 4px 20px rgba(39,45,67,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pourquoi-card:hover {
    transform: translateY(-8px);
    border-color: var(--villa-rouge);
    box-shadow: 0 15px 40px rgba(232,58,24,0.18);
}

.pourquoi-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.pourquoi-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pourquoi-card:hover .pourquoi-card-image img {
    transform: scale(1.05);
}

.pourquoi-card-content {
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pourquoi-card-content h3 {
    color: var(--villa-rouge);
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

.pourquoi-card-content p {
    color: var(--villa-gris);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
}

.pourquoi-card-content .btn-primary {
    align-self: center;
    padding: 11px 30px;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .pourquoi-section { padding: 60px 0; }
    .pourquoi-title { font-size: 1.8rem; }
    .pourquoi-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }
    .pourquoi-card-image { height: 200px; }
    .pourquoi-card-content { padding: 25px 20px; }
}

/* === TÉMOIGNAGES VIDÉO (slider) === */
.temoignages-section {
    background: #fff;
    padding: 80px 0;
}

.temoignages-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.temoignages-title {
    color: var(--villa-rouge);
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

.testimonial-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(39,45,67,0.15);
    background: #000;
}

.testimonial-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.testimonial-slide .video-wrapper {
    width: 100%;
    height: 100%;
}

.testimonial-slide iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Flèches de navigation */
.slider-arrow {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--villa-rouge);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(232,58,24,0.3);
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--villa-rouge-fonce);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(232,58,24,0.5);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Points de navigation (dots) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--villa-rouge);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(232,58,24,0.3);
}

.slider-dot.active {
    background: var(--villa-rouge);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .temoignages-section { padding: 60px 0; }
    .temoignages-title { font-size: 1.8rem; margin-bottom: 2rem; }
    .testimonial-slider { gap: 10px; }
    .slider-arrow {
        width: 44px;
        height: 44px;
    }
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 575px) {
    .testimonial-slider {
        flex-direction: column;
    }
    .slider-arrow-prev, .slider-arrow-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }
    .slider-arrow-prev { left: 10px; }
    .slider-arrow-next { right: 10px; }
}

/* === RÉGIONS DESSERVIES (une carte par ville/région) === */
.regions-desservies {
    background: var(--villa-beige);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Effet de fond décoratif subtil */
.regions-desservies::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,58,24,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.regions-desservies::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39,45,67,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.regions-desservies .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.regions-title {
    font-size: 2.4rem;
    color: var(--villa-bleu);
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}

.regions-intro {
    text-align: center;
    color: var(--villa-gris);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* === GRILLE DE CARTES === */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

/* === CARTE INDIVIDUELLE === */
.region-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(39,45,67,0.06);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-height: 64px;
}

/* Effet de remplissage au hover (fond rouge qui glisse) */
.region-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--villa-rouge) 0%, var(--villa-rouge-fonce) 100%);
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.region-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(232,58,24,0.25);
    border-color: var(--villa-rouge);
}

.region-card:hover::before {
    width: 100%;
}

.region-card-icon,
.region-card-body,
.region-card-arrow {
    position: relative;
    z-index: 1;
}

/* === ICÔNE DE LOCALISATION === */
.region-card-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--villa-beige);
    color: var(--villa-rouge);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.region-card:hover .region-card-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: rotate(-10deg) scale(1.1);
}

.region-card-icon svg {
    width: 18px;
    height: 18px;
}

/* === NOM DE LA RÉGION === */
.region-card-body {
    flex: 1;
    min-width: 0;
}

.region-card-name {
    color: var(--villa-bleu);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.region-card:hover .region-card-name {
    color: #fff;
}

/* === FLÈCHE DROITE === */
.region-card-arrow {
    flex-shrink: 0;
    color: var(--villa-rouge);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.region-card:hover .region-card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .regions-desservies { padding: 60px 0; }
    .regions-title { font-size: 1.8rem; }
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
    .region-card {
        padding: 14px 16px;
        min-height: 58px;
    }
    .region-card-icon {
        width: 34px;
        height: 34px;
    }
    .region-card-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 575px) {
    .regions-grid {
        grid-template-columns: 1fr 1fr;
    }
    .region-card-arrow {
        opacity: 1;
        transform: translateX(0);
    }
    .region-card {
        padding: 12px 14px;
    }
    .region-card-name {
        font-size: 0.85rem;
    }
}

/* === CONTACT BOTTOM === */
.contact-bottom {
    text-align: center;
    background: #fff;
    padding: 70px 0 30px;
}

.contact-bottom h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* === FOOTER === */
.site-footer {
    background: var(--villa-bleu);
    color: #fff;
    padding: 70px 0 30px;
    margin-top: 0;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.site-footer .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.site-footer h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.site-footer a {
    color: #fff !important;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--villa-orange-clair) !important;
}

.site-footer ul li {
    padding: 4px 0;
}

.footer-logo {
    max-height: 90px;
    margin-bottom: 1rem;
}

.footer-phone {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff !important;
}

.btn-outline-light {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    padding: 10px 24px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--villa-bleu) !important;
}

.newsletter-form .input-group {
    display: flex;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 10px 15px;
    border-radius: 30px 0 0 30px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 10px 22px;
    border: none;
    background: var(--villa-rouge);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: var(--villa-rouge-fonce);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9rem;
}

.footer-bottom a {
    margin: 0 8px;
}

.social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* === FORMULAIRES === */
.preadmission-form .form-section {
    background: #fff;
    padding: 35px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.preadmission-form .form-section h2 {
    color: var(--villa-bleu);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--villa-rouge);
    box-shadow: 0 0 0 3px rgba(232,58,24,0.12);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* === ALERTS === */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* === UTILITAIRES === */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.lead { font-size: 1.15rem; }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.rounded { border-radius: 8px; }
.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.list-unstyled { list-style: none; padding-left: 0; }
.mb-0 { margin-bottom: 0 !important; }
.d-none { display: none; }
.d-lg-block { display: block; }
.bg-white { background: #fff !important; }
.shadow { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.position-relative { position: relative; }

/* === RESPONSIVE === */
@media (max-width: 1399px) {
    .main-navigation .menu { gap: 1.1rem; }
    .main-navigation .menu > li > a { font-size: 0.85rem; }
}

@media (max-width: 1199px) {
    .hero-overlay h1 { font-size: 2.4rem; }
    .main-navigation .menu { gap: 0.8rem; }
    .main-navigation .menu > li > a { font-size: 0.8rem; }
}

@media (max-width: 991px) {
    .main-navigation { display: none; }
    .top-banner { display: none; }
    .hero-overlay h1 { font-size: 1.9rem; }
    .hero-section, .hero-overlay { min-height: 550px; }
    .three-cards .col-md-4,
    #pourquoi .col-md-4,
    .site-footer .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .three-cards { margin-top: -40px; }
    .contact-cards .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }
    .site-branding .logo-main { max-height: 50px; }
}

@media (max-width: 575px) {
    .contact-cards .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hero-cta .btn { margin-bottom: 10px; display: block; text-align: center; }
    section .container { padding: 0 20px; }
}

/* =============================================================================
   PAGES THÉRAPIE - Design fidèle au site original
   À ajouter à la fin de villa-custom.css (remplace l'ancien si déjà ajouté)
   ============================================================================= */

/* === HERO AVEC IMAGE DE FOND === */
.page-hero {
    background-color: var(--villa-bleu);
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    color: #fff;
    position: relative;
}

.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.page-breadcrumb {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.page-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
    color: var(--villa-orange-clair);
}

.page-breadcrumb .separator {
    margin: 0 8px;
    opacity: 0.6;
}

.page-title-hero {
    color: #fff !important;
    font-size: 2.8rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    max-width: 950px;
}

.page-subtitle-hero {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 850px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Badge dans le hero */
.programme-badge-hero {
    display: inline-block;
    background: var(--villa-rouge);
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(232,58,24,0.4);
}

.programme-badge-hero-blue {
    background: var(--villa-orange-clair);
    color: var(--villa-bleu);
}

/* === TITRES DE SECTION === */
.section-title {
    color: var(--villa-bleu);
    font-size: 2.2rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-title.text-center {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    color: var(--villa-gris);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* === PROGRAMMES DISPONIBLES (page parent) === */
.programmes-section {
    padding: 80px 0;
    background: #fff;
}

.programmes-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.programme-large-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(39,45,67,0.1);
    border: 2px solid #f0e6dc;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.programme-large-card:hover {
    transform: translateY(-6px);
    border-color: var(--villa-rouge);
    box-shadow: 0 15px 40px rgba(232,58,24,0.15);
}

.programme-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.programme-large-card:hover .programme-image img {
    transform: scale(1.05);
}

.programme-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--villa-rouge);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.programme-image-badge-blue {
    background: var(--villa-bleu);
}

.programme-content {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.programme-content h3 {
    color: var(--villa-rouge);
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.programme-content p {
    color: var(--villa-gris);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.programme-content strong {
    color: var(--villa-bleu);
    font-weight: 700;
}

.programme-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* === CRITÈRES (admission/exclusion) === */
.criteres-section {
    padding: 80px 0;
}

.criteres-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.criteres-double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.critere-block {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(39,45,67,0.08);
    border: 2px solid #f0e6dc;
}

.critere-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.critere-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.critere-content {
    padding: 30px;
}

.critere-content h3 {
    color: var(--villa-bleu);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.critere-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.critere-list li {
    padding: 10px 0 10px 32px;
    color: var(--villa-gris-fonce);
    line-height: 1.5;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
}

.critere-list li:last-child {
    border-bottom: none;
}

.critere-list-yes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
    width: 22px;
    height: 22px;
    background: rgba(40,167,69,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.critere-list-no li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--villa-rouge);
    font-weight: 700;
    font-size: 0.95rem;
    width: 22px;
    height: 22px;
    background: rgba(232,58,24,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === SECTION CONTENU GÉNÉRIQUE === */
.content-section {
    padding: 80px 0;
    background: #fff;
}

.content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* === GRILLE INCLUSIONS (icônes images) === */
.inclus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.inclus-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0e6dc;
}

.bg-light .inclus-card {
    background: #fff;
}

.inclus-card:hover {
    border-color: var(--villa-rouge);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(232,58,24,0.12);
}

.inclus-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.inclus-card h3 {
    color: var(--villa-bleu);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.inclus-card p {
    color: var(--villa-gris);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* === CONTENU AVEC IMAGE (image gauche, texte droite) === */
.content-with-image {
    padding: 80px 0;
    background: #fff;
}

.content-with-image .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.image-text-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(39,45,67,0.15);
}

.image-text-img img {
    width: 100%;
    height: auto;
    display: block;
}

.image-text-content p {
    color: var(--villa-gris-fonce);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.image-text-content strong {
    color: var(--villa-rouge);
    font-weight: 700;
}

/* === À PROPOS PROGRAMMES (image gauche, contenu détaillé droite) === */
.apropos-programmes {
    padding: 80px 0;
    background: var(--villa-beige);
}

.apropos-programmes .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.apropos-programmes-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.apropos-programmes-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(39,45,67,0.15);
    position: sticky;
    top: 100px;
}

.apropos-programmes-image img {
    width: 100%;
    height: auto;
    display: block;
}

.apropos-programmes-content h3 {
    color: var(--villa-rouge);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.apropos-programmes-content h3:first-of-type {
    margin-top: 0;
}

.apropos-programmes-content p {
    color: var(--villa-gris-fonce);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.check-list li {
    padding: 8px 0 8px 30px;
    color: var(--villa-gris-fonce);
    line-height: 1.5;
    position: relative;
    font-size: 0.95rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--villa-rouge);
    font-weight: 700;
    font-size: 1.1rem;
}

/* === SERVICES COMPLÉMENTAIRES === */
.services-section {
    padding: 70px 0;
}

.services-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 10px;
    color: var(--villa-bleu);
    font-weight: 500;
    border: 1px solid #f0e6dc;
}

.service-bullet {
    color: var(--villa-rouge);
    font-size: 1.4rem;
    line-height: 1;
}

/* === CTA FINAL === */
.cta-final-section {
    padding: 80px 0;
    background: #fff;
}

.cta-final-section.bg-light {
    background: var(--villa-beige);
}

.cta-final-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-final-box {
    background: linear-gradient(135deg, #fff 0%, var(--villa-beige) 100%);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--villa-rouge);
    box-shadow: 0 10px 40px rgba(232,58,24,0.1);
}

.cta-final-section.bg-light .cta-final-box {
    background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
}

.cta-final-box h2 {
    color: var(--villa-rouge);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.cta-final-box p {
    color: var(--villa-gris);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-final-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .page-hero {
        padding: 70px 0 60px;
    }
    .page-title-hero {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .programmes-grid,
    .criteres-double,
    .image-text-grid,
    .apropos-programmes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .apropos-programmes-image {
        position: static;
    }
    .inclus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .programme-image {
        height: 220px;
    }
    .cta-final-box {
        padding: 40px 25px;
    }
    .cta-final-box h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .inclus-grid {
        grid-template-columns: 1fr;
    }
    .cta-final-buttons .btn {
        width: 100%;
    }
    .page-title-hero {
        font-size: 1.6rem;
    }
}

/* =============================================================================
   PAGES L'EXPÉRIENCE
   À ajouter à la fin de villa-custom.css (après le CSS thérapie)
   ============================================================================= */

/* === LAYOUT ALTERNÉ (image-texte / texte-image) === */
.content-with-image.content-reverse .image-text-grid {
    /* Inverse l'ordre des colonnes : texte à gauche, image à droite */
}

.content-with-image.content-reverse .image-text-img {
    order: 2;
}

.content-with-image.content-reverse .image-text-content {
    order: 1;
}

/* Sous-titre rouge sous H2 */
.subtitle-rouge {
    color: var(--villa-rouge) !important;
    font-size: 1.2rem !important;
    margin-top: -0.5rem !important;
    margin-bottom: 1.2rem !important;
    font-style: italic;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif !important;
}

/* === GRANDE CITATION === */
.quote-section {
    padding: 70px 0;
}

.quote-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.big-quote {
    border-left: 6px solid var(--villa-rouge);
    padding: 30px 40px;
    margin: 0;
    background: #fff;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 20px rgba(39,45,67,0.06);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.big-quote::before {
    content: """;
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 6rem;
    color: var(--villa-rouge);
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.big-quote p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--villa-bleu);
    margin: 0;
    font-style: italic;
    font-family: 'Playfair Display', 'Georgia', serif;
    position: relative;
    z-index: 1;
}

/* === GALERIE ENDROIT (3 photos) === */
.endroit-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 6px 25px rgba(39,45,67,0.1);
    transition: transform 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* === GRILLE PROGRAMME (page Activités, 3 cartes alternées) === */
.programme-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.programme-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(39,45,67,0.08);
    border: 2px solid #f0e6dc;
}

.programme-detail-card:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.programme-detail-card:nth-child(even) .programme-detail-img {
    order: 2;
}

.programme-detail-card:nth-child(even) .programme-detail-content {
    order: 1;
    padding-left: 40px;
    padding-right: 0;
}

.programme-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.programme-detail-content {
    padding: 30px 40px 30px 0;
}

.programme-detail-content h3 {
    color: var(--villa-rouge);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.programme-detail-content p {
    color: var(--villa-gris-fonce);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.programme-detail-content strong {
    color: var(--villa-bleu);
    font-weight: 700;
}

/* === GALERIE ACTIVITÉS (4 photos avec label) === */
.activites-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.activite-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 6px 25px rgba(39,45,67,0.1);
    transition: transform 0.3s ease;
}

.activite-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activite-item:hover {
    transform: translateY(-5px);
}

.activite-item:hover img {
    transform: scale(1.1);
}

.activite-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(232,58,24,0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === CHEFFE === */
.cheffe-section {
    padding: 80px 0;
    background: #fff;
}

.cheffe-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.cheffe-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, var(--villa-beige) 0%, #fff 100%);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid #f0e6dc;
    max-width: 1000px;
    margin: 0 auto;
}

.cheffe-image {
    border-radius: 50%;
    overflow: hidden;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(39,45,67,0.15);
}

.cheffe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cheffe-content h3 {
    color: var(--villa-bleu);
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.cheffe-titre {
    color: var(--villa-rouge);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.2rem !important;
}

.cheffe-content p:not(.cheffe-titre) {
    color: var(--villa-gris-fonce);
    line-height: 1.7;
}

/* === GALERIE NOURRITURE (4 photos carrées) === */
.nourriture-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.nourriture-item {
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(39,45,67,0.08);
    transition: transform 0.3s ease;
}

.nourriture-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nourriture-item:hover {
    transform: translateY(-5px);
}

.nourriture-item:hover img {
    transform: scale(1.08);
}

/* === CTA EXPÉRIENCE (citation) === */
.cta-experience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--villa-bleu) 0%, var(--villa-bleu-fonce) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-experience-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,58,24,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-experience-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.cta-experience-box {
    text-align: center;
}

.cta-experience-box h2 {
    color: #fff !important;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.cta-quote {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.cta-tagline {
    color: var(--villa-orange-clair);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-experience-section .cta-final-buttons .btn-outline-primary {
    color: #fff !important;
    border-color: #fff;
}

.cta-experience-section .cta-final-buttons .btn-outline-primary:hover {
    background: #fff;
    color: var(--villa-bleu) !important;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .endroit-gallery {
        grid-template-columns: 1fr;
    }
    .activites-gallery,
    .nourriture-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .programme-detail-card,
    .programme-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .programme-detail-card:nth-child(even) .programme-detail-img {
        order: 1;
    }
    .programme-detail-card:nth-child(even) .programme-detail-content {
        order: 2;
        padding: 25px;
    }
    .programme-detail-content {
        padding: 25px;
    }
    .programme-detail-img {
        min-height: 220px;
        height: 220px;
    }
    .cheffe-card {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        text-align: center;
    }
    .cheffe-image {
        width: 200px;
        height: 200px;
    }
    .big-quote p {
        font-size: 1.1rem;
    }
    .cta-experience-box h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .activites-gallery,
    .nourriture-gallery {
        grid-template-columns: 1fr;
    }
    .big-quote {
        padding: 25px 25px;
    }
    .big-quote p {
        font-size: 1rem;
    }
}

/* =============================================================================
   PAGES DÉPENDANCES (Alcoolisme + Toxicomanie)
   À ajouter à la fin de villa-custom.css
   ============================================================================= */

/* === BADGE DE DÉPENDANCE DANS LE HERO === */
.dependance-badge {
    display: inline-block;
    background: rgba(232,58,24,0.95);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(232,58,24,0.4);
    backdrop-filter: blur(10px);
}

/* === SECTION SIGNES (cartes avec icônes) === */
.signes-section {
    padding: 80px 0;
}

.signes-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.signes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.signes-grid-six {
    grid-template-columns: repeat(3, 1fr);
}

.signe-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #f0e6dc;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(39,45,67,0.06);
}

.signe-card:hover {
    transform: translateY(-6px);
    border-color: var(--villa-rouge);
    box-shadow: 0 12px 30px rgba(232,58,24,0.15);
}

.signe-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.2rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--villa-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s;
}

.signe-card:hover .signe-icon {
    background: var(--villa-rouge);
    transform: scale(1.1) rotate(-5deg);
}

.signe-card h3 {
    color: var(--villa-bleu);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.signe-card p {
    color: var(--villa-gris);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.signes-extra {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--villa-rouge);
}

.signes-extra p {
    color: var(--villa-gris-fonce);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.signes-extra strong {
    color: var(--villa-bleu);
}

/* === ENCADRÉ WARNING (sevrage) === */
.warning-section {
    padding: 70px 0;
}

.warning-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.warning-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #fff;
    border: 2px solid #ffd54f;
    border-left: 8px solid #f9a825;
    border-radius: 12px;
    padding: 30px 35px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(249,168,37,0.1);
}

.warning-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.warning-content h3 {
    color: #c17900;
    font-size: 1.3rem;
    margin: 0 0 0.8rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.warning-content p {
    color: var(--villa-gris-fonce);
    line-height: 1.7;
    margin: 0;
    font-size: 0.98rem;
}

.warning-content strong {
    color: var(--villa-bleu);
}

/* === BOUTONS INLINE (28j / 56j dans le contenu) === */
.cta-buttons-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-buttons-inline .btn {
    padding: 11px 24px;
    font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .signes-grid,
    .signes-grid-six {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .signe-card {
        padding: 30px 22px;
    }
    .signe-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    .warning-box {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }
    .warning-icon {
        font-size: 2rem;
    }
    .cta-buttons-inline {
        flex-direction: column;
    }
    .cta-buttons-inline .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .signes-grid,
    .signes-grid-six {
        grid-template-columns: 1fr;
    }
    .dependance-badge {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
}

/* =============================================================================
   PAGES DU MENU (À propos, Témoignages, Don, Carrières, La Bouée, Ressourcement, Contact)
   À ajouter à la fin de villa-custom.css
   ============================================================================= */

 /* =============================================================================
   ÉQUIPE - Cartes détaillées (page À propos)
   À AJOUTER À LA FIN DE villa-custom.css
   ============================================================================= */

.equipe-grid-detail {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.equipe-detail-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #f0e6dc;
    box-shadow: 0 4px 20px rgba(39, 45, 67, 0.06);
    transition: all 0.3s ease;
}

.equipe-detail-card:hover {
    border-color: var(--villa-rouge);
    box-shadow: 0 12px 35px rgba(232, 58, 24, 0.12);
    transform: translateY(-4px);
}

/* Alternance gauche / droite */
.equipe-detail-card.equipe-detail-reverse {
    grid-template-columns: 1fr 320px;
}

.equipe-detail-card.equipe-detail-reverse .equipe-detail-photo {
    order: 2;
}

.equipe-detail-card.equipe-detail-reverse .equipe-detail-content {
    order: 1;
}

/* === PHOTO === */
.equipe-detail-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--villa-beige);
    transition: border-color 0.3s ease;
    box-shadow: 0 8px 25px rgba(39, 45, 67, 0.1);
}

.equipe-detail-card:hover .equipe-detail-photo {
    border-color: var(--villa-rouge);
}

.equipe-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipe-detail-card:hover .equipe-detail-photo img {
    transform: scale(1.05);
}

/* === CONTENU === */
.equipe-detail-content h3 {
    color: var(--villa-bleu);
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.2;
}

.equipe-detail-content .equipe-titre {
    color: var(--villa-rouge);
    font-style: italic;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: block;
}

.equipe-detail-content p:not(.equipe-titre) {
    color: var(--villa-gris-fonce);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.equipe-detail-content p:not(.equipe-titre):last-child {
    margin-bottom: 0;
}

.equipe-detail-content strong {
    color: var(--villa-bleu);
    font-weight: 700;
}

.equipe-detail-content em {
    color: var(--villa-rouge);
    font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .equipe-detail-card,
    .equipe-detail-card.equipe-detail-reverse {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .equipe-detail-card.equipe-detail-reverse .equipe-detail-photo,
    .equipe-detail-card.equipe-detail-reverse .equipe-detail-content {
        order: initial;
    }

    .equipe-detail-photo {
        max-width: 280px;
        margin: 0 auto;
        aspect-ratio: 1;
    }

    .equipe-detail-content {
        text-align: center;
    }

    .equipe-detail-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .equipe-detail-card,
    .equipe-detail-card.equipe-detail-reverse {
        padding: 20px 15px;
    }

    .equipe-detail-photo {
        max-width: 220px;
    }
}  

/* === TÉMOIGNAGES ÉCRITS === */
.temoignages-ecrits-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.temoignage-ecrit {
    background: #fff;
    border-radius: 20px;
    padding: 50px 60px;
    border: 2px solid #f0e6dc;
    box-shadow: 0 8px 30px rgba(39,45,67,0.08);
    position: relative;
    margin-bottom: 30px;
}

.temoignage-quote-icon {
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 8rem;
    color: var(--villa-rouge);
    opacity: 0.15;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.temoignage-ecrit blockquote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    z-index: 1;
}

.temoignage-ecrit blockquote p {
    color: var(--villa-gris-fonce);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.temoignage-ecrit blockquote p strong {
    color: var(--villa-rouge);
    font-style: normal;
    font-weight: 700;
}

.temoignage-author {
    color: var(--villa-bleu);
    font-weight: 700;
    text-align: right;
    margin-top: 1.5rem;
    font-size: 1rem;
}

/* === PAGE DON === */
.don-section {
    padding: 80px 0;
}

.don-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.don-method-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    border: 3px solid var(--villa-rouge);
    box-shadow: 0 15px 40px rgba(232,58,24,0.15);
    position: relative;
    overflow: hidden;
}

.don-method-card::before {
    content: "❤️";
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(15deg);
}

.don-method-icon {
    width: 90px;
    height: 90px;
    background: var(--villa-beige);
    color: var(--villa-rouge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.don-method-card h3 {
    color: var(--villa-rouge);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.don-method-instruction {
    color: var(--villa-gris);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.don-email-big {
    display: inline-block;
    background: var(--villa-rouge);
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin: 1rem 0 1.5rem;
    box-shadow: 0 8px 20px rgba(232,58,24,0.3);
    transition: all 0.3s;
    word-break: break-word;
}

.don-email-big:hover {
    background: var(--villa-rouge-fonce);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(232,58,24,0.4);
}

.don-method-thanks {
    color: var(--villa-bleu);
    font-style: italic;
    font-size: 1.05rem;
    margin: 0;
}

/* === PAGE CARRIÈRES === */
.postes-section {
    padding: 80px 0;
}

.postes-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.postes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.poste-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #f0e6dc;
    box-shadow: 0 6px 25px rgba(39,45,67,0.08);
    transition: all 0.3s ease;
}

.poste-card:hover {
    transform: translateY(-6px);
    border-color: var(--villa-rouge);
    box-shadow: 0 15px 40px rgba(232,58,24,0.15);
}

.poste-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.poste-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poste-card:hover .poste-image img {
    transform: scale(1.05);
}

.poste-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--villa-rouge);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.poste-badge-blue {
    background: var(--villa-bleu);
}

.poste-content {
    padding: 35px 30px;
}

.poste-content h3 {
    color: var(--villa-rouge);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.poste-content p {
    color: var(--villa-gris);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.postes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    background: var(--villa-beige);
    border-radius: 12px;
    padding: 20px 25px;
}

.postes-list li {
    padding: 8px 0 8px 28px;
    color: var(--villa-bleu);
    line-height: 1.5;
    position: relative;
    border-bottom: 1px solid rgba(232,58,24,0.1);
}

.postes-list li:last-child {
    border-bottom: none;
}

.postes-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--villa-rouge);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Spontané box */
.spontane-box {
    background: linear-gradient(135deg, var(--villa-beige) 0%, #fff 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 2px dashed var(--villa-rouge);
    margin: 40px auto 0;
    max-width: 800px;
}

.spontane-box h2 {
    color: var(--villa-rouge);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.spontane-box p {
    color: var(--villa-gris-fonce);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.spontane-box .btn {
    margin-top: 1.5rem;
}

/* === PAGE LA BOUÉE (entrepreneurs) === */
.entrepreneurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.entrepreneur-card {
    background: #fff;
    border: 2px solid #f0e6dc;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.entrepreneur-card:hover {
    transform: translateY(-6px);
    border-color: var(--villa-rouge);
    box-shadow: 0 15px 40px rgba(232,58,24,0.15);
}

.entrepreneur-card-featured {
    border-color: var(--villa-rouge);
    box-shadow: 0 8px 30px rgba(232,58,24,0.1);
    transform: scale(1.03);
}

.entrepreneur-card-featured::before {
    content: "Le plus complet";
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--villa-rouge);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 1px;
}

.entrepreneur-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.entrepreneur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.entrepreneur-card:hover .entrepreneur-image img {
    transform: scale(1.05);
}

.entrepreneur-duree {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--villa-rouge);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(232,58,24,0.3);
    font-family: 'Playfair Display', serif;
}

.entrepreneur-content {
    padding: 35px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.entrepreneur-content h3 {
    color: var(--villa-rouge);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.entrepreneur-content p {
    color: var(--villa-gris);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.entrepreneur-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.entrepreneur-features li {
    padding: 6px 0 6px 24px;
    color: var(--villa-bleu);
    font-size: 0.9rem;
    position: relative;
    line-height: 1.4;
}

.entrepreneur-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--villa-rouge);
    font-weight: 700;
}
  margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

/* === PAGE CONTACT === */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method-card {
    background: #fff;
    border: 2px solid #f0e6dc;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39,45,67,0.06);
    display: block;
}

.contact-method-card:hover {
    transform: translateY(-6px);
    border-color: var(--villa-rouge);
    box-shadow: 0 12px 30px rgba(232,58,24,0.15);
    color: inherit;
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    background: var(--villa-beige);
    color: var(--villa-rouge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s;
}

.contact-method-card:hover .contact-method-icon {
    background: var(--villa-rouge);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.contact-method-card h3 {
    color: var(--villa-bleu);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.contact-value {
    color: var(--villa-rouge) !important;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem !important;
    word-break: break-word;
}

.contact-help {
    color: var(--villa-gris);
    font-size: 0.85rem;
    margin: 0 !important;
}

/* === FORMULAIRE DE CONTACT === */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-info h2 {
    margin-bottom: 1.5rem;
}

.contact-form-info p {
    color: var(--villa-gris);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-list {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #f0e6dc;
}

.contact-info-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0e6dc;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    color: var(--villa-bleu);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-info-item a {
    color: var(--villa-rouge);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-form-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #f0e6dc;
    box-shadow: 0 6px 25px rgba(39,45,67,0.06);
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--villa-bleu);
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f0e6dc;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--villa-rouge);
    background: #fff;
}

.form-error {
    color: var(--villa-rouge);
    font-size: 0.82rem;
    margin-top: 4px;
    display: block;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 14px 18px;
    border-radius: 10px;
    margin-top: 1.2rem;
    font-weight: 600;
    border-left: 4px solid #28a745;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .postes-grid,
    .ressourcement-grid {
        grid-template-columns: 1fr;
    }
    .entrepreneurs-grid {
        grid-template-columns: 1fr;
    }
    .entrepreneur-card-featured {
        transform: none;
    }
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    .temoignage-ecrit {
        padding: 35px 30px;
    }
    .temoignage-quote-icon {
        font-size: 5rem;
    }
    .don-method-card {
        padding: 40px 25px;
    }
    .don-email-big {
        font-size: 1rem;
        padding: 14px 25px;
    }
}

@media (max-width: 575px) {
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-content {
        padding: 25px 20px;
    }
}

/* =============================================================================
   FORMULAIRES VILLA DE LA PAIX (Entrepreneur + Candidature)
   Fichier consolidé sans duplication — À COLLER À LA FIN DE villa-custom.css
   Dernière mise à jour : Mai 2026
   ============================================================================= */

/* === SECTION DES FORMULAIRES === */
.entrepreneur-form-section,
.candidature-form-section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.entrepreneur-form-section .container,
.candidature-form-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* === ALERTES === */
.form-alert {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 0.98rem;
    line-height: 1.6;
}

.form-alert-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.form-alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}

.form-alert-success .form-alert-icon {
    background: #28a745;
    color: #fff;
}

.form-alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.form-alert-error .form-alert-icon {
    background: #dc3545;
    color: #fff;
}

/* === CONTENEUR FORMULAIRE === */
.entrepreneur-form,
.candidature-form {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px 50px 40px;
    box-shadow: 0 8px 30px rgba(39, 45, 67, 0.08);
    border: 2px solid #f0e6dc;
}

/* === FIELDSET (sections numérotées) === */
.form-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 35px;
    border-bottom: 2px dashed #f0e6dc;
    padding-bottom: 30px;
}

.form-fieldset:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.form-fieldset legend {
    color: var(--villa-bleu);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0;
    font-family: 'Playfair Display', 'Georgia', serif;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.legend-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--villa-rouge);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(232, 58, 24, 0.3);
}

/* === RADIOS PROGRAMMES === */
.programme-radios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.programme-radios.programme-radios-2 {
    grid-template-columns: repeat(3, 1fr);
}

.programme-radio {
    cursor: pointer;
    position: relative;
    margin: 0;
}

.programme-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.programme-radio-card {
    background: var(--villa-beige);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.programme-radio:hover .programme-radio-card {
    border-color: var(--villa-rouge);
    background: #fff;
}

.programme-radio input[type="radio"]:checked + .programme-radio-card {
    background: linear-gradient(135deg, var(--villa-rouge) 0%, var(--villa-rouge-fonce) 100%);
    border-color: var(--villa-rouge);
    color: #fff;
    box-shadow: 0 8px 20px rgba(232, 58, 24, 0.3);
    transform: translateY(-3px);
}

.programme-radio input[type="radio"]:checked + .programme-radio-card .programme-radio-duree,
.programme-radio input[type="radio"]:checked + .programme-radio-card .programme-radio-name,
.programme-radio input[type="radio"]:checked + .programme-radio-card .programme-radio-desc,
.programme-radio input[type="radio"]:checked + .programme-radio-card .poste-radio-icon {
    color: #fff;
}

.programme-radio-duree {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--villa-rouge);
    font-family: 'Playfair Display', 'Georgia', serif;
    transition: color 0.25s;
}

.programme-radio-duree small {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    font-family: 'Open Sans', sans-serif;
}

.programme-radio-name {
    color: var(--villa-bleu);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.25s;
}

.programme-radio-desc {
    color: var(--villa-gris);
    font-size: 0.82rem;
    transition: color 0.25s;
}

.poste-radio-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.25s;
}

/* === CHAMPS DE FORMULAIRE === */
.entrepreneur-form .form-row,
.candidature-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.entrepreneur-form .form-group,
.candidature-form .form-group {
    margin-bottom: 18px;
}

.entrepreneur-form .form-row .form-group,
.candidature-form .form-row .form-group {
    margin-bottom: 0;
}

.entrepreneur-form label,
.candidature-form label {
    display: block;
    font-weight: 600;
    color: var(--villa-bleu);
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}

.entrepreneur-form .required,
.candidature-form .required {
    color: var(--villa-rouge);
    font-weight: 700;
}

.entrepreneur-form input[type="text"],
.entrepreneur-form input[type="email"],
.entrepreneur-form input[type="tel"],
.entrepreneur-form input[type="number"],
.entrepreneur-form textarea,
.candidature-form input[type="text"],
.candidature-form input[type="email"],
.candidature-form input[type="tel"],
.candidature-form input[type="number"],
.candidature-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f0e6dc;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.2s;
    background: #fafafa;
    color: var(--villa-gris-fonce);
    box-sizing: border-box;
}

.entrepreneur-form input:focus,
.entrepreneur-form textarea:focus,
.candidature-form input:focus,
.candidature-form textarea:focus {
    outline: none;
    border-color: var(--villa-rouge);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 58, 24, 0.1);
}

.entrepreneur-form textarea,
.candidature-form textarea {
    resize: vertical;
    min-height: 100px;
}

.entrepreneur-form input::placeholder,
.entrepreneur-form textarea::placeholder,
.candidature-form input::placeholder,
.candidature-form textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

/* === CHECKBOXES === */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding: 12px 16px;
    background: var(--villa-beige);
    border-radius: 10px;
    transition: background 0.2s;
}

.form-checkbox:hover {
    background: #f5e8d8;
}

.form-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--villa-rouge);
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    font-weight: 500;
    color: var(--villa-gris-fonce);
    font-size: 0.92rem;
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--villa-rouge);
    text-decoration: underline;
    font-weight: 600;
}

.form-checkbox label a:hover {
    color: var(--villa-rouge-fonce);
}

/* === BOUTON DE SOUMISSION === */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 16px 40px;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(232, 58, 24, 0.3);
    transition: all 0.3s;
}

.form-submit .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(232, 58, 24, 0.4);
}

.form-disclaimer {
    margin-top: 1.5rem;
    color: var(--villa-gris);
    font-size: 0.88rem;
    line-height: 1.6;
}

.form-disclaimer a {
    color: var(--villa-rouge);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* === ZONE UPLOAD CV (formulaire candidature) === */
.cv-upload-zone {
    position: relative;
    border: 3px dashed #f0e6dc;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    background: var(--villa-beige);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cv-upload-zone:hover {
    border-color: var(--villa-rouge);
    background: #fff;
}

.cv-upload-zone.drag-over {
    border-color: var(--villa-rouge);
    background: #fff;
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(232, 58, 24, 0.15);
}

.cv-upload-zone.has-file {
    border-style: solid;
    border-color: #28a745;
    background: #f0fff4;
}

.cv-upload-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: var(--villa-rouge);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(232, 58, 24, 0.15);
    transition: all 0.3s;
}

.cv-upload-zone:hover .cv-upload-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--villa-rouge);
    color: #fff;
}

.cv-upload-zone.has-file .cv-upload-icon {
    background: #28a745;
    color: #fff;
}

.cv-upload-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 1;
}

.cv-upload-label {
    display: block;
    margin: 0;
    font-weight: 500;
    color: var(--villa-bleu);
    cursor: pointer;
    pointer-events: none;
}

.cv-upload-label strong {
    display: block;
    color: var(--villa-rouge);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.cv-upload-label span {
    display: block;
    color: var(--villa-gris);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.cv-upload-label small {
    display: block;
    color: var(--villa-gris);
    font-size: 0.82rem;
    font-style: italic;
}

.cv-filename {
    margin-top: 1rem;
    padding: 12px 18px;
    background: #fff;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--villa-bleu);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid #28a745;
}

.cv-filename:empty {
    display: none;
}

.cv-filename-icon {
    font-size: 1.3rem;
}

.cv-filename small {
    color: var(--villa-gris);
    font-weight: 400;
}

.cv-remove {
    background: transparent;
    border: 1px solid var(--villa-rouge);
    color: var(--villa-rouge);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
    z-index: 2;
    position: relative;
}

.cv-remove:hover {
    background: var(--villa-rouge);
    color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .entrepreneur-form,
    .candidature-form {
        padding: 35px 25px;
    }
    .entrepreneur-form .form-row,
    .candidature-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .entrepreneur-form .form-row .form-group,
    .candidature-form .form-row .form-group {
        margin-bottom: 18px;
    }
    .programme-radios,
    .programme-radios.programme-radios-2 {
        grid-template-columns: 1fr;
    }
    .form-fieldset legend {
        font-size: 1.1rem;
    }
    .legend-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    .cv-upload-zone {
        padding: 30px 20px;
    }
    .cv-upload-icon {
        width: 65px;
        height: 65px;
    }
    .cv-upload-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 575px) {
    .entrepreneur-form,
    .candidature-form {
        padding: 25px 18px;
    }
    .form-checkbox {
        padding: 10px 12px;
    }
    .cv-filename {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .cv-remove {
        margin-left: 0;
    }
}

/* =============================================================================
   PAGE PRÉADMISSION — Styles spécifiques
   À AJOUTER À LA FIN DE villa-custom.css
   (Réutilise tous les styles du formulaire entrepreneur déjà en place)
   ============================================================================= */

/* === INTRO RASSURANTE === */
.preadmission-intro {
    background: linear-gradient(135deg, var(--villa-beige) 0%, #fff8f3 100%);
    border-radius: 16px;
    padding: 35px 40px;
    text-align: center;
    border: 2px solid #f0e6dc;
    box-shadow: 0 4px 20px rgba(39, 45, 67, 0.06);
}

.preadmission-intro-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.preadmission-intro p {
    color: var(--villa-gris-fonce);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.preadmission-intro p:last-child {
    margin-bottom: 0;
}

.preadmission-intro-emphasis {
    font-size: 1.2rem !important;
    color: var(--villa-bleu) !important;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
}

.preadmission-intro-emphasis strong {
    color: var(--villa-rouge);
    font-style: normal;
}

/* === DESCRIPTION DE FIELDSET === */
.fieldset-description {
    color: var(--villa-gris);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: -0.5rem 0 1.5rem;
    font-style: italic;
}

/* === CARTE RADIO PETITE (Oui/Non) === */
.programme-radio-card.programme-radio-card-small {
    padding: 22px 18px;
}

.programme-radio-card.programme-radio-card-small .poste-radio-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--villa-rouge);
    box-shadow: 0 4px 10px rgba(232, 58, 24, 0.15);
    transition: all 0.25s;
}

.programme-radio input[type="radio"]:checked + .programme-radio-card .poste-radio-icon {
    background: #fff;
    color: var(--villa-rouge);
    transform: scale(1.05);
}

/* === BLOC CONDITIONNEL (animation slide) === */
.conditional-block {
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

/* === RADIO INLINE (Oui/Non simple) === */
.form-radio-inline {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-inline-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--villa-beige);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-inline-item:hover {
    border-color: var(--villa-rouge);
    background: #fff;
}

.radio-inline-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--villa-rouge);
    cursor: pointer;
}

.radio-inline-item span {
    color: var(--villa-bleu);
    font-weight: 600;
    font-size: 0.95rem;
}

.radio-inline-item:has(input[type="radio"]:checked) {
    background: var(--villa-rouge);
    border-color: var(--villa-rouge);
}

.radio-inline-item:has(input[type="radio"]:checked) span {
    color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .preadmission-intro {
        padding: 25px 20px;
    }
    .preadmission-intro-icon {
        font-size: 2.5rem;
    }
    .preadmission-intro-emphasis {
        font-size: 1.1rem !important;
    }
    .form-radio-inline {
        flex-direction: column;
        gap: 10px;
    }
}

/* =============================================================================
   PAGE RESSOURCEMENT — Styles spécifiques
   À AJOUTER À LA FIN DE villa-custom.css
   ============================================================================= */

/* === GRILLE 3 PROGRAMMES (avec badge durée) === */
.ressourcement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.ressourcement-card {
    position: relative;
    background: #fff;
    border: 2px solid #f0e6dc;
    border-radius: 16px;
    padding: 40px 30px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(39, 45, 67, 0.06);
}

.ressourcement-card:hover {
    transform: translateY(-5px);
    border-color: var(--villa-rouge);
    box-shadow: 0 12px 35px rgba(232, 58, 24, 0.12);
}

/* Carte mise en avant (12 jours) */
.ressourcement-card-featured {
    border-color: var(--villa-rouge);
    background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
    box-shadow: 0 8px 30px rgba(232, 58, 24, 0.1);
}

.ressourcement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.ressourcement-duree-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--villa-bleu);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ressourcement-duree-badge-rouge {
    background: var(--villa-rouge);
    box-shadow: 0 4px 10px rgba(232, 58, 24, 0.25);
}

.ressourcement-card h3 {
    color: var(--villa-rouge);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.3;
}

.ressourcement-card p {
    color: var(--villa-gris-fonce);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.ressourcement-card strong {
    color: var(--villa-bleu);
}

/* === SECTION "À QUOI T'ATTENDRE" === */
.section-intro-emphasis {
    color: var(--villa-rouge) !important;
    font-size: 1.3rem !important;
    font-style: italic;
    font-family: 'Playfair Display', 'Georgia', serif;
    margin-bottom: 2rem !important;
}

/* === GRILLE 3 PROMESSES === */
.promesses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 3rem 0;
}

.promesse-card {
    background: #fff;
    border: 2px solid #f0e6dc;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.promesse-card:hover {
    border-color: var(--villa-rouge);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(232, 58, 24, 0.1);
}

.promesse-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.promesse-card h4 {
    color: var(--villa-bleu);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.promesse-card p {
    color: var(--villa-gris);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* === IMAGE DÉCORATIVE === */
.ressourcement-quote-image {
    text-align: center;
    margin: 3rem 0;
}

.ressourcement-quote-image img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

/* === CONTENT-TEXT-CENTER (pour mantra final) === */
.content-text-center {
    text-align: center;
    margin-top: 2.5rem;
}

.ressourcement-mantra {
    color: var(--villa-bleu);
    font-size: 1.3rem;
    line-height: 1.5;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .ressourcement-grid,
    .promesses-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .ressourcement-card {
        padding: 30px 22px 25px;
    }
    
    .ressourcement-mantra {
        font-size: 1.1rem;
    }
}

/* =============================================================================
   PAGE RESSOURCEMENT — Styles spécifiques (VERSION FINALE PROPRE)
   À AJOUTER À LA FIN DE villa-custom.css UNE SEULE FOIS
   ============================================================================= */

/* === GRILLE 3 PROGRAMMES === */
.ressourcement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.ressourcement-card {
    position: relative;
    background: #fff;
    border: 2px solid #f0e6dc;
    border-radius: 16px;
    padding: 40px 30px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(39, 45, 67, 0.06);
}

.ressourcement-card:hover {
    transform: translateY(-5px);
    border-color: var(--villa-rouge);
    box-shadow: 0 12px 35px rgba(232, 58, 24, 0.12);
}

.ressourcement-card-featured {
    border-color: var(--villa-rouge);
    background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
    box-shadow: 0 8px 30px rgba(232, 58, 24, 0.1);
}

.ressourcement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.ressourcement-duree-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--villa-bleu);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ressourcement-duree-badge-rouge {
    background: var(--villa-rouge);
    box-shadow: 0 4px 10px rgba(232, 58, 24, 0.25);
}

.ressourcement-card h3 {
    color: var(--villa-rouge);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.3;
}

.ressourcement-card p {
    color: var(--villa-gris-fonce);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.ressourcement-card strong {
    color: var(--villa-bleu);
}

/* === SECTION "À QUOI T'ATTENDRE" === */
.section-intro-emphasis {
    color: var(--villa-rouge) !important;
    font-size: 1.3rem !important;
    font-style: italic;
    font-family: 'Playfair Display', 'Georgia', serif;
    margin-bottom: 2rem !important;
    text-align: center;
}

/* === GRILLE 3 PROMESSES === */
.promesses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 3rem 0;
}

.promesse-card {
    background: #fff;
    border: 2px solid #f0e6dc;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.promesse-card:hover {
    border-color: var(--villa-rouge);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(232, 58, 24, 0.1);
}

.promesse-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.promesse-card h4 {
    color: var(--villa-bleu);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.promesse-card p {
    color: var(--villa-gris);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* === IMAGE DÉCORATIVE === */
.ressourcement-quote-image {
    text-align: center;
    margin: 3rem 0;
}

.ressourcement-quote-image img {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: inline-block;
}

/* === MANTRA FINAL === */
.content-text-center {
    text-align: center;
    margin-top: 2.5rem;
}

.ressourcement-mantra {
    color: var(--villa-bleu);
    font-size: 1.3rem;
    line-height: 1.5;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .ressourcement-grid,
    .promesses-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .ressourcement-card {
        padding: 30px 22px 25px;
    }
    .ressourcement-mantra {
        font-size: 1.1rem;
    }
    .ressourcement-quote-image img {
        max-width: 300px;
    }
}

.emphasis-quote {
    text-align: center;
    color: var(--villa-rouge);
    font-style: italic;
    font-size: 1.3rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--villa-beige) 0%, #fff8f3 100%);
    border-radius: 16px;
    border-left: 5px solid var(--villa-rouge);
    margin: 2rem auto !important;
    line-height: 1.5;
    max-width: 700px;
    box-sizing: border-box;
}

/* === RESSOURCEMENT — Liste des promesses === */
.ressourcement-promesses-box {
    max-width: 720px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px 45px;
    border: 2px solid #f0e6dc;
    box-shadow: 0 8px 30px rgba(39, 45, 67, 0.08);
}

.ressourcement-promesses-intro {
    color: var(--villa-bleu);
    font-size: 1.15rem;
    text-align: center;
    margin: 0 0 2rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
}

.ressourcement-promesses-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ressourcement-promesses-liste li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: var(--villa-beige);
    border-radius: 14px;
    border-left: 4px solid var(--villa-rouge);
    transition: all 0.25s ease;
}

.ressourcement-promesses-liste li:hover {
    background: #fff8f3;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(232, 58, 24, 0.1);
}

.ressourcement-promesse-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 10px rgba(232, 58, 24, 0.12);
}

.ressourcement-promesse-text {
    flex: 1;
    color: var(--villa-gris-fonce);
    font-size: 1.02rem;
    line-height: 1.5;
}

.ressourcement-promesse-text strong {
    color: var(--villa-bleu);
}

@media (max-width: 575px) {
    .ressourcement-promesses-box {
        padding: 25px 20px;
        margin: 2rem auto;
    }
    .ressourcement-promesses-liste li {
        padding: 14px 16px;
        gap: 14px;
    }
    .ressourcement-promesse-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
    .ressourcement-promesse-text {
        font-size: 0.95rem;
    }
}