.elementor-152 .elementor-element.elementor-element-c724bae{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-152 .elementor-element.elementor-element-99f2f01{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-152 .elementor-element.elementor-element-fa36ceb{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-99f2f01 */.inspire-hero {
    padding: 140px 20px 60px 20px;
    background-color: var(--color-bg-light);
    text-align: center;
}
.inspire-hero-container { max-width: 750px; margin: 0 auto; }
.inspire-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-orange-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}
.inspire-main-title {
    font-size: 52px;
    font-weight: 500;
    color: var(--color-blue-dark);
    margin-bottom: 25px;
}
.inspire-intro-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-dark);
    font-weight: 300;
}

/* ==========================================================================
   CONCEPTS EN LIGNES ALTERNÉES (LAYOUT ÉDITORIAL)
   ========================================================================== */
.concepts-section { padding: 60px 20px; background-color: var(--color-bg-light); }
.concepts-container { max-width: 1140px; margin: 0 auto; }

.concept-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}
.concept-row.row-reverse { flex-direction: row-reverse; }

.concept-content { flex: 1; }

/* Conteneur d'image fluide */
.concept-image-container {
    flex: 1;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 43, 73, 0.05);
    position: relative; /* Sécurise le positionnement */
}

/* FORÇAGE DE L'IMAGE : Remplit 100% du bloc parent */
.concept-image-container .concept-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important; /* Découpe parfaite sans déformer */
    object-position: center !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.concept-image-container:hover .concept-img {
    transform: scale(1.03) !important;
}

.concept-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-orange-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
.concept-title {
    font-family: var(--font-title);
    font-size: 36px;
    color: var(--color-blue-dark);
    margin: 0 0 20px 0;
}
.concept-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-dark);
    font-weight: 300;
    margin-bottom: 25px;
}

.concept-list { list-style: none; padding: 0; margin: 0; }
.concept-list li {
    font-size: 14.5px;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-weight: 300;
}
.concept-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-orange-gold);
}

.mystery-options p {
    font-size: 14.5px;
    margin-bottom: 10px;
    color: var(--color-text-dark);
    font-weight: 300;
}
.mystery-options strong { color: var(--color-blue-dark); font-weight: 500; }

/* ==========================================================================
   GRILLE DESTINATIONS
   ========================================================================== */
.destinations-section { padding: 100px 20px; background-color: #FFFFFF; }
.destinations-container { max-width: 1140px; margin: 0 auto; }
.destinations-header { text-align: center; margin-bottom: 60px; }
.destinations-title { font-size: 36px; color: var(--color-blue-dark); margin-bottom: 10px; }
.destinations-subtitle { font-size: 15px; color: var(--color-text-dark); font-weight: 300; }

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.dest-card {
    background: var(--color-bg-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 43, 73, 0.02);
    transition: all 0.3s ease;
}
.dest-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 43, 73, 0.04);
}

.dest-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

/* FORÇAGE DE L'IMAGE DE LA GRILLE */
.dest-img-wrapper .dest-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.dest-card:hover .dest-img {
    transform: scale(1.04) !important;
}
.dest-body { padding: 25px; }
.dest-body h3 { font-family: var(--font-title); font-size: 20px; margin: 0 0 10px 0; color: var(--color-blue-dark); }
.dest-body p { font-size: 14px; line-height: 1.6; color: var(--color-text-dark); margin: 0; font-weight: 300; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .concept-row, .concept-row.row-reverse { flex-direction: column; gap: 40px; margin-bottom: 80px; }
    .concept-image-container { width: 100%; height: 350px; }
    .destinations-grid { grid-template-columns: 1fr; }
    .inspire-main-title { font-size: 38px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fa36ceb *//* ==========================================================================
   SECTION EXPERTISES (HARMONISATION FOOTER)
   ========================================================================== */
.expertises-section {
    padding: 100px 20px;
    background-color: #FFFFFF; /* Fond blanc pour trancher avec le beige background */
}

.expertises-container {
    max-width: 1100px;
    margin: 0 auto;
}

.expertises-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertises-tag {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-orange-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.expertises-title {
    font-size: 38px;
    font-weight: 500;
    color: var(--color-blue-dark);
    margin: 0 0 15px 0;
}

.expertises-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-dark);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- La Grille --- */
.expertises-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.expert-card {
    background-color: var(--color-bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(26, 43, 73, 0.01);
    transition: all 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-3px);
    box-sizing: border-box;
    box-shadow: 0 15px 35px rgba(26, 43, 73, 0.03);
    border-color: rgba(222, 135, 67, 0.15);
}

/* Forçage de la 5ème carte sur toute la largeur */
.expert-card-wide {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-icon {
    color: var(--color-orange-gold);
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.expert-card h3 {
    font-family: var(--font-title);
    font-size: 22px;
    color: var(--color-blue-dark);
    margin: 0 0 12px 0;
    font-weight: 600;
}

.expert-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-dark);
    font-weight: 300;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .expertises-grid {
        grid-template-columns: 1fr;
    }
    .expert-card-wide {
        grid-column: span 1;
    }
    .expertises-title {
        font-size: 30px;
    }
    .expert-card {
        padding: 30px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dfad12c *//* ==========================================================================
   BLOC CTA FINAL - PAGE DESTINATIONS
   ========================================================================== */
.seo-cta-section {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet parallaxe élégant */
    overflow: hidden;
}

/* Filtre de contraste */
.seo-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Conteneur de contenu */
.seo-cta-container {
    position: relative;
    max-width: 700px;
    z-index: 2;
    color: #ffffff;
}

.seo-cta-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-orange-gold, #dfa673); /* Sécurité si variable absente */
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
}

.seo-cta-title {
    font-family: var(--font-title);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.seo-cta-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Bouton d'action */
.seo-cta-wrapper {
    display: inline-block;
}

.seo-cta-button {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-orange-gold, #dfa673);
    color: #ffffff;
    padding: 16px 35px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.seo-cta-button:hover {
    background-color: #ffffff;
    color: var(--color-blue-dark, #1a2b49);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Animation de la flèche du bouton */
.seo-cta-arrow {
    transition: transform 0.3s ease;
}

.seo-cta-button:hover .seo-cta-arrow {
    transform: translateX(4px);
}

/* Ajustements Responsive */
@media (max-width: 768px) {
    .seo-cta-section {
        padding: 70px 20px;
        background-attachment: scroll; /* Désactive le parallaxe sur mobile pour de meilleures perfs */
    }
    
    .seo-cta-title {
        font-size: 28px;
    }
    
    .seo-cta-text {
        font-size: 15px;
    }
    
    .seo-cta-button {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%; /* Bouton pleine largeur sur mobile */
        justify-content: center;
    }
}/* End custom CSS */