/* ------------------------------------------------------------------
   DESIGN SITEJET - VERSION OPTIMISÉE (FONCTIONNELLE)
   ------------------------------------------------------------------ */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b5a2b;
    --text-light: #5a6a7a;
    --light-bg: #f9f7f5;
    --box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
    --font-title: "Lora", serif;
    --font-text: "Inter", sans-serif;
    
    /* Variables responsives */
    --container-padding: 20px;
    --section-padding: 80px;
    --section-padding-mobile: 60px;
    --section-padding-small: 50px;
}

/* ===== CONTAINER GLOBAL ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* ===== HERO ===== */
.wp-block-cover {
    min-height: 90vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-cover__inner-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ===== TITRES DE SECTION ===== */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
    color: #b75b7d;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* ===== BOUTON CTA MENU ===== */
.menu-item:last-child a[href*="contact"],
.menu-item:last-child a[href*="demander"],
.menu-item:last-child a[href="#contact-us-1"] {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a8784a 100%);
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    margin-left: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.menu-item:last-child a[href*="contact"]:hover,
.menu-item:last-child a[href*="demander"]:hover,
.menu-item:last-child a[href="#contact-us-1"]:hover {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* ===== MENU DESKTOP ===== */
.desktop-menu-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu-list .menu-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ===== SLIDER HÉRO ===== */
.hero-slider {
    position: relative;
    width: 100vw;
    height: 90vh;
    min-height: 600px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease;
}

.slide-image.ratio-wide {
    background-size: contain !important;
    background-color: #1a1a1a;
    background-position: center;
}

.slide-image.ratio-tall {
    background-position: center 30% !important;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-family: var(--font-title);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-text {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.slider-prev,
.slider-next {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
    color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* ===== BARRE DE CONTACT - VERSION CORRIGÉE ===== */
.contact-info-bar {
    background-color: var(--primary-color, #2c3e50);
    padding: 1.2rem 0;
    position: relative;
    z-index: 20;
    border-bottom: 3px solid var(--secondary-color, #8b5a2b);
}

.contact-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding, 20px);
}

/* Couleur blanche pour le texte (adresse, téléphone, email) */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: white !important;
}

/* Liens en blanc */
.contact-item a {
    color: white !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

/* === EXCEPTION : L'ICÔNE TÉLÉPHONE === */
/* On garde sa couleur d'origine */
.contact-item:nth-child(2) .contact-icon {
    color: #b22222 !important; /* Rouge foncé */
    filter: none !important; /* Annule le filtre blanc */
    text-shadow: 1px 1px 0px #000000; /* Bordure noire */
    background: transparent !important;
    font-weight: normal;
}

/* Les autres icônes restent en blanc */
.contact-item .contact-icon:not(:nth-child(2) .contact-icon) {
    color: white !important;
}

/* Style de base des icônes */
.contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    display: inline-block;
}

/* Pour les écrans mobiles */
@media (max-width: 768px) {
    .contact-info-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
}

/* ===== SECTION À PROPOS (ACCUEIL) - TAILLES FIXES ===== */
.about-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Image plus petite */
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== COLONNE IMAGE - TAILLE IMPOSÉE ===== */
.about-image {
    width: 100%;
    height: 280px; /* Taille FIXE - l'image sera redimensionnée */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image remplit le cadre sans déformation */
    display: block;
}

/* ===== COLONNE TEXTE ===== */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 15px;
    color: #b75b7d;
    font-size: 2rem;
    position: relative;
    padding-bottom: 12px;
}

.about-content .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color, #8b5a2b);
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 20px;
    max-height: none;
    overflow: visible;
}

.about-button .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #b75b7d;
    border: 2px solid #b75b7d;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    align-self: flex-start;
}

.about-button .btn-outline:hover {
    background-color: #b75b7d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(183,91,125,0.3);
}

/* ===== SECTION NOS VALEURS ===== */
.values-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #fcfaf8 0%, #ffffff 100%);
    position: relative;
}

.values-section .section-title {
    color: #b75b7d !important;
    margin-bottom: 50px;
}

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

.value-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 15px rgba(139,90,43,0.02);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(2px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    isolation: isolate;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px rgba(139, 90, 43, 0.15), 0 10px 25px rgba(0,0,0,0.1);
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.value-card:hover::after {
    opacity: 0.6;
}

.value-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.value-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.value-card:hover .value-image {
    transform: scale(1.08);
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44,62,80,0.1), rgba(44,62,80,0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover .value-overlay {
    opacity: 1;
}

.value-content {
    padding: 25px;
    position: relative;
}

.value-content::before {
    content: '✦';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 24px;
    color: var(--secondary-color);
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.value-card:hover .value-content::before {
    opacity: 0.8;
    transform: rotate(15deg);
}

.value-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--secondary-color);
}

.value-card:hover .value-title::after {
    width: 60px;
}

.value-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION SERVICES (ACCUEIL) - STYLE POST-IT ===== */
.services-section {
    padding: 60px 0;
    background: linear-gradient(145deg, #ffffff 0%, #fefcf9 100%);
}

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

.services-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #b75b7d;
}

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

.service-card {
    background: #fff9e6;  /* Jaune pâle comme un post-it */
    padding: 30px 25px 35px;
    border-radius: 2px 20px 20px 20px;  /* Coin supérieur gauche carré */
    text-align: center;
    box-shadow: 0 10px 20px -8px rgba(0,0,0,0.1),
                0 0 0 1px rgba(0,0,0,0.02) inset;
    border: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-text, 'Inter', sans-serif);
}

/* Coin relevé façon post-it */
.service-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(200,180,150,0.2) 100%);
    transform: rotate(-5deg);
    border-radius: 50% 10% 70% 30%;
    box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
    z-index: 3;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.2),
                0 0 0 1px rgba(139, 90, 43, 0.1) inset;
    background: #fffef7;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(2px 4px 4px rgba(0,0,0,0.1));
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color, #2c3e50);
    font-weight: 600;
    transform: rotate(-0.5deg);
    font-family: var(--font-title, 'Lora', serif);
}

