/* Désactiver la détection automatique des numéros de téléphone iOS Safari */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

/* Éviter le style automatique iOS Safari sur les numéros */
.contact-phone,
.contact-info-item span,
.phone-number {
    -webkit-text-size-adjust: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* About Section (HTML/CSS version) — scoped styles */
.about-html { background: var(--majorelle-bg); color: #0C142A; padding: var(--section-padding) 0; }
.about-kicker {
    color: #0C142A;
    font-family: 'Top Luxury', 'Satoshi', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    font-size: clamp(14px, 1.2vw, 20px);
}
.about-headline {
    font-family: 'Top Luxury', 'Satoshi', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0C142A;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: var(--heading-primary);
    margin: 0 0 var(--content-gap);
}
.about-copy p {
    color: #1B2A56;
    font-family: 'Satoshi', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: var(--text-body);
    line-height: 1.7;
    margin: 0 0 var(--content-gap);
}
.about-image { border-radius: 0; overflow: hidden; height: 100%; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-left { min-height: 360px; position: relative; overflow: visible; }
.about-image-right { min-height: 260px; position: relative; }
.about-left { display: flex; flex-direction: column; }
/*.about-left .about-image-left { margin-top: auto; }*/
.about-left .decor-arrow { 
    margin-top: clamp(8px, 2.5vw, 24px);
     margin-bottom: clamp(12px, 3vw, 24px);
     flex-grow: 1;
       display: flex;           /* active flexbox à l'intérieur */
  align-items: center;     /* centre verticalement le contenu */
    justify-content: center;
    }
@media (min-width: 992px) {
    .about-left .decor-arrow { 
        margin-top: clamp(12px, 2vw, 28px);
        margin-bottom: clamp(12px, 2.5vw, 28px); 
        flex-grow: 1;
     }
}
.about-right { display: flex; flex-direction: column; height: auto; }
.about-right .about-image-right { margin-top: auto; }

/* Decorative arrow (lg+) */
.decor-arrow { margin: 16px 0 20px; }
.arrow-svg { width: 151px; height: auto; transform: none; }
@media (min-width: 1200px) { .arrow-svg { width: 11rem; height: 10rem; } .decor-arrow { left: 64px; } }

/* Decorative star over right image */
.decor-flower { position: absolute; top: -0.5rem; right: -0.5rem; }
.flower-svg { width: clamp(40px, 5vw, 72px); height: clamp(40px, 5vw, 72px); fill: #B09659; }
@media (min-width: 768px) { .decor-flower { top: -2rem; right: -2rem; left: auto; } .flower-svg { width: 4.5rem; height: 4.5rem; } }

/* Stats styling */
.about-stats-row .stat-value {
    color: #0C142A;
    font-family: 'Top Luxury', 'Satoshi', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.5px;
    font-size: clamp(32px, 5vw, 60px);
    margin-bottom: 6px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

/* Animation de compteur ultra sobre et premium */
.about-stats-row .stat-value.animating {
    opacity: 0.85;
}
.about-stats-row .stat-label {
    color: #1B2A56;
    font-family: 'Satoshi', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(13px, 1.6vw, 16px);
    line-height: 1.6;
}


/* Stacked sequence: each image in its own viewport-height slice */
.vs-stacked { position: relative; }
.vs-item { position: relative; height: 100vh; overflow: clip; }
.vs-item img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); filter: saturate(0.98) contrast(1.02); transition: transform 1400ms var(--ease-premium), filter 1200ms var(--ease-premium), opacity 600ms var(--ease-premium); }
.vs-item.is-inview img { transform: scale(1); filter: saturate(1) contrast(1.04); }

/* Stacked layout flow */
.vs-stacked { display: flex; flex-direction: column; gap: 0; }

@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
    .vs-item { height: 20rem; }
    .vs-counter { position: static; margin: .75rem 0 0 auto; backdrop-filter: none; }
}
/* Premium Vertical Scroller (VS): pinned viewport, vertical panels scroll */
.vs-sticky { position: sticky; top: 0; height: 100vh; }
.vs-viewport { position: relative; width: 100%; height: 100%; overflow: hidden; }
.vs-track { position: absolute; left: 0; top: 0; width: 100%; will-change: transform; }
.vs-panel { width: 100%; height: 100vh; }
.vs-panel img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.98) contrast(1.02); }

/* Luxe top/bottom masks for depth and polish */
.vs-mask { position: absolute; left: 0; right: 0; height: 88px; pointer-events: none; z-index: 2; opacity: .75; }
.vs-mask-top { top: 0; background: linear-gradient(to bottom, rgba(20,31,61,.35), rgba(20,31,61,0)); }
.vs-mask-bottom { bottom: 0; background: linear-gradient(to top, rgba(20,31,61,.35), rgba(20,31,61,0)); }

@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
    .vs-sticky { position: static; height: auto; }
    .vs-viewport { height: 20rem; }
    .vs-panel { height: 20rem; }
    .vs-mask { display: none; }
}
/* Sequential Reveal (SR): masked wipe + Ken Burns */
.sr-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.sr-stage { position: relative; width: 100%; height: 100%; }
.sr-panel {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(1.04);
}
.sr-panel img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.98) contrast(1.02); }

/* Masked wipe from right to left for entry */
.sr-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,31,61,0) 0%, rgba(20,31,61,0.35) 35%, rgba(20,31,61,0.6) 60%, rgba(20,31,61,0) 100%);
    transform: translateX(30%);
    opacity: 0;
    pointer-events: none;
}

