:root {
    --primary-blue: #0056b3; /* Bleu VSL */
    --primary-blue-hover: #004494;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --bg-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Ajusté pour le header fixe */
}

body {
    background-color: var(--bg-color); 
}

/* Nouveau design fond clair */
.hero-bg {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #fef3f9 100%); /* Dégradé très léger inspiré de votre image */
    overflow: hidden;
    padding-top: 100px; /* Compense le header fixe sur bureau */
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
}

.header {
    background-color: var(--white);
    width: 95%;
    max-width: 1600px;
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem 0.8rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.15), 0 0 20px rgba(0, 86, 179, 0.1);
    height: 70px; /* Hauteur fixe pour éviter le CLS */
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo a, .footer-logo {
    text-decoration: none !important;
    color: inherit !important;
    display: inline-block;
}

.logo strong, .footer-logo strong {
    color: var(--text-dark) !important;
}

.nav-menu .nav-list {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu .nav-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu .nav-list a, .nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s;
    opacity: 0.6;
}

/* Styles pour les sous-menus (Dropdown) */
.nav-menu .nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-menu .nav-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-menu .nav-list .sub-menu li {
    display: block;
    width: 100%;
}

.nav-menu .nav-list .sub-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.nav-menu .nav-list .sub-menu a:hover {
    background: #f0f7ff;
    color: var(--primary-blue);
    padding-left: 2rem;
}

.nav-menu .nav-list a:hover, 
.nav-menu .nav-list .current-menu-item > a,
.nav-link:hover, 
.nav-link.active {
    color: var(--primary-blue);
}

/* Mobile Toggle Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 101;
    padding: 0.5rem;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

@keyframes vibrate {
    0% { transform: translateY(0); }
    2% { transform: translateY(-2px) translateX(-1px); }
    4% { transform: translateY(2px) translateX(1px); }
    6% { transform: translateY(-2px) translateX(-1px); }
    8% { transform: translateY(2px) translateX(1px); }
    10% { transform: translateY(0); }
    100% { transform: translateY(0); }
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    animation: vibrate 5s infinite; /* Vibre de temps en temps */
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
    animation-play-state: paused;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    color: var(--white);
    background-color: var(--primary-blue);
}

/* Nouveau Contenu central */
.hero-content {
    max-width: 1000px;
    margin: 4rem auto 2rem;
    text-align: center;
    color: var(--text-dark);
    padding: 0 20px;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Taille fluide */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e1b4b;
}

.hero-content h1 span {
    color: var(--primary-blue); /* Plus de couleurs pastels, on utilise le bleu VSL pour marquer le coup */
}

.description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Liste des atouts (CPAM, Mutuelle...) */
.features-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.features-list li {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e1b4b;
}

.features-list i {
    color: #00e676; /* Vert du check */
    font-size: 1.2rem;
}

/* Animation de defilement des partenaires/mutuelles */
.partners-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 20s linear infinite;
    gap: 4rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-icon:hover {
    opacity: 1;
}

.partner-icon i {
    font-size: 2.5rem;
    color: #94a3b8; /* Gris clair par defaut */
}

/* Design des 2 boutons d'appel à l'action en bas */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
  100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    width: 320px;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-5px);
}

.btn-call {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); /* Le rouge/rose du screenshot */
    color: white;
    box-shadow: 0 10px 20px rgba(255, 65, 108, 0.3);
}

.btn-reserve {
    background: var(--white);
    color: #1e1b4b;
    border: 2px solid #8b5cf6; /* Contour violet */
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.15);
}

.cta-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.cta-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-reserve .cta-subtitle {
    opacity: 0.7;
}

.cta-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-call .cta-icon {
    background-color: #00e676; /* Telephone Vert de l'image */
    color: white;
    animation: vibrate 5s infinite;
}

.btn-reserve .cta-icon {
    background-color: #ff416c; /* L'icone rose de l'image */
    color: white;
    animation: pulse-ring 2s infinite;
}

/* =========================================
   SECTION SERVICES (DARK MODE PREMIUM)
========================================= */
.services-section {
    padding: 6rem 20px 6rem; 
    background: linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e1b4b 100%); /* Fond très sombre et élégant - coupure nette */
    position: relative;
    z-index: 1;
    /* Nouveaux styles: forme de carte flottante à base des retours du client */
    margin: 2rem 1.5rem 3rem 1.5rem;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.services-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(255, 65, 108, 0.1) 100%);
    color: #4f46e5;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.05);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem); /* Taille fluide */
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-title span {
    background: linear-gradient(135deg, #4f46e5 0%, #ff416c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-desc {
    font-size: 1.25rem;
    color: #94a3b8; /* Gris clair */
    line-height: 1.8;
}

/* Grille de cartes ultra-moderne */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Glassmorphism adapté pour fond sombre */
.service-card {
    background: rgba(255, 255, 255, 0.03); /* Très transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Bordure très fine et subtile */
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08); /* S'illumine légèrement au survol */
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

/* Couleurs vibrantes uniques pour chaque carte */
.service-card:nth-child(1) .service-icon-wrapper { background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%); box-shadow: 0 10px 20px rgba(255, 65, 108, 0.3); }
.service-card:nth-child(2) .service-icon-wrapper { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3); }
.service-card:nth-child(3) .service-icon-wrapper { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); box-shadow: 0 10px 20px rgba(67, 233, 123, 0.3); }
.service-card:nth-child(4) .service-icon-wrapper { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); box-shadow: 0 10px 20px rgba(250, 112, 154, 0.3); }
.service-card:nth-child(5) .service-icon-wrapper { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3); }
.service-card:nth-child(6) .service-icon-wrapper { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); box-shadow: 0 10px 20px rgba(240, 147, 251, 0.3); }

.service-card:hover .service-icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    border-radius: 30px;
}

.service-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #94a3b8; /* Gris clair lisible sur sombre */
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

