/* ================================
   MAISON NŌYA - STYLES PERSONNALISÉS
   ================================ */

/* ===== PRELOADER DISABLED ===== */

/* Cacher complètement le preloader */
.preloader {
    display: none !important;
}

.preloader_image {
    display: none !important;
}

/* ====================
   SCROLL SMOOTH GLOBAL
   ==================== */

/* Scroll smooth pour tous les navigateurs */
html {
    scroll-behavior: smooth;
}

/* Amélioration du scroll pour webkit (Safari, Chrome) */
* {
    -webkit-overflow-scrolling: touch;
}

/* Scroll smooth uniquement si l'utilisateur n'a pas de préférence pour les animations réduites */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    /* Transition smooth pour les liens d'ancre */
    a[href^="#"] {
        scroll-behavior: smooth;
    }
}

/* ====================
   TYPOGRAPHY
   ==================== */

.cormorant-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Logo Text Styles */
.logo_text {
    text-decoration: none;
    display: inline-block;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.8rem;
    font-weight: 600;
    color: #303030;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.logo_text:hover .logo-text {
    color: #d4af37;
    text-decoration: none;
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
}

/* ====================
   HOMEPAGE SECTIONS
   ==================== */

/* Services Section */
.services-section {
    background: #f8f9fa;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .teaser {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.services-section .teaser:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.services-section .teaser_icon {
    margin-bottom: 25px;
    flex-shrink: 0;
}

.services-section .teaser_icon.highlight {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.services-section .teaser_icon i {
    font-size: 28px;
    color: white;
}

.services-section .teaser h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.services-section .teaser p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
    font-size: 0.95rem;
}

/* Ensure equal height columns */
.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.services-section [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section .teaser {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .services-section .teaser_icon.highlight {
        width: 70px;
        height: 70px;
    }
    
    .services-section .teaser_icon i {
        font-size: 24px;
    }
}

/* Domains Section - Alignment fixes */
.domains-section .vertical-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.domains-section .vertical-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.domains-section .item-media {
    flex-shrink: 0;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.domains-section .item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.domains-section .vertical-item:hover .item-media img {
    transform: scale(1.05);
}

.domains-section .item-content {
    flex: 1;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
}

.domains-section .item-meta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.domains-section .item-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

/* Ensure equal height columns for domains */
.domains-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.domains-section [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
    flex: 1;
    min-width: 0;
}

/* Force 4 columns layout on desktop */
@media (min-width: 992px) {
    .domains-section .col-md-3 {
        width: 25%;
        flex: 0 0 25%;
        max-width: 25%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Tablet layout - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .domains-section .col-sm-6 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Responsive domains section */
@media (max-width: 991px) {
    .domains-section .col-md-3 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 768px) {
    .domains-section .col-md-3,
    .domains-section .col-sm-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }
    
    .domains-section .item-media {
        height: 200px;
    }
    
    .domains-section .item-content {
        padding: 20px 15px;
    }
    
    .domains-section .vertical-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .domains-section .item-media {
        height: 180px;
    }
    
    .domains-section .item-content {
        padding: 15px;
    }
    
    .domains-section .item-meta {
        font-size: 1.1rem;
    }
    
    .domains-section .item-content p {
        font-size: 0.9rem;
    }
    
    /* Réduire le padding de la section sur mobile */
    .domains-section.section_padding_110 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .domains-section .heading {
        margin-bottom: 30px !important;
    }
    
    .domains-section .section_header {
        font-size: 1.8rem !important;
    }
}

/* SEO Content Section - Style cohérent avec les autres sections */
.seo-content-section .seo-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.seo-content-section .seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.seo-content-section .seo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.seo-content-section .seo-icon i {
    font-size: 28px;
    color: white;
}

.seo-content-section .item-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.seo-content-section .item-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.seo-content-section strong {
    color: #333;
    font-weight: 600;
}

/* Ensure equal height columns */
.seo-content-section .row {
    display: flex;
    flex-wrap: wrap;
}

.seo-content-section [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

/* Bottom text and buttons */
.seo-content-section .fontsize_18 {
    color: #ccc;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seo-content-section .seo-icon {
        width: 70px;
        height: 70px;
    }
    
    .seo-content-section .seo-icon i {
        font-size: 24px;
    }
    
    .seo-content-section .theme_button {
        display: block;
        margin: 10px auto !important;
        width: 200px;
    }
}

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

/* Model Cards */
.model-card {
    height: 100%; 
    display: flex; 
    flex-direction: column;
}

.model-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.model-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.model-card-link .vertical-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.model-card-link:hover .vertical-item {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.model-card-media {
    flex: 0 0 auto; 
    height: 350px; 
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.model-card-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.model-card-media img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center top;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.model-card-link:hover .model-card-media img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.model-card-content {
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    padding: 20px;
}

.model-card-title {
    margin: 15px 0 5px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.model-card-specialty {
    margin: 0 0 15px 0; 
    color: #666;
    font-style: italic;
}



.model-card-social {
    margin-top: 15px;
    text-align: center;
}

.model-card-social a {
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.model-card-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .isotope-item {
        width: 100% !important;
    }
    
    .model-card-link .vertical-item {
        min-height: auto;
    }
    
    .model-card-media {
        height: 400px !important;
    }
    
    .model-card-content {
        padding: 15px;
    }
    

}

/* ============================================
   MODEL SINGLE PAGE STYLES
   ============================================ */

/* Hero Section */
.model-hero {
    height: 70vh !important;
    min-height: 500px;
    position: relative !important;
}

.model-hero .flexslider {
    position: relative !important;
    height: 100% !important;
}

.model-hero .slides li {
    position: relative !important;
    height: 100% !important;
}

.model-hero .container {
    position: static !important;
    height: 100% !important;
}

.model-hero .row {
    position: static !important;
    height: 100% !important;
}

.model-hero .col-md-12 {
    position: static !important;
    height: 100% !important;
}

.model-hero .slide_description_wrapper {
    position: absolute !important;
    bottom: 50px !important;
    right: 50px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    z-index: 100 !important;
    left: auto !important;
    top: auto !important;
    padding: 0 !important;
    vertical-align: baseline !important;
}

.model-hero .slide_description_wrapper:before {
    display: none !important;
    content: none !important;
}

.model-hero .slide_description {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    text-align: right;
    margin: 0 !important;
    transform: none !important;
    display: block !important;
    vertical-align: baseline !important;
    max-width: none !important;
    width: auto !important;
    position: static !important;
}

.model-hero .model-category {
    color: #CBB67C !important;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.model-hero .model-name {
    color: white !important;
    font-size: 3.5rem !important;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.model-hero .model-location {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.model-hero .model-location i {
    color: #CBB67C;
    margin-right: 8px;
}

/* Section principale */
.model-main-section {
    background: #fafafa;
}

/* Section À propos */
.model-about-section .model-description {
    color: #555;
    line-height: 1.8;
}

.model-about-section .model-description p {
}

.model-about-section .model-description strong {
    color: #333;
    font-weight: 600;
}

/* Luxury Profile */
.luxury-profile {
    text-align: center;
    padding: 0 0 40px 0;
    max-width: 500px;
    margin: 0 auto;
}

.luxury-specialties {
    margin-bottom: 40px;
}

.specialty-text {
    font-size: 1.3rem;
    color: #333;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.8;
}

.luxury-experience {
    margin-bottom: 50px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
}

.experience-years {
    font-size: 3.5rem;
    font-weight: 100;
    color: #CBB67C;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}

.experience-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.luxury-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.signature-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: #CBB67C;
}

.signature-text {
    font-size: 1rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.signature-text strong {
    color: #333;
    font-weight: 400;
}

/* Galerie Simple */
.simple-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.simple-gallery .gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-gallery .gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.simple-gallery .gallery-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

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

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

.simple-gallery .gallery-image:hover .image-overlay {
    opacity: 1;
}

.simple-gallery .image-overlay i {
    color: white;
    font-size: 2rem;
}

/* Image Viewer Modal */
.image-viewer {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.image-viewer .viewer-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.image-viewer .viewer-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.image-viewer .viewer-close:hover {
    color: #CBB67C;
}

/* Boutons de navigation */
.image-viewer .viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(203, 182, 124, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10001;
}

.image-viewer .viewer-nav:hover {
    background: rgba(203, 182, 124, 1);
    transform: translateY(-50%) scale(1.1);
}

.image-viewer .viewer-nav-prev {
    left: -30px;
}

.image-viewer .viewer-nav-next {
    right: -30px;
}

.image-viewer #viewerImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}



.image-viewer .viewer-counter {
    position: absolute;
    top: -50px;
    left: 0;
    color: white;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

/* Card d'informations */
.model-info-card {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.model-info-card .model-card-header .model-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.model-info-card .model-card-header .model-card-category {
    color: #CBB67C;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Mensurations */
.model-stats .stats-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #CBB67C;
}

.model-stats .stats-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.model-stats .stat-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.model-stats .stat-row:last-child {
    border-bottom: none;
}

.model-stats .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    min-width: 130px;
    flex-shrink: 0;
}

.model-stats .stat-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #ddd 0px,
        #ddd 3px,
        transparent 3px,
        transparent 8px
    );
    margin: 0 15px;
}

.model-stats .stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-align: right;
    min-width: 70px;
    flex-shrink: 0;
}

/* Réseaux sociaux */
.model-social .social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #CBB67C;
}

.model-social .social-links {
    display: flex;
    gap: 15px;
}

.model-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.model-social .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.model-social .social-link.facebook {
    background: #3b5998;
}

.model-social .social-link.twitter {
    background: #1da1f2;
}

.model-social .social-link.linkedin {
    background: #0077b5;
}

.model-social .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Informations de contact */
.model-contact-info .contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #CBB67C;
}

.model-contact-info .contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.model-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.model-contact-info .contact-item i {
    color: #CBB67C;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.model-contact-info .contact-item span,
.model-contact-info .contact-item a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.model-contact-info .contact-item a:hover {
    color: #CBB67C;
}

/* Luxury Contact Form */
.luxury-contact-form {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    padding: 40px 30px;
    margin-top: 30px;
}

.luxury-form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.form-signature-line {
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: #CBB67C;
}

.luxury-form-title {
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.luxury-field {
    position: relative;
}

.luxury-input,
.luxury-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 300;
    color: #333;
    transition: border-bottom-color 0.3s ease;
    outline: none;
}

.luxury-input::placeholder,
.luxury-textarea::placeholder {
    color: #999;
    font-weight: 300;
    text-transform: lowercase;
}

.luxury-input:focus,
.luxury-textarea:focus {
    border-bottom-color: #CBB67C;
}

.luxury-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.luxury-submit {
    background: #CBB67C;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    align-self: center;
}

.luxury-submit:hover {
    background: #b8a66d;
    transform: translateY(-1px);
}

/* Messages de confirmation */
.contact-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.contact-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-message p {
    margin: 0;
    line-height: 1.5;
}

.contact-success {
    background: #f0f9f0;
    color: #2d5a2d;
    border: 1px solid #d4edda;
}

.contact-success i {
    color: #28a745;
}

.contact-error {
    background: #fdf2f2;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-error i {
    color: #dc3545;
}

/* Responsive */
@media (max-width: 991px) {
    .model-hero .model-name {
        font-size: 2.5rem !important;
    }
    
    .model-hero .slide_description {
        padding: 30px;
        text-align: center;
    }
    
    .model-hero .slide_description_wrapper {
        position: absolute !important;
        bottom: 30px !important;
        right: 30px !important;
        left: 30px !important;
        width: auto !important;
        text-align: center !important;
    }
    
    .model-stats .stat-label {
        min-width: 110px;
        font-size: 0.95rem;
    }
    
    .model-stats .stat-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .model-hero {
        height: 60vh !important;
        min-height: 400px;
    }
    
    .model-hero .slide_description_wrapper {
        position: absolute !important;
        bottom: 20px !important;
        right: 20px !important;
        left: 20px !important;
        width: auto !important;
        text-align: center !important;
    }
    
    .model-hero .model-name {
        font-size: 2rem !important;
    }
    
    .model-hero .slide_description {
        padding: 25px;
        text-align: center;
    }
    
    .simple-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .simple-gallery .gallery-image img {
        height: 220px;
    }
    
    .image-viewer .viewer-close {
        top: -40px;
        font-size: 2.5rem;
    }
    

    
    .image-viewer .viewer-nav {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .image-viewer .viewer-nav-prev {
        left: -25px;
    }
    
    .image-viewer .viewer-nav-next {
        right: -25px;
    }
    
    .image-viewer .viewer-counter {
        top: -40px;
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .model-stats .stat-label {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .model-stats .stat-value {
        font-size: 0.9rem;
        min-width: 55px;
    }
    
    .model-stats .stat-dots {
        margin: 0 10px;
    }
    
    .luxury-profile {
        padding: 30px 0;
        max-width: 400px;
    }
    
    .luxury-specialties {
        margin-bottom: 30px;
    }
    
    .specialty-text {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .luxury-experience {
        margin-bottom: 40px;
        gap: 12px;
    }
    
    .experience-years {
        font-size: 3rem;
    }
    
    .experience-label {
        font-size: 1rem;
    }
    
    .luxury-contact-form {
        padding: 30px 20px;
    }
    
    .luxury-form-header {
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .luxury-form {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .simple-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .simple-gallery .gallery-image img {
        height: 200px;
    }
    
    .image-viewer .viewer-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .image-viewer .viewer-close {
        top: -35px;
        font-size: 2rem;
    }
    
    .image-viewer .viewer-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .image-viewer .viewer-nav-prev {
        left: -22px;
    }
    
    .image-viewer .viewer-nav-next {
        right: -22px;
    }
    
    .image-viewer .viewer-counter {
        top: -35px;
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .model-stats .stat-row {
        padding: 10px 0;
    }
    
    .model-stats .stat-label {
        min-width: 85px;
        font-size: 0.85rem;
    }
    
    .model-stats .stat-value {
        font-size: 0.85rem;
        min-width: 50px;
    }
    
    .model-stats .stat-dots {
        margin: 0 8px;
    }
    
    .luxury-profile {
        padding: 25px 15px;
        max-width: 350px;
    }
    
    .luxury-specialties {
        margin-bottom: 25px;
    }
    
    .specialty-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
        line-height: 1.6;
    }
    
    .luxury-experience {
        margin-bottom: 35px;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .experience-years {
        font-size: 2.5rem;
    }
    
    .experience-label {
        font-size: 0.9rem;
    }
    
    .luxury-signature {
        gap: 15px;
    }
    
    .signature-line {
        max-width: 60px;
    }
    
    .signature-text {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .luxury-contact-form {
        padding: 25px 15px;
        margin-top: 20px;
    }
    
    .luxury-form-header {
        margin-bottom: 25px;
        gap: 12px;
    }
    
    .form-signature-line {
        max-width: 30px;
    }
    
    .luxury-form-title {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .luxury-form {
        gap: 18px;
    }
    
    .luxury-input,
    .luxury-textarea {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .luxury-submit {
        padding: 12px 30px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* Isotope filters styling */
.isotope_filters a.selected {
    background-color: #d4af37;
    color: white;
}

.isotope_filters a:hover {
    background-color: #d4af37;
    color: white;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: #d4af37;
}

.hero-content .tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Form Styles */
.dossier-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.form-intro-content {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.form-note {
    background: #f8f9fa;
    border-left: 4px solid #d4af37;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.form-note i {
    color: #d4af37;
    margin-right: 10px;
}

.form-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.form-section-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-input,
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-input:focus,
.form-control:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
    padding: 8px 0;
    transition: background-color 0.2s ease;
}

.checkbox-label:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: #d4af37;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #d4af37;
    border-color: #d4af37;
}

.checkbox-label input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.alert i {
    margin-right: 10px;
    font-size: 1.2rem;
}

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

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

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8941f, #a08419);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .form-intro-title {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 25px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .checkbox-group {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 20px 15px;
    }
}

/* Faire en sorte que l'image prenne toute la taille sur mobile */
@media (max-width: 767px) {
    .intro_section.page_mainslider .flexslider .slides li {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .intro_section.page_mainslider .flexslider .slides li img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center left !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1 !important;
    }
    
    .intro_section.page_mainslider .slide_description_wrapper {
        position: relative !important;
        z-index: 2 !important;
        height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .intro_section.page_mainslider .slide_social {
        position: relative !important;
        z-index: 2 !important;
    }
}

/* Flèche de scroll élégante avec texte */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.scroll-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    color: white;
    transform: translateY(-2px);
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: gentleBounce 3s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.scroll-arrow:hover i {
    color: white;
    transform: translateY(-2px);
}

/* Animation douce */
@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive pour la flèche */
@media (max-width: 767px) {
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-text {
        font-size: 12px;
        color: rgba(51, 51, 51, 0.7);
        text-shadow: 0 1px 2px rgba(255,255,255,0.8);
        margin-bottom: 6px;
    }
    
    .scroll-indicator:hover .scroll-text {
        color: #333;
    }
    
    .scroll-arrow i {
        font-size: 28px;
        color: rgba(51, 51, 51, 0.6);
        text-shadow: 0 1px 3px rgba(255,255,255,0.8);
    }
    
    .scroll-arrow:hover i {
        color: #333;
    }
}

/* Section avec vidéo en arrière-plan */
.video-background-section {
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(205, 205, 205, 0.8);
    z-index: 2;
}

.video-background-section .container {
    position: relative;
    z-index: 3;
}

.video-background-section .container * {
    position: relative;
    z-index: 3;
}

/* Texte en blanc pour la section vidéo */
.video-background-section p {
    color: white !important;
}

.video-background-section .text-uppercase {
    color: white !important;
}

.video-background-section h1 {
    color: white !important;
}

.video-background-section .breadcrumb {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px !important;
}

.video-background-section .breadcrumb li a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.video-background-section .breadcrumb li.active {
    color: white !important;
}

/* Taille de texte équilibrée pour impact optimal */
.video-background-section .fontsize_80 {
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

/* Sous-titre élégant */
.video-background-section .fontsize_24 {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
    font-style: italic !important;
}

/* Responsive pour la vidéo */
@media (max-width: 768px) {
    .video-background video {
        object-position: center center;
    }
    
    
    .video-background-section .fontsize_80 {
        font-size: 2.5rem !important;
    }
    
    .video-background-section .fontsize_24 {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .video-background-section .fontsize_80 {
        font-size: 2rem !important;
    }
    
    .video-background-section .fontsize_24 {
        font-size: 1rem !important;
    }
}

/* Grille des logos de marques */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 80px;
    padding: 15px;
    transition: all 0.3s ease;
}

.brand-logo img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
}

.brand-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive pour les logos de marques */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 25px;
    }
    
    .brand-logo {
        width: 140px;
        height: 60px;
        padding: 10px;
    }
    
    .brand-logo img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brand-logo {
        width: 120px;
        height: 50px;
        padding: 8px;
    }
    
    .brand-logo img {
        max-height: 30px;
    }
}

/* Suppression de la border bottom sur le div heading de l'index */
.intro_section .heading.text-center.bottom_border {
    border-bottom: none !important;
    border-bottom-style: none !important;
    border-bottom-width: 0 !important;
    border-bottom-color: transparent !important;
}

/* Menu blanc uniquement en haut de page - Desktop uniquement */
@media (min-width: 992px) {
    /* Menu blanc quand en haut de page (scrolled_not) */
    .page_header.scrolled_not .sf-menu > li > a {
        color: white !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
        transition: color 0.3s ease !important;
    }
    
    /* Logo blanc quand en haut de page */
    .page_header.scrolled_not .logo-text {
        color: white !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
        transition: color 0.3s ease !important;
    }
    

    
    /* Hover en doré quand en haut */
    .page_header.scrolled_not .sf-menu > li > a:hover {
        color: #CBB67C !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
    }
    
    /* Menu noir quand on scroll (pas scrolled_not) */
    .page_header:not(.scrolled_not) .sf-menu > li > a {
        color: #333 !important;
        text-shadow: none !important;
        transition: color 0.3s ease !important;
    }
    
    /* Logo noir quand on scroll */
    .page_header:not(.scrolled_not) .logo-text {
        color: #333 !important;
        text-shadow: none !important;
        transition: color 0.3s ease !important;
    }
    

    
    /* Hover en doré quand on scroll */
    .page_header:not(.scrolled_not) .sf-menu > li > a:hover {
        color: #CBB67C !important;
    }
}

/* Section fondateur redesignée */
.founder-section {
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Image du fondateur en cercle */
.founder-image-circle {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.founder-image-circle img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 5px solid white;
}

.founder-image-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #CBB67C;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.founder-image-circle:hover::before {
    opacity: 0.8;
}

.founder-image-circle:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* Contenu fondateur */
.founder-content {
    padding-left: 40px;
}

.founder-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.founder-quote::before {
    content: '"';
    font-size: 4rem;
    color: #CBB67C;
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: Georgia, serif;
    opacity: 0.7;
}

.founder-meta {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.founder-title {
    color: #CBB67C;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive pour la section fondateur */
@media (max-width: 991px) {
    .founder-content {
        padding-left: 0;
        padding-top: 20px;
    }
    
    .founder-image-circle {
        width: 180px;
        height: 180px;
    }
    
    .founder-image-circle img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .founder-image-circle {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }
    
    .founder-image-circle img {
        width: 150px;
        height: 150px;
    }
    
    .founder-quote {
        font-size: 1.1rem;
    }
    
    .founder-quote::before {
        font-size: 3rem;
        top: -15px;
        left: -20px;
    }
}

/* Section Expertise redesignée */
.expertise-section {
    background: white;
}

.expertise-grid {
    margin-top: 30px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.expertise-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CBB67C 0%, #d4c490 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-right: 25px;
    box-shadow: 0 4px 15px rgba(203, 182, 124, 0.2);
}

.expertise-content {
    flex: 1;
    padding-top: 5px;
}

.expertise-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.expertise-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
}

/* Responsive pour la section expertise */
@media (max-width: 991px) {
    .expertise-grid .col-md-6 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 30px;
    }
    
    .expertise-item {
        padding: 25px 15px;
    }
    
    .expertise-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-right: 20px;
    }
    
    .expertise-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .expertise-grid .col-md-6 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 25px;
    }
    
    .expertise-item {
        padding: 20px 10px;
        flex-direction: row;
        gap: 20px;
        text-align: left !important;
    }
    
    .expertise-number {
        margin-right: 0;
        margin-bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .expertise-content {
        padding-top: 0;
    }
    
    .expertise-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .expertise-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .expertise-item {
        padding: 15px 5px;
        flex-direction: row;
        gap: 20px;
        text-align: left !important;
    }
    
    .expertise-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .expertise-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .expertise-description {
        font-size: 13px;
    }
}

/* Section hero pleine hauteur */
.intro_section.page_mainslider.ds {
    height: 100vh !important;
    min-height: 100vh !important;
}

.intro_section.page_mainslider.ds .flexslider {
    height: 100vh !important;
    min-height: 100vh !important;
}

.intro_section.page_mainslider.ds .flexslider .slides {
    height: 100vh !important;
    min-height: 100vh !important;
}

.intro_section.page_mainslider.ds .flexslider .slides li {
    height: 100vh !important;
    min-height: 100vh !important;
}

/* Centrage vertical du contenu avec décalage à droite sur desktop */
.intro_section.page_mainslider.ds .slide_description_wrapper {
    height: 100vh !important;
    display: flex !important;
    align-items: end !important;
    justify-content: flex-end !important;
}

/* Tablette : centrage pour visibilité */
@media (min-width: 769px) and (max-width: 991px) {
    .intro_section.page_mainslider.ds .slide_description_wrapper {
        justify-content: end !important;
    }
}

/* Mobile : centrage horizontal */
@media (max-width: 768px) {
    .intro_section.page_mainslider.ds .slide_description_wrapper {
        justify-content: end !important;
    }
}

/* Image de fond pleine hauteur */
.intro_section.page_mainslider.ds .flexslider .slides li img {
    height: 100vh !important;
    min-height: 100vh !important;
    object-fit: cover !important;
    object-position: center top !important;
}

/* Message sélection confidentielle */
.confidential-selection {
    padding: 80px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.confidential-icon {
    margin-bottom: 30px;
}

.confidential-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 300;
}

.confidential-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.confidential-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.theme_button_outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #CBB67C;
    color: #CBB67C;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.theme_button_outline:hover {
    background: #CBB67C;
    color: white;
    text-decoration: none;
}

/* Responsive pour sélection confidentielle */
@media (max-width: 768px) {
    .confidential-selection {
        padding: 60px 20px;
    }
    
    .confidential-title {
        font-size: 2rem;
    }
    
    .confidential-description {
        font-size: 1rem;
    }
    
    .confidential-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .confidential-actions .theme_button,
    .confidential-actions .theme_button_outline {
        width: 200px;
        text-align: center;
        margin: 5px 0;
    }
}

/* ===== MENU MOBILE LUXURY DESIGN ===== */

/* Burger menu moderne */
.toggle_menu {
    width: 40px !important;
    height: 40px !important;
    cursor: pointer;
    z-index: 3001;
    transition: all 0.3s ease;
    padding-top: 20px !important; /* Espacement du haut sur mobile */
}

/* Supprimer les styles du template original qui créent des conflits */
.toggle_menu.mobile-active:after {
    display: none !important;
    content: none !important;
}

.toggle_menu.mobile-active {
    background-color: transparent !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    margin-right: 0 !important;
    z-index: 99999999999999 !important;
}

.toggle_menu span,
.toggle_menu span:before,
.toggle_menu span:after {
    width: 24px !important;
    height: 2px !important;
    background-color: #333 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    border-radius: 1px;
}

.toggle_menu span {
    position: relative !important;
    display: block !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.toggle_menu span:before,
.toggle_menu span:after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
}

.toggle_menu span:before {
    top: -8px !important;
}

.toggle_menu span:after {
    top: 8px !important;
}

/* Animation du burger vers X */
.toggle_menu.mobile-active span {
    background-color: transparent !important;
}

.toggle_menu.mobile-active span:before {
    top: 0 !important;
    transform: rotate(45deg) !important;
    background-color: white !important;
}

.toggle_menu.mobile-active span:after {
    top: 0 !important;
    transform: rotate(-45deg) !important;
    background-color: white !important;
}

/* Menu mobile overlay moderne */
@media (max-width: 991px) {
    .mobile-active .mainmenu_wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(33, 33, 33, 0.95) 100%) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 9999999 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-active .sf-menu {
        position: static !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 40px !important;
        opacity: 1 !important;
        right: auto !important;
        transform: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mobile-active .sf-menu li {
        display: block !important;
        text-align: center !important;
        opacity: 0;
        transform: translateY(30px);
        animation: menuItemFadeIn 0.6s ease forwards;
    }
    
    .mobile-active .sf-menu li:nth-child(1) { animation-delay: 0.1s; }
    .mobile-active .sf-menu li:nth-child(2) { animation-delay: 0.2s; }
    .mobile-active .sf-menu li:nth-child(3) { animation-delay: 0.3s; }
    .mobile-active .sf-menu li:nth-child(4) { animation-delay: 0.4s; }
    .mobile-active .sf-menu li:nth-child(5) { animation-delay: 0.5s; }
    .mobile-active .sf-menu li:nth-child(6) { animation-delay: 0.6s; }
    
    .mobile-active .sf-menu li a {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 2.5rem !important;
        font-weight: 400 !important;
        color: white !important;
        text-decoration: none !important;
        text-transform: none !important;
        letter-spacing: 1px !important;
        position: relative !important;
        padding: 15px 30px !important;
        transition: all 0.4s ease !important;
        border: none !important;
        background: none !important;
    }
    
    .mobile-active .sf-menu li a:hover {
        color: #CBB67C !important;
        transform: scale(1.05) !important;
    }
    
    .mobile-active .sf-menu li a:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1px;
        background: #CBB67C;
        transition: all 0.4s ease;
        transform: translateX(-50%);
    }
    
    .mobile-active .sf-menu li a:hover:before {
        width: 80%;
    }
    
    .mobile-active .sf-menu li.active a {
        color: #CBB67C !important;
    }
    
    .mobile-active .sf-menu li.active a:before {
        width: 80%;
    }
}

/* Animation pour les éléments du menu */
@keyframes menuItemFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo signature en bas du menu mobile */
@media (max-width: 991px) {
    .mobile-active .mainmenu_wrapper:after {
        content: '——— Maison Nōya ———';
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.6);
        font-family: 'Cormorant Garamond', serif;
        font-size: 1rem;
        font-weight: 300;
        letter-spacing: 2px;
        text-align: center;
        white-space: nowrap;
    }
}

/* Burger menu à droite sur tablette */
@media (min-width: 769px) and (max-width: 991px) {
    .page_header .toggle_menu {
        right: 0;
        margin-right: 10px;
    }
}

/* Styles pour burger blanc sur fond vidéo */
@media (min-width: 992px) {
    .page_header.scrolled_not .toggle_menu span,
    .page_header.scrolled_not .toggle_menu span:before,
    .page_header.scrolled_not .toggle_menu span:after {
        background-color: white !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
    
    .page_header:not(.scrolled_not) .toggle_menu span,
    .page_header:not(.scrolled_not) .toggle_menu span:before,
    .page_header:not(.scrolled_not) .toggle_menu span:after {
        background-color: #333 !important;
        box-shadow: none !important;
    }
}

/* Responsive pour petits écrans */
@media (max-width: 480px) {
    .toggle_menu {
        padding-top: 20px !important; /* Espacement uniforme sur petits écrans */
    }
    
    .mobile-active .sf-menu li a {
        font-size: 2rem !important;
        padding: 12px 20px !important;
    }
    
    .mobile-active .sf-menu {
        gap: 30px !important;
    }
    
    .mobile-active .mainmenu_wrapper:after {
        bottom: 40px;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
}

/* Responsive pour écrans moyens */
@media (min-width: 481px) and (max-width: 767px) {
    .toggle_menu {
        padding-top: 20px !important;
    }
    
    .mobile-active .sf-menu li a {
        font-size: 2.2rem !important;
    }
}

/* Ajustements pour tablettes */
@media (min-width: 768px) and (max-width: 991px) {
    .toggle_menu {
        padding-top: 20px !important;
    }
}

/* Amélioration de l'accessibilité */
@media (prefers-reduced-motion: reduce) {
    .toggle_menu span,
    .toggle_menu span:before,
    .toggle_menu span:after,
    .mobile-active .sf-menu li,
    .mobile-active .sf-menu li a {
        transition: none !important;
        animation: none !important;
    }
}

/* Support pour les écrans haute densité */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .mobile-active .mainmenu_wrapper {
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }
}

/* ===== MARQUE HERO STYLES ===== */

/* Section hero marque */
.marque-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Image de fond */
.marque-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/wall.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay avec gradient élégant */
.marque-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgb(179 169 142 / 90%) 0%, rgba(0, 0, 0, 0.3) 30%, rgb(85 85 85 / 70%) 70%, rgb(110 108 108 / 80%) 100%);*/
    z-index: 2;
}

/* Contenu hero marque */
.marque-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    animation: marqueHeroFadeInUp 1.2s ease-out;
    /* Effet glassmorphism comme l'index */
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Badge marque */
.marque-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.marque-line {
    width: 80px;
    height: 1px;
    background: white;
}

.marque-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Titre marque */
.marque-hero-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 4.5rem !important;
    font-weight: 400 !important;
    color: white !important;
    margin: 20px 0 25px 0 !important;
    line-height: 1.1 !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

/* Sous-titre marque */
.marque-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem !important;
    font-weight: 300 !important;
    color: #737373 !important;
    margin-bottom: 30px !important;
}

/* Description marque */
.marque-hero-description {
    max-width: 600px;
    margin: 0 auto;
}

.marque-hero-description p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7 !important;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

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

/* ===== TALENTS HERO STYLES ===== */

/* Section hero talents */
.talents-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Image de fond */
.talents-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/wall.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay avec gradient élégant */
.talents-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgb(179 169 142 / 90%) 0%, rgba(0, 0, 0, 0.3) 30%, rgb(85 85 85 / 70%) 70%, rgb(110 108 108 / 80%) 100%);*/
    z-index: 2;
}

/* Contenu hero talents */
.talents-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    animation: talentsHeroFadeInUp 1.2s ease-out;
    /* Effet glassmorphism comme l'index */
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Badge talents */
.talents-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.talents-line {
    width: 80px;
    height: 1px;
    background: white;
}

.talents-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Titre talents */
.talents-hero-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 4.5rem !important;
    font-weight: 400 !important;
    color: white !important;
    margin: 20px 0 25px 0 !important;
    line-height: 1.1 !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

/* Sous-titre talents */
.talents-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem !important;
    font-weight: 300 !important;
    color: #737373 !important;
    margin-bottom: 30px !important;
}

/* Description talents */
.talents-hero-description {
    max-width: 600px;
    margin: 0 auto;
}

.talents-hero-description p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7 !important;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

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

/* Responsive pour Marque et Talents Hero */
@media (max-width: 991px) {
    .marque-hero-section,
    .talents-hero-section,
    .services-hero-section {
        min-height: 60vh;
        padding: 30px 0;
        justify-content: center;
    }
    
    .marque-hero-content,
    .talents-hero-content {
        padding: 50px 30px;
        max-width: 90%;
        border-radius: 18px;
        margin: auto;
    }
    
    .services-hero-content {
        padding: 50px 30px;
        max-width: 90%;
        border-radius: 18px;
        margin: auto;
    }
    
    .marque-hero-title,
    .talents-hero-title,
    .services-hero-title {
        font-size: 3.5rem !important;
    }
    
    .marque-line,
    .talents-line,
    .services-line {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .marque-hero-section,
    .talents-hero-section,
    .services-hero-section {
        min-height: 60vh;
        padding: 40px 0;
        justify-content: center;
    }
    
    .marque-hero-content,
    .talents-hero-content {
        padding: 40px 25px;
        max-width: 95%;
        border-radius: 15px;
        margin: auto;
    }
    
    .services-hero-content {
        padding: 40px 25px;
        max-width: 95%;
        border-radius: 15px;
        margin: auto;
    }
    
    .marque-hero-title,
    .talents-hero-title,
    .services-hero-title {
        font-size: 3rem !important;
    }
    
    .marque-hero-subtitle,
    .talents-hero-subtitle,
    .services-hero-subtitle {
        font-size: 1.3rem !important;
    }
    
    .marque-hero-description p,
    .talents-hero-description p,
    .services-hero-description p {
        font-size: 1.1rem !important;
    }
    
    .marque-line,
    .talents-line,
    .services-line {
        width: 50px;
    }
    
    .marque-text,
    .talents-text,
    .services-text {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .marque-hero-section,
    .talents-hero-section,
    .services-hero-section {
        min-height: 70vh;
        padding: 60px 0;
        justify-content: center;
    }
    
    .marque-hero-content,
    .talents-hero-content {
        padding: 30px 20px;
        max-width: 98%;
        border-radius: 12px;
        margin: auto;
    }
    
    .services-hero-content {
        padding: 30px 20px;
        max-width: 98%;
        border-radius: 12px;
        margin: auto;
    }
    
    .marque-hero-title,
    .talents-hero-title,
    .services-hero-title {
        font-size: 2.5rem !important;
    }
    
    .marque-hero-subtitle,
    .talents-hero-subtitle,
    .services-hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .marque-hero-description p,
    .talents-hero-description p,
    .services-hero-description p {
        font-size: 1rem !important;
    }
    
    .marque-badge,
    .talents-badge,
    .services-badge {
        gap: 15px;
    }
    
    .marque-line,
    .talents-line,
    .services-line {
        width: 40px;
    }
}

/* ===== SERVICES HERO STYLES ===== */

/* Section hero services */
.services-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Image de fond */
.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/wall.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay avec gradient élégant */
.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgb(179 169 142 / 90%) 0%, rgba(0, 0, 0, 0.3) 30%, rgb(85 85 85 / 70%) 70%, rgb(110 108 108 / 80%) 100%);*/
    z-index: 2;
}

/* Contenu hero services */
.services-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    /* Effet glassmorphism comme l'index */
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Badge services */
.services-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.services-line {
    width: 80px;
    height: 1px;
    background: white;
}

.services-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Titre services */
.services-hero-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 4.5rem !important;
    font-weight: 400 !important;
    color: white !important;
    margin: 20px 0 25px 0 !important;
    line-height: 1.1 !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

/* Sous-titre services */
.services-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem !important;
    font-weight: 300 !important;
    color: #737373 !important;
    margin-bottom: 30px !important;
}

/* Description services */
.services-hero-description {
    max-width: 600px;
    margin: 0 auto;
}

.services-hero-description p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7 !important;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Animation d'entrée */
.services-hero-content {
    animation: servicesHeroFadeInUp 1.2s ease-out;
}

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

/* Responsive Services Hero */
@media (max-width: 991px) {
    .services-hero-section {
        min-height: 60vh;
    }
    
    .services-hero-content {
        padding: 50px 30px;
    }
    
    .services-hero-title {
        font-size: 3.5rem !important;
    }
    
    .services-line {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        min-height: 50vh;
    }
    
    .services-hero-content {
        padding: 40px 25px;
    }
    
    .services-hero-title {
        font-size: 3rem !important;
    }
    
    .services-hero-subtitle {
        font-size: 1.3rem !important;
    }
    
    .services-hero-description p {
        font-size: 1.1rem !important;
    }
    
    .services-line {
        width: 50px;
    }
    
    .services-text {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .services-hero-content {
        padding: 30px 20px;
    }
    
    .services-hero-title {
        font-size: 2.5rem !important;
    }
    
    .services-hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .services-hero-description p {
        font-size: 1rem !important;
    }
    
    .services-badge {
        gap: 15px;
    }
    
    .services-line {
        width: 40px;
    }
}

/* ===== INDEX CTA BUTTONS ===== */

/* Wrapper des boutons CTA sur l'index */
.index-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.index-buttons-wrapper .theme_button {
    flex-shrink: 0;
}

/* Responsive pour les boutons index */
@media (max-width: 768px) {
    .index-buttons-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .index-buttons-wrapper .theme_button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .index-buttons-wrapper {
        gap: 20px;
    }
    
    .index-buttons-wrapper .theme_button {
        max-width: 250px;
    }
}

/* ===== INDEX BREADCRUMBS FULL HEIGHT ===== */

/* Section breadcrumbs pleine hauteur pour index.php */
.index-breadcrumbs-fullheight {
    background-image: url('../images/wall.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.index-breadcrumbs-fullheight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.index-breadcrumbs-fullheight .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.index-breadcrumbs-fullheight .row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.index-breadcrumbs-fullheight .heading {
    color: white;
}

.index-breadcrumbs-fullheight .heading p,
.index-breadcrumbs-fullheight .heading h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Style spécial pour le titre principal sur index */
.index-breadcrumbs-fullheight .heading h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    text-transform: none !important;
    font-size: 5rem;
    letter-spacing: 1px;
}

/* Responsive pour le titre */
@media (max-width: 768px) {
    .index-breadcrumbs-fullheight .heading h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .index-breadcrumbs-fullheight .heading h1 {
        font-size: 3rem;
    }
}

/* Positionnement de la flèche de scroll */
.index-breadcrumbs-fullheight .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Responsive pour le background */
@media (max-width: 768px) {
    .index-breadcrumbs-fullheight {
        height: 100vh;
    }
}

@media (max-width: 480px) {
    .index-breadcrumbs-fullheight {
        height: 100vh;
    }
}

/* ===== DOSSIER FORM MOBILE FIX ===== */

/* Fix pour les champs date sur mobile */
input[type="date"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Styles spécifiques pour iPhone et mobiles */
@media screen and (max-width: 768px) {
    input[type="date"] {
        padding: 12px 10px !important;
        font-size: 16px !important; /* Évite le zoom sur iOS */
        border-radius: 4px !important;
        border: 1px solid #ddd !important;
        background-color: #fff !important;
        -webkit-border-radius: 4px !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    /* Container du champ date */
    .form-group {
        overflow: hidden !important;
    }
    
    .form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Fix spécifique pour les très petits écrans */
@media screen and (max-width: 480px) {
    input[type="date"] {
        padding: 10px 8px !important;
        font-size: 16px !important;
        min-width: 0 !important;
        flex-shrink: 1 !important;
    }
    
    /* Assure que les colonnes prennent toute la largeur sur mobile */
    .row .col-md-6 {
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ===== SERVICES CTA BUTTONS ===== */

/* Wrapper des boutons CTA sur services.php */
.services-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services-buttons-wrapper .theme_button {
    flex-shrink: 0;
}

/* Responsive pour les boutons services */
@media (max-width: 768px) {
    .services-buttons-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-buttons-wrapper .theme_button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-buttons-wrapper {
        gap: 20px;
    }
    
    .services-buttons-wrapper .theme_button {
        max-width: 250px;
    }
}

/* ===== SIGNATURE BADGE ===== */

/* Badge Signature ultra-élégant */
.featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #2c2c2c;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.3px;
    z-index: 5;
    border: 1px solid rgba(203, 182, 124, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(203, 182, 124, 0.2);
    transition: all 0.3s ease;
}

.featured-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(203, 182, 124, 0.1) 0%, rgba(212, 192, 133, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.featured-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(203, 182, 124, 0.3);
}

/* Responsive pour le badge */
@media (max-width: 768px) {
    .featured-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .featured-badge {
        top: 12px;
        left: 12px;
        padding: 5px 10px;
        font-size: 0.65rem;
    }
}

/* ===== LUXURY MODELS SECTION ===== */

/* Section principale */
.luxury-models-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.luxury-models-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(203, 182, 124, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.luxury-models-section .container-fluid {
    position: relative;
    z-index: 2;
    padding-left: 30px;
    padding-right: 30px;
}

/* Grille des modèles */
.luxury-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    max-width: none;
}

/* Carte de modèle */
.luxury-model-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.luxury-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.luxury-model-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image du modèle */
.luxury-model-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #f8f8f8;
}

.luxury-model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all 0.6s ease;
    filter: grayscale(100%) contrast(1.1);
}

.luxury-model-card:hover .luxury-model-image img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1);
}

/* Overlay au survol */
.luxury-model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(203, 182, 124, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.luxury-model-card:hover .luxury-model-overlay {
    opacity: 1;
}

.luxury-model-hover-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.luxury-model-card:hover .luxury-model-hover-content {
    transform: translateY(0);
}

.luxury-model-icon {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.luxury-model-card:hover .luxury-model-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.luxury-model-view-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Informations du modèle */
.luxury-model-info {
    padding: 20px 25px;
    text-align: center;
}

.luxury-model-header {
    margin-bottom: 10px;
}

.luxury-model-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.luxury-model-divider {
    width: 40px;
    height: 1px;
    background: #CBB67C;
    margin: 0 auto;
}

.luxury-model-specialty {
    font-size: 0.85rem;
    color: #666;
    margin: 8px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.luxury-model-location {
    display: none;
}

.luxury-model-signature {
    display: none;
}

/* Section CTA */
.luxury-cta-section {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.luxury-cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.luxury-cta-divider {
    width: 80px;
    height: 1px;
    background: #CBB67C;
    margin: 0 auto 30px;
}

.luxury-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #333;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.luxury-cta-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.6;
    font-weight: 300;
}

/* Boutons luxury */
.luxury-btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxury-btn-primary {
    background: #333;
    color: white;
    border: 2px solid #333;
}

.luxury-btn-primary:hover {
    background: transparent;
    color: #333;
    text-decoration: none;
}

.luxury-btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.luxury-btn-outline:hover {
    background: #333;
    color: white;
    text-decoration: none;
}

.luxury-btn-gold {
    color: white;
    border: 2px solid #CBB67C;
}

.luxury-btn-gold:hover {
    background: transparent;
    color: #CBB67C;
    text-decoration: none;
}

/* Section confidentielle améliorée */
.luxury-confidential {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.luxury-confidential .confidential-icon {
    margin-bottom: 30px;
}

.luxury-confidential .confidential-icon i {
    font-size: 4rem;
    color: #CBB67C;
}

.luxury-confidential .confidential-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin: 0 0 30px 0;
    letter-spacing: 0.5px;
}

.luxury-confidential .confidential-divider {
    width: 80px;
    height: 1px;
    background: #CBB67C;
    margin: 0 auto 30px;
}

.luxury-confidential .confidential-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 40px 0;
    font-weight: 300;
}

.luxury-confidential .confidential-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1400px) {
    .luxury-models-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .luxury-models-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .luxury-model-image {
        height: 420px;
    }
    
    .luxury-models-section .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 768px) {
    .luxury-models-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .luxury-model-image {
        height: 380px;
    }
    
    .luxury-model-info {
        padding: 18px 20px;
    }
    
    .luxury-models-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    
    .luxury-cta-section {
        padding: 40px 25px;
    }
    
    .luxury-cta-title {
        font-size: 1.8rem;
    }
    
    .luxury-confidential {
        padding: 60px 30px;
    }
    
    .luxury-confidential .confidential-title {
        font-size: 2rem;
    }
    
    .luxury-confidential .confidential-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .luxury-confidential .confidential-actions .luxury-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .luxury-models-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .luxury-model-image {
        height: 350px;
    }
    
    .luxury-model-name {
        font-size: 1.3rem;
    }
    
    .luxury-model-info {
        padding: 15px 15px;
    }
    
    .luxury-models-section .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== HERO ENHANCED STYLES ===== */

/* Overlay gradient pour améliorer le contraste */
.hero-enhanced .hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.05) 30%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Contenu hero amélioré */
.hero-content-enhanced {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 60px 50px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    margin: 0 auto;
}

/* Badge "Bienvenue chez" */
.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: #CBB67C;
}

.hero-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Titre principal */
.hero-title {
    font-size: 5rem !important;
    font-weight: 400 !important;
    color: white !important;
    margin: 20px 0 30px 0 !important;
    line-height: 1.1 !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7) !important;
}

/* Sous-titre */
.hero-subtitle {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Description */
.hero-description {
    font-size: 1.3rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Actions buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: #333 !important;
    color: white !important;
    border: 2px solid #333 !important;
    padding: 15px 35px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
}

.hero-btn-primary:hover {
    background: transparent !important;
    color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary {
    background: #CBB67C !important;
    color: white !important;
    border: 2px solid #CBB67C !important;
    padding: 15px 35px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
}

.hero-btn-secondary:hover {
    background: transparent !important;
    color: #CBB67C !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 182, 124, 0.3);
}

/* Animation d'entrée */
.hero-content-enhanced {
    animation: heroFadeInUp 1s ease-out;
}

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

/* Responsive pour le hero enhanced */
@media (max-width: 991px) {
    .hero-content-enhanced {
        padding: 50px 40px !important;
        max-width: 550px;
    }
    
    .hero-title {
        font-size: 3.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-content-enhanced {
        padding: 40px 30px !important;
        max-width: 90%;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .hero-line {
        width: 40px;
    }
    
    .hero-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-content-enhanced {
        padding: 35px 25px !important;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
    }
    
    .hero-badge {
        gap: 15px;
    }
    
    .hero-line {
        width: 30px;
    }
}