.sr-panel.is-current { opacity: 1; transform: scale(1); transition: opacity 700ms var(--ease-premium), transform 1200ms var(--ease-premium); }
.sr-panel.is-current::after { opacity: 1; transform: translateX(0); transition: transform 900ms var(--ease-premium), opacity 900ms var(--ease-premium); }
.sr-panel.is-next { opacity: 0.0001; transform: scale(1.02); }

/* Ken Burns subtle zoom when locked in */
@keyframes kb-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.03); }
}
.sr-panel.kb-active img { animation: kb-zoom 6s ease-in-out forwards; }

@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
    .sr-sticky { position: static; height: auto; }
    .sr-stage { height: 20rem; }
    .sr-panel { position: static; opacity: 1; transform: none; }
    .sr-panel::after { display: none; }
    .sr-panel img { animation: none !important; }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F5F8FF;
    color: #141F3D;
    line-height: 1.6;
}

/* Typography */
.font-top-luxury {
    font-family: 'TOP LUXURY', serif;
}

.font-satoshi {
    font-family: 'Satoshi', sans-serif;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Colors & Typography System */
:root {
    --majorelle-gold: #B09659;
    --majorelle-navy: #141F3D;
    --majorelle-navy-light: #1F2E4A;
    --majorelle-cream: #F5F5F5;
    --majorelle-bg: #F5F8FF;
    --ease-premium: cubic-bezier(0.2, 0.6, 0, 1);
    
    /* Premium Typography Scale */
    --heading-hero: clamp(2.5rem, 8vw, 6rem);
    --heading-primary: clamp(2.25rem, 5vw, 4rem);
    --heading-secondary: clamp(1.75rem, 3.5vw, 2.5rem);
    --heading-tertiary: clamp(1.25rem, 2.5vw, 1.75rem);
    
    /* Body Text Scale */
    --text-large: clamp(1.125rem, 2.2vw, 1.25rem);
    --text-body: clamp(1rem, 1.8vw, 1.125rem);
    --text-small: clamp(0.875rem, 1.4vw, 1rem);
    --text-caption: clamp(0.75rem, 1.2vw, 0.875rem);
    
    /* Premium Spacing Scale */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --section-gap: clamp(2rem, 4vw, 4rem);
    --element-gap: clamp(1rem, 2vw, 2rem);
    --content-gap: clamp(0.75rem, 1.5vw, 1.5rem);
    
    /* Mobile Premium Variables (iPhone 12+) */
    --mobile-section-padding: 3rem;
    --mobile-section-gap: 2.5rem;
    --mobile-element-gap: 1.5rem;
    --mobile-content-gap: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('images/hero-main-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Navigation */
.nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: background 350ms var(--ease-premium),
                box-shadow 350ms var(--ease-premium),
                transform 350ms var(--ease-premium),
                border-color 350ms var(--ease-premium),
                -webkit-backdrop-filter 350ms ease,
                backdrop-filter 350ms ease;
}

/* Default glass header for inner pages */
.nav--glass {
    position: sticky;
    top: 0;
    z-index: 101;
    background: rgba(245, 248, 255, 0.72);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 16px rgba(20, 31, 61, 0.06);
}

/* Home: transparent on top */
.nav--home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* Home: transforms into premium glass on scroll */
.nav--home.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 248, 255, 0.72);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 24px rgba(20, 31, 61, 0.08);
    animation: navDrop 500ms var(--ease-premium) 1;
}

@keyframes navDrop {
    from { transform: translateY(-12px); opacity: .0; }
    to   { transform: translateY(0); opacity: 1; }
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: .75rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 4rem;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

/* Dark links when glass is active */
.nav--glass .nav-link,
.nav--home.is-scrolled .nav-link {
    color: #1A1919;
}

.nav--glass .nav-link:hover,
.nav--home.is-scrolled .nav-link:hover {
    color: var(--majorelle-gold);
}

/* Active page link */
.nav-link.active,
.mobile-nav-link.active {
    color: var(--majorelle-gold) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--majorelle-gold);
    color: white;
    padding: var(--content-gap) var(--element-gap);
    border: none;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--text-small);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: rgba(176, 150, 89, 0.9);
}

/* Bouton bleu Majorelle - mêmes règles que btn-primary */
.btn-blue {
    background-color: var(--majorelle-navy);
    color: #F3EFEB;
    padding: 0.75rem var(--element-gap);
    border: none;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--text-small);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-blue:hover {
    background-color: rgba(20, 31, 61, 0.9);
}

.btn-secondary {
    background-color: var(--majorelle-gold);
    color: var(--majorelle-cream);
    padding: var(--content-gap) var(--element-gap);
    border: none;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--text-body);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(176, 150, 89, 0.9);
}

.flag {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background-color: white;
    margin: 2px 0;
    transition: 0.3s;
}

/* Match burger color to glass state */
.nav--glass .mobile-menu-btn span,
.nav--home.is-scrolled .mobile-menu-btn span {
    background-color: #1A1919;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-link:hover {
    color: white;
}

/* Prevent section/mobile buttons from taking full width in column flex layouts */
.section-content .btn-primary,
.section-content .btn-blue,
.section-content .btn-secondary,
.mobile-menu-content .btn-primary,
.mobile-menu-content .btn-blue {
    align-self: flex-start; /* avoid stretch on cross-axis */
    display: inline-flex;   /* size to content */
    width: auto;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-family: 'TOP LUXURY', serif;
    font-size: var(--heading-hero);
    color: white;
    margin-bottom: var(--element-gap);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    font-weight: 500;
}