/* =========================================
   SECTION COMMENT ÇA MARCHE (ÉTAPES)
========================================= */
.steps-section {
    padding: 6rem 20px;
    background-color: #ffffff; /* Fond blanc très clair pour trancher avec la Dark Card du haut */
    position: relative;
    z-index: 1;
}

.steps-container {
    max-width: 1500px;
    margin: 0 auto;
}

/* Modificateurs pour le texte foncé sur fond clair */
.badge-light {
    background: #f0fdf4 !important;
    color: #16a34a !important;
    box-shadow: none !important;
}

.title-dark {
    color: #0f172a !important;
}

.desc-dark {
    color: #64748b !important;
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5rem;
    gap: 1rem;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px); /* L'élément "saute" légèrement au survol */
}

.step-circle {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.08); /* Ombre douce bleue */
    position: relative;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    z-index: 2;
}

.step-item:hover .step-circle {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
}

.step-circle i {
    font-size: 3rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.step-item:hover .step-circle i {
    transform: scale(1.15) rotate(5deg);
}

/* Bulle avec le numéro de l'étape */
.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); /* Petit rappel de la couleur rose action */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

.step-item p strong {
    color: #0f172a;
}

/* Flèches dynamiques entre les étapes */
.step-arrow {
    font-size: 2.5rem;
    color: #cbd5e1; /* Gris clair */
    animation: bounceRight 2s infinite; /* Flèche qui pointe de manière insistante */
    margin-top: -3rem; /* Pour l'aligner avec les ronds et non avec le texte */
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

/* =========================================
   SECTION POURQUOI NOUS CHOISIR
========================================= */
.why-us-section {
    padding: 8rem 20px;
    background-color: #f8fafc; /* Gris très très clair pour séparer doucement du blanc de "Comment ça marche" */
    position: relative;
    border-top: 1px solid #f1f5f9;
}

.why-us-container {
    max-width: 1500px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Image et mise en page asymétrique */
.why-us-image-wrapper {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: 0;
    width: 80%;
    height: 90%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(255, 65, 108, 0.1) 100%);
    border-radius: 30px;
    z-index: 1;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translate(20px, 20px);
    transition: transform 0.5s ease;
}

.why-us-image-wrapper:hover .main-image {
    transform: translate(10px, 10px);
}

/* Badge flottant "Avis" */
.floating-stat {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-stat i {
    font-size: 2rem;
    color: #fbbf24; /* Jaune or */
}

.floating-stat strong {
    display: block;
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 800;
}

.floating-stat span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Contenu */
.align-left {
    text-align: left;
    margin-bottom: 3rem;
    margin-left: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: #f0f7ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-blue);
    color: #ffffff;
    transform: rotate(5deg);
}

.benefit-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* =========================================
   SECTION PRESENTATION (QUI SOMMES-NOUS)
========================================= */
.about-section {
    padding: 8rem 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.badge-primary {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(255, 65, 108, 0.1) 100%);
    color: #4f46e5 !important;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.about-subtitle {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #0f172a;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #cbd5e1;
    line-height: 1;
}

.stat-number i {
    font-size: 2.2rem;
    color: #cbd5e1;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.3;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-overlay-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 350px;
    box-shadow: 0 15px 30px rgba(30, 27, 75, 0.3);
}

.about-overlay-box i {
    font-size: 2.5rem;
    color: #ff416c;
    margin-bottom: 1rem;
    display: block;
}

.about-overlay-box p {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    font-style: italic;
}

/* =========================================
   SECTION ZONE D'INTERVENTION
========================================= */
.area-section {
    padding: 8rem 20px;
    background-color: #f8fafc; /* Gris très clair pour contraster avec le blanc au-dessus */
    position: relative;
    border-top: 1px solid #f1f5f9;
    z-index: 1;
}

.area-container {
    max-width: 1500px;
    margin: 0 auto;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Carte / Illustration de la zone */
.area-map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 10s ease;
}

.area-map-wrapper:hover .map-image {
    transform: scale(1.05);
}

/* Overlay sombre sur la carte */
.area-map-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.7) 100%);
    z-index: 1;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.map-marker {
    color: #ff416c;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

/* Effet de radar en fond de carte */
.map-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 65, 108, 0.4);
    border-radius: 50%;
    z-index: 2;
    animation: radarPulse 3s infinite;
    pointer-events: none;
}

@keyframes radarPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Contenu textuel et villes desservies */
.area-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.area-intro {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Badges des villes */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.city-tag {
    background: #f1f5f9;
    color: #334155;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.city-tag i {
    color: #10b981; /* Vert de validation */
}

.city-tag:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

/* Liste CHU / Cliniques */
.hospitals-list h4 {
    font-size: 1.2rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hospitals-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hospitals-list li {
    font-size: 1.05rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hospitals-list li i {
    color: var(--primary-blue);
    background: #eff6ff;
    padding: 0.4rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* =========================================
   SECTION FAQ 
========================================= */
.faq-section {
    padding: 8rem 20px;
    background-color: #f8fafc; /* Gris très clair, sépare de la map blanche */
    position: relative;
    border-top: 1px solid #f1f5f9;
    z-index: 1;
}

.faq-container {
    max-width: 900px; /* Plus étroit pour la lisibilité des textes longs */
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* On utilise l'attribut standard <details> optimisé CSS */
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
    padding: 1.8rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    list-style: none; /* Cacher la flèche native Mdn */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

/* Cacher le marqueur natif pour Safari/Chrome */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 20px;
    text-align: right;
}

.faq-item[open] summary {
    color: var(--primary-blue);
    border-bottom: 1px solid #f1f5f9;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 1.5rem 2rem 2rem;
    background: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.faq-content p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.faq-content strong {
    color: #0f172a;
    font-weight: 700;
}

/* =========================================
   SECTION CALL TO ACTION (Bannière avant footer)
========================================= */
.cta-banner-section {
    padding: 0 20px 6rem;
    background-color: #f8fafc; /* Reste sur la même couleur de fond que la FAQ */
}

.cta-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e1b4b 100%);
    border-radius: 40px;
    padding: 5rem 6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.25);
}

/* Motif de fond / Décoration */
.cta-banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-banner-content h2 span {
    color: #4facfe; /* Bleu très clair qui ressort bien sur fond foncé */
}

.cta-banner-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-banner-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Boutons specifiques au CTA final */
.btn-call-large {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 65, 108, 0.4);
}

.btn-call-large i {
    font-size: 2rem;
    animation: vibrate 5s infinite;
}

.btn-call-large .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-call-large .btn-text span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.btn-call-large .btn-text strong {
    font-size: 1.4rem;
    font-weight: 800;
}

.btn-call-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 65, 108, 0.6);
}