.service-card p {
    color: var(--text-light, #5a6a7a);
    line-height: 1.6;
    transform: rotate(0.3deg);
    font-size: 0.95rem;
    font-family: var(--font-text, 'Inter', sans-serif);
}

/* ===== DÉCORATIONS ÉTOILES ===== */
.values-section::before {
    content: '✦';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    color: var(--secondary-color);
    opacity: 0.08;
    font-family: serif;
    pointer-events: none;
    z-index: 1;
}

.values-section::after {
    content: '✦';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 180px;
    color: var(--primary-color);
    opacity: 0.08;
    font-family: serif;
    pointer-events: none;
    z-index: 1;
}

/* ===== GALERIE AVANCÉE - VERSION PROFESSIONNELLE ===== */
.gallery-advanced {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff, #fcfaf8);
}

.gallery-advanced .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-advanced .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Filtres */
.gallery-advanced-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-advanced-filters .filter-btn {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.gallery-advanced-filters .filter-btn:hover,
.gallery-advanced-filters .filter-btn.active {
    background: var(--secondary-color);
    color: white;
}

/* Conteneur des galeries */
.gallery-advanced-container {
    width: 100%;
}

/* Catégories */
.gallery-category {
    display: none;
}

.gallery-category.active {
    display: block;
}

/* ===== STYLE POUR L'ÉCHANTILLON "TOUTES" ===== */
.category-sample {
    margin-bottom: 40px;
}

.category-sample:last-child {
    margin-bottom: 0;
}

.sample-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(183,91,125,0.2);
    font-weight: 600;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
}

/* ===== STYLE POUR LES GRILLES ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: 20px;
    margin: 0;
}

/* ===== STYLE DES ITEMS (UN SEUL BLOC SUPPRIME LE DOUBLON) ===== */
.gallery-advanced-item {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f5f5f5;
}

.gallery-advanced-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 90, 43, 0.1);
}

.gallery-advanced-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.gallery-advanced-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-advanced-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183,91,125,0.8) 0%, rgba(139,90,43,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-advanced-item:hover .gallery-advanced-overlay {
    opacity: 1;
}

.gallery-advanced-icon {
    color: white;
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-advanced-item:hover .gallery-advanced-icon {
    transform: scale(1);
}

/* Solution de secours pour les très vieux navigateurs */
@supports not (object-fit: cover) {
    .gallery-advanced-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1rem;
    padding: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .sample-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-advanced {
        padding: 40px 0;
    }
    
    .sample-grid,
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-advanced-filters {
        gap: 8px;
    }
    
    .gallery-advanced-filters .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .sample-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .sample-grid,
    .category-grid {
        gap: 12px;
    }
    
    .gallery-advanced-item {
        border-radius: 10px;
    }
    
    .gallery-advanced-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/* ===== PAGE À PROPOS CUSTOM ===== */
.about-page-custom {
    padding-top: 80px;
}

.about-page-custom .about-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 60px;
}

.about-page-custom .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-page-custom .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-page-custom .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-page-custom .two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.about-page-custom .column-content {
    padding-right: 30px;
}

.about-page-custom .column-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.about-page-custom .timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 140px;
}

.about-page-custom .timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: var(--secondary-color);
    opacity: 0.3;
}

.about-page-custom .timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.about-page-custom .timeline-year {
    position: absolute;
    left: -140px;
    top: 0;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    width: auto;
    text-align: center;
}

.about-page-custom .timeline-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-page-custom .events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.about-page-custom .event-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-page-custom .event-date {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.about-page-custom .missions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.about-page-custom .mission-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-page-custom .country-flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.about-page-custom .support-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-page-custom .donation-card {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.about-page-custom .donation-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.about-page-custom .donation-button:hover {
    background: #a8784a;
}

/* ===== BARRE MOBILE ===== */
.mobile-contact-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999999 !important;
        background: #2c3e50 !important;
        padding: 10px 15px !important;
        border-top: 2px solid #8b5a2b !important;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.2) !important;
        height: auto !important;
        min-height: 60px !important;
    }
    
    .mobile-contact-bar a {
        color: white !important;
        text-decoration: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3px !important;
        font-size: 0.8rem !important;
        padding: 5px 10px !important;
        border-radius: 30px !important;
        flex: 1 !important;
    }
    
    .mobile-contact-bar a:first-child {
        background: #8b5a2b !important;
        padding: 8px 15px !important;
        font-weight: 600 !important;
    }
    
    body {
        padding-bottom: 80px !important;
    }
    
    .site-footer {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-contact-bar {
        padding: 8px 10px !important;
        min-height: 55px !important;
    }
    
    .mobile-contact-bar a {
        font-size: 0.7rem !important;
    }
    
    body {
        padding-bottom: 70px !important;
    }
}

@media (min-width: 769px) {
    .mobile-contact-bar {
        display: none !important;
    }
}

/* ===== BOUTONS GÉNÉRIQUES ===== */
.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 90, 43, 0.3);
}

.btn-submit {
    display: inline-block;
    background: #b75b7d;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(183,91,125,0.3);
}

.btn-submit:hover {
    background: #a04b6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183,91,125,0.4);
}

/* ===== PAGES SPÉCIFIQUES (DEMANDE, INFORMATIONS, SERVICES) ===== */
.demande-chambre-page,
.informations-page,
.services-page,
.apropos-page,
.contact-modern-page {
    background: #f9f9f9;
}

.demande-chambre-page .container,
.informations-page .container,
.services-page .container,
.apropos-page .container,
.contact-modern-page .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* En-têtes de page */
.demande-chambre-page .page-header,
.informations-page .page-header,
.services-page .page-header,
.apropos-page .page-header,
.contact-modern-page .page-header {
    text-align: center;
    margin-bottom: 30px;
}

.demande-chambre-page .page-title,
.informations-page .page-title,
.services-page .page-title,
.apropos-page .page-title,
.contact-modern-page .page-title {
    font-size: 2.2rem;
    color: #b75b7d;
    margin-bottom: 10px;
}

.demande-chambre-page .page-subtitle,
.informations-page .page-subtitle,
.services-page .page-subtitle,
.apropos-page .page-subtitle,
.contact-modern-page .page-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Cartes d'introduction */
.demande-chambre-page .intro-card,
.informations-page .intro-card,
.apropos-page .intro-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #b75b7d;
}

.demande-chambre-page .intro-icon,
.informations-page .intro-icon,
.apropos-page .intro-icon {
    font-size: 2.5rem;
    background: #f5f5f5;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demande-chambre-page .intro-text p,
.informations-page .intro-text p,
.apropos-page .intro-text p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* ===== PAGE INFORMATIONS SPÉCIFIQUE ===== */
.informations-page .page-hero {
    height: 35vh;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 40px;
}

.informations-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.7) 0%, rgba(139,90,43,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.informations-page .hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 10px;
    font-family: var(--font-title);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.informations-page .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.informations-page .info-card {
    display: flex;
    gap: 25px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.informations-page .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.informations-page .info-card.highlight {
    background: #fef9f5;
    border-left: 4px solid #b75b7d;
}

.informations-page .info-icon {
    font-size: 2.8rem;
    min-width: 70px;
    text-align: center;
    line-height: 1;
}

.informations-page .info-content {
    flex: 1;
}

.informations-page .info-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.informations-page .info-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.informations-page .info-content strong {
    color: #2c3e50;
}

.informations-page .info-content em {
    color: #b75b7d;
    font-style: italic;
}

.informations-page .engagements-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.informations-page .engagements-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    line-height: 1.6;
}

.informations-page .engagements-list li:last-child {
    border-bottom: none;
}

.informations-page .engagements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b75b7d;
    font-weight: bold;
}