.hero-subtitle {
    font-size: var(--text-large);
    color: var(--majorelle-cream);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    margin-left: auto;
    margin-right: auto;
}

.scroll-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chevron-down {
    width: 2rem;
    height: 2rem;
    color: var(--majorelle-cream);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Bootstrap-style padding class for very large screens */
@media (min-width: 1400px) {
    .pe-xxl-5 {
        padding-right: 3rem !important;
    }
    
    .pe-xxl-6 {
        padding-right: 4rem !important;
    }
    
    .pe-xxl-7 {
        padding-right: 5rem !important;
    }
}

/* Margin auto for section-content on medium screens */
@media (min-width: 770px) and (max-width: 1020px) {
    .section-content {
        margin: auto !important;
    }
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
}

.about-image {
    width: 100%;
    height: auto;
    margin-top: auto;
    /*border-radius: 0.5rem;*/
}

/* Conciergerie Section */
.conciergerie {
    padding: var(--section-padding) 0;
    background-color: white;
}

.section-grid {
    /* display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 6rem;*/
    align-items: center;
}

/* Shell that pins both columns (text left sticky, images right scrolling) */
.hs-shell {
    position: relative;
    height: calc(var(--hs-panels, 2) * 100vh);
}

.hs-sticky-left {
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    z-index: 2;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: var(--element-gap);
}



.section-title {
    font-family: 'TOP LUXURY', serif;
    font-size: var(--heading-primary);
    color: var(--majorelle-navy);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 500;
    position: relative;
}

/* Gold accent underline that animates in when section is in view */
.hs-shell .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.75rem;
    height: 2px;
    width: 0;
    background: var(--majorelle-gold);
    transition: width 700ms var(--ease-premium);
}
.hs-shell.is-inview .section-title::after {
    width: 64px;
}

.section-description {
    font-size: var(--text-body);
    color: var(--majorelle-navy-light);
    line-height: 1.8;
}

.image-gallery {
    /* Horizontal snap scroller */
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none; /* Firefox */
}

.image-gallery::-webkit-scrollbar { /* WebKit */
    display: none;
}

.gallery-image {
    flex: 0 0 100%; /* one panel per viewport-width of the container */
    width: 100%;
    height: 24rem;
    object-fit: cover;
    scroll-snap-align: start;
}

/* Événementiel Section */
.evenementiel {
    padding: var(--section-padding) 0;
    background-color: var(--majorelle-bg);
}

.event-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.event-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

/* Premium pinned horizontal scroll (designer-grade) */
.hs-container {
    --hs-panels: 3; /* default; override inline per section */
    position: relative;
    height: calc(var(--hs-panels) * 100vh);
}

.hs-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.hs-track {
    display: flex;
    height: 100%;
    width: calc(var(--hs-panels) * 100vw);
    will-change: transform;
    transform: translate3d(0,0,0);
}

.hs-panel {
    flex: 0 0 100vw;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    display: block;
}

/* Optional: subtle gradient edges for premium feel */
.hs-sticky::before,
.hs-sticky::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
}
.hs-sticky::before { left: 0; background: linear-gradient(90deg, rgba(0,0,0,0.18), transparent); }
.hs-sticky::after { right: 0; background: linear-gradient(270deg, rgba(0,0,0,0.18), transparent); }

/* Mobile/reduced-motion fallback: disable pinning and show normal images */
@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
    .hs-container { height: auto; }
    .hs-shell { height: auto; }
    .hs-sticky { position: static; height: auto; }
    .hs-sticky-left { position: static; height: auto; }
    .hs-track { width: auto; }
    .hs-panel { flex: 0 0 auto; width: 100%; height: 20rem; }
    
    /* Disable complex animations on mobile for performance */
    .vs-item img,
    .sr-panel img,
    .sf-layer {
        transform: none !important;
        animation: none !important;
        transition: none !important;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: 1rem;
    }
}

/* Simpler premium crossfade variant */
.sf-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.sf-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.sf-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 600ms var(--ease-premium), transform 800ms var(--ease-premium);
}

.sf-layer.is-visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
    .sf-sticky { position: static; height: auto; }
    .sf-stage { height: 20rem; }
    .sf-layer { position: static; opacity: 1; transform: none; transition: none; }
}

