:root {
    --bg-main: #FFFFFF;
    --bg-dark-luxury: #0B0F17;
    --bg-light-gray: #F8FAFC;
    --text-main: #1A202C;
    --text-muted: #64748B;
    --color-blue: #0047AB;
    --color-rose: #FF2A6D;
    --border-light: #E2E8F0;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-rose: 0 10px 25px rgba(255, 42, 109, 0.25);
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden !important;
}

body.backdrop-blurred #main-app-content {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-main);
}

.text-blue { color: var(--color-blue); }
.text-rose { color: var(--color-rose); }
.text-center { text-align: center !important; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-padding { padding: 70px 0; }
.section-light { background-color: var(--bg-light-gray); }

/* =========================================
   EN-TÊTES DE SECTIONS STRICTEMENT CENTRÉS & SANS FORME DESSOUS
   ========================================= */
.section-header {
    text-align: center !important;
    max-width: 750px;
    margin: 0 auto 45px auto !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-rose);
    margin-bottom: 12px;
    text-align: center !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-align: center !important;
    position: relative;
}

/* SUPPRESSION STRICTE DE TOUTE LIGNE OU FORME DESSOUS */
.section-header::after, .section-header::before,
.section-title::after, .section-title::before,
.sub-title::after, .sub-title::before {
    content: none !important;
    display: none !important;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center !important;
}

/* Skeleton Loading */
.skeleton-card {
    background: linear-gradient(90deg, #f0f2f5 25%, #e0e4e9 50%, #f0f2f5 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
    min-height: 280px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* AUTHENTIFICATION POPUP */
.auth-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(11, 15, 23, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-overlay.active { display: flex; }

.auth-card-pro {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 42, 109, 0.15);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--color-rose);
    background: rgba(255, 42, 109, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 700;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.auth-logo img { height: 48px; width: 48px; object-fit: contain; }
.auth-logo h2 { font-size: 2rem; }

.auth-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.google-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.auth-footer-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

/* HEADER FIXE */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
    padding: 14px 0;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: 40px; object-fit: contain; border-radius: var(--radius-sm); }
.logo-text { font-size: 1.4rem; }

.nav-links { display: flex; gap: 20px; align-items: center; }

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 14px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-rose);
    background: rgba(255, 42, 109, 0.08);
}

.header-actions { display: flex; align-items: center; gap: 15px; }

.search-box {
    display: flex;
    align-items: center;
    background: #F1F5F9;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 6px 14px;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--color-rose);
    box-shadow: 0 0 10px rgba(255, 42, 109, 0.15);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.82rem;
    width: 160px;
    color: var(--text-main);
}

.search-box button {
    background: none;
    border: none;
    color: var(--color-rose);
    cursor: pointer;
    font-size: 0.88rem;
}

.mobile-toggle { display: none; }

/* HERO SECTION */
.hero-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-main);
    padding-top: 80px;
}

.hero {
    width: 100%;
    max-width: 1536px;
    min-height: 80vh;
    position: relative;
    background: url('image/image2.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255, 42, 109, 0.88) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero-ambient-glow {
    position: absolute;
    top: -20%; left: -10%;
    width: 60%; height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 42, 109, 0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 6s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.luxury-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 24px;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 720px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-luxury-primary {
    position: relative;
    background: var(--bg-main);
    color: var(--color-rose);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.btn-luxury-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.5);
    color: var(--color-rose);
}

.btn-shine {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255,42,109,0.15), transparent);
    transform: rotate(30deg);
    animation: shineEffect 4s infinite;
}

.btn-luxury-secondary {
    background: var(--color-rose);
    border: 1px solid var(--color-rose);
    color: #FFFFFF;
    box-shadow: var(--shadow-rose);
}

.btn-luxury-secondary:hover {
    background: #E01A5C;
    border-color: #E01A5C;
    transform: translateY(-3px) scale(1.02);
}

.btn-luxury-outline-dark {
    background: transparent;
    border: 1.5px solid var(--color-rose);
    color: var(--color-rose);
}

.btn-luxury-outline-dark:hover {
    background: var(--color-rose);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose);
}

/* ACTUALITÉS GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.news-img-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: var(--bg-light-gray);
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img-wrapper img { transform: scale(1.06); }

.news-category {
    position: absolute;
    top: 14px; left: 14px;
    background: #FFFFFF;
    color: var(--color-rose);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.news-date-badge {
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--color-blue);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 2;
}

.news-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.35; }
.news-excerpt { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 15px; }

.news-full-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, margin 0.4s ease-in-out;
    color: var(--text-main);
    font-size: 0.88rem;
    line-height: 1.6;
}

.news-card.expanded .news-full-desc { margin-bottom: 20px; }

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-rose);
    font-weight: 700;
    font-size: 0.82rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: auto;
    transition: var(--transition);
}

/* LANMOU TV GRID */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.video-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; border: none;
}

.video-info { padding: 18px; }
.video-info h3 { font-size: 0.95rem; margin-bottom: 8px; line-height: 1.4; }
.video-meta { color: var(--text-muted); font-size: 0.78rem; display: flex; align-items: center; gap: 6px; }
.video-meta i { color: var(--color-rose); }

.load-more-container { text-align: center; }

/* KIOSQUE NUMÉRIQUE */
.kiosk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.kiosk-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.kiosk-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 42, 109, 0.4);
}

.kiosk-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    background: #0F172A;
    overflow: hidden;
}

.kiosk-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.kiosk-card:hover .kiosk-img-wrapper img { transform: scale(1.08); }