.informations-page .engagement-note {
    font-style: italic;
    color: #888;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.informations-page .info-footer {
    margin: 40px 0 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.informations-page .contract-reference {
    font-size: 0.9rem;
    color: #999;
    font-family: monospace;
    margin: 0;
}

.informations-page .contact-prompt {
    text-align: center;
    margin: 50px 0 20px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.informations-page .contact-prompt p {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* ===== PAGE SERVICES - VERSION ULTRA-ADAPTATIVE ===== */
.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
    align-items: stretch;
}

.services-page .service-card-large {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.services-page .service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.services-page .service-icon-large {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #b75b7d;
    flex-shrink: 0;
}

.services-page .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

.services-page .service-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 0 0 12px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    line-height: 1.3;
    word-wrap: break-word;
}

.services-page .service-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
}

.services-page .service-description p {
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.services-page .service-description p:last-child {
    margin-bottom: 0;
}

.services-page .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.services-page .service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 0.95rem;
    color: #666;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
}

.services-page .service-features li:last-child {
    border-bottom: none;
}

.services-page .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b75b7d;
    font-weight: bold;
}

.services-page .contact-prompt {
    text-align: center;
    margin: 50px 0 30px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.services-page .contact-prompt p {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* ===== PAGE À PROPOS ===== */
.apropos-page .two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: stretch;
}

.apropos-page .column-content {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.apropos-page .column-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.apropos-page .column-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.apropos-page .section-title {
    font-size: 1.8rem;
    color: #b75b7d;
    margin-bottom: 30px;
    text-align: left;
    border-left: 4px solid #b75b7d;
    padding-left: 20px;
}

.apropos-page .superior-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
}

.apropos-page .superior-message::-webkit-scrollbar {
    width: 6px;
}

.apropos-page .superior-message::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.apropos-page .superior-message::-webkit-scrollbar-thumb {
    background: #b75b7d;
    border-radius: 10px;
}

.apropos-page .superior-message::-webkit-scrollbar-thumb:hover {
    background: #a04b6b;
}

.apropos-page .message-signature {
    font-style: italic;
    color: #b75b7d;
    font-weight: 600;
    margin-top: 20px;
}

.apropos-page .starfish-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.apropos-page .inspiring-quote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    padding: 30px;
    background: #f9f5f5;
    border-radius: 8px;
    margin: 30px 0 0;
    border-left: 4px solid #b75b7d;
}

.apropos-page .inspiring-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    color: #888;
}

/* Timeline */
.apropos-page .timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 140px;
}

.apropos-page .timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: #b75b7d;
    opacity: 0.3;
}

.apropos-page .timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.apropos-page .timeline-year {
    position: absolute;
    left: -140px;
    top: 0;
    background: #b75b7d;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    width: auto;
    text-align: center;
}

.apropos-page .timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.apropos-page .timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Événements */
.apropos-page .events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0 50px;
}

.apropos-page .event-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.apropos-page .event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.apropos-page .event-date {
    display: inline-block;
    background: #b75b7d;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.apropos-page .event-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Missions */
.apropos-page .missions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0 50px;
}

.apropos-page .mission-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.apropos-page .mission-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.apropos-page .country-flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.apropos-page .mission-card h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.apropos-page .mission-title {
    font-weight: 600;
    color: #b75b7d;
    margin-bottom: 10px;
    font-size: 1rem;
}

.apropos-page .mission-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Soutien */
.apropos-page .support-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.apropos-page .donation-card {
    background: #2c3e50;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.apropos-page .donation-card h3 {
    color: white;
    margin-bottom: 15px;
}