/* Reveal-on-scroll utilities (only active once JS marks .js-ready) */
.js-ready .reveal-up {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    transition:
        opacity 700ms var(--ease-premium) var(--d, 0s),
        transform 700ms var(--ease-premium) var(--d, 0s),
        filter 700ms var(--ease-premium) var(--d, 0s);
    will-change: opacity, transform, filter;
}
.hs-shell.is-inview .reveal-up {
    opacity: 1;
    transform: translateY(0);
    filter: none;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    text-align: center;
    /* Parallax background with dark blue overlay */
    background-image: linear-gradient(rgba(20, 31, 61, 0.9), rgba(20, 31, 61, 0.9)), url('images/section-exclusive-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

.services-header {
    margin-bottom: var(--section-gap);
}

.services-title {
    font-family: 'TOP LUXURY', serif;
    font-size: var(--heading-primary);
    color: var(--majorelle-gold);
    margin-bottom: var(--content-gap);
    text-transform: uppercase;
}

.services-subtitle {
    color: var(--majorelle-cream);
    font-size: var(--text-body);
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    height: 17.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.service-icon {
    font-size: 4rem;
    color: var(--majorelle-gold);
}

.service-title {
    font-family: 'TOP LUXURY', serif;
    font-size: var(--heading-tertiary);
    color: var(--majorelle-cream);
    text-align: center;
    line-height: 1.4;
}

/* Testimonial Section */
.testimonial {
    padding: var(--section-padding) 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: var(--element-gap);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--majorelle-gold);
    font-size: 2.2rem;
}

.testimonial-quote {
    font-family: 'TOP LUXURY', serif;
    font-size: var(--heading-secondary);
    color: var(--majorelle-navy);
    line-height: 1.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-size: var(--text-body);
    font-weight: 500;
    color: var(--majorelle-navy);
}

.author-title {
    color: #535862;
}

.testimonial-nav {
    display: flex;
    gap: 2rem;
}

.nav-btn {
    background: none;
    border: none;
    color: #A4A7AE;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: var(--majorelle-navy);
}


.testimonial-image img {
display: block;
  width: 100%;
  height: auto;
}

/* Partners Section */
.partners {
    padding: var(--section-padding) 0;
    background-color: var(--majorelle-bg);
    text-align: center;
}

.partners-header {
    margin-bottom: var(--section-gap);
}

.partners-title {
    font-family: 'TOP LUXURY', serif;
    font-size: var(--heading-primary);
    color: var(--majorelle-navy);
    margin-bottom: var(--content-gap);
    text-transform: uppercase;
}

.partners-subtitle {
    font-size: var(--text-body);
    color: var(--majorelle-navy-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 0.6;
    max-width: 800px;
    margin: 0 auto;
}

.partner-logo {
    background-color: white;
    border: 1px solid #E5E7EB;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0) opacity(1);
}



/* Animation progressive des logos partenaires - état initial seulement si JS activé */
.js-enabled .partner-logo:not(.animate) {
    opacity: 0;
    transform: translateY(20px);
}

.partner-logo.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Contact Section */
/*.contact {
    padding: 6rem 0;
    background-image: url('images/contact-background.jpg');
    background-size: cover;
    background-position: center;
}*/

.contact{
    padding: var(--section-padding) 0;
    background: 
    linear-gradient(
      to bottom, 
      rgba(20, 31, 61, 0.5) 0%,    /* un peu sombre dès le haut */
      rgba(20, 31, 61, 0.65) 30%,  /* un peu plus sombre */
      rgba(20, 31, 61, 0.8) 70%,  /* encore plus sombre */
      rgba(20, 31, 61, 0.95) 90%,  /* encore plus sombre */
      #141F3D 95%            
    ),
    url("images/bg-footer.png");       
  background-size: cover;       
  background-position: center; 
}



.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

.contact-title {
    font-family: 'TOP LUXURY', serif;
    font-size: var(--heading-primary);
    color: var(--majorelle-cream);
    margin-bottom: var(--content-gap);
    text-transform: uppercase;
    line-height: 1.1;
}

.contact-subtitle {
    color: var(--majorelle-cream);
    font-size: var(--text-body);
    max-width: 32rem;
}

.contact-phone {
    color: var(--majorelle-cream);
    font-size: var(--text-large);
    font-weight: 500;
}

.contact-form {
    background-color: white;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #414651;
}

.required {
    color: var(--majorelle-gold);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #D5D7DA;
    background-color: white;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--majorelle-navy);
    box-shadow: 0 0 0 2px rgba(20, 31, 61, 0.1);
}

.phone-input {
    display: flex;
}

.country-select {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #D5D7DA;
    border-right: none;
    background-color: #F9FAFB;
    gap: 0.5rem;
}

.flag-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.phone-input input {
    flex: 1;
    border-left: none;
}

.form-group textarea {
    resize: none;
    min-height: 8rem;
}

.btn-submit {
    background-color: var(--majorelle-navy);
    color: #F3EFEB;
    padding: var(--content-gap) var(--element-gap);
    border: none;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--text-body);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: rgba(20, 31, 61, 0.9);
}

/* Footer */
.footer {
    padding: var(--section-padding) 0 var(--element-gap);
    text-align: center;
    background-image: url('images/footer-pattern.jpg'), #141F3D;
    background-size: 100px 100px;
    background-repeat: repeat;
    color: var(--majorelle-cream);
    background-color: #141F3D;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    max-width: 64rem;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--element-gap);
}

.footer-logo {
    height: 11rem;
    margin: 0 auto;
}

.footer-description {
    font-family: 'TOP LUXURY', serif;
    font-size: var(--text-large);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--majorelle-gold);
}

/* Ultra Premium Instagram - Pure Icon */
.instagram-link {
    display: inline-block;
    transition: all 0.3s var(--ease-premium);
}

.social-icon {
    width: 2.3em;
    height: 2.3rem;
    object-fit: contain;
    transition: all 0.3s var(--ease-premium);
    opacity: 0.8;
}