.btn-reserve-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-reserve-outline:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

.cta-banner-decoration {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30rem;
    color: rgba(255, 255, 255, 0.03); /* Icone géante filigrane très discrete */
    pointer-events: none;
    z-index: 1;
}

/* =========================================
   FOOTER (PIED DE PAGE)
========================================= */
.footer {
    background-color: #0f172a; /* Bleu très foncé presque noir pour asseoir le site */
    color: #94a3b8;
    padding: 6rem 20px 2rem;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Identité et réseaux */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: #ff416c;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Colonnes de liens */
.footer-links h3, .footer-contact h3, .widget-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h3::after, .footer-contact h3::after, .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.footer-links ul, .contact-info, .widget ul {
    list-style: none;
}

.footer-links li, .widget li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-links.widget a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover, .footer-links.widget a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Colonne Contact */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-info a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links a i {
    color: #ff416c;
}

/* ==========================================================================
   FLOATING CONTACT & STICKY BAR
   ========================================================================== */

/* Floating Buttons (FAB) */
.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.fab-whatsapp {
    background-color: #25d366;
}

.fab-phone {
    background-color: var(--primary-blue);
}

.fab-reserve-left {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fab-reserve-left:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Sticky Promo Bar (Apple Glass Style) */
.sticky-cta-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 900px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #fff;
    padding: 12px 25px;
    z-index: 1000;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    animation: slideUpCapsule 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
}

.sticky-cta-bar.closing {
    transform: translate(-50%, 100px);
    opacity: 0;
}

.bar-container {
    max-width: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.bar-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05); /* Subtle circle background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff2d55; /* Apple Pinkish Red from image */
}

.bar-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.bar-text p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