.apropos-page .address-highlight {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.apropos-page .donation-card .btn-submit {
    background: #b75b7d;
    color: white;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.apropos-page .donation-card .btn-submit:hover {
    background: #a04b6b;
}

/* ===== PAGE CONTACT MODERNE ===== */
.contact-modern-page {
    padding-top: 100px !important;
    padding-bottom: 60px;
}

.contact-modern-page .contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 25px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-left: 4px solid #b75b7d;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.contact-modern-page .contact-intro h1 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.contact-modern-page .contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.contact-modern-page .contact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-modern-page .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.contact-modern-page .card-icon {
    font-size: 3rem;
    color: #b75b7d;
    background: rgba(183,91,125,0.05);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.contact-modern-page .card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-modern-page .card-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-modern-page .card-link:hover {
    color: #b75b7d;
}

.contact-modern-page .card-text {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-modern-page .form-title {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 50px 0 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-modern-page .form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #b75b7d;
}

.contact-modern-page .form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.contact-modern-page .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-modern-page .form-field {
    margin-bottom: 5px;
}

.contact-modern-page .form-field.full-width {
    grid-column: 1 / -1;
}

.contact-modern-page .form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.contact-modern-page .form-field .field-note {
    color: #b75b7d;
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: 8px;
}

.contact-modern-page .form-field input,
.contact-modern-page .form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-modern-page .form-field input:focus,
.contact-modern-page .form-field textarea:focus {
    outline: none;
    border-color: #b75b7d;
    background: white;
    box-shadow: 0 0 0 4px rgba(183,91,125,0.05);
}

.contact-modern-page .form-field textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.contact-modern-page .form-field textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.contact-modern-page .form-submit {
    text-align: center;
    margin-top: 30px;
}

.contact-modern-page .submit-btn {
    background: #b75b7d;
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183,91,125,0.3);
    min-width: 250px;
}

.contact-modern-page .submit-btn:hover {
    background: #a04b6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183,91,125,0.4);
}

.contact-modern-page .form-success,
.contact-modern-page .form-error {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-modern-page .form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-modern-page .form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    text-align: left;
}

.contact-modern-page .form-error ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

/* ===== MENU BURGER ===== */
@media (min-width: 993px) {
    .desktop-nav {
        display: block !important;
    }
    .menu-toggle,
    .mobile-menu-toggle {
        display: none !important;
    }
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none !important;
    }
    
    .menu-toggle,
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-overlay.is-open,
    .mobile-menu-overlay[style*="display: flex"] {
        display: flex !important;
    }
    
    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    
    .mobile-menu-list li {
        margin-bottom: 20px;
    }
    
    .mobile-menu-list a {
        color: white;
        font-size: 1.3rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .mobile-menu-list a:hover {
        color: #8b5a2b;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* ===== RÉDUCTION POLICE MENU ===== */
.site-header a,
.site-navigation a,
.desktop-nav a,
.desktop-menu-list a {
    font-size: 1.0rem !important;
    letter-spacing: 0.3px;
}

.menu-item:last-child a[href*="contact"],
.menu-item:last-child a[href*="demander"],
.menu-item:last-child a[href="#contact-us-1"] {
    font-size: 0.92rem !important;
    padding: 8px 20px !important;
}

@media (max-width: 768px) {
    .mobile-menu-list a {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .mobile-menu-list a {
        font-size: 1rem !important;
    }
}

/* ===== CORRECTION TITRES CACHÉS SOUS LE MENU ===== */
body.page-template-page-informations,
body.page-template-page-apropos,
body.page-template-page-services,
body.page-template-page-contact-chambre,
body.page-template-page-contact {
 /*   padding-top: 100px !important; */
}

@media (max-width: 768px) {
    body.page-template-page-informations,
    body.page-template-page-apropos,
    body.page-template-page-services,
    body.page-template-page-contact-chambre,
    body.page-template-page-contact {
        padding-top: 80px !important;
    }
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    .section-title {
        font-size: 3rem;
    }
    .desktop-menu-list {
        gap: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    .values-grid,
    .services-grid,
    .category-grid,
    .sample-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    .values-grid,
    .services-grid,
    .category-grid,
    .sample-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image {
        min-height: 350px;
    }
    .apropos-page .two-columns,
    .apropos-page .missions-grid,
    .contact-modern-page .contact-cards {
        grid-template-columns: 1fr;
    }
    .apropos-page .events-grid {
        grid-template-columns: 1fr;
    }
    .apropos-page .timeline {
        padding-left: 50px;
    }
    .apropos-page .timeline::before {
        left: 20px;
    }
    .apropos-page .timeline-year {
        left: -50px;
        padding: 5px 12px;
    }
    .apropos-page .column-image {
        max-height: 400px;
    }
    .apropos-page .column-content .superior-message {
        max-height: none;
        overflow-y: visible;
    }
    .contact-modern-page .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slider-nav {
        display: none;
    }
    
    .contact-info-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
    
    .about-section,
    .gallery-advanced,
    .informations-page,
    .contact-page,
    .contact-modern-page,
    .services-page,
    .apropos-page {
        padding: var(--section-padding-mobile) 0;
    }
    
    .about-grid,
    .values-grid,
    .services-grid,
    .category-grid,
    .sample-grid,
    .about-page-custom .events-grid,
    .contact-page .form-row,
    .contact-modern-page .form-grid,
    .contact-modern-page .contact-cards,
    .services-page .services-grid,
    .apropos-page .events-grid,
    .apropos-page .missions-grid {
        grid-template-columns: 1fr !important;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .about-content {
        text-align: center;
        padding: 0;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .value-content::before {
        font-size: 18px;
        top: -5px;
        right: 0;
    }
    
    .about-page-custom,
    .demande-chambre-page,
    .informations-page,
    .contact-page,
    .contact-modern-page,
    .services-page,
    .apropos-page {
        padding-top: 70px;
    }
    
    .about-page-custom .about-hero,
    .contact-chambre-page .page-hero,
    .informations-page .page-hero,
    .contact-page .contact-hero {
        height: 30vh;
        min-height: 250px;
    }
    
    .demande-chambre-page .form-card,
    .contact-form-column,
    .contact-modern-page .form-wrapper,
    .services-page .service-card-large,
    .apropos-page .starfish-section,
    .apropos-page .support-section {
        padding: 25px;
    }
    
    .demande-chambre-page .form-row,
    .contact-page .form-row,
    .contact-modern-page .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-box .info-details,
    .demande-chambre-page .contact-info,
    .informations-page .contact-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .info-card,
    .informations-page .info-card,
    .services-page .service-card-large {
        flex-direction: column;
        padding: 25px;
    }
    
    .info-icon {
        text-align: left;
    }
    
    .info-section .section-title,
    .services-page .service-title,
    .apropos-page .section-title {
        font-size: 1.5rem;
    }
    
    .contact-modern-page .contact-intro h1,
    .contact-modern-page .form-title,
    .demande-chambre-page .page-title,
    .informations-page .page-title,
    .services-page .page-title,
    .apropos-page .page-title {
        font-size: 1.8rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    .demande-chambre-page .intro-card,
    .informations-page .intro-card,
    .apropos-page .intro-card {
        flex-direction: column;
        text-align: center;
    }
    
    .apropos-page .column-image {
        max-height: 300px;
    }
    
    .contact-modern-page {
        padding-top: 80px !important;
    }
    
    .contact-modern-page .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-modern-page .contact-intro {
        padding: 20px;
        font-size: 1rem;
    }
    
    .contact-modern-page .contact-intro h1 {
        font-size: 1.4rem;
    }
    
    .contact-modern-page .form-title {
        font-size: 1.6rem;
    }
    
    .contact-modern-page .form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-modern-page .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-modern-page .submit-btn {
        width: 100%;
        min-width: auto;
    }
    
    .apropos-page .page-title {
        font-size: 1.8rem;
    }
    
    .apropos-page .section-title {
        font-size: 1.5rem;
    }
    
    .apropos-page .starfish-section {
        padding: 25px;
    }
    
    .apropos-page .inspiring-quote {
        font-size: 1rem;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: var(--section-padding-small);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-section,
    .demande-chambre-page,
    .informations-page,
    .contact-page,
    .contact-modern-page,
    .services-page,
    .apropos-page {
        padding: var(--section-padding-small) 0;
    }
    
    .about-image {
        min-height: 250px;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .btn-outline,
    .btn-submit,
    .contact-modern-page .submit-btn,
    .services-page .btn-submit {
        padding: 12px 28px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-detail-item {
        padding: 12px 15px;
    }
    
    .detail-icon {
        font-size: 1.8rem;
        min-width: 40px;
    }
    
    .demande-chambre-page .hero-title,
    .informations-page .hero-title,
    .services-page .page-title,
    .apropos-page .page-title {
        font-size: 1.6rem;
    }
    
    .demande-chambre-page .form-main-container {
        padding: 0;
    }
    
    .info-section .section-title,
    .apropos-page .section-title {
        font-size: 1.3rem;
    }
    
    .informations-page .info-card,
    .apropos-page .support-section,
    .apropos-page .starfish-section,
    .apropos-page .donation-card {
        padding: 20px;
    }
    
    .contact-modern-page .form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-modern-page .card-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .apropos-page .missions-grid,
    .apropos-page .support-section {
        padding: 25px;
    }
    
    .apropos-page .donation-card {
        padding: 20px;
    }
    
    .apropos-page .btn-submit {
        width: 100%;
    }
}

/* ===== CORRECTION SCROLL HORIZONTAL ===== */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

img, iframe, video, table, figure, .wp-block-image, .wp-block-cover {
    max-width: 100% !important;
    height: auto !important;
}

.container, .site-header-inner, .site-footer-inner {
    max-width: 100% !important;
    overflow-x: hidden !important;
    width: 100%;
}

.hero-slider, .page-hero, .contact-hero, .wp-block-cover {
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    position: relative;
}

.site-content, main, article, section {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* ===== SUPPRESSION DES SCROLLS DANS LES SECTIONS ===== */
.apropos-page .column-content .superior-message,
.apropos-page .superior-message,
.values-section,
.about-section,
.services-section,
.gallery-advanced,
.info-card,
.service-card-large,
.form-card,
.form-wrapper {
    max-height: none !important;
    overflow-y: visible !important;
    overflow-x: visible !important;
}

.apropos-page .column-content .superior-message::-webkit-scrollbar,
.values-section::-webkit-scrollbar,
.about-section::-webkit-scrollbar,
.services-section::-webkit-scrollbar {
    display: none !important;
}

.column-content,
.info-content,
.service-content {
    height: auto !important;
    justify-content: flex-start !important;
}

section, div, article {
    overflow: visible !important;
}

/* ===== MENU BICOLORE - VERSION FINALE ===== */
.site-header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
    z-index: 1000;
}

body.home .site-header.is-hero,
body.front-page .site-header.is-hero {
    background: transparent !important;
    box-shadow: none !important;
}

body.home .site-header.is-hero.scrolled,
body.front-page .site-header.is-hero.scrolled {
    background: #b75b7d !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

body:not(.home):not(.front-page) .site-header {
    background: #b75b7d !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* ===== FORCER LE SCROLL ===== */
html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 100vh;
}

.site-content, main {
    min-height: 100vh;
}

/* ===== PADDING GLOBAL POUR TOUTES LES PAGES (HORS ACCUEIL) ===== */
body:not(.home):not(.front-page) .site-content,
body:not(.home):not(.front-page) main,
body:not(.home):not(.front-page) .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

body.page-template-page-informations .container,
body.page-template-page-apropos .container,
body.page-template-page-services .container,
body.page-template-page-contact-chambre .container,
body.page-template-page-contact .container {
    padding-left: 40px !important;
    padding-right: 40px !important;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.page-template-page-informations .info-card,
.page-template-page-apropos .info-card,
.page-template-page-services .service-card-large,
.page-template-page-contact-chambre .form-card,
.page-template-page-contact .form-wrapper {
    padding: 40px !important;
}

body:not(.home):not(.front-page) .page-header {
    text-align: center;
    margin-bottom: 40px;
}

body:not(.home):not(.front-page) .page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

body:not(.home):not(.front-page) .page-subtitle {
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 992px) {
    body:not(.home):not(.front-page) .site-content,
    body:not(.home):not(.front-page) main,
    body:not(.home):not(.front-page) .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    
    .page-template-page-informations .container,
    .page-template-page-apropos .container,
    .page-template-page-services .container,
    .page-template-page-contact-chambre .container,
    .page-template-page-contact .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    
    .page-template-page-informations .info-card,
    .page-template-page-apropos .info-card,
    .page-template-page-services .service-card-large,
    .page-template-page-contact-chambre .form-card,
    .page-template-page-contact .form-wrapper {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    body:not(.home):not(.front-page) .site-content,
    body:not(.home):not(.front-page) main,
    body:not(.home):not(.front-page) .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .page-template-page-informations .container,
    .page-template-page-apropos .container,
    .page-template-page-services .container,
    .page-template-page-contact-chambre .container,
    .page-template-page-contact .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .page-template-page-informations .info-card,
    .page-template-page-apropos .info-card,
    .page-template-page-services .service-card-large,
    .page-template-page-contact-chambre .form-card,
    .page-template-page-contact .form-wrapper {
        padding: 25px !important;
    }
    
    body:not(.home):not(.front-page) .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body:not(.home):not(.front-page) .site-content,
    body:not(.home):not(.front-page) main,
    body:not(.home):not(.front-page) .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .page-template-page-informations .container,
    .page-template-page-apropos .container,
    .page-template-page-services .container,
    .page-template-page-contact-chambre .container,
    .page-template-page-contact .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .page-template-page-informations .info-card,
    .page-template-page-apropos .info-card,
    .page-template-page-services .service-card-large,
    .page-template-page-contact-chambre .form-card,
    .page-template-page-contact .form-wrapper {
        padding: 20px !important;
    }
    
    body:not(.home):not(.front-page) .page-title {
        font-size: 1.8rem;
    }
}
/* ===== CORRECTION MOBILE/TABLETTE - SECTION À PROPOS ===== */
@media (max-width: 768px) {
    
    /* Forcer l'affichage en colonne */
    .about-section .about-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    /* Image - taille contrôlée */
    .about-section .about-image {
        width: 100% !important;
        height: 220px !important;
        min-height: auto !important;
        margin-bottom: 0 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 25px -8px rgba(0,0,0,0.1) !important;
    }
    
    .about-section .about-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* Conteneur texte - fond blanc pour lisibilité */
    .about-section .about-content {
        width: 100% !important;
        padding: 20px 0 !important;
        background: transparent !important;
    }
    
    .about-section .about-content .section-title {
        text-align: left !important;
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
        color: #b75b7d !important;
    }
    
    .about-section .about-content .section-title:after {
        left: 0 !important;
        transform: none !important;
    }
    
    .about-section .about-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #2c3e50 !important;
        margin-bottom: 20px !important;
    }
    
    .about-section .about-button {
        text-align: left !important;
    }
    
    .about-section .about-button .btn-outline {
        display: inline-block !important;
        padding: 12px 30px !important;
        background-color: transparent !important;
        color: #b75b7d !important;
        border: 2px solid #b75b7d !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        font-size: 0.95rem !important;
        transition: all 0.3s ease !important;
    }
    
    .about-section .about-button .btn-outline:hover {
        background-color: #b75b7d !important;
        color: white !important;
    }
}

/* ===== PETITS MOBILES ===== */
@media (max-width: 480px) {
    .about-section .about-image {
        height: 180px !important;
    }
    
    .about-section .about-content .section-title {
        font-size: 1.4rem !important;
    }
    
    .about-section .about-text {
        font-size: 0.95rem !important;
    }
    
    .about-section .about-button .btn-outline {
        width: 100% !important;
        text-align: center !important;
    }
}
/* ===== RÉDUCTION DES MARGES ENTRE SECTIONS ===== */
.hero-slider {
    margin-bottom: 0 !important;
}

.contact-info-bar {
    margin-bottom: 0 !important;
}

.about-section,
.values-section,
.services-section,
.gallery-advanced {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    margin: 0 !important;
}

.home .about-section,
.home .values-section,
.home .services-section,
.home .gallery-advanced {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.contact-info-bar + .about-section {
    padding-top: 30px !important;
}

.about-section .container,
.values-section .container,
.services-section .container,
.gallery-advanced .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 768px) {
    .about-section,
    .values-section,
    .services-section,
    .gallery-advanced {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .home .about-section,
    .home .values-section,
    .home .services-section,
    .home .gallery-advanced {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
}

/* ===== ESPACEMENT PROFESSIONNEL AVEC VARIABLES ===== */
:root {
    --gallery-gap-desktop: 20px;
    --gallery-gap-tablet: 15px;
    --gallery-gap-mobile: 12px;
    --gallery-gap-small: 10px;
}

.sample-grid,
.category-grid {
    display: grid;
    gap: var(--gallery-gap-desktop);
}

@media (max-width: 992px) {
    .sample-grid,
    .category-grid {
        gap: var(--gallery-gap-tablet);
    }
}

@media (max-width: 768px) {
    .sample-grid,
    .category-grid {
        gap: var(--gallery-gap-mobile);
    }
}

@media (max-width: 480px) {
    .sample-grid,
    .category-grid {
        gap: var(--gallery-gap-small);
    }
}

.gallery-category:last-child .sample-grid:last-child,
.gallery-category:last-child .category-grid:last-child {
    margin-bottom: 0;
}

/* ===== CARROUSEL - VERSION AVEC VARIABLES ===== */
:root {
    --slider-images-per-line: 5;
    --slider-speed: 30s;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.slider-track {
    display: flex;
    animation: scroll var(--slider-speed) linear infinite;
    width: calc(100% * 3);
}

.slider-item {
    flex: 0 0 calc(100% / var(--slider-images-per-line));
    padding: 0 5px;
    box-sizing: border-box;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-container:hover .slider-prev,
.slider-container:hover .slider-next {
    opacity: 1;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
}

/* ===== CHAMBRES - 3 MODÈLES ===== */
.chambres-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.chambres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.chambre-modele-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chambre-modele-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(183,91,125,0.1);
}

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

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

.chambre-modele-card:hover .modele-main-image {
    transform: scale(1.05);
}

.modele-thumbnails {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.thumbnail-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-more {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(183,91,125,0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid white;
}

.modele-content {
    padding: 25px;
}

.modele-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.modele-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.modele-caracteristiques {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.caracteristique {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    color: #2c3e50;
}

.caracteristique .icone {
    font-size: 1.2rem;
}

.btn-view-modele {
    width: 100%;
    padding: 12px;
    background: #b75b7d;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-view-modele:hover {
    background: #a04b6b;
}

@media (max-width: 992px) {
    .chambres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .chambres-grid {
        grid-template-columns: 1fr;
    }
    
    .modele-image {
        height: 200px;
    }
}

/* ===== STYLES POUR LES 3 MODÈLES DE CHAMBRES DANS LA GALERIE ===== */
.chambres-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.chambre-mini-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.chambre-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183,91,125,0.08);
}

.chambre-mini-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
}

.chambre-mini-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.chambre-mini-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 15px 10px 10px;
}

.chambre-badge {
    display: inline-block;
    background: #b75b7d;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chambre-mini-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f9f9f9;
    font-size: 0.9rem;
}

.mini-price {
    font-weight: 600;
    color: #b75b7d;
}

.mini-surface {
    color: #666;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mini-surface::before {
    content: '📏';
    font-size: 0.9rem;
}

/* ===== GRILLE COMPLÈTE DES CHAMBRES ===== */
.chambres-complete-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.chambre-complete-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.chambre-complete-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-bottom: 1px solid #f0f0f0;
}

.chambre-complete-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 0;
}

.chambre-complete-price {
    background: #b75b7d;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.chambre-complete-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 25px;
}

.chambre-complete-item {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}

.chambre-complete-item .gallery-advanced-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chambre-complete-footer {
    padding: 20px 25px 25px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chambre-complete-desc {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    flex: 1;
    padding-right: 20px;
}

.chambre-complete-surface {
    background: white;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}

/* ===== PIED DE CATÉGORIE ===== */
.category-sample-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.category-sample-footer .filter-btn {
    background: transparent;
    border: 2px solid #b75b7d;
    color: #b75b7d;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.category-sample-footer .filter-btn:hover {
    background: #b75b7d;
    color: white;
}

/* ===== RESPONSIVE CHAMBRES ===== */
@media (max-width: 992px) {
    .chambres-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chambre-complete-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .chambres-mini-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .chambre-complete-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .chambre-complete-price {
        align-self: flex-start;
    }
    
    .chambre-complete-images {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .chambre-complete-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 15px 20px;
    }
    
    .chambre-complete-desc {
        padding-right: 0;
    }
    
    .chambre-complete-surface {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .chambre-mini-info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .chambre-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
}

/* ===== LOUPE SUR LES MINIATURES DE CHAMBRES ===== */
.chambre-mini-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.chambre-mini-link .gallery-advanced-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183,91,125,0.8) 0%, rgba(139,90,43,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.chambre-mini-card:hover .gallery-advanced-overlay {
    opacity: 1;
}

.chambre-mini-link .gallery-advanced-icon {
    color: white;
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.chambre-mini-card:hover .gallery-advanced-icon {
    transform: scale(1);
}

.chambre-mini-overlay {
    z-index: 2;
}

.chambre-mini-link .gallery-advanced-overlay {
    z-index: 3;
}

/* ===== LOUPE SUR LES IMAGES DE LA CATÉGORIE CHAMBRES ===== */
.chambre-complete-item {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}

.chambre-complete-item .gallery-advanced-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.chambre-complete-item .gallery-advanced-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183,91,125,0.8) 0%, rgba(139,90,43,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.chambre-complete-item:hover .gallery-advanced-overlay {
    opacity: 1;
}

.chambre-complete-item .gallery-advanced-icon {
    color: white;
    font-size: 2rem;
    background: rgba(255,255,255,0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.chambre-complete-item:hover .gallery-advanced-icon {
    transform: scale(1);
}

/* ===== CORRECTION BOUTON VOIR TOUTES LES CHAMBRES ===== */
@media (max-width: 768px) {
    .category-sample-footer {
        margin-bottom: calc(80px + 10px) !important;
    }
}

@media (max-width: 480px) {
    .category-sample-footer {
        margin-bottom: calc(70px + 10px) !important;
    }
}

/* ===== SLIDER HÉRO - FONDU CROISÉ PROFESSIONNEL ===== */
.hero-slider {
    position: relative;
    width: 100vw;
    height: 90vh;
    min-height: 600px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.prev-active {
    opacity: 0;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-family: var(--font-title);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.slide-text {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.btn-primary {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    backdrop-filter: blur(8px);
    opacity: 0.7;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
    color: #000;
    border-color: white;
    transform: scale(1.1);
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 15px;
    transform: scale(1);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot.active {
        width: 20px;
    }
}

.slide .slide-image {
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-image {
    transform: scale(1.1);
}

.slide.prev-active .slide-image {
    transform: scale(1);
}

/* ===== SECTION À PROPOS - VERSION PROFESSIONNELLE ===== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fcfaf8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '✦';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    color: #b75b7d;
    opacity: 0.05;
    font-family: serif;
    pointer-events: none;
    z-index: 0;
}

.about-section::after {
    content: '✦';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 180px;
    color: #2c3e50;
    opacity: 0.05;
    font-family: serif;
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(183,91,125,0.15);
}

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

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.about-image:hover::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-color: #b75b7d;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.5);
}

.about-content .section-title {
    text-align: left;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: #b75b7d;
    position: relative;
    padding-bottom: 15px;
}

.about-content .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b75b7d, #8b5a2b);
    border-radius: 3px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-button .btn-outline {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #b75b7d, #a04b6b);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(183,91,125,0.3);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.about-button .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.about-button .btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183,91,125,0.4);
}

.about-button .btn-outline:hover::before {
    left: 100%;
}

.about-button .btn-outline:active {
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .about-grid {
        gap: 40px;
    }
    
    .about-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        height: 300px;
        max-width: 100%;
        margin-bottom: 0;
        order: 1;
    }
    
    .about-content {
        order: 2;
        padding: 25px;
        margin-top: 0;
    }
    
    .about-content .section-title {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .about-content .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text {
        text-align: center;
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-button {
        text-align: center;
    }
    
    .about-button .btn-outline {
        align-self: center;
        width: auto;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-grid {
        gap: 25px;
    }
    
    .about-image {
        height: 220px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-content .section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-button .btn-outline {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .about-image::after {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 360px) {
    .about-grid {
        gap: 20px;
    }
    
    .about-image {
        height: 180px;
    }
    
    .about-content {
        padding: 15px;
    }
    
    .about-content .section-title {
        font-size: 1.4rem;
    }
}

/* ===== PAGE SERVICES - VERSION PROFESSIONNELLE ===== */
.services-page {
    padding: 5px 0;
    background: linear-gradient(135deg, #fcfaf8 0%, #ffffff 100%);
}

.services-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-page .page-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.services-page .page-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #b75b7d;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.services-page .page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b75b7d, #8b5a2b);
    border-radius: 3px;
}

.services-page .page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-page .intro-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-left: 4px solid #b75b7d;
    position: relative;
    overflow: hidden;
}

.services-page .intro-card::before {
    content: '✦';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    color: #b75b7d;
    opacity: 0.05;
    font-family: serif;
    pointer-events: none;
}

.services-page .intro-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #b75b7d15, #8b5a2b15);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px dashed #b75b7d40;
}

.services-page .intro-text {
    flex: 1;
}

.services-page .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.services-page .service-card-large {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-page .service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(183,91,125,0.1);
    border-color: #b75b7d20;
}

.services-page .service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b75b7d, #8b5a2b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-page .service-card-large:hover::before {
    opacity: 1;
}

.services-page .service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #b75b7d10, #8b5a2b10);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.services-page .service-card-large:hover .service-icon-large {
    transform: rotate(0deg) scale(1.05);
}

.services-page .service-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-family: 'Lora', serif;
}

.services-page .service-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.services-page .service-description p {
    margin-bottom: 10px;
}

.services-page .service-description p:last-child {
    margin-bottom: 0;
}

.services-page .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px dashed #e0e0e0;
    padding-top: 20px;
}

.services-page .service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 0.98rem;
    color: #2c3e50;
    line-height: 1.5;
    border-bottom: 1px solid #f5f5f5;
    transition: transform 0.2s ease, padding-left 0.2s ease;
}

.services-page .service-features li:last-child {
    border-bottom: none;
}

.services-page .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b75b7d;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.services-page .service-features li:hover {
    padding-left: 35px;
    color: #b75b7d;
}

.services-page .service-features li:hover::before {
    transform: scale(1.2);
}

.services-page .contact-prompt {
    text-align: center;
    margin: 60px 0 20px;
    padding: 50px;
    background: linear-gradient(135deg, #b75b7d08, #8b5a2b08);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.services-page .contact-prompt::before {
    content: '❤️';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    transform: rotate(15deg);
}

.services-page .contact-prompt p {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-family: 'Lora', serif;
    position: relative;
}

.services-page .btn-submit {
    display: inline-block;
    background: linear-gradient(135deg, #b75b7d, #a04b6b);
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(183,91,125,0.3);
    position: relative;
    overflow: hidden;
}

.services-page .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.services-page .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183,91,125,0.4);
}

.services-page .btn-submit:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .services-page .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-page .intro-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 60px 0;
    }
    
    .services-page .intro-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .services-page .intro-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .services-page .service-card-large {
        padding: 25px;
    }
    
    .services-page .service-title {
        font-size: 1.4rem;
    }
    
    .services-page .contact-prompt {
        padding: 40px 20px;
    }
    
    .services-page .contact-prompt p {
        font-size: 1.2rem;
    }
    
    .services-page .btn-submit {
        padding: 14px 35px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-page .page-title {
        font-size: 1.8rem;
    }
    
    .services-page .page-subtitle {
        font-size: 1rem;
    }
    
    .services-page .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .services-page .service-title {
        font-size: 1.3rem;
    }
    
    .services-page .service-features li {
        font-size: 0.9rem;
        padding: 6px 0 6px 25px;
    }
}

/* VKO debut*/
/* ===== CORRECTION FINALE - TÉLÉPHONE ROUGE ===== */
.contact-item:nth-child(2) .contact-icon {
    color: #b22222 !important;
    text-shadow: 1px 1px 0px #000000 !important;
    filter: none !important;
}

/* CAPITAL à Tors*/
/* ===== CORRECTION : ANNULER LES MAJUSCULES AUTOMATIQUES ===== */
/* Pour tous les contenus de descriptions */
.service-card p,
.service-description p,
.value-text,
.about-text,
.info-content p,
.gallery-advanced .slide-text,
.slide-text,
.service-card-large .service-description,
.category-sample .sample-grid p,
.gallery-advanced-item .gallery-advanced-overlay,
.chambre-description p,
.timeline-content p,
.event-card p,
.mission-card p,
.support-section p,
.contact-intro p,
.contact-card .card-text,
.intro-text p,
.card p,
.informations-page .info-content p,
.informations-page .engagements-list li,
.services-page .service-description p,
.apropos-page .superior-message,
.apropos-page .timeline-content p,
.apropos-page .event-card p,
.apropos-page .mission-card p,
.hero-student .hero-texte,
.hero-student .hero-reassurance,
.slide-content .slide-text {
    text-transform: none !important;
    text-decoration: none !important;
    font-variant: normal !important;
}

/* Pour tous les paragraphes en général dans le contenu */
.entry-content p,
.container p,
.section-content p,
.page-content p {
    text-transform: none !important;
}
/* ===== PAGE CHAMBRES DISPONIBILITÉS ===== */
.chambres-disponibilites-page {
    padding-top: 0;
}

/* Hero section */
.hero-chambres {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}

.hero-chambres .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-chambres .hero-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-family: var(--font-title, 'Lora', serif);
}

.hero-chambres .hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filtre de disponibilité */
.disponibilite-filtre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 30px;
    background: #f8f5f0;
    border-radius: 60px;
}

.filtre-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filtre-label {
    font-weight: 600;
    color: #2c3e50;
}

.filtre-buttons {
    display: flex;
    gap: 10px;
}

.filtre-btn {
    padding: 8px 24px;
    border: 2px solid #b75b7d;
    background: transparent;
    color: #b75b7d;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filtre-btn.active,
.filtre-btn:hover {
    background: #b75b7d;
    color: white;
}

.compteur-info {
    background: #b75b7d;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
}

/* Grille des chambres */
.chambres-grid-dispo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.chambre-card-dispo {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.chambre-card-dispo:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(183,91,125,0.15);
}

.chambre-card-dispo.indisponible {
    opacity: 0.7;
    filter: grayscale(0.1);
}

.chambre-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Badge disponibilité */
.disponibilite-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.disponibilite-badge.dispo {
    background: #4caf50;
    color: white;
}

.disponibilite-badge.indispo {
    background: #e74c3c;
    color: white;
}

/* Galerie Swiper */
.chambre-gallery {
    width: 100%;
    height: 280px;
    position: relative;
    cursor: pointer;
}

.chambre-gallery .swiper-slide {
    position: relative;
    overflow: hidden;
}

.chambre-gallery .swiper-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chambre-gallery .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chambre-gallery .swiper-slide:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2rem;
    color: white;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Swiper */
.chambre-gallery .swiper-button-prev,
.chambre-gallery .swiper-button-next {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    color: #2c3e50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chambre-gallery:hover .swiper-button-prev,
.chambre-gallery:hover .swiper-button-next {
    opacity: 1;
}

.chambre-gallery .swiper-button-prev:after,
.chambre-gallery .swiper-button-next:after {
    font-size: 1.2rem;
}

.chambre-gallery .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.chambre-gallery .swiper-pagination-bullet-active {
    background: #b75b7d;
    opacity: 1;
}

/* Contenu de la carte */
.chambre-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chambre-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-family: var(--font-title, 'Lora', serif);
}

.chambre-caracteristiques {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.carac-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.carac-item.prix .carac-value {
    color: #b75b7d;
    font-weight: 600;
}

.chambre-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex: 1;
}

.chambre-equipements-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.equip-tag {
    font-size: 0.75rem;
    background: #f5f0ea;
    padding: 4px 10px;
    border-radius: 20px;
    color: #2c3e50;
}

.equip-more {
    font-size: 0.75rem;
    background: #e0d6cc;
    padding: 4px 10px;
    border-radius: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.chambre-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-demande,
.btn-details {
    flex: 1;
    padding: 12px 0;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-size: 0.9rem;
}

.btn-demande {
    background: #b75b7d;
    color: white;
    box-shadow: 0 4px 12px rgba(183,91,125,0.3);
}

.btn-demande:hover:not(.disabled) {
    background: #9e4a68;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(183,91,125,0.4);
}

.btn-demande.disabled {
    background: #aaa;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-details {
    background: transparent;
    color: #b75b7d;
    border: 2px solid #b75b7d;
}

.btn-details:hover {
    background: #b75b7d;
    color: white;
    transform: translateY(-2px);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.modal-large {
    max-width: 800px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #b75b7d;
}

.modal-title {
    font-size: 1.6rem;
    color: #b75b7d;
    margin-bottom: 20px;
    text-align: center;
}

.modal-chambre-info {
    background: #f8f5f0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* Formulaire modal */
#demande-chambre-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

#demande-chambre-form .form-field {
    margin-bottom: 15px;
}

#demande-chambre-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

#demande-chambre-form input,
#demande-chambre-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

#demande-chambre-form input:focus,
#demande-chambre-form textarea:focus {
    outline: none;
    border-color: #b75b7d;
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-consent input {
    width: auto;
}

.btn-submit-form {
    width: 100%;
    padding: 14px;
    background: #b75b7d;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background: #9e4a68;
    transform: translateY(-2px);
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 20000;
    justify-content: center;
    align-items: center;
}

#lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .chambres-grid-dispo {
        grid-template-columns: 1fr;
    }
    
    .disponibilite-filtre {
        flex-direction: column;
        border-radius: 30px;
    }
    
    .hero-chambres {
        height: 40vh;
        min-height: 300px;
    }
    
    .chambre-gallery {
        height: 220px;
    }
    
    #demande-chambre-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-content {
        padding: 20px;
    }
}

/* ===== FILTRE DE CHAMBRES ===== */
.chambre-filter {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #b75b7d;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #b75b7d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-title .filter-icon {
    font-size: 1.2rem;
}

.chambre-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.chambre-option {
    flex: 1;
    min-width: 150px;
}

.chambre-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.chambre-option label:hover {
    border-color: #b75b7d;
    background: #fff5f8;
}

.chambre-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #b75b7d;
    cursor: pointer;
}

.chambre-option .chambre-name {
    font-weight: 500;
    color: #333;
}

.chambre-option .chambre-price {
    font-size: 0.85rem;
    color: #b75b7d;
    margin-left: auto;
    font-weight: 500;
}

.chambre-option.selected label {
    border-color: #b75b7d;
    background: #fff5f8;
    box-shadow: 0 2px 8px rgba(183, 91, 125, 0.1);
}

/* Message d'alerte si aucune chambre disponible */
.no-chambres-message {
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.no-chambres-message p {
    margin: 0;
    color: #856404;
}