.instagram-link:hover .social-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* SVG Instagram avec effet hover doré premium */
.social-icon svg {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-link:hover .social-icon path {
    fill: var(--majorelle-gold);
    filter: drop-shadow(0 0 8px rgba(176, 150, 89, 0.4));
}

/* Contact page Instagram icon with golden hover effect */
.contact-instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.contact-instagram-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-instagram-icon path {
    fill: var(--majorelle-gold);
    transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-instagram-link:hover {
    background: var(--majorelle-gold);
    transform: scale(1.05);
}

.contact-instagram-link:hover .contact-instagram-icon path {
    fill: #ffffff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #272E43;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    color: var(--majorelle-cream);
    font-size: 0.875rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector .flag {
    width: 1.25rem;
    height: 1.25rem;
}

.language-selector span {
    color: var(--majorelle-cream);
    font-size: 0.875rem;
}


/* ========================================
   PREMIUM MOBILE RESPONSIVE DESIGN
   Optimized for iPhone 12+ and modern devices
   ======================================== */

/* Premium Mobile Navigation (iPhone 12+) */
@media (max-width: 1024px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Enhanced Mobile Menu */
    .mobile-menu {
        backdrop-filter: blur(25px) saturate(150%);
        -webkit-backdrop-filter: blur(25px) saturate(150%);
        background: linear-gradient(
            135deg,
            rgba(245, 248, 255, 0.95) 0%,
            rgba(250, 252, 255, 0.92) 30%,
            rgba(255, 255, 255, 0.88) 70%,
            rgba(248, 251, 255, 0.9) 100%
        );
        border: 1px solid rgba(176, 150, 89, 0.15);
        box-shadow: 
            0 25px 50px rgba(20, 31, 61, 0.08),
            0 15px 35px rgba(176, 150, 89, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
        margin-top: 1.5rem;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(176, 150, 89, 0.08);
        color: var(--majorelle-navy);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        color: var(--majorelle-gold);
        padding-left: 0.5rem;
    }
    
    .mobile-nav-link.active {
        color: var(--majorelle-gold);
        font-weight: 600;
    }
    
    .mobile-nav-link:last-child {
        border-bottom: none;
    }
}

/* Premium Mobile Layout (iPhone 12+ Portrait) */
@media (max-width: 834px) {
    /* Container optimized for mobile */
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    /* Hero Section Mobile Premium */
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem);
        line-height: 1.6;
        max-width: 90%;
    }
    
    /* Navigation Mobile Premium */
    .nav-container {
        padding: 1.5rem;
    }
    
    .logo {
        height: 3rem;
    }
    
    /* About Section Mobile */
    .about-html {
        padding: var(--mobile-section-padding) 0;
    }
    
    .about-kicker {
        font-size: clamp(18px, 3vw, 16px);
        margin-bottom: 1rem;
    }
    
    .about-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: var(--mobile-content-gap);
        line-height: 1.2;
    }
    
    .about-copy p {
        font-size: clamp(0.95rem, 4vw, 1.05rem);
        line-height: 1.6;
        margin-bottom: var(--mobile-content-gap);
    }
    
    /* Hide decorative elements on mobile for cleaner look */
    .decor-arrow,
    .decor-flower {
        display: none;
    }
    
    /* Mobile Image Optimizations - Keep original style */
    .about-image-left {
        min-height: 280px;
        margin-bottom: var(--mobile-element-gap);
    }
    
    .about-image-right {
        min-height: 220px;
        margin-top: var(--mobile-element-gap);
    }
    
    /* Premium mobile image gallery */
    .vs-stacked {
        gap: var(--mobile-content-gap);
    }
    
    .vs-item {
        height: 60vh;
    }
    
    /* Testimonial image mobile */
    .testimonial-image {
        order: -1; /* Move image above content on mobile */
        margin-bottom: var(--mobile-element-gap);
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Stats Mobile Premium */
    .about-stats-row .stat-value {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.5rem;
    }
    
    .about-stats-row .stat-label {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    }
    
    /* Section Grids Mobile */
    .contact-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: var(--mobile-section-gap);
    }
    
    /* Services Mobile Premium */
    .services {
        background-attachment: scroll;
        padding: var(--mobile-section-padding) 0;
    }
    
    .services-header {
        margin-bottom: var(--mobile-section-gap);
    }
    
    .services-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: var(--mobile-content-gap);
    }
    
    .services-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem);
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
        height: auto;
        min-height: 12rem;
        gap: 1.5rem;
    }
    
    .service-title {
        font-size: clamp(1.125rem, 4.5vw, 1.375rem);
        line-height: 1.3;
    }
    
    /* Testimonial Mobile */
    .testimonial-quote {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--mobile-content-gap);
    }
    
    /* Partners Mobile */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .partner-logo {
        height: 5rem;
        padding: 1rem;
    }
    
    /* Contact Mobile Premium */
    .contact-grid {
        gap: var(--mobile-section-gap);
    }
    
    .contact-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: var(--mobile-content-gap);
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--mobile-content-gap);
    }
    
    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--mobile-content-gap);
    }
}

