 :root {
     --accent: #990B7D;
     --accent-glow: rgba(237, 58, 195, 0.15);
     --bg-body: #ffffff;
     --surface: #F9FAFB;
     --text-main: #09090B;
     --radius-xl: 48px;
     --radius-lg: 32px;
     --transition-spatial: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);

     --bg-body: #ffffff;
     --bg-subtle: #f8fafc;
     --primary: #990b7d;
     --primary-light: #ffe6fe;
     --text-main: #0f172a;
     --text-muted: #8b648b;
     --accent: #10b981;
     --radius-main: 30px;
     --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.04);
 }


 body {
     font-family: 'Plus Jakarta Sans', sans-serif !important;
     background-color: var(--bg-body);
     overflow-x: hidden;
 }



 .call-float-premium {
     position: fixed;
     bottom: 30px;
     right: 30px;
     display: flex;
     align-items: center;
     background: rgba(63, 6, 65, 0.9);
     /* Votre couleur avec transparence */
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     padding: 10px;
     border-radius: 20px;
     text-decoration: none;
     color: white;
     z-index: 2000;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 15px 35px rgba(63, 6, 65, 0.4);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 .call-float-premium:hover {
     transform: scale(1.05) translateY(-5px);
     background: #3F0641;
     box-shadow: 0 20px 40px rgba(63, 6, 65, 0.6);
 }

 /* Boite de l'icône avec effet de brillance */
 .icon-box {
     position: relative;
     width: 45px;
     height: 45px;
     background: linear-gradient(135deg, #5a095d, #3F0641);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     margin-right: 12px;
 }

 /* Pastille "En ligne" */
 .online-indicator {
     position: absolute;
     top: -2px;
     right: -2px;
     width: 12px;
     height: 12px;
     background: #ba2ecc;
     border: 2px solid #3F0641;
     border-radius: 50%;
     animation: blink 2s infinite;
 }

 .text-box {
     display: flex;
     flex-direction: column;
     padding-right: 10px;
 }

 .label {
     font-size: 10px;
     /* Taille demandée */
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     opacity: 0.9;
 }

 .number {
     font-size: 12px;
     font-weight: 400;
     opacity: 0.7;
 }

 /* Animations */
 @keyframes blink {
     0% {
         box-shadow: 0 0 0 0 rgba(204, 46, 178, 0.7);
     }

     70% {
         box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
     }
 }

 /* Sur mobile, on peut masquer le numéro pour rester discret */
 @media (max-width: 576px) {
     .number {
         display: none;
     }

     .call-float-premium {
         padding: 8px;
     }
 }





 .btn-type .btn-type1 {
     background-color: #990b7d;
     border-color: #990b7d;
     border-radius: 999px;
     padding: 12px 28px;
     font-weight: 600;
     font-size: 14px;
     color: white;
 }


 .btn-type .btn-type2 {
     background-color: #3f0641;
     border-color: #3f0641;
     border-radius: 999px;
     padding: 12px 28px;
     font-weight: 600;
     font-size: 14px;
     color: white;
 }

 .rounded-img-luxe {
     border-radius: var(--radius-xl);
     box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
 }

 /* =========================================================
NAVBAR  - LES CERISIERS
========================================================= */

 #navbar-accueil {
     background-color: #FFF !important;
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(226, 232, 240, 0.6) !important;
     transition: all 0.3s ease;
     top: 0;
     z-index: 1020;
     position: fixed !important;
     width: 100% !important;
 }


 /* =========================================================
NAV LINKS
========================================================= */

 .navbar-nav .nav-link {
     font-size: 14px;
     color: #1f1f1f;
     padding: 8px 12px;
 }

 .navbar-nav a {
     font-size: 14px;
     color: inherit;
     text-decoration: none;
 }

 .navbar form input {
     height: 34px !important;
 }

 .navbar-nav .nav-link:hover {
     background-color: #f5f5f5;
     border-radius: 6px;
 }

 /* Media query pour mobile */
 @media (max-width: 768px) {
     #btn-mob {
         padding: 8px 12px;
         /* Réduit l'encombrement */
         font-size: 10px;
         max-width: fit-content;
     }


 }

 /* =========================================================
UTILS
========================================================= */

 .cursor-pointer {
     cursor: pointer;
 }

 .avatar {
     width: 32px;
     height: 32px;
     background-color: #002761;
     cursor: pointer;
 }



 /* =========================================================
ANIMATION BURGER MENU
========================================================= */

 .navbar-toggler {
     width: 40px;
     height: 40px;
     position: relative;
     transition: .5s ease-in-out;
     cursor: pointer;
     border: none !important;
     box-shadow: none !important;
     padding: 0;
 }

 /* Media query pour mobile */
 @media (max-width: 768px) {
     .navbar-toggler {
         width: 40px;
         height: 40px;
         position: relative;
         transition: .5s ease-in-out;
         cursor: pointer;
         border: none !important;
         box-shadow: none !important;
         padding: 0;
     }

 }

 @media (max-width: 368px) {
     .iconsHeader {
         display: none !important;
     }

 }



 /* LES 3 BARRES */

 .toggler-icon {
     display: block;
     position: absolute;
     height: 3px;
     width: 100%;
     background: #002761;
     border-radius: 9px;
     opacity: 1;
     left: 0;
     transform: rotate(0deg);
     transition: .25s ease-in-out;
 }


 /* POSITIONS */

 .top-bar {
     top: 10px;
 }

 .middle-bar {
     top: 18px;
 }

 .bottom-bar {
     top: 26px;
 }


 /* TRANSFORMATION EN X */

 .navbar-toggler:not(.collapsed) .top-bar {
     top: 18px;
     transform: rotate(135deg);
 }

 .navbar-toggler:not(.collapsed) .middle-bar {
     opacity: 0;
     left: -60px;
 }

 .navbar-toggler:not(.collapsed) .bottom-bar {
     top: 18px;
     transform: rotate(-135deg);
 }



 /* Presentation du centre */

 /* --- ARRIÈRE-PLAN --- */
 .medical-hero {
     padding: 120px 0;
     position: relative;
     background: radial-gradient(circle at 90% 10%, var(--primary-light) 0%, transparent 40%);
 }

 /* --- TYPOGRAPHIE --- */
 .hero-title {
     font-weight: 900;
     font-size: clamp(3.5rem, 10vw, 3.5rem);
     line-height: 0.85;
     letter-spacing: -0.07em;
     margin-bottom: 40px;

 }

 .text-highlight {
     color: var(--primary);
     position: relative;
     display: inline-block;
 }

 .text-highlight::after {
     content: "";
     position: absolute;
     bottom: 8px;
     left: 0;
     width: 100%;
     height: 12px;
     background: var(--primary-light);
     z-index: -1;
     border-radius: 4px;
 }

 /* --- BENTO VISUAL LIGHT --- */
 .bento-container {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .main-photo-wrapper {
     position: relative;
     z-index: 1;
     border-radius: var(--radius-main);
     overflow: hidden;
     box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.08);
     border: 8px solid white;
 }

 .main-photo-wrapper img {
     width: 100%;
     max-height: 550px;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 /* Cartes flottantes Light Mode */
 .floating-card {
     position: absolute;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(10px);
     padding: 24px;
     border-radius: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.8);
     z-index: 2;
 }

 .card-experience {
     top: -20px;
     right: -20px;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .card-patients {
     bottom: 40px;
     left: -40px;
     min-width: 220px;
 }

 /* --- BOUTONS --- */
 .btn-cta {
     background: var(--primary);
     color: white;
     padding: 18px 35px;
     border-radius: 16px;
     font-weight: 700;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     transition: all 0.3s ease;
     box-shadow: 0 10px 20px rgba(255, 0, 221, 0.2);
 }

 .btn-cta:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(255, 0, 238, 0.3);
     color: white;
 }

 /* --- ANIMATIONS --- */
 .reveal {
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 @media (max-width: 991px) {
     .card-patients {
         left: 0;
         bottom: -20px;
     }

     .card-experience {
         right: 0;
     }

     .medical-hero {
         padding: 80px 0;
         text-align: center;
     }

     .btn-cta {
         justify-content: center;
         width: 100%;
     }
 }


 /* ================================
   GALLERIE SECTION – CSS ISOLÉ
   ================================ */
 .section {
     margin-top: 0px;
     padding-top: 4rem;
     padding-bottom: 4rem;
     background-color: #FFF !important;
 }

 .retro-layout .v-height {
     height: 240px;
 }

 .retro-layout .h-entry {
     display: block;
     position: relative;
     border-radius: 10px;
     overflow: hidden;
 }

 .retro-layout .gradient {
     position: relative;
 }

 .retro-layout .h-entry.gradient {
     position: relative;
 }

 .retro-layout .h-entry.mb-30 {
     margin-bottom: 30px;
 }

 .retro-layout .h-entry.gradient:before {

     z-index: 1;
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
     background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
     background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
     background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
     background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
 }

 .retro-layout .h-entry .featured-img {
     position: absolute;
     height: 100%;
     width: 100%;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center center;
     -webkit-transform: scale(1.05);
     -ms-transform: scale(1.05);
     transform: scale(1.05);
     -webkit-transition: .3s all ease;
     -o-transition: .3s all ease;
     transition: .3s all ease;
     border-radius: 60px;

 }

 .retro-layout .text {
     position: absolute;
     bottom: 0;
     z-index: 10;
     padding: 20px;
     max-width: 350px;
 }

 .retro-layout .text span {
     color: rgba(255, 255, 255, 0.7);
     font-size: 12px;
     display: block;
     margin-bottom: 5px;
 }

 .retro-layout .h-entry .date {
     font-size: 15px;
 }

 .retro-layout .text h2,
 .retro-layout .text .h2 {
     color: #fff;
     font-size: 18px;
     line-height: 1.2;
     margin-bottom: 0;
 }

 @media (max-width: 767.98px) {
     .retro-layout .img-5 {
         height: 240px !important;
         margin-bottom: 30px;
         margin-top: 30px;
     }
 }


 /* ================================
   HEADER SECTION – CSS ISOLÉ
   ================================ */

 header {
     padding-top: 120px !important;
 }

 /* --- HERO SECTION "LIGHT MODE" (Clean & Tech) --- */
 .hero-light {
     position: relative;
     background-color: #edcee7ce;
     /* Fond très clair (Slate 50) */
     background: linear-gradient(135deg, #fff0f9c9 0%, #FFFFFF 100%);
     /* Dégradé subtil vers le blanc */
     padding: 50px 0 100px 0;
     overflow: hidden;
     color: #000;
     /* Texte Bleu Nuit (Slate 900) */

 }

 /* Grille technique subtile en fond */
 .hero-light::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background-image:
         linear-gradient(rgba(148, 48, 115, 0.05) 1px, transparent 1px),
         linear-gradient(90deg, rgba(233, 14, 229, 0.05) 1px, transparent 1px);
     background-size: 50px 50px;
     z-index: 0;
 }

 /* Lueurs douces (Pastel Blobs) */
 .light-blob {
     position: absolute;
     filter: blur(80px);
     opacity: 0.5;
     z-index: 0;
     border-radius: 50%;
 }

 .lb-1 {
     top: -100px;
     right: -100px;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(233, 14, 193, 0.281) 0%, transparent 70%);
     /* Bleu Ciel */
 }

 .lb-2 {
     bottom: -50px;
     left: -100px;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
     /* Indigo léger */
 }

 /* --- BADGE GLASMORPHIQUE & PULSANT --- */
 .glass-badge-pulse {
     display: inline-flex;
     align-items: center;
     padding: 8px 24px;
     /* Un peu plus large pour l'élégance */

     /* L'effet Verre (Glassmorphism) */
     background: rgba(255, 255, 255, 0.65);
     /* Blanc à 65% d'opacité */
     backdrop-filter: blur(12px);
     /* Le flou d'arrière-plan */
     -webkit-backdrop-filter: blur(12px);
     /* Pour Safari */

     /* Bordure subtile et lumineuse */
     border: 1px solid rgba(255, 255, 255, 0.9);
     border-bottom: 1px solid rgba(200, 220, 255, 0.5);
     /* Légère teinte bleue en bas */

     border-radius: 50px;

     /* Typographie */
     color: #0F172A;
     /* Bleu Nuit */
     font-weight: 600;
     font-size: 10px;
     letter-spacing: 0.01em;

     /* Ombre portée douce teintée de bleu ciel */
     box-shadow:
         0 4px 20px -2px rgba(233, 14, 197, 0.15),
         0 0 0 1px rgba(255, 255, 255, 0.4) inset;
     /* Reflet interne */

     transition: all 0.3s ease;
     cursor: default;
 }

 /* Effet au survol : devient plus opaque et monte légèrement */
 .glass-badge-pulse:hover {
     background: rgba(255, 255, 255, 0.85);
     transform: translateY(-2px);
     box-shadow: 0 8px 30px -5px rgba(100, 14, 73, 0.623);
 }

 /* LE POINT PULSANT (Glow Dot) */
 .pulse-dot-container {
     position: relative;
     width: 8px;
     height: 8px;
     margin-right: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .dot-core {
     display: none;
     width: 8px;
     height: 8px;
     background-color: #990b7d;
     /* Sky Blue Vif */
     border-radius: 50%;
     position: relative;
     z-index: 2;
     box-shadow: 0 0 10px #95177a;
     /* Cœur lumineux */
 }

 /* L'onde de choc (Ring) */
 .dot-ring {
     position: absolute;
     width: 100%;
     height: 100%;
     background-color: inherit;
     border-radius: 50%;
     border: 1px solid #990b7d;
     opacity: 0;
     z-index: 1;
     animation: pulse-ring-animation 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
 }

 @keyframes pulse-ring-animation {
     0% {
         transform: scale(0.5);
         opacity: 0;
     }

     50% {
         opacity: 0.5;
     }

     100% {
         transform: scale(3);
         opacity: 0;
     }
 }

 /* Typographie */
 .heading-light {
     font-weight: 900;
     font-size: clamp(3.5rem, 10vw, 7.5rem);
     line-height: 0.85;
     letter-spacing: -0.07em;
     margin-bottom: 40px;
 }

 .text-gradient-sky {
     background: linear-gradient(135deg, #990b7d 0%, #990b7d 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .subtext-light {
     font-size: 1.2rem;
     color: #475569;
     /* Gris soutenu pour bonne lecture */
     line-height: 1.7;
     margin-bottom: 40px;
     max-width: 560px;
 }

 /* Boutons */
 .btn-primary-light {
     background: #0F172A;
     /* Bleu Nuit pour le contraste */
     color: white;
     border-radius: 999px;
     padding: 13px 28px !important;
     font-weight: 600;
     font-size: 14px;
     color: white;
     border: none;
     transition: all 0.3s ease;
     box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
 }

 .btn-primary-light:hover {
     transform: translateY(-3px);
     background: #1E293B;
     color: white;
     box-shadow: 0 20px 35px -5px rgba(15, 23, 42, 0.4);
 }

 .btn-outline-light-mode {
     background: #FFFFFF;
     color: #0F172A;
     border: 1px solid #E2E8F0;
     padding: 8px 28px !important;
     border-radius: 12px;
     font-weight: 600;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .btn-outline-light-mode:hover {
     border-color: #CBD5E1;
     background: #F8FAFC;
     color: #0284C7;
 }

 /* Visuel 3D (Clean Shadow) */
 .visual-wrapper-light {
     position: relative;
     perspective: 1000px;

 }

 .img-card-light {
     position: relative;
     z-index: 2;
     border-radius: 24px;
     overflow: hidden;
     /* Ombre portée douce mais profonde pour le "pop" sur fond blanc */
     box-shadow:
         0 25px 50px -12px rgba(15, 23, 42, 0.25),
         0 0 0 1px rgba(255, 255, 255, 1);
     /* Bordure blanche interne */
     border: 4px solid #FFFFFF;
     /* Cadre blanc propre */
     transform: rotateY(-3deg) rotateX(2deg);
     transition: transform 0.5s ease;
 }

 .img-card-light:hover {
     transform: rotateY(0deg) rotateX(0deg);
 }

 /* Widgets Flottants (Light Glass) */
 .widget-light {
     position: absolute;
     background: rgba(255, 255, 255, 0.9);
     /* Blanc quasi opaque */
     backdrop-filter: blur(12px);
     border: 1px solid #E2E8F0;
     border-radius: 16px;
     padding: 15px;
     box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
     /* Ombre douce */
     z-index: 3;
     animation: float-soft 6s ease-in-out infinite;
 }

 .wl-code {
     top: 50px;
     right: -30px;
     width: 180px;
 }

 .wl-success {
     bottom: -20px;
     left: -40px;
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 15px 25px;
 }

 /* Animation */
 @keyframes float-soft {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-12px);
     }
 }


 /* ================================
   SECTION RENDEZ VOUS SECTION – CSS ISOLÉ
   ================================ */
 #sectionRendezVous {
     padding: 30px;
     margin-top: 100px;
 }


 #sectionRendezVous h2 {
     font-weight: 900;
     font-size: clamp(3rem, 10vw, 2.5rem);
     line-height: 0.85;
     letter-spacing: -0.07em;
     margin-bottom: 40px;

 }

 @media (max-width:600px) {
     #sectionRendezVous img {
         width: 100%;

     }
 }




 /* ================================
   FAQ SECTION – CSS ISOLÉ
   ================================ */
 #faq {
     padding: 30px;
     margin-top: 100px;
 }


 #faq h2 {
     font-weight: 900;
     font-size: clamp(1.5rem, 10vw, 3.5rem);
     line-height: 0.85;
     letter-spacing: -0.07em;
     margin-bottom: 40px;
 }


 .btn-faq .btn-link-faq {
     padding: 16px 32px;
     border-radius: 50px;
     font-size: 18px;
     font-weight: 600;
 }



 @media (max-width:600px) {
     #faq img {
         width: 100%;

     }
 }


 /* ================================
   SUGG – CSS ISOLÉ
   ================================ */
 #sugg {
     margin-top: 100px !important;
     margin-bottom: 100px !important;
 }

 #sugg h2 {
     font-weight: 900;
     font-size: clamp(3.5rem, 10vw, 2.5rem);
     line-height: 0.85;
     letter-spacing: -0.07em;
     margin-bottom: 40px;
 }

 #sugg label {
     margin-bottom: 10px;
     color: gray;
 }

 #sugg .form-control {
     border: none;
     background-color: ghostwhite;
     padding: 20px;
     border-radius: 50px;

 }

 #sugg .form-control::placeholder {
     font-size: 14px;
     /* ou toute autre valeur souhaitée */
     /* ex. font-size: 1.2rem; */
 }

 #sugg select {
     font-size: 14px;
     /* ou toute autre valeur souhaitée */
     /* ex. font-size: 1.2rem; */
     color: #8084A9;
 }



 /* ================================
   UDM TESTIMONIALS – CSS ISOLÉ
   ================================ */

 .udm-section-title {

     font-weight: 900;
     font-size: clamp(1.5rem, 10vw, 3.5rem) !important;
     line-height: 0.85;
     letter-spacing: -0.07em;
     margin-bottom: 40px;
 }

 /* Container slider */
 .udm-slider-container {
     position: relative;
     width: 100%;
 }

 /* Track */
 .udm-slider-track {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scrollbar-width: none;
     /* Firefox */
     padding-bottom: 12px;
 }

 .udm-slider-track::-webkit-scrollbar {
     display: none;
     /* Chrome / Safari */
 }

 /* Card */
 .udm-slide-card {
     min-width: 320px;
     max-width: 320px;
     background-color: #ffffff;
     border: 1px solid #d1d7dc;
     border-radius: 12px;
     padding: 24px;
     scroll-snap-align: start;

     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 /* Quote mark */
 .udm-quote {
     font-size: 48px;
     font-weight: 700;
     line-height: 1;
     color: #1c1d1f;
 }

 /* Text */
 .udm-text {
     font-size: 15px;
     line-height: 1.6;
     color: #1c1d1f;
     margin: -16px 0 30px;
 }

 /* Source */
 .udm-source {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 14px;
     color: #6a6f73;
 }

 .udm-source img {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     object-fit: cover;
 }

 /* Link */
 .udm-link {
     margin-top: 24px;
     font-weight: 600;
     font-size: 14px;
     color: #002761;
     text-decoration: none;
 }

 .udm-link:hover {
     text-decoration: underline;
 }

 /* Navigation buttons */
 .udm-nav-prev,
 .udm-nav-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 44px;
     height: 44px;
     border-radius: 50%;
     border: none;
     background-color: #ffffff;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
     cursor: pointer;
     z-index: 10;

     display: flex;
     align-items: center;
     justify-content: center;
 }

 .udm-nav-prev {
     left: -22px;
     display: none;
     /* caché par défaut */
 }

 .udm-nav-next {
     right: -22px;
 }

 .udm-nav-prev:hover,
 .udm-nav-next:hover {
     background-color: #f7f9fa;
 }

 /* Icons inside buttons */
 .udm-nav-prev i,
 .udm-nav-next i {
     font-size: 16px;
     color: #1c1d1f;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .udm-section-title {
         font-size: 28px;
     }

     .udm-nav-prev,
     .udm-nav-next {
         display: none !important;
         /* mobile = swipe only */
     }
 }


 /* ================================
  ACTUS SECTION – CSS ISOLÉ
   ================================ */


 .cert-section {
     background: linear-gradient(135deg, #000, #76177e);
     border-radius: 40px;
     padding: 70px 60px;
     color: #ffffff;
 }

 .cert-title {
     font-weight: 900;
     font-size: clamp(2.5rem, 10vw, 1.5rem) !important;
     line-height: 0.85;
     letter-spacing: -0.07em;
     margin-bottom: 40px;
 }

 .cert-text {
     font-size: 16px;
     color: #d1d5db;
     max-width: 520px;
     line-height: 1.7;
     margin-bottom: 30px;
 }

 .cert-link {
     color: #ffffff;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .cert-link:hover {
     text-decoration: underline;
 }

 .cert-card {
     background-color: #75177e73;
     border-radius: 20px;
     padding: 16px;
     height: 100%;
     transition: transform 0.2s ease;
 }

 .cert-card:hover {
     transform: translateY(-4px);
 }

 .cert-card img {
     width: 100%;
     /* height: 100px; */
     /* object-fit: cover; */
     border-radius: 14px;
     margin-bottom: 16px;
 }

 .cert-card h5 {
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 6px;
 }

 .cert-card p {
     font-size: 14px;
     color: #cbd5f5;
     margin: 0;
 }

 @media (max-width: 991px) {
     .cert-title {
         font-size: 32px;
     }

     .cert-section {
         padding: 40px 30px;
     }
 }


 .section-title {
     font-size: 36px;
     font-weight: 700;
     color: #1c1d1f;
     margin-bottom: 32px;
 }



 /* ================================
   FOOTER – CSS ISOLÉ
   ================================ */

 :root {
     --glass-bg: rgba(255, 255, 255, 0.03);
     --glass-border: rgba(255, 255, 255, 0.08);
     --accent-color: #a239ca;
     /* Un violet plus électrique */
 }

 .footer-premium {
     margin-top: 100px !important;
     background: #0d0d0d;
     color: #ffffff;
     padding-top: 80px;
     padding-bottom: 40px;
     overflow: hidden;
     position: relative;
 }

 /* Newsletter Glassmorphism */
 .newsletter-glass {
     background: var(--glass-bg);
     border: 1px solid var(--glass-border);
     backdrop-filter: blur(15px);
     border-radius: 30px;
 }

 .newsletter-title {
     font-weight: 900;
     font-size: 1.8rem;
     letter-spacing: -1px;
 }

 .btn-glow {
     background: var(--accent-color);
     color: white;
     border: none;
     padding: 12px 25px;
     border-radius: 15px;
     font-weight: 600;
     box-shadow: 0 0 20px rgba(162, 57, 202, 0.3);
     transition: 0.3s;
 }

 .btn-glow:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(162, 57, 202, 0.5);
 }

 /* Logo & Brand */
 .brand-badge {
     font-size: 10px;
     text-transform: uppercase;
     letter-spacing: 2px;
     background: rgba(162, 57, 202, 0.1);
     color: var(--accent-color);
     padding: 5px 12px;
     border-radius: 50px;
     border: 1px solid var(--accent-color);
 }

 .footer-logo {
     font-weight: 900;
     font-size: 2.2rem;
 }

 .footer-logo span {
     color: var(--accent-color);
     text-shadow: 0 0 15px rgba(162, 57, 202, 0.3);
 }

 /* Nav & Icons */
 .footer-nav-title {
     font-weight: 800;
     font-size: 0.9rem;
     text-transform: uppercase;
     margin-bottom: 25px;
     color: #666;
 }

 .footer-nav-list {
     list-style: none;
     padding: 0;
 }

 .footer-nav-list li {
     margin-bottom: 12px;
 }

 .footer-nav-list a {
     color: #999;
     text-decoration: none;
     font-weight: 500;
     transition: 0.3s;
 }

 .footer-nav-list a:hover {
     color: #fff;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
 }

 .social-glass-links a {
     width: 45px;
     height: 45px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: var(--glass-bg);
     border: 1px solid var(--glass-border);
     border-radius: 12px;
     color: #fff;
     margin-right: 10px;
     transition: 0.4s;
 }

 .social-glass-links a:hover {
     background: #fff;
     color: #000;
     transform: rotate(-10deg) translateY(-5px);
 }

 /* Bottom */
 .footer-bottom {
     border-top: 1px solid var(--glass-border);
     padding-top: 30px;
 }

 .legal-badge {
     font-size: 11px;
     color: #555;
     border: 1px solid #222;
     padding: 4px 10px;
     border-radius: 6px;
     margin-left: 10px;
 }

 .copyright-text {
     font-size: 0.85rem;
     color: #555;
 }

 .copyright-text a {
     font-size: 0.85rem;
     color: #555;
 }