/* ========================================
   FICHIER CSS PRINCIPAL - CLINIQUE
   ======================================== */

:root {
    --primary-color: #167B9E; /* ✅ Teal principal */
    --secondary-color: #13C0DF; /* ✅ Violet secondaire */
    --accent-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --text-light: #7f8c8d;
}

/* ✅ FORCER LA VISIBILITÉ DU CONTENU */
body {
    overflow-x: hidden;
}

#preloader.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ✅ S'assurer que le contenu est visible */
main, header, footer {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* ✅ Correction slider section */
.slider-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
}

/* ✅ Correction sections */
section {
    position: relative;
    z-index: 1;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 200, 200, 0.3); /* ✅ Teal plus clair */
    border-top: 5px solid #167B9E; /* ✅ Teal */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #167B9E !important; /* ✅ Teal */
}

.nav-link.btn-primary {
    background: #167B9E; /* ✅ Teal */
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
}

.nav-link.btn-primary:hover {
    background: #00A6A6; /* ✅ Teal plus foncé */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 200, 0.3); /* ✅ Teal */
}

.language-selector .dropdown-toggle {
    background: transparent;
    border: 1px solid #ddd;
    color: #2c3e50;
}

.language-selector .dropdown-toggle:hover {
    background: #f8f9fa;
}

/* Section Title */
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

/* Specialité Card */
.specialite-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.specialite-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.specialite-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.specialite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(50, 166, 192, 0.8) 0%, rgba(6, 102, 137, 0.6) 100%); /* ✅ Violet + Teal */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.specialite-image:hover .overlay {
    opacity: 1;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.overlay-content p {
    color: #ecf0f1;
    margin-bottom: 15px;
}

.specialite-content {
    padding: 20px;
}

.specialite-content .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.specialite-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Doctor Card */
.doctor-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.doctor-image {
    position: relative;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.4s ease;
}

.doctor-card:hover .social-links {
    bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #167B9E; /* ✅ Teal */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #167B9E; /* ✅ Teal */
    color: #fff;
    transform: translateY(-3px);
}

.doctor-info {
    padding: 20px;
}

.doctor-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.doctor-info .specialite {
    display: inline-block;
    font-size: 0.9rem;
    color: #167B9E; /* ✅ Teal */
    font-weight: 600;
    margin-bottom: 10px;
}

/* Blog Card */
.blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card .meta {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.blog-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.blog-card .card-text {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.blog-card .btn-link {
    color: #167B9E; /* ✅ Teal */
    font-weight: 600;
    padding: 0;
    text-decoration: none;
}

.blog-card .btn-link:hover {
    color: #00A6A6; /* ✅ Teal plus foncé */
}

/* Footer */
.footer {
    margin-top: 50px;
    background: linear-gradient(135deg, #167B9E 0%, #13C0DF 100%); /* ✅ Teal + Violet */
}

.footer h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer p {
    color: #ecf0f1;
    font-size: 0.95rem;
}

.footer a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}

.footer .contact-info i {
    color: #fff;
    font-size: 1.1rem;
    width: 25px;
}

/* Breadcrumbs */
.breadcrumb-container {
    background: linear-gradient(90deg, #167B9E 0%, #13C0DF 100%); /* ✅ Teal + Violet */
    padding: 15px 0;
    border-radius: 5px;
    margin-bottom: 30px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #167B9E;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #167B9E;
    font-weight: 600;
}

/* Bouton flottant */
#backToTop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #167B9E 0%, #13C0DF 100%); /* ✅ Teal + Violet */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#backToTop i {
    font-size: 1.2rem;
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* RTL Support pour l'arabe */
[dir="rtl"] {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .navbar-nav {
    padding-right: 0;
    padding-left: auto;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="rtl"] .me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}


/* Swiper Slider Styles */
.slider-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: slideInDown 1s ease;
}

.slide-description {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    animation: slideInUp 1s ease 0.3s both;
}

.slide-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    animation: fadeIn 1s ease 0.6s both;
}

/* Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: -30px;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(52, 152, 219, 0.9);
    transform: scale(1.1);
}

.swiper-pagination {
    position: absolute;
    bottom: 30px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 10px;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .slider-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-btn {
        padding: 10px 30px;
        font-size: 1rem;
    }
}

/*Docteurs*/
.doctor-card {
    transition: all 0.3s ease;
}
.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.doctor-image {
    position: relative;
    overflow: hidden;
}
.doctor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}
.social-links {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s ease;
}
.doctor-card:hover .social-links {
    bottom: 20px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #167B9E;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #167B9E;
    color: #fff;
    transform: translateY(-3px);
}

/*Pages CMS*/

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50% { transform: scale(1.1); opacity: 0.4; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-title h1 {
    background: linear-gradient(135deg, #18637e, #00a3c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
.page-title h1:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #18637e, #00a3c8);
    border-radius: 2px;
}
.page-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 4s ease-in-out infinite; }
.animate-slide-up { animation: slideUp 0.8s ease-out forwards; }
.animate-scale-up { animation: scaleUp 0.6s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }

.hero-section .text-hero {
    color: #0c495e !important; /* Couleur personnalisée */
}
.hero-image-container { perspective: 1000px; }
.hero-image-border:hover { transform: scale(1.03); box-shadow: 0 25px 60px rgba(0, 200, 200, 0.5); transition: all 0.4s ease; }

/* Styles pour les images superposées */
.hero-image-1, .hero-image-2, .hero-image-3 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-1:hover, .hero-image-2:hover, .hero-image-3:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 20, 200, 0.5) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-image-2 {
        width: 220px !important;
        height: 180px !important;
        bottom: -10px !important;
    }
    
    .hero-image-3 {
        width: 180px !important;
        height: 150px !important;
        top: 10px !important;
    }
}