.bar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-btn {
    background: #fff;
    color: #0f172a;
    padding: 10px 24px;
    border-radius: 100px; /* Pill button */
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bar-btn:hover {
    background: #f1f5f9;
    transform: scale(1.05);
}

.sticky-bar-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes slideUpCapsule {
    from { transform: translate(-50%, 150px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE DESIGN (LARGE TO SMALL)
   ======================/* ==========================================================================
   RESPONSIVE DESIGN (LARGE TO SMALL)
   ========================================================================== */

/* Tablet & Smaller Desktop (Up to 1024px) */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* Small Tablet (Up to 992px) */
@media (max-width: 992px) {
    .header { width: 100%; margin: 0; border-radius: 0; padding: 1rem 1.5rem; }
    .nav-menu { flex-direction: column; text-align: center; gap: 1rem; }
    .header-actions { flex-direction: column; width: 100%; gap: 1rem; }
    
    .why-us-grid, .area-grid, .about-grid { grid-template-columns: 1fr; text-align: center; }
    .why-us-image-wrapper { margin-bottom: 3rem; padding-left: 0; }
    .main-image { transform: none; }
    .area-map-wrapper { min-height: 300px; }
    .about-image { height: 400px; }
    .about-overlay-box { left: 20px; right: 20px; bottom: -20px; max-width: none; }
    
    .cta-banner-container { flex-direction: column; padding: 3rem 2rem; text-align: center; }
}

/* Mobile & Small Tablet (Up to 768px) - CRITICAL REBUILD */
@media (max-width: 768px) {
    /* Fixed Full-Width Header */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        transform: none !important; /* Crucial: annule le décalage du bureau */
        margin: 0 !important;
        border-radius: 0 !important;
        z-index: 3001 !important; /* Plus haut que tout */
        background: white !important;
        padding: 0.8rem 1.2rem !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        min-height: 60px;
        height: 60px; /* Hauteur fixe mobile */
    }

    .logo { font-size: 1.3rem !important; }
    .menu-toggle { 
        display: block !important; 
        padding: 0.5rem; 
        font-size: 1.8rem;
        color: var(--primary-blue);
        z-index: 2001;
    }
    .header-actions { display: none !important; }

    /* Full-Screen Mobile Menu Overlay */
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        z-index: 1001;
        padding: 3rem 2rem;
        flex-direction: column !important;
        align-items: center !important;
        overflow-y: auto;
    }
    .nav-menu.active { display: flex !important; }
    .nav-menu .nav-list { 
        flex-direction: column !important; 
        gap: 0 !important; /* On gère le gap via les items sur mobile */
        width: 100%;
        text-align: center;
    }
    .nav-menu .nav-list li { 
        width: 100%; 
        justify-content: center; 
        flex-direction: column;
        border-bottom: 1px solid #f1f5f9;
    }
    .nav-menu .nav-list li:last-child { border-bottom: none; }
    
    .nav-menu .nav-list a { 
        font-size: 1.15rem !important; 
        padding: 18px 0 !important; 
        width: 100%;
        justify-content: center;
    }

    /* Mobile Sub-menus Fix */
    .nav-menu .nav-list .sub-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        width: 100% !important;
        min-width: 100% !important;
        box-shadow: none !important;
        padding: 0 !important;
        background: #f8fafc !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }

    .nav-menu .nav-list li.active-submenu > .sub-menu {
        display: block !important;
        animation: fadeIn 0.3s ease forwards;
    }

    .nav-menu .nav-list li.active-submenu > a::after {
        transform: rotate(180deg);
    }

    .nav-menu .nav-list .sub-menu a {
        padding: 15px 20px !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid #edf2f7;
        opacity: 0.8;
    }
    .nav-menu .nav-list .sub-menu li:last-child a { border-bottom: none; }

    /* Centered Hero Section Rebuild */
    #section-hero { 
        padding-top: 100px !important; 
        padding-bottom: 2rem !important;
        min-height: 500px; /* Réserve l'espace pour éviter le CLS sur mobile */
    }
    .hero-content {
        text-align: center !important;
        align-items: center !important;
        padding: 0 15px !important;
        margin: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .subtitle {
        display: block !important;
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        color: var(--primary-blue) !important;
        font-weight: 700 !important;
    }
    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.2rem) !important; /* Plus d'impact sur mobile moyen */
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
    }
    .description { 
        text-align: center !important; 
        font-size: 1rem !important; 
        line-height: 1.6 !important;
        margin-bottom: 2rem !important; 
        max-width: 90% !important;
    }

    /* Stacked Feature List */
    .features-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.6rem !important;
        margin: 0 auto 1.5rem auto !important;
        width: fit-content !important;
    }
    .features-list li { font-size: 0.9rem !important; }

    /* Stacked Full-Width Buttons - Icon Adjustment */
    .cta-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 320px;
        margin: 0 auto !important;
    }
    .btn-cta { 
        width: 100% !important; 
        padding: 1rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-radius: 12px !important;
        min-height: 65px !important;
    }
    .btn-reserve {
        border: 2px solid #8b5cf6 !important;
        background: white !important;
    }
    .cta-title { font-size: 0.9rem !important; font-weight: 800 !important; }
    .cta-subtitle { font-size: 0.75rem !important; line-height: 1.2; }
    .cta-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        min-width: 36px !important;
        border-radius: 50% !important;
    }

    /* Floating Buttons Visibility & Positioning */
    .floating-contact { 
        display: flex !important; 
        flex-direction: column !important;
        bottom: 110px !important; 
        right: 20px !important; 
        z-index: 2002 !important; 
        gap: 24px !important;
    }
    .fab-btn {
        width: 65px !important;
        height: 65px !important;
        font-size: 26px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
    .fab-reserve-left {
        display: flex !important;
        position: fixed !important;
        left: 20px !important;
        bottom: 115px !important;
        z-index: 2002 !important;
        font-size: 0.9rem !important;
        padding: 12px 22px !important;
        border-radius: 50px !important;
        background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4) !important;
        text-decoration: none !important;
        font-weight: 700 !important;
    }

    .services-section {
        padding-top: 2rem !important;
        padding-bottom: 3rem !important;
        margin: 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .section-header {
        margin-bottom: 2rem !important;
    }
    .services-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    /* Correction Sticky Bar Mobile - DESACTIVÉ PAR ANTIGRAVITY 
    .sticky-cta-bar { 
        display: block !important; 
        bottom: 15px !important; 
        width: 95% !important; 
        padding: 10px 15px !important; 
    }
    .bar-text p { display: none; } 
    .bar-btn { padding: 8px 15px !important; font-size: 0.8rem !important; }
    .bar-icon { width: 30px !important; height: 30px !important; font-size: 1rem !important; }
    
    .floating-contact { bottom: 85px !important; }
    .fab-reserve-left { bottom: 90px !important; }
    */
} /* End of @media (max-width: 768px) */

/* ==========================================================================
   SERVICE PAGE TEMPLATE (Silo)
   Global Styles
   ========================================================================== */

/* Layout wrapper */
.container {
    width: 95% !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Hero Section */
.service-single .service-hero {
    position: relative;
    padding-top: 240px;
    padding-bottom: 100px;
    color: white;
    text-align: left;
}
.service-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.service-hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,25,60,0.9) 0%, rgba(0,86,179,0.7) 100%);
    z-index: -1;
}
.hero-container { position: relative; z-index: 10; }

/* Breadcrumbs */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.breadcrumb a { color: white; text-decoration: none; transition: color 0.3s ease; }
.breadcrumb a:hover { color: #facc15; }
.breadcrumb i { font-size: 0.7rem; }
.breadcrumb span { color: #facc15; font-weight: 600; }

/* Titles */
.service-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.service-excerpt { font-size: 1.3rem; max-width: 900px; color: rgba(255,255,255,0.9); }

/* Content Section Layout */
.service-content-section { padding: 80px 0; background-color: #f8fafc; }
.content-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
}

/* Main Content Card */
.entry-content.card {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

/* Sidebar Styles */
.service-sidebar { 
    display: block; /* Block est souvent plus stable pour le sticky que flex */
}

.info-card { 
    margin-bottom: 30px; 
}

.sticky-cta { 
    position: -webkit-sticky; /* Support Safari */
    position: sticky !important; 
    top: 140px !important; /* Un peu plus d'espace sous le header */
    z-index: 100;
}

.sidebar-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border-top: 5px solid var(--primary-blue);
    width: 100%; /* S'assurer qu'elle prend toute la largeur du sidebar */
}
.sidebar-card.cta-card { text-align: center; border-top-color: #ff2d55; }
.sidebar-card.cta-card i { font-size: 2.5rem; color: #ff2d55; margin-bottom: 15px; }
.sidebar-card.cta-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--text-dark); }
.sidebar-card.cta-card p { margin-bottom: 20px; color: var(--text-gray); }

.sidebar-card.info-card h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--primary-blue); }
.sidebar-card.info-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card.info-card li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--text-gray); }
.sidebar-card.info-card i { color: #10b981; }

/* Silo Navigation */
.silo-navigation { margin-top: 50px; }
.silo-navigation h2 { font-size: 1.5rem; margin-bottom: 25px; color: var(--text-dark); }
.silo-navigation h2 span { color: var(--primary-blue); }
.silo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.silo-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}
.silo-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 86, 179, 0.1); border-color: rgba(0, 86, 179, 0.2); }
.silo-card i { font-size: 1.5rem; color: var(--primary-blue); }
.silo-card h3 { font-size: 1.1rem; color: var(--text-dark); margin: 0; }