/* Ultra Premium iPhone 12+ Optimizations */
@media (max-width: 428px) and (min-height: 780px) {
    /* iPhone 12/13/14 Pro Max specific */
    .hero {
        min-height: calc(100vh - env(safe-area-inset-top));
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .nav-container {
        padding-top: calc(1.5rem + env(safe-area-inset-top));
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    
    /* Optimize for one-handed use */
    .btn-primary,
    .btn-secondary,
    .btn-submit {
        min-height: 44px; /* Apple's recommended touch target */
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    /* Single column layout for ultimate readability */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .partner-logo {
        height: 4.5rem;
        padding: 0.75rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: 10rem;
    }
    
    .contact-form {
        padding: 1.5rem 1.25rem;
    }
    
    /* Bottom padding for home indicator */
    .footer {
        padding-bottom: calc(var(--mobile-element-gap) + env(safe-area-inset-bottom));
    }
    
    /* Form inputs optimized for iOS */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 1rem;
    }
}

/* iPhone 12 Pro Max & 14 Plus specific optimizations */
@media (max-width: 428px) and (min-height: 926px) {
    .hero-content {
        margin-top: 3rem;
        padding: 2.5rem 1rem;
    }
    
    .vs-item {
        height: 50vh; /* Better proportion for larger screens */
    }
}

/* iPhone 12 Mini specific optimizations */
@media (max-width: 375px) and (max-height: 812px) {
    .hero-content {
        padding: 1.5rem 1rem;
        margin-top: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 8rem;
    }
    
    .vs-item {
        height: 45vh;
    }
}

/* iPhone 12 Mini & Standard Optimizations */
@media (max-width: 390px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }
    
    .services-title,
    .partners-title,
    .contact-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .about-headline {
        font-size: clamp(1.5rem, 5.5vw, 2.25rem);
    }
}

/* ========================================
   PREMIUM MOBILE ANIMATIONS & INTERACTIONS
   Optimized for iPhone performance
   ======================================== */

/* Smooth mobile scroll behavior */
@media (max-width: 834px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Premium mobile touch interactions */
    .btn-primary,
    .btn-secondary,
    .btn-submit,
    .service-card,
    .mobile-nav-link {
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-submit:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .service-card:active {
        transform: scale(0.995);
    }
    
    /* Mobile-optimized fade-in animations */
    @keyframes mobileSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Apply subtle animations to key elements */
    .hero-title,
    .hero-subtitle {
        animation: mobileSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .hero-subtitle {
        animation-delay: 0.2s;
        opacity: 0;
    }
    
    /* Mobile scroll indicator */
    .scroll-indicator {
        animation: mobileSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
        opacity: 0;
    }
    
    /* Optimize form interactions for mobile */
    .form-group input:focus,
    .form-group textarea:focus {
        transform: scale(1.01);
        box-shadow: 0 0 0 3px rgba(176, 150, 89, 0.2);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Mobile menu premium animation */
    .mobile-menu {
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-nav-link {
        transform: translateX(-20px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu.active .mobile-nav-link {
        transform: translateX(0);
        opacity: 1;
    }
    
    .mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
    .mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
    .mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
    .mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
}

/* Reduce animations for better performance on smaller devices */
@media (max-width: 390px) {
    .hero-title,
    .hero-subtitle,
    .scroll-indicator {
        animation: none;
        opacity: 1;
    }
    
    .mobile-menu,
    .mobile-nav-link {
        transition: opacity 0.2s ease;
    }
}

/* Large screens - Reduced button height for elegance */
@media (min-width: 1200px) {
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem var(--element-gap);
    }
}

/* Ultra-wide screens (4K+) */
@media (min-width: 2560px) {
    .container {
        max-width: 1680px;
    }
    
    .hero-title {
        font-size: clamp(4rem, 6vw, 8rem);
    }
    
    .section-title {
        font-size: clamp(3rem, 4vw, 5rem);
    }
}

/* Small screens specific fixes */
@media (max-width: 320px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .service-card {
        padding: 1.25rem 1rem;
        min-height: 7rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-submit {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .btn-submit,
    .social-link {
        transition: all 0.3s ease;
    }
}

/* Print styles */
@media print {
    .nav,
    .mobile-menu,
    .scroll-indicator,
    .contact-form {
        display: none;
    }
    
    .hero {
        background: var(--majorelle-navy);
        color: white;
        height: auto;
        padding: 2rem 0;
    }
    
    .services {
        background: var(--majorelle-navy);
    }
    
    .footer {
        background: var(--majorelle-navy);
    }
}

/* Class hide on small screens (below 1024px) */
@media (max-width: 1024px) {
    .hide-on-small-screens {
        display: none;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Premium Glass Header avec Map Background */
.glass-header {
    position: relative;
    z-index: 10;
    min-height: 600px;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f8ff 0%, #e9edf7 100%);
}

/* Map en fond du header */
.header-map-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

/* Dégradé premium avec couleur de fond pour effet ultra moderne */
.glass-header::before {
    content: "";
    position: absolute;
    inset: 0 50% 0 0;
    background: linear-gradient(90deg, 
        rgba(245, 248, 255, 0.95) 0%, 
        rgba(245, 248, 255, 0.8) 30%, 
        rgba(245, 248, 255, 0.5) 60%, 
        rgba(245, 248, 255, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: var(--section-padding) 0;
}

.map-shell {
    position: absolute;
    inset: 0;
    background: transparent;
    width: 100%;
    height: 100%;
}

#map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.map-eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--majorelle-gold);
    font-size: 0.85rem;
    margin: 0 0 10px;
    font-family: 'Satoshi', sans-serif;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.map-title {
    font-family: 'TOP LUXURY', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.02;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    color: var(--majorelle-navy);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.map-lead {
    color: var(--majorelle-navy-light);
    font-size: 1.25rem;
    margin: 0 0 28px;
    font-family: 'Satoshi', sans-serif;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 32px;
}

.contact-info-item b {
    display: block;
    color: var(--majorelle-navy);
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.contact-info-item a,
.contact-info-item span {
    font-size: 1.15rem;
    text-decoration: none;
    color: var(--majorelle-navy);
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.contact-info-item a:hover {
    color: var(--majorelle-gold);
    transition: color 0.3s ease;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #E6E9F5;
    color: var(--majorelle-navy);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
}

.contact-social a:hover {
    background: var(--majorelle-gold);
    color: white;
    border: 1px solid var(--majorelle-gold);
}

/* Bouton CTA Premium Majorelle */
.map-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--majorelle-gold);
    color: white;
    border: 2px solid var(--majorelle-gold);
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Premium map markers avec animation subtile */
.pin {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--majorelle-gold);
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 0 0 2px var(--majorelle-gold),
        0 2px 10px rgba(176, 150, 89, 0.4);
    cursor: pointer;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    animation: pulse-subtle 3s ease-in-out infinite;
}

/* Animation de pulsation subtile */
@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 
            0 0 0 2px var(--majorelle-gold),
            0 2px 10px rgba(176, 150, 89, 0.4),
            0 0 0 8px rgba(176, 150, 89, 0.1);
    }
    50% {
        box-shadow: 
            0 0 0 2px var(--majorelle-gold),
            0 2px 15px rgba(176, 150, 89, 0.5),
            0 0 0 12px rgba(176, 150, 89, 0.05);
    }
}

/* Forcer l'interactivité des marqueurs Leaflet */
.leaflet-marker-icon {
    z-index: 1000 !important;
    pointer-events: auto !important;
}

.leaflet-marker-pane {
    z-index: 600 !important;
}

.leaflet-interactive {
    cursor: pointer !important;
}

.pin:hover {
    animation-play-state: paused;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.pin.active {
    animation: none;
    box-shadow: 
        0 0 0 2px var(--majorelle-gold),
        0 2px 15px rgba(176, 150, 89, 0.6),
        0 0 0 20px rgba(176, 150, 89, 0.15);
    transform: scale(1.15);
}

.leaflet-tooltip.city-tip {
    border: 1px solid var(--majorelle-gold);
    background: rgba(255, 255, 255, 0.98);
    color: var(--majorelle-navy);
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(20, 30, 70, 0.15);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Satoshi', sans-serif;
}

.leaflet-control-attribution {
    display: none !important;
}

/* Popup Majorelle Premium */
.majorelle-popup .leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--majorelle-gold);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(20, 31, 61, 0.2);
    backdrop-filter: blur(10px);
}

.majorelle-popup .leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--majorelle-gold);
    border-top: none;
    border-right: none;
    box-shadow: 3px 3px 10px rgba(20, 31, 61, 0.1);
}

/* Contact page specific nav link styles */
.nav--glass .nav-link {
    color: #1A1919;
}

.nav--glass .nav-link:hover {
    color: #B09659;
}

/* Section Partners en blanc pour la page contact */
body[data-page="contact"] .partners {
    background-color: #ffffff !important;
}

/* Mobile responsiveness for glass header */
@media (max-width: 834px) {
    body[data-page="contact"] .nav {
        background: rgba(245, 248, 255, 0.8) !important;
        backdrop-filter: blur(20px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    }
    
    .glass-header {
        height: clamp(420px, 60vh, 600px);
    }
    
    .glass-header::before {
        background: rgba(245, 248, 255, 0.4);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    .glass-header::after {
        inset: 0 0 0 0;
        background: linear-gradient(180deg, 
            rgba(245, 248, 255, 0.9) 0%, 
            rgba(245, 248, 255, 0.7) 40%, 
            rgba(245, 248, 255, 0.4) 70%, 
            rgba(245, 248, 255, 0) 100%);
    }
    
    .header-content {
        padding: clamp(24px, 8vw, 48px) 1.5rem;
        align-items: flex-start;
        padding-top: 80px;
    }
    
    .map-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .map-lead {
        font-size: 1rem;
    }
    
    .contact-info-list {
        margin: 16px 0 24px;
    }
    
    .contact-social a {
        width: 40px;
        height: 40px;
    }
    
    .map-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
}

@media (max-width: 390px) {
    .glass-header {
        height: clamp(380px, 55vh, 500px);
    }
    
    .header-content {
        padding-top: 60px;
    }
}

/* ========================================
   CONCIERGERIE & EVENEMENTIEL PAGE STYLES
   Migrated from: conciergerie-privee-de-luxe.php, evenementiel.php
   ======================================== */

/* Variables couleurs Majorelle - conciergerie/evenementiel pages - variables déjà définies plus haut */

/* Navigation sticky avec style glass - conciergerie/evenementiel - règles déjà existantes plus haut dans le fichier */

/* Page sans hero - ajustements pour contenu direct */
main[data-page="conciergerie"] .about:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

/* CTA hero intégré dans la première section */
.conciergerie-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    margin-bottom: 0;
}

.conciergerie-hero .hero-title {
    font-family: 'TOP LUXURY', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.02;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    color: var(--majorelle-navy);
    text-align: center;
}

.conciergerie-hero .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.conciergerie-hero .btn-primary,
.conciergerie-hero .btn-blue {
    display: block;
    margin: 0 auto;
}

/* FAQ Luxury Style avec animation premium */
.luxury-faq .faq-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.luxury-faq .faq-item:hover {
    background-color: #fafafa;
}

/* Barre dorée qui s'étend sur toute la hauteur au hover */
.luxury-faq .faq-item > div[style*="background: #B09659"] {
    transition: height 0.6s cubic-bezier(0.23, 1, 0.32, 1), top 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.luxury-faq .faq-item:hover > div[style*="background: #B09659"] {
    top: 0 !important;
    height: 100% !important;
}

/* CTA Premium Button Animation */
.btn-primary[style*="background: transparent"] {
    position: relative;
    overflow: hidden;
}

.btn-primary[style*="background: transparent"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176, 150, 89, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-primary[style*="background: transparent"]:hover:before {
    left: 100%;
}

.btn-primary[style*="background: transparent"]:hover {
    background: rgba(176, 150, 89, 0.05) !important;
    border-color: #B09659 !important;
    color: #B09659 !important;
    transform: translateY(-1px);
}

/* Mobile adjustments - conciergerie/evenementiel */
@media (max-width: 834px) {
    main[data-page="conciergerie"] .about:first-of-type {
        margin-top: 0;
        padding-top: 0;
    }
    
    .conciergerie-hero {
        padding: 2.5rem 0;
    }

    /* Section CTA responsive */
    section[style*="background: #0F4C81"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #0F4C81"] div[style*="padding: 60px 40px"] {
        padding: 40px 20px !important;
    }

    section[style*="background: #0F4C81"] h2 {
        font-size: 1.8rem !important;
        margin: 1rem 0 !important;
    }

    section[style*="background: #0F4C81"] p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    /* FAQ responsive */
    .luxury-faq .faq-item {
        padding: 2rem 0 !important;
    }

    .luxury-faq .faq-item div[style*="padding-left"] {
        padding-left: 1.5rem !important;
    }

    .luxury-faq .faq-item h3 {
        font-size: 1.2rem !important;
    }

    .luxury-faq .faq-item p {
        font-size: 1rem !important;
    }

    /* Footer responsive - règle déjà existante plus haut dans le fichier */
}

/* ========================================
   CTA SECTION STYLES
   Migrated from: componants/cta-section.inc.php
   ======================================== */

/* Section CTA Premium Discret - Bleu Majorelle */
.cta-section {
    background: #141f3d;
    padding: 100px 0;
    position: relative;
}

.cta-section-inner {
    border: 1px solid rgba(176, 150, 89, 0.4);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

/* Ligne dorée subtile en haut */
.cta-section-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #B09659;
}

/* Ligne dorée subtile en bas */
.cta-section-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #B09659;
}

.cta-section-content {
    margin-bottom: 2rem;
}

.cta-section .about-kicker {
    color: #B09659;
    opacity: 0.9;
    font-size: 0.9rem;
}

.cta-section-title {
    color: #ffffff;
    font-family: 'TOP LUXURY', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin: 1.5rem 0;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.cta-section-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 100%;
}

.cta-section-button-wrapper {
    position: relative;
    display: inline-block;
}

.cta-section .btn-primary {
    background: transparent;
    border: 1px solid #B09659;
    color: #B09659;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-section .btn-primary:hover {
    background: #B09659;
    color: #ffffff;
}

.cta-section .btn-primary span {
    position: relative;
    z-index: 2;
}

/* Contact form phone input - componants/contact.inc.php */
.contact #phone {
    width: 100%!important;
}

/* ========================================
   GALERIE PREMIUM ULTRA-LUXE - PAGES EVENEMENTIEL & CONCIERGERIE
   Migrated from: evenementiel.php, conciergerie-privee-de-luxe.php
   ======================================== */

/* Galerie Ultra-Premium - Design Haute Couture */
.luxury-gallery-masterpiece {
    background: linear-gradient(135deg, rgba(245, 248, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 8px;
}

/* Effets hover ultra-sophistiqués */
.main-showcase:hover img {
    transform: scale(1.015) translateZ(0);
}

.main-showcase:hover .luxury-overlay {
    opacity: 1;
}

.secondary-frame:hover img,
.tertiary-frame:hover img {
    transform: scale(1.02) translateZ(0);
}

.secondary-frame:hover,
.tertiary-frame:hover {
    box-shadow: 0 16px 50px rgba(26, 25, 25, 0.18);
}

/* Animation signature de la fleur */
.signature-flower {
    animation: luxuryFloat 8s ease-in-out infinite;
}

@keyframes luxuryFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-3px) rotate(0.5deg) scale(1.02); 
        opacity: 1; 
    }
}

/* Transitions fluides premium */
.main-showcase,
.secondary-frame,
.tertiary-frame {
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Effets d'ombre progressive */
.main-showcase {
    transition: box-shadow 0.8s ease;
}

.main-showcase:hover {
    box-shadow: 0 25px 80px rgba(26, 25, 25, 0.2);
}

/* Animation des accents dorés */
.luxury-accents > div {
    animation: pulseGold 4s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Performance optimizations */
.main-showcase img,
.secondary-frame img,
.tertiary-frame img {
    will-change: transform;
    transform: translateZ(0);
}

/* Effet parallaxe subtil au scroll */
@media (prefers-reduced-motion: no-preference) {
    .luxury-gallery-masterpiece {
        transform-style: preserve-3d;
    }
}

/* Responsive ultra-raffiné pour mobile */
@media (max-width: 991px) {
    .luxury-gallery-masterpiece {
        height: 480px !important;
        margin-top: 3rem;
        padding: 8px !important;
    }
    
    .main-showcase {
        width: 100% !important;
        height: 52% !important;
    }
    
    .secondary-collection {
        top: 56% !important;
        left: 0 !important;
        width: 100% !important;
        height: 40% !important;
        flex-direction: row !important;
        gap: 12px !important;
    }
    
    .secondary-frame,
    .tertiary-frame {
        border-radius: 0 !important;
    }
    
    .signature-flower {
        width: 55px !important;
        height: 55px !important;
        top: -6px !important;
        right: -6px !important;
        display: none;
    }
    
    .luxury-accents {
        display: none;
    }
}

@media (max-width: 576px) {
    .luxury-gallery-masterpiece {
        height: 420px !important;
        padding: 6px !important;
    }
    
    .main-showcase {
        height: 50% !important;
    }
    
    .secondary-collection {
        top: 54% !important;
        height: 42% !important;
        gap: 8px !important;
    }
    
    .signature-flower {
        width: 45px !important;
        height: 45px !important;
        top: -4px !important;
        right: -4px !important;
    }
}

/* Mobile responsive for CTA section */
@media (max-width: 834px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section-inner {
        padding: 40px 20px;
    }
    
    .cta-section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin: 1rem 0;
    }
    
    .cta-section-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}