@media (max-width: 768px) {
    .hero-image-2, .hero-image-3 {
        position: absolute !important;
        width: 100% !important;
        height: auto !important;
        max-height: 150px !important;
        bottom: auto !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        margin: 10px auto !important;
    }
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(0, 200, 200, 0.3) !important;
}

.content-text {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}
.content-text h2, .content-text h3 {
    color: #00a7c8;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}
.content-text ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}
.content-text ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}
.content-text ul li:before {
    content: '•';
    color: #0099c8;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
}

/* =============== BLOG CONTENT STYLES =============== */
.blog-content-text {
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}
.blog-content-text h2, .blog-content-text h3 {
    color: #0099c8;
    margin: 2rem 0 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}
.blog-content-text h4 {
    color: #246b9a;
    margin: 1.5rem 0 1rem;
}
.blog-content-text p {
    margin-bottom: 1.5rem;
}
.blog-content-text ul, .blog-content-text ol {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}
.blog-content-text ul li, .blog-content-text ol li {
    margin-bottom: 0.75rem;
}
.blog-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-content-text blockquote {
    border-left: 4px solid #008cc8;
    background: #f8fdfe;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* =============== HOVER EFFECTS =============== */
.blog-hover-shadow {
    transition: all 0.3s ease;
}
.blog-hover-shadow:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.blog-hover-primary:hover {
    color: #00a7c8 !important;
}

/* =============== BADGE & AVATAR =============== */
.blog-avatar {
    background: linear-gradient(135deg, #00C8C8, #B469C0) !important;
}
.blog-badge.bg-primary {
    background: #009dc8 !important;
}

/* =============== content-text pages cms =============== */
.content-text { line-height: 1.8; color: #555; font-size: 1.1rem; }
.content-text h2 { color: #00a3c8; margin: 2rem 0 1.5rem; border-bottom: 3px solid #3b7e9d; padding-bottom: 0.5rem; }
.content-text h3 { color: #2b5e80; margin: 1.5rem 0 1rem; }

/* ========================================
   PAGE HEADER PREMIUM - GLOBAL (version corrigée)
   ======================================== */
.page-header-premium {
    position: relative;
    padding-top: 100px !important;      /* ✅ Réduit pour éviter double espace */
    padding-bottom: 50px !important;   /* ✅ Réduit pour équilibre visuel */
    background: linear-gradient(135deg, rgba(0, 157, 200, 0.92) 0%, rgba(44, 78, 111, 0.92) 100%);
    color: white;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    margin-top: 0 !important;          /* ✅ SUPPRIMÉ - compensation menu via body padding-top global */
}

/* Conteneur centré avec max-width */
.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contenu centré */
.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;                    /* ✅ CENTRAGE HORIZONTAL */
    text-align: center;                /* ✅ ALIGNEMENT TEXTE */
}

/* Titre optimisé */
.page-header-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Sous-titre optimisé */
.page-header-subtitle {
    font-size: 1.45rem;
    opacity: 0.95;
    max-width: 700px;
    line-height: 1.65;
    margin: 1.2rem auto 2rem;          /* ✅ CENTRÉ AVEC MARGIN AUTO */
}

/* Breadcrumbs - CONTENEUR DÉDIÉ */
.page-header-breadcrumbs {
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
}

/* Breadcrumbs stylisés */
.breadcrumb-premium {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* ✅ Support Safari */
    border-radius: 50px !important;
    padding: 8px 28px !important;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.05rem;
    font-weight: 500;
}

.breadcrumb-premium .breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-premium .breadcrumb-item + .breadcrumb-item::before {
    content: "" !important; /* ✅ SUPPRIMÉ - on utilise des icônes personnalisées */
    display: none !important;
}

.breadcrumb-premium .breadcrumb-item:not(:last-child)::after {
    content: ""; /* Font Awesome chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9em;
}

.breadcrumb-premium .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-premium .breadcrumb-item a:hover {
    color: white !important;
    transform: translateX(2px);
}

.breadcrumb-premium .breadcrumb-item.active {
    color: white !important;
    font-weight: 600;
    opacity: 1;
}

/* Décoratifs - Cercles flottants */
.page-header-premium::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    z-index: 0;
    animation: float 12s ease-in-out infinite;
}

.page-header-premium::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -70px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite reverse;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(15px); }
    50% { transform: translateY(-30px) translateX(0); }
    75% { transform: translateY(-20px) translateX(-15px); }
}

/* Responsive - Tablettes */
@media (max-width: 992px) {
    .page-header-title {
        font-size: 2.8rem;
    }
    .page-header-subtitle {
        font-size: 1.3rem;
        max-width: 650px;
    }
    .breadcrumb-premium {
        padding: 7px 24px !important;
        font-size: 1rem;
    }
    .page-header-premium::before {
        width: 190px;
        height: 190px;
        top: -40px;
        right: -50px;
    }
    .page-header-premium::after {
        width: 170px;
        height: 170px;
        bottom: -75px;
        left: -60px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .page-header-premium {
        padding-top: 95px !important;
        padding-bottom: 45px !important;
        border-radius: 0 0 35px 35px !important;
    }
    .page-header-title {
        font-size: 2.4rem;
        line-height: 1.25;
    }
    .page-header-subtitle {
        font-size: 1.2rem;
        max-width: 95%;
        line-height: 1.6;
        margin: 1rem auto 1.8rem;
    }
    .page-header-breadcrumbs {
        margin-top: 1.5rem;
    }
    .breadcrumb-premium {
        padding: 8px 22px !important;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    .breadcrumb-premium .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
        font-size: 0.85em;
    }
    .page-header-premium::before,
    .page-header-premium::after {
        display: none; /* ✅ Désactiver éléments décoratifs sur mobile */
    }
}

/* Responsive - Très petit écran */
@media (max-width: 480px) {
    .page-header-title {
        font-size: 2.1rem;
    }
    .page-header-subtitle {
        font-size: 1.1rem;
    }
    .breadcrumb-premium {
        padding: 7px 18px !important;
        font-size: 0.9rem;
    }
    .breadcrumb-premium .breadcrumb-item:not(:last-child)::after {
        margin: 0 5px;
    }
}


.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1e85a5;
  --bs-btn-border-color: #1e85a5;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1b5b6f;
  --bs-btn-hover-border-color: #1b5b6f;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0aa0ca;
  --bs-btn-active-border-color: #0d6c92;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #308db8;
  --bs-btn-disabled-border-color: #0d94b9;
}

[dir="rtl"] .premium-list {
    padding-right: 20px;
    padding-left: 0;
}
[dir="rtl"] .premium-list li::before {
    right: -15px;
    left: auto;
}