/* Social Proof / Testimonials */
.social-proof-section {
    margin: 30px 0;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .social-proof-section { padding: 25px 15px; margin: 20px 0; }
    .social-proof-section h2 { font-size: 1.4rem !important; margin-bottom: 20px !important; }
}

.social-proof-section h2 {
    font-size: 1.8rem !important;
    color: #1a202c !important;
    margin-bottom: 30px !important;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
}

.testimonial-item .stars {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-item p {
    font-style: italic;
    color: #4a5568 !important;
    margin-bottom: 15px !important;
    line-height: 1.6;
}

.testimonial-item .author {
    font-weight: 700;
    color: #1a202c;
    font-size: 0.9rem;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Hero Image Fix */
.hero-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Service Page Mobile Adaptations */
@media (max-width: 991px) {
    .content-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; order: 2; margin-top: 40px; }
    .service-title { font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1.2; }
    .entry-content.card { padding: 30px 20px; border-radius: 20px; }
    .post-main-content { padding: 30px 20px !important; border-radius: 25px; }
    .contact-main-card { padding: 30px 20px !important; border-radius: 25px; }
}


/* Very Small Smartphones */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.3rem !important; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
}/* ==========================================================================
   Expert SEO Content Styles (Shared across service pages)
   ========================================================================== */
.service-expert-content {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    line-height: 1.8;
}

.service-expert-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    color: #0056b3 !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
    border-bottom: 2px solid #e2e8f0 !important;
    padding-bottom: 12px !important;
    text-align: left !important;
}

.service-expert-content h3 {
    font-size: 1.6rem !important;
    color: #1a202c !important;
    margin-top: 40px !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
    text-align: left !important;
}

.service-expert-content p {
    margin-bottom: 22px !important;
    font-size: 1.1rem !important;
}

/* Lien maillage interne */
.internal-link {
    color: #0056b3;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.internal-link:hover { color: #ff2d55; }

/* Encart de confiance */
.trust-box {
    background: #f0f7ff;
    border-left: 5px solid #0056b3;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}
.trust-box h3 { margin-top: 0 !important; color: #0056b3 !important; border: none !important; }

/* Grille des établissements et services */
.hospital-directory, .service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.hospital-city-card, .service-type-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.service-type-card {
    border-left: 4px solid #ff2d55;
    background: #f8fafc;
}

.hospital-city-card h4 {
    color: #0056b3;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hospital-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hospital-list-v2 li {
    padding: 10px 0;
    border-bottom: 1px dashed #edf2f7;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hospital-list-v2 li:last-child { border-bottom: none; }
.hospital-list-v2 li i { color: #ff2d55; }

/* Liste d'avantages */
.benefits-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}
.benefits-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}
.benefits-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #10b981;
    font-size: 1.2rem;
}

/* Finition Smartphones */
@media (max-width: 480px) {
    .service-expert-content h2 { font-size: 1.8rem !important; }
    .service-expert-content h3 { font-size: 1.4rem !important; }
}

/* ==========================================================================
   Contact Form 7 - Premium Design
   ========================================================================== */
.vsl-contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    max-width: 800px;
    margin: 20px auto;
}

.vsl-contact-form h3 {
    color: #0056b3;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-group {
    margin-bottom: 20px;
}

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

/* Styles des champs */
.vsl-contact-form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100% !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    border: 2px solid #e2e8f0 !important;
    background: #f8fafc !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    color: #1a202c !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.vsl-contact-form .wpcf7-form-control:focus {
    border-color: #0056b3 !important;
    background: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1) !important;
}

/* Bouton Envoyer */
.vsl-submit-container {
    text-align: center;
    margin-top: 30px;
}

.vsl-contact-form .wpcf7-submit {
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%) !important;
    color: white !important;
    padding: 15px 45px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    width: auto !important;
    min-width: 220px !important;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.vsl-contact-form .wpcf7-submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4) !important;
    filter: brightness(1.1) !important;
}

/* Messages de retour */
.wpcf7-response-output {
    border: none !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin: 20px 0 0 !important;
    font-weight: 600 !important;
    text-align: center !important;
    font-family: 'Inter', sans-serif !important;
}

.wpcf7-mail-sent-ok { background: #d1fae5 !important; color: #065f46 !important; }
.wpcf7-validation-errors { background: #fee2e2 !important; color: #991b1b !important; }
.wpcf7-spinner { margin: 10px auto !important; display: block !important; }

/* ==========================================================================
   Page Contact - Robust Layout
   ========================================================================== */
/* ==========================================================================
   Page Article Blog (Single) - Luxury 1500px
   ========================================================================== */
.single-post-article { background: #fff; padding-top: 50px; }

.post-hero { 
    background: #003d80; 
    padding: 120px 0 160px; /* Plus d'air pour le header fixe */
    color: white; 
    text-align: center; 
}

/* Single Post Styling */
.post-hero { 
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%); 
    padding: 180px 0 160px; 
    color: white; 
    text-align: center; 
    position: relative;
    overflow: hidden;
}

.post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1516549655169-df83a0774514?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: soft-light;
}

.post-hero-container { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 20px; }

.post-breadcrumb-cat { 
    background: var(--primary-blue); 
    color: white;
    padding: 8px 22px; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    margin-bottom: 30px; 
    display: inline-block; 
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    letter-spacing: 1px;
}

.post-hero h1 { 
    font-size: clamp(2rem, 5vw, 3.8rem); 
    font-weight: 900; 
    line-height: 1.1; 
    margin-bottom: 35px; 
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.post-hero-meta { 
    display: flex; 
    justify-content: center; 
    gap: 35px; 
    font-size: 1.05rem; 
    opacity: 0.9; 
    font-weight: 600;
}

.post-hero-meta span { display: flex; align-items: center; gap: 10px; }

.post-layout-container {
    max-width: 1500px;
    margin: -100px auto 100px;
    display: flex;
    gap: 70px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    align-items: flex-start;
}

.post-main-content {
    flex: 2.2;
    background: white;
    border-radius: 40px;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(0, 56, 179, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Post Entry Content Refinement */
.post-entry-content {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #444;
}

.post-entry-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 3.5rem 0 1.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 12px;
}

.post-entry-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.post-entry-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 2.5rem 0 1.2rem;
    color: var(--text-dark);
}

.post-entry-content p {
    margin-bottom: 1.8rem;
}

.post-entry-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.post-entry-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1.2rem;
}

.post-entry-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1rem;
}