.kiosk-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(11, 15, 23, 0.85);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 42, 109, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.kiosk-overlay-action {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 15, 23, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.kiosk-card:hover .kiosk-overlay-action { opacity: 1; }

.btn-rose-glow {
    background: var(--color-rose);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 42, 109, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kiosk-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kiosk-date {
    font-size: 0.78rem;
    color: var(--color-rose);
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.kiosk-title { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }

.kiosk-excerpt {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.kiosk-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.btn-read-rose {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--color-rose);
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid var(--color-rose);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 42, 109, 0.3);
}

.btn-read-rose:hover {
    background: #E01A5C;
    border-color: #E01A5C;
}

/* =========================================
   FAQ PRO - DESIGN LUXURY PRESTIGE
   ========================================= */
.faq-accordion-wrapper {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-blue), var(--color-rose));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.faq-item.active, 
.faq-item:hover {
    border-color: rgba(255, 42, 109, 0.3);
    box-shadow: 0 12px 30px rgba(255, 42, 109, 0.08);
    transform: translateY(-2px);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-rose);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-rose);
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--color-rose);
    color: #FFFFFF;
    border-color: var(--color-rose);
    transform: rotate(180deg);
    box-shadow: 0 4px 15px rgba(255, 42, 109, 0.35);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}


/* RÉSEAUX SOCIAUX HUB */
.social-hub-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--border-light);
}

.social-circles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.social-circle {
    width: 65px; height: 65px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}

.social-circle.facebook { color: #1877F2; }
.social-circle.youtube { color: #FF0000; }
.social-circle.instagram { color: #E1306C; }
.social-circle.whatsapp { color: #25D366; }

.social-circle:hover { transform: translateY(-6px) scale(1.05); }

.propos-container { max-width: 800px; text-align: center; margin: 0 auto; }
.propos-text { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; text-align: center; }

/* =========================================
   PAGE CONTACT STYLES
   ========================================= */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 42, 109, 0.3);
}

.contact-card-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255, 42, 109, 0.1);
    color: var(--color-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.contact-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.contact-card p { font-weight: 600; color: var(--text-main); font-size: 0.95rem; margin-bottom: 5px; }
.contact-card-sub { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-soft);
}

.contact-pro-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-pro-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-pro-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-pro-form input,
.contact-pro-form select,
.contact-pro-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-light-gray);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.contact-pro-form input:focus,
.contact-pro-form select:focus,
.contact-pro-form textarea:focus {
    border-color: var(--color-rose);
    background: #FFFFFF;
    box-shadow: 0 0 12px rgba(255, 42, 109, 0.15);
}

/* =========================================
   PAGE CONTACT & CARTS INTERACTIVES
   ========================================= */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 42, 109, 0.3);
}

.contact-card-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255, 42, 109, 0.1);
    color: var(--color-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--color-rose);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(255, 42, 109, 0.3);
}

.contact-card h3 { font-size: 1.2rem; margin-bottom: 8px; }

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-rose);
    font-weight: 700;
    font-size: 0.96rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 42, 109, 0.06);
}

.contact-card-link:hover {
    color: #FFFFFF;
    background: var(--color-rose);
    box-shadow: 0 6px 16px rgba(255, 42, 109, 0.3);
    transform: translateY(-2px);
}

.contact-card-sub { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; display: block; margin-top: 10px; }

/* =========================================
   FOOTER LUXURY HIGH-END
   ========================================= */
.luxury-footer {
    background: linear-gradient(135deg, #0B0F17 0%, #111827 100%);
    color: #E2E8F0;
    padding: 70px 0 35px;
    border-top: 1px solid rgba(255, 42, 109, 0.2);
    position: relative;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-rose), transparent);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.footer-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-tagline { 
    color: #94A3B8; 
    font-size: 0.94rem; 
    line-height: 1.7; 
    max-width: 440px; 
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.contact-details { 
    display: flex; 
    flex-direction: column; 
    gap: 18px; 
    font-style: normal;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 42, 109, 0.12);
    border: 1px solid rgba(255, 42, 109, 0.2);
    color: var(--color-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--color-rose);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 42, 109, 0.4);
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94A3B8;
    font-weight: 700;
}

.footer-link {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-rose);
    text-decoration: underline;
}

.footer-bottom-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    font-size: 0.82rem;
}

/* MODALES PDF ET RECHERCHE */
.pdf-modal-overlay, .search-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
}

.pdf-modal-overlay.active, .search-modal.active { opacity: 1; pointer-events: auto; }

.pdf-modal-container {
    width: 95%; max-width: 1100px; height: 90vh;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    display: flex; flex-direction: column;
    overflow: hidden;
}

.pdf-modal-header, .search-modal-header {
    padding: 14px 24px;
    background: var(--bg-light-gray);
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.pdf-modal-title { font-weight: 700; color: var(--text-main); font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.pdf-modal-title i { color: var(--color-rose); }
.pdf-modal-actions { display: flex; align-items: center; gap: 10px; }

.btn-pdf-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    background: #FFFFFF;
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-pdf-primary { background: var(--color-rose); border-color: var(--color-rose); color: #FFFFFF; }
.close-pdf-btn { background: none; border: none; color: var(--text-main); font-size: 1.2rem; cursor: pointer; }

.pdf-modal-body { flex-grow: 1; width: 100%; height: 100%; background: #E2E8F0; }
.pdf-modal-body iframe { width: 100%; height: 100%; border: none; display: block; }

.search-modal-content {
    background: #FFFFFF;
    width: 90%; max-width: 600px; max-height: 80vh;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex; flex-direction: column;
}

.search-results-list { padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }

.reveal, .zoom-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-in { transform: scale(0.92); }
.reveal.active, .zoom-in.active { opacity: 1; transform: translateY(0) scale(1); }

@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes shineEffect { 0% { left: -100%; } 20%, 100% { left: 100%; } }
@keyframes pulseGlow { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 1; transform: scale(1.05); } }