/* Luxury Info Box (The one from the screenshot) */
.post-entry-content .wp-block-columns, 
.post-entry-content .medical-info-box,
.post-entry-content div[style*="background-color"] {
    background: rgba(0, 86, 179, 0.03) !important;
    border-left: 5px solid var(--primary-blue) !important;
    border-radius: 0 20px 20px 0 !important;
    padding: 35px !important;
    margin: 3rem 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.post-featured-image { 
    border-radius: 25px; 
    overflow: hidden; 
    margin-bottom: 50px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.post-featured-image img { width: 100%; height: auto; object-fit: cover; }

.post-sidebar {
    flex: 0.8;
    position: sticky;
    top: 130px;
}

.sidebar-cta-card { 
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%); 
    color: white; 
    padding: 45px 35px; 
    border-radius: 30px; 
    text-align: center; 
    margin-bottom: 35px; 
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.2);
}

.sidebar-cta-card i { font-size: 3.5rem; margin-bottom: 25px; display: block; opacity: 0.9; }

.sidebar-cta-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 15px; }

.sidebar-btn-call { 
    background: white; 
    color: #0056b3; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 12px;
    padding: 18px; 
    border-radius: 50px; 
    text-decoration: none !important; 
    font-weight: 800; 
    margin-top: 25px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.sidebar-btn-call:hover { 
    transform: scale(1.03) translateY(-3px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.25); 
}

.sidebar-widget {
    background: white;
    padding: 40px;
    border-radius: 35px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
    border: 1px solid rgba(0, 86, 179, 0.05);
    transition: all 0.4s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 86, 179, 0.08);
}

.sidebar-widget h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 25px; color: #1a202c; position: relative; padding-bottom: 15px; }
.sidebar-widget h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #0056b3; }

.recent-posts-list { list-style: none; padding: 0; margin: 0; }
.recent-posts-list li { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0f4f8; }
.recent-posts-list li:last-child { border: none; margin: 0; padding: 0; }
.recent-posts-list a { text-decoration: none; color: #2d3748; font-weight: 700; font-size: 0.95rem; display: block; line-height: 1.4; transition: color 0.3s; }
.recent-posts-list a:hover { color: #0056b3; }
.recent-posts-list .date { display: block; color: #a0aec0; font-size: 0.8rem; margin-top: 8px; font-weight: 500; }

.post-author-box { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
    background: #f8fafc; 
    padding: 40px; 
    border-radius: 25px; 
    margin-top: 70px; 
    border: 1px solid #e2e8f0;
}

.author-avatar img { border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.author-info h4 { margin: 0 0 8px; font-size: 1.3rem; font-weight: 800; color: #1a202c; }
.author-info p { margin: 0; color: #4a5568; font-size: 1rem; line-height: 1.6; }

@media (max-width: 1200px) {
    .post-layout-container { gap: 40px; padding: 0 20px; }
}

@media (max-width: 991px) {
    .post-layout-container { flex-direction: column; margin-top: -80px; gap: 30px; }
    .post-hero { padding: 140px 0 120px; }
    .post-hero h1 { font-size: 2.2rem; }
    .post-hero-meta { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .post-main-content { padding: 40px 20px; }
    .post-sidebar { width: 100%; order: 1; margin-top: 40px; }
    .post-main-content { order: 0; }
}

.contact-template-container {
    max-width: 1200px;
    margin: -80px auto 60px; /* Chevauchement sur le Hero */
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.contact-main-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 56, 179, 0.08);
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-sidebar {
    flex: 1;
    min-width: 350px;
}

.contact-form-side {
    flex: 1.5;
}

.contact-info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    border: 1px solid #f0f4f8;
    transition: transform 0.3s ease;
}

.contact-info-card:hover { transform: translateY(-3px); }

.contact-info-card.red { border-left: 5px solid #ff2d55; }
.contact-info-card.blue { border-left: 5px solid #0056b3; }
.contact-info-card.green { border-left: 5px solid #10b981; }

.contact-info-card i {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-info-card h4 {
    margin: 0 0 10px;
    color: #1a202c;
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-info-card p, .contact-info-card a {
    margin: 0;
    color: #4a5568;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-info-card .highlight {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0056b3;
    display: block;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .contact-grid { flex-direction: column; gap: 40px; }
    .contact-sidebar { width: 100%; min-width: 0; }
    .contact-main-card { padding: 40px 25px; border-radius: 25px; }
    .contact-template-container { margin-top: -40px; padding: 0 15px; }
    .vsl-contact-form { padding: 30px 15px; }
    .vsl-contact-form h3 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .contact-main-card { padding: 25px 15px !important; border-radius: 20px; }
    .vsl-contact-form { padding: 20px 10px !important; }
    .contact-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .post-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .hero-content h1 { font-size: clamp(1.6rem, 10vw, 2rem) !important; }
}

/* Hero Contact */
.contact-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
    padding: 120px 0 180px;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 15px;
}

/* ==========================================================================
   Section Dernières Actualités - Full Width & Modern
   ========================================================================== */
.latest-posts-section {
    padding: 100px 0;
    background: #fbfcfe;
    overflow: hidden;
    width: 100%;
}

.latest-posts-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.post-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    border: 1px solid #f0f3f6;
}

.post-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.15);
    border-color: rgba(0, 86, 179, 0.1);
}

.post-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #edf2f7;
}

.post-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.post-card:hover .post-image-wrapper img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0056b3;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.post-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #718096;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: #0056b3;
    font-size: 0.95rem;
    opacity: 0.8;
}

.post-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.4;
    margin: 0 0 15px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card:hover h3 {
    color: #0056b3;
}

.post-excerpt {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.85;
}

@media (max-width: 1400px) {
    .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
    .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; padding: 0 25px; }
}

@media (max-width: 600px) {
    .posts-grid { grid-template-columns: 1fr; padding: 0 15px !important; }
    .post-card h3 { font-size: 1.25rem; }
    .post-content { padding: 20px; }
}

/* ==========================================================================
   Nouveau Blog Archive (Phase 7)
   ========================================================================== */

.archive-header {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 86, 179, 0.05);
}

.archive-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.2);
}

/* Featured Card */
.featured-post {
    margin-bottom: 4rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-image {
    position: relative;
    height: 450px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 1.5rem 0;
    line-height: 1.2;
}

.featured-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Posts Grid */
.posts-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.post-item {
    transition: all 0.4s ease;
}

.featured-post, .grid-cta-banner.full-width {
    grid-column: 1 / -1;
}

/* CTA Banner In-Grid */
.grid-cta-banner {
    background: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003a7a 100%);
    border-radius: 30px;
    padding: 4rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.grid-cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.grid-cta-banner .btn-white {
    background: var(--white);
    color: var(--primary-blue);
    margin-top: 2rem;
    display: inline-flex;
}

/* Load More */
.load-more-wrapper {
    text-align: center;
    margin: 4rem 0 60px;
}

.btn-load-more {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Blog */
@media (max-width: 1200px) {
    .posts-grid-wrapper { grid-template-columns: repeat(3, 1fr); }
    .featured-card { grid-template-columns: 1fr; }
    .featured-image { height: 350px; }
    .featured-content { padding: 2.5rem; }
}

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

@media (max-width: 576px) {
    .posts-grid-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
    .featured-title { font-size: 1.6rem; }
    .archive-title { margin-bottom: 1.5rem; }
    .grid-cta-banner { padding: 2.5rem 1.5rem; }
    .grid-cta-banner h2 { font-size: 1.8rem; }
}

/* ==========================================================================
   Blog Archive Premium (Phase 10)
   ========================================================================== */
.archive-header-premium {
    padding: 120px 0 60px;
    background: #fdfdfd;
    text-align: center;
}

.archive-header-premium h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #4B1EE3; 
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-transform: none;
}

.archive-subtitle, .archive-description {
    font-size: 1.25rem;
    color: #555;
    margin: 0 auto 50px;
    max-width: 850px;
    line-height: 1.7;
}

.archive-description p { margin-bottom: 0; }

.category-filters-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-pill {
    padding: 10px 25px;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.filter-pill:hover, .filter-pill.active {
    background: #4B1EE3;
    color: white;
    border-color: #4B1EE3;
    transform: translateY(-2px);
}

.container-wide { max-width: 1500px; margin: 0 auto; padding: 0 20px; }

.posts-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Colonnes Forcées */
    gap: 30px;
    margin-bottom: 60px;
}

.featured-post-wrapper {
    grid-column: span 4;
    margin-bottom: 60px;
}

/* Featured Post XXL - Unifié et Premium */
.featured-luxury-post {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Image plus large que le texte */
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    min-height: 600px;
    margin-bottom: 20px;
}

.featured-image-side { position: relative; height: 100%; min-height: 500px; overflow: hidden; }
.featured-image-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.featured-luxury-post:hover .featured-image-side img { transform: scale(1.05); }

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #4B1EE3;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(75, 30, 227, 0.3);
    z-index: 10;
}

.featured-content-side { padding: 80px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.featured-meta { display: flex; gap: 30px; font-size: 1rem; color: #999; margin-bottom: 30px; font-weight: 600; }
.featured-meta i { color: #4B1EE3; margin-right: 8px; }

.featured-title { font-size: 3.5rem; font-weight: 900; line-height: 1.05; margin-bottom: 30px; letter-spacing: -2px; }
.featured-title a { color: #111; text-decoration: none; transition: color 0.3s; }
.featured-title a:hover { color: #4B1EE3; }

.featured-excerpt { font-size: 1.3rem; line-height: 1.7; color: #555; margin-bottom: 45px; }

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #4B1EE3;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.btn-read-more:hover { gap: 20px; color: #33159c; }

.blog-cta-banner {
    grid-column: span 4;
    background: linear-gradient(135deg, #4B1EE3 0%, #301099 100%);
    color: white;
    border-radius: 30px;
    padding: 60px;
    margin: 40px 0;
    box-shadow: 0 20px 50px rgba(75, 30, 227, 0.2);
}

.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-icon i { font-size: 3.5rem; opacity: 0.9; }
.cta-text h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.cta-text p { font-size: 1.1rem; opacity: 0.8; }

.btn-cta-luxury {
    background: white;
    color: #4B1EE3;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    margin-left: auto;
    transition: all 0.3s;
}

.btn-cta-luxury:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Modèle de Carte */
.post-card-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(75, 30, 227, 0.1);
    border-color: rgba(75, 30, 227, 0.1);
}

@media (max-width: 1400px) {
    .posts-grid-wrapper { grid-template-columns: repeat(3, 1fr); }
    .featured-title { font-size: 2.8rem; }
    .featured-content-side { padding: 60px; }
}

@media (max-width: 1100px) {
    .featured-luxury-post { grid-template-columns: 1fr; min-height: auto; }
    .featured-image-side { height: 350px; min-height: auto; }
    .featured-content-side { padding: 40px; }
    .featured-title { font-size: 2.5rem; }
}

@media (max-width: 900px) {
    .posts-grid-wrapper { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .featured-post-wrapper { grid-column: span 2; }
}

@media (max-width: 600px) {
    .container-wide { padding: 0 20px; }
    .posts-grid-wrapper { grid-template-columns: 1fr; }
    .featured-post-wrapper { grid-column: span 1; }
    .featured-content-side { padding: 30px 20px; }
    .featured-title { font-size: 2rem; letter-spacing: -1px; }
    .featured-meta { gap: 15px; font-size: 0.9rem; }
    .archive-header-premium { padding: 60px 0 40px; }
    .archive-subtitle, .archive-description { font-size: 1.1rem; padding: 0 10px; }
}

/* ==========================================================================
   Luxury Page Specifics (Phase 9)
   ========================================================================== */

.luxury-page .post-hero {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    padding: 160px 0 140px;
}

.page-breadcrumb {
    margin-top: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.page-breadcrumb i { font-size: 0.7rem; margin: 0 10px; opacity: 0.5; }
.page-breadcrumb a { color: white; text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }

.page-layout-container {
    max-width: 1300px; 
}

.page-main-content {
    flex: 1;
}

.luxury-page .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxury-page .sidebar-menu li {
    margin-bottom: 12px;
}

.luxury-page .sidebar-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.luxury-page .sidebar-menu a:hover {
    color: var(--primary-blue);
}

@media (max-width: 991px) {
    .page-layout-container { margin-top: -60px; }
    .luxury-page .post-hero { padding: 120px 0 100px; }
}

/* Hide mobile-only elements on desktop */
.mobile-menu-cta {
    display: none;
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATION - MOBILE & TABLET (RETRY)
   ========================================================================== */

/* Hide Sticky Bar on Mobile as requested */
@media (max-width: 991px) {
    .sticky-cta-bar {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
}

@media (max-width: 991px) {
    /* Body lock when menu open */
    body.menu-open {
        overflow: hidden !important;
    }

    /* --- Global Header & Mobile Menu --- */
    .header {
        width: 100% !important;
        max-width: none !important;
        top: 0 !important;
        border-radius: 0 !important;
        padding: 0 1.5rem !important;
        height: 80px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }

    .menu-toggle {
        display: block !important;
        order: 3;
    }

    .header-actions {
        display: none !important;
    }

    .logo {
        font-size: 1.3rem !important;
        order: 1;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 4000 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 100px 2rem 2rem !important;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0) !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1) !important;
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0 !important;
        visibility: visible;
    }

    .nav-menu .nav-list {
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }

    .nav-menu .nav-list a {
        font-size: 1.2rem !important;
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        width: 100% !important;
    }

    /* Mobile CTA inside menu */
    .mobile-menu-cta {
        display: block !important;
        margin-top: auto !important;
        padding-top: 2rem !important;
        text-align: center !important;
    }

    .mobile-menu-cta .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem !important;
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        display: flex !important;
    }

    .mobile-menu-cta p {
        font-size: 0.85rem !important;
        color: var(--text-light) !important;
        font-weight: 500 !important;
    }

    /* --- Hero Section --- */
    .hero-bg {
        padding-top: 100px !important;
        min-height: auto !important;
    }

    .hero-content {
        padding: 0 1.5rem !important;
        margin-top: 2rem !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .hero-content .description {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .features-list {
        gap: 1rem !important;
        justify-content: center !important;
        margin-bottom: 2.5rem !important;
    }

    .features-list li {
        font-size: 0.95rem !important;
    }

    .cta-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    .btn-cta {
        width: 100% !important;
        max-width: 350px !important;
    }

    /* --- Grid & Layout Sections --- */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-card {
        padding: 2.5rem 1.5rem !important;
    }

    .steps-wrapper {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .step-arrow {
        display: none !important;
    }

    .step-circle {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1.5rem !important;
    }

    .step-circle i {
        font-size: 2.5rem !important;
    }

    .why-us-grid, .about-grid, .area-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .section-header {
        margin-bottom: 3rem !important;
    }

    .section-header.align-left {
        text-align: center !important;
    }

    .why-us-image-wrapper {
        padding-left: 0 !important;
        padding-bottom: 0 !important;
        display: flex;
        justify-content: center;
    }

    .main-image {
        transform: none !important;
    }

    .floating-stat {
        right: 10px !important;
        bottom: 10px !important;
        padding: 1rem !important;
    }

    .about-image-wrapper {
        order: -1 !important;
    }

    .about-stats {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1rem !important;
    }

    .stat-item {
        flex: 1 1 120px !important;
    }

    .area-map-wrapper {
        height: 250px !important;
    }

    .cta-banner-container {
        padding: 3.5rem 1.5rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
        border-radius: 25px !important;
        align-items: center !important;
    }

    .cta-banner-content {
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .cta-banner-content h2, .cta-banner-content p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .cta-banner-actions {
        width: 100% !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    .cta-banner-decoration {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem !important;
    }

    .section-desc {
        font-size: 1.1rem !important;
    }

    .cta-banner-content h2 {
        font-size: 1.6rem !important;
    }

    .cta-banner-actions {
        flex-direction: column !important;
        width: 100% !important;
        align-items: center !important;
    }

    .btn-call-large, .btn-reserve-outline {
        width: 100% !important;
        max-width: 400px !important;
        justify-content: center !important;
    }
}
