/* ===== CHARTE GRAPHIQUE FÉMININE - EUROPE (Rose/Violet) ===== */
:root {
    --primary-pink: #ff69b4;
    /* Rose vif */
    --primary-violet: #52048d;
    /* Violet */
    --secondary-pink: #FFB6C1;
    /* Rose clair */
    --secondary-violet: #DDA0DD;
    /* Prune clair */
    --accent-pink: #FF1493;
    /* Rose profond */
    --accent-violet: #9370DB;
    /* Violet moyen */
    --light-pink: #FFF0F5;
    /* Rose très clair */
    --light-violet: #F8F4FF;
    /* Violet très clair */
    --dark-pink: #C71585;
    /* Rose foncé */
    --dark-violet: #4B0082;
    /* Violet foncé */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --primary: var(--primary-pink, #ff69b4);
    --secondary: var(--secondary-pink, #FFB6C1);
    --accent: var(--accent-pink, #FF1493);
    --light: var(--light-pink, #FFF0F5);
    --dark: var(--dark-pink, #C71585);
    --text: var(--dark-gray);
    --text-muted: var(--gray);
    --bg-light: var(--light-violet);
    --bg-dark: var(--dark-violet);
    --border: var(--light-gray);
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-dark: rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-decorative: 'Great Vibes', cursive;
}

/* ===== CHARTE GRAPHIQUE FÉMININE - CANADA (Rouge féminin) ===== */
body.region-ca,
.region-ca {
    --primary-pink: #E63946;
    /* Rouge corail */
    --primary-violet: #9D0208;
    /* Rouge bordeaux */
    --secondary-pink: #FFCCD5;
    /* Rose pâle */
    --secondary-violet: #FFB3C1;
    /* Rose saumon */
    --accent-pink: #D90429;
    /* Rouge vif */
    --accent-violet: #A4133C;
    /* Rouge cerise */
    --light-pink: #FFF0F3;
    /* Rose très clair */
    --light-violet: #FFECEF;
    /* Rouge très clair */
    --dark-pink: #A4133C;
    /* Rouge foncé */
    --dark-violet: #590D22;
    /* Bordeaux foncé */
    --primary: var(--primary-pink);
    --secondary: var(--secondary-pink);
    --accent: var(--accent-pink);
    --light: var(--light-pink);
    --dark: var(--dark-pink);
    --bg-light: var(--light-violet);
    --bg-dark: var(--dark-violet);
    --gradient: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
}

/* ===== BASE TYPOGRAPHY ===== */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Titres décoratifs */
.decorative-title {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Boutons */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}


/* Icônes dans les boutons */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1);
}

/* Style pour la navigation */
.navbar-brand {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

/* Style pour les cartes */
.card-title {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Style pour les témoignages */
.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Style pour les prix */
.price {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

/* Style pour les labels et badges */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.4em 0.8em;
}

/* Style pour les formulaires */
.form-control,
.form-select {
    font-family: var(--font-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* Style pour les alertes */
.alert {
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

/* Style pour les listes */
ul,
ol {
    padding-left: 1.5rem;
}

/* li {
    margin-bottom: 0.5rem;
} */

/* Style pour les blockquotes */
blockquote {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 1.25rem;
    color: #4a5568;
    border-left: 4px solid var(--primary-pink);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

/* Style pour les petites légendes */
.small,
small {
    font-size: 0.85rem;
    color: #718096;
}

/* ===== STYLES GÉNÉRAUX ===== */
.text-primary {
    color: var(--primary-violet) !important;
}

.text-primary-pink {
    color: var(--primary-pink) !important;
}

.bg-primary {
    background-color: var(--primary-violet);
}

.btn-primary {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.btn-outline-primary {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.btn-outline-primary:hover {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: #F8F9FA;
}

/* ===== NAVIGATION ===== */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    z-index: 1030;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    margin: 0 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-brand {
    padding: 0.5rem 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

/* Ajustement pour les boutons dans la navbar */
.navbar .btn {
    margin: 0 0.25rem;
    white-space: nowrap;
}

/* Ajustement pour le dropdown */
.navbar .dropdown-menu {
    margin-top: 0.5rem;
}

/* Ajustement pour l'avatar utilisateur */
.navbar .dropdown-toggle img,
.navbar .dropdown-toggle div {
    margin-right: 0.5rem;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    /* color: var(--dark-gray) !important; */
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-pink) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-pink) !important;
}

/* ===== HERO SECTION ===== */


/* Ajustement du conteneur pour le centrage vertical */
/* .hero-section>.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
} */

/* Ajustement pour la hauteur de la navbar fixe */
/* @media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
    }
} */

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    /* Suppression de l'effet parallax */
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-section p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 2;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* ===== HERO CHOICE CARDS ===== */
.hero-choice-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-choice-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-choice-icon {
    transition: all 0.3s ease;
}

.hero-choice-card:hover .hero-choice-icon {
    transform: scale(1.1);
}

.hero-choice-card .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-choice-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION CONTACT ===== */
#contact {
    padding: 5rem 0;
    background-color: var(--light-violet);
    position: relative;
    z-index: 1;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.contact-icon i {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    transform: scale(1.1);
}

.bg-pink-light {
    background-color: rgba(255, 105, 180, 0.1) !important;
}

.text-pink {
    color: var(--primary-pink) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.btn-outline-pink {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
    transition: all 0.3s ease;
}

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

.btn-outline-violet {
    color: var(--primary-violet);
    border-color: var(--primary-violet);
    transition: all 0.3s ease;
}

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

/* ===== SECTION CONTACT ===== */
#contact {
    background: var(--light-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#contact .container {
    position: relative;
    z-index: 2;
}

/* Cartes de contact */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.contact-icon.bg-pink-light {
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary-pink);
}

.contact-icon.bg-violet-light {
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary-violet);
}

.contact-card:hover .contact-icon {
    transform: scale(1.05);
}

.contact-card h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Boutons */
.btn-outline-pink {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2);
}

/* Les styles pour le bouton violet ont été supprimés pour utiliser uniquement le bouton rose */

/* Responsive */
@media (max-width: 767.98px) {
    #contact {
        padding: 3rem 0;
    }

    .contact-card {
        margin-bottom: 1.5rem;
    }
}

/* ===== STEPS SECTION ===== */
.step-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
    /* Changement ici */
    transform: none;
    /* Changement ici */
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.15);
}

.step-card.pulse {
    animation: pulse 1s ease-in-out;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-image img {
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.contact-info.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.contact-info i {
    color: var(--primary-pink);
}

/* ===== FOOTER ===== */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    z-index: 9999;
    max-width: 350px;
    border-left: 4px solid var(--primary-pink);
    animation: slideInRight 0.3s ease-out;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-info {
    border-left-color: var(--primary-pink);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-info .notification-content i {
    color: var(--primary-pink);
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: var(--light-gray);
    color: var(--dark-gray);
}

/* ===== BOUTON RETOUR EN HAUT ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    border: none;
}

.back-to-top i {
    font-size: 1.25rem;
    color: white;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* ===== AVATAR UTILISATEUR ===== */
.navbar .navbar-nav .nav-link img.rounded-circle {
    border: 2px solid var(--primary-pink) !important;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover img.rounded-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

/* ===== TOOLTIPS PERSONNALISÉS ===== */
.step-tooltip {
    position: fixed;
    background: var(--primary-pink);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
    animation: fadeIn 0.3s ease-out;
    max-width: 300px;
    text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        /* padding-top: 60px; */
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-choice-card {
        margin-bottom: 1rem;
    }

    .service-card,
    .step-card,
    .contact-info {
        margin-bottom: 1rem;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
}

.shadow-pink {
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
}

.shadow-violet {
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
}

/* ===== SCROLLBAR PERSONNALISÉE ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}

/* ===== EFFETS DE SURVOL ===== */
.hover-lift {
    transition: transform 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== NAVBAR TOGGLER ===== */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler.active .navbar-toggler-icon {
    transform: rotate(90deg);
}

.navbar-toggler-icon {
    transition: transform 0.3s ease;
}

/* ===== COUNTER ANIMATION ===== */
.counter {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-pink);
}

/* ===== IMAGE LAZY LOADING ===== */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* ===== CARTES PRESTATAIRES ===== */
.prestataire-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prestataire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* En-tête avec image */
.prestataire-cover {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.prestataire-card:hover .prestataire-image {
    transform: scale(1.05);
}

.prestataire-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: white;
}

.prestataire-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Badge de notation */
.rating-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
}

.rating-stars {
    color: #FFD700;
    font-size: 0.8rem;
}

.rating-count {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Badge en vedette */
.badge-featured {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Contenu de la carte */
.prestataire-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Spécialités */
.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.specialty-badge {
    background: rgba(108, 99, 255, 0.1);
    color: #8B80F9;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.prestataire-card:hover .specialty-badge {
    background: var(--primary);
    color: white;
    border-color: transparent;
}

/* Description */
.prestataire-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Standard property */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

/* Pied de carte */
.prestataire-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prestataire-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.prestataire-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.btn-prestataire {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-prestataire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
    color: white;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.page-item .page-link {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Animation pour les cartes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prestataire-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

/* Délai d'animation pour chaque carte */
.prestataire-card:nth-child(1) {
    animation-delay: 0.1s;
}

.prestataire-card:nth-child(2) {
    animation-delay: 0.2s;
}

.prestataire-card:nth-child(3) {
    animation-delay: 0.3s;
}

.prestataire-card:nth-child(4) {
    animation-delay: 0.4s;
}

.prestataire-card:nth-child(5) {
    animation-delay: 0.5s;
}

.prestataire-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Réactivité */
@media (max-width: 1199.98px) {
    .prestataire-cover {
        height: 200px;
    }
}

@media (max-width: 991.98px) {
    .prestataire-cover {
        height: 180px;
    }

    .prestataire-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .prestataire-cover {
        height: 220px;
    }

    .prestataire-card {
        margin-bottom: 1.5rem;
    }

    .pagination {
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .prestataire-cover {
        height: 200px;
    }

    .prestataire-name {
        font-size: 1.25rem;
    }

    .btn-prestataire {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .prestataire-price {
        font-size: 1.1rem;
    }
}

/* ===== DASHBOARD STYLES ===== */
.page-container {
    padding: 2.2rem;
    max-width: 100%;
}

.dashboard-header {
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

.dashboard-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--dark-violet);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.dashboard-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-violet));
    border-radius: 2px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1px solid rgba(255, 105, 180, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-violet));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-pink), var(--light-violet));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);
}

.stat-details {
    flex: 1;
}

.stat-value {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-violet);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== */
/* POURQUOI CHOISIR NOUS - REDESIGNED */
/* ==================== */

.why-choose-section {
    background: linear-gradient(135deg, rgba(248, 244, 255, 0.7), rgba(255, 240, 245, 0.7));
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 0 L20 10 L10 20 L0 10 Z" fill="rgba(82, 4, 141, 0.03)" stroke="rgba(82, 4, 141, 0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds)"/></svg>');
    opacity: 0.5;
}

.why-choose-section .display-4 {
    color: var(--primary-violet);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.why-choose-section .display-4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-violet));
    border-radius: 2px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 4, 141, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(82, 4, 141, 0.15);
    border-color: rgba(82, 4, 141, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-pink), var(--light-violet));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(82, 4, 141, 0.15);
    transition: all 0.3s ease;
    color: var(--primary-pink);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(82, 4, 141, 0.25);
    color: var(--primary-violet);
}

.feature-content h5 {
    color: var(--dark-violet);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.image-container img {
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(255, 105, 180, 0.1));
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(82, 4, 141, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    border: 2px solid white;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==================== */
/* TRUST STATISTICS - REDESIGNED */
/* ==================== */

/* Trust Statistics Section */
.trust-stats-section {
    background: linear-gradient(135deg, var(--primary-violet), #3a0267);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.trust-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.3;
}

.trust-stats-section .section-header h2 {
    color: white;
    position: relative;
    display: inline-block;
}

.trust-stats-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 2px;
}

.trust-stats-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-pink);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 105, 180, 0.2);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
    line-height: 1.2;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation for stat numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 0.5s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .trust-stats-section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .trust-stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* CTA Banner Section */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-pink), #ff1493);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta {
    background: linear-gradient(135deg, var(--primary-violet), #3a0267);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(82, 4, 141, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(82, 4, 141, 0.6);
}

.btn-cta:active {
    transform: translateY(-1px);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline:active {
    transform: translateY(-1px);
}

/* Responsive adjustments for CTA Banner */
@media (max-width: 768px) {
    .cta-banner {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta,
    .btn-cta-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* ==================== */
/* TÉMOIGNAGES CLIENTS */
/* ==================== */

.testimonials-section {
    background: linear-gradient(135deg, #fff0f5, #f8f4ff);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #f8f4ff, #fff0f5);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(82, 4, 141, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
}

#contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#contact .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-violet);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

#contact .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 2px;
}

#contact .section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(82, 4, 141, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-pink);
    background: rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* ==================== */
/* FUTURISTIC FOOTER */
/* ==================== */

.futuristic-footer {
    background: linear-gradient(135deg, var(--dark-violet), var(--primary-violet));
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.futuristic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.footer-site-name {
    color: white;
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-pink);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.footer-heading {
    color: white;
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.footer-links a::before {
    content: "›";
    margin-right: 0.5rem;
    color: var(--primary-pink);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-pink);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-payment {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.payment-method {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.payment-method:hover {
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .futuristic-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-payment {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .futuristic-footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-site-name {
        font-size: 1.3rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-content .row>div {
        margin-bottom: 2rem;
    }

    .footer-content .row>div:last-child {
        margin-bottom: 0;
    }
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    color: white;
    background: transparent;
}

.contact-card:hover .contact-icon::after {
    opacity: 1;
}

.contact-card h5 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-outline-pink {
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-pink:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.btn-outline-pink:hover::before {
    width: 100%;
}

/* Responsive adjustments for Contact Section */
@media (max-width: 992px) {
    #contact {
        padding: 4rem 0;
    }

    #contact .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 3rem 0;
    }

    #contact .section-header h2 {
        font-size: 2rem;
    }

    #contact .section-header p {
        font-size: 1rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .contact-card {
        margin-bottom: 1.5rem;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 4, 141, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(82, 4, 141, 0.15);
    border-color: rgba(82, 4, 141, 0.3);
}

.testimonial-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    position: relative;
    flex-grow: 1;
}

.testimonial-text::before {
    content: "";
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--primary-pink);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(82, 4, 141, 0.1);
    background: rgba(255, 255, 255, 0.5);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
    margin-right: 1rem;
}

.author-info h5 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--dark-violet);
    margin: 0 0 0.25rem 0;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ==================== */
/* PRESTATAIRES À LA UNE (FEATURED PROVIDERS) */
/* ==================== */

.featured-providers {
    background: linear-gradient(135deg, var(--primary-violet), var(--primary-pink));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.featured-providers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 0 L20 5 L20 15 L10 20 L0 15 L0 5 Z" fill="none" stroke="rgba(255, 255, 255, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.6;
}

.featured-providers .container {
    position: relative;
    z-index: 1;
}

/* Provider Card */
.provider-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 4, 141, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.provider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(82, 4, 141, 0.15);
    border-color: rgba(82, 4, 141, 0.3);
}

/* Provider Image */
.provider-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(82, 4, 141, 0.1);
}

.provider-image.bg-light {
    background: linear-gradient(135deg, var(--light-pink), var(--light-violet));
}

/* New Provider Image Container Styles */
.provider-image-container {
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: transparent;
}

.provider-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: 0;
}

.provider-image-foreground {
    position: relative;
    z-index: 1;
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: none;
    outline: none;
}

.provider-image-container .provider-image-foreground.bg-light,
.provider-image-container .provider-image-bg.bg-light {
    background: linear-gradient(135deg, var(--light-pink), var(--light-violet));
}

/* Provider Badge */
.provider-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(82, 4, 141, 0.2);
    z-index: 2;
}

/* Provider Content */
.provider-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.provider-name {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-violet);
    margin-bottom: 0.5rem;
}

.provider-specialty {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Provider Rating */
.provider-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating-stars {
    color: #FFD700;
    margin-right: 0.75rem;
}

.rating-value {
    font-weight: 600;
    color: var(--dark-violet);
}

/* Provider Stats */
.provider-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(82, 4, 141, 0.1);
    border-bottom: 1px solid rgba(82, 4, 141, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-violet);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Provider Button */
.provider-content .btn-primary {
    margin-top: auto;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    border: none;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.provider-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(82, 4, 141, 0.3);
}

/* Empty State */
.featured-providers .col-12.text-center.text-white p {
    color: var(--dark-violet) !important;
    font-weight: 500;
}

/* Dashboard Cards */
.dashboard-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1px solid rgba(255, 105, 180, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.card-header {
    padding: 1.25rem 1.5rem;
}

.card-header h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--dark-violet);
    margin: 0;
    font-size: 1.25rem;
}

.card-body {}

/* ===== NAV LINKS ===== */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* ===== BADGE STYLES ===== */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

.badge.bg-gradient-pink-violet {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    color: white;
}


/* Appointment Items */
.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.appointment-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.1);
}

.appointment-time {
    text-align: center;
    margin-right: 1rem;
    min-width: 80px;
}

.appointment-time .time {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    display: block;
    line-height: 1.2;
}

.appointment-time .date {
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
}

.appointment-details {
    flex: 1;
    padding: 0 1rem;
}

.appointment-details h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--dark-gray);
    font-size: 1rem;
}

.client-name {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0 0 0.5rem 0;
}

.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-confirmed {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.status-badge.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.status-badge.status-completed {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    color: var(--primary-pink);
    border: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-icon:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

/* Reviews Section */
.review-item {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.review-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.1);
}

.review-item img {
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.review-item:hover img {
    transform: scale(1.05);
}

.rating .fas.fa-star {
    color: #FFD700;
}

/* ===== APPOINTMENT STYLES ===== */
.appointment-item {
    transition: all 0.3s ease;
}

.appointment-item:hover {
    background-color: rgba(108, 99, 255, 0.05);
}

.appointment-item:hover td {
    background-color: transparent;
}

.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-confirmed {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-completed {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dropdown-menu {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateX(3px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.table th {
    font-weight: 600;
    color: var(--dark-violet);
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table td {
    vertical-align: middle;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(108, 99, 255, 0.03);
}

/* Responsive adjustments for appointments */
@media (max-width: 768px) {
    .dashboard-card .card-body {
        padding: 1rem;
    }

    .table-responsive {
        font-size: 0.85rem;
    }

    .table th,
    .table td {
        padding: 0.5rem;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(108, 99, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::before {
    transform: translateX(0);
}

.nav-link.active {
    color: white;
    background: rgba(108, 99, 255, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    right: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-pink);
    box-shadow: 0 0 8px var(--primary-pink);
}

.nav-icon {
    width: 24px;
    text-align: center;
    margin-right: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 1;
    color: rgba(255, 255, 255, 0.7);
}

.nav-link:hover .nav-icon {
    transform: scale(1.2);
    color: var(--primary-pink);
}

.nav-text {
    flex: 1;
    z-index: 1;
}

.nav-link .badge {
    z-index: 1;
    font-size: 0.7rem;
    padding: 0.3em 0.6em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:hover .badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .offcanvas {
        width: 260px;
    }

    .nav-link {
        padding: 0.75rem 1rem;
    }

    .nav-text {
        font-size: 0.95rem;
    }

    .offcanvas-header .logo-text {
        font-size: 1.2rem;
    }
}

.rating .fas.fa-star.text-muted {
    color: #E2E8F0;
}

/* Charts */
.stat-chart {
    height: 200px;
    margin-bottom: 1.5rem;
    position: relative;
}

.chart-container {
    position: relative;
    height: 200px;
    width: 100%;
}

/* Time Filters */
.time-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-time {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 105, 180, 0.2);
    color: var(--gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-time:hover {
    background: rgba(255, 105, 180, 0.1);
    color: var(--primary-pink);
}

.btn-time.active {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

/* No Data State */
.no-data {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray);
}

.no-data i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 105, 180, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 105, 180, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
    }
}

.stat-card.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .appointment-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .appointment-time {
        margin-right: 0;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .appointment-time .time {
        margin-right: 0.5rem;
    }

    .appointment-details {
        padding: 1rem 0 0 0;
        width: 100%;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .time-filters {
        width: 100%;
        justify-content: center;
    }

    .btn-time {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .dashboard-title {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 1rem;
    }

    .appointment-item {
        padding: 0.75rem;
    }

    .nav-text {
        font-size: 0.85rem;
    }
}


/* Style des cartes prestataire */
.prestataire-card {
    background: var(--darker);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.prestataire-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.prestataire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 99, 255, 0.9);
}

.prestataire-card:hover::after {
    opacity: 0.1;
}

/* Animation au survol */
.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.02);
}


/* ===== HERO SECTION FUTURISTE ===== */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.holographic-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    opacity: 0.6;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.7), rgba(255, 105, 180, 0.5));
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-gradient-link:hover {
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-violet));
}

/* Cartes en verre (glassmorphism) */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Boutons holographiques */
.btn-holographic {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-holographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: holographic 3s infinite linear;
}

.btn-holographic-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.btn-holographic-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Icônes néon */
.neon-icon {
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.7), 0 0 20px rgba(255, 105, 180, 0.5);
    transition: all 0.3s ease;
}

.hover-transform {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-transform:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Animation holographique */
@keyframes holographic {
    0% {
        transform: rotate(30deg) translate(-30%, -30%);
    }

    100% {
        transform: rotate(30deg) translate(30%, 30%);
    }
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

/* Styles pour les images de coiffures afro en arrière-plan */
.afro-hair-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hair-style {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: grayscale(30%) brightness(1.2);
    mix-blend-mode: overlay;
    animation: float 15s infinite ease-in-out;
}

.hair-style-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hair-style-2 {
    top: 60%;
    left: 70%;
    animation-delay: 5s;
    width: 250px;
    height: 250px;
}

.hair-style-3 {
    top: 30%;
    left: 40%;
    animation-delay: 10s;
    width: 200px;
    height: 200px;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* ===== NOUVELLE SECTION HERO ===== */
.hero-section {
    /* background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(255, 105, 180, 0.9)); */
    background: linear-gradient(135deg, var(--dark-violet), var(--primary-violet));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.hero-content {
    margin: 0 auto;
    padding: 2rem;
}

.hero-images-container {
    position: relative;
    height: 100vh;
    /* min-height: 600px; */
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 10px 0 0 10px;
}

.hero-image:nth-child(1) {
    background-image: url('https://images.pexels.com/photos/3625608/pexels-photo-3625608.jpeg');
    animation: fadeCycle 12s infinite;
}

.hero-image:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e');
    animation: fadeCycle 12s infinite 4s;
}

.hero-image:nth-child(3) {
    background-image: url('https://cdn.pixabay.com/photo/2018/01/14/09/22/african-3081839_1280.jpg');
    animation: fadeCycle 12s infinite 8s;
}

@keyframes fadeCycle {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    53% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-images-container {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content {
        padding-bottom: 3rem;
        text-align: center;
    }

    .text-start {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    h1.display-3 {
        font-size: 2.5rem;
    }
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 10px 0 10px 0;
}

/* Styles pour la galerie d'images - Mobile */
@media (max-width: 992px) {
    .hero-images-container {
        height: 200px !important;
        width: 100% !important;
        margin-bottom: 15px;
    }

    .col-6 {
        width: 100% !important;
        padding: 0 10px;
    }

    .d-flex.col-md-12 {
        flex-direction: column;
    }

    .col-lg-5.p-0 {
        padding: 0 15px !important;
    }
}

@media (max-width: 576px) {
    .hero-images-container {
        height: 180px !important;
    }
}

/* Styles pour la carte prestataire horizontale */
.prestataire-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestataire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Adaptation responsive */
@media (max-width: 768px) {
    .prestataire-card .row {
        flex-direction: column;
    }

    .prestataire-card .col-md-5 {
        height: 200px;
        width: 100%;
    }

    .prestataire-card .col-md-7 {
        width: 100%;
    }
}

/* Styles pour les badges de spécialités */
.prestataire-card .badge {
    background-color: rgba(138, 43, 226, 0.1);
    color: var(--dark-violet);
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    margin: 0.1em;
}

/* Styles pour la disposition horizontale constante */
.prestataire-card {
    transition: all 0.3s ease;
}

.prestataire-card .row {
    display: flex;
    flex-direction: row !important;
    /* Force la disposition horizontale */
}

/* Colonne image */
.prestataire-card .col-4 {
    min-width: 120px;
    /* Largeur minimale */
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-violet));
}

/* Colonne contenu */
.prestataire-card .col-8 {
    flex-grow: 1;
}

/* Adaptation pour très petits écrans */
@media (max-width: 400px) {
    .prestataire-card .col-4 {
        min-width: 100px;
    }

    .prestataire-card img {
        height: 70px !important;
        width: 70px !important;
    }
}

/* Style pour la date */
.prestataire-card .badge.bg-primary {
    background-color: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    color: white !important;
    font-size: 0.7rem;
}

/* Floating shapes animation */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 50%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Styles pour le formulaire multi-étapes */
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: bold;
    border: 4px solid white;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: var(--primary-violet);
    color: white;
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
}

.step.active .step-label {
    color: var(--dark-violet);
    font-weight: 500;
}

.step-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour le sélecteur de préférences */
.preference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preference-option {
    position: relative;
    cursor: pointer;
}

.preference-option input {
    position: absolute;
    opacity: 0;
}

.preference-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(138, 43, 226, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.preference-option input:checked+label {
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 0 2px var(--primary-violet);
}

.preference-option img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

/* Range slider */
.range-slider {
    margin: 1.5rem 0;
}

.range-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    /* Standard property */
    background: linear-gradient(to right, var(--primary-pink), var(--primary-violet));
    border-radius: 4px;
    outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    border: 3px solid var(--primary-violet);
    cursor: pointer;
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Styles pour les icônes de template par défaut */
.template-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== */
/* POTENTIEL DE REVENUS */
/* ==================== */

.earning-potential {
    background: linear-gradient(135deg, #f8f4ff, #fff0f5);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.earning-potential::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="coins" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255, 105, 180, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23coins)"/></svg>');
    opacity: 0.3;
}

.earning-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.earning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
}

.earning-icon {
    color: var(--primary-pink);
    transition: all 0.3s ease;
}

.earning-card:hover .earning-icon {
    transform: scale(1.1);
    color: var(--primary-violet);
}

.earning-illustration,
.earning-benefits {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.earning-illustration:hover,
.earning-benefits:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.1);
}

.earning-result {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    transition: all 0.3s ease;
}

.earning-result:hover {
    transform: scale(1.02);
}

.range-slider {
    position: relative;
}

.range-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-pink), var(--primary-violet));
    border-radius: 4px;
    outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    border: 3px solid var(--primary-violet);
    cursor: pointer;
    transition: all 0.3s ease;
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* Correction du warning d'apparence */
.range-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    /* Standard property */
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary-pink), var(--primary-violet));
    border-radius: 4px;
    outline: none;
}

/* Styles pour le conteneur d'image des templates */
.template-image-container {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.template-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preference-option:hover .template-image-container img {
    transform: scale(1.05);
}

/* Masquer la navigation mobile sur desktop */
.mobile-step-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-step-nav {
        display: flex;
    }
}


.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* Animation pour les changements d'état */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-requirements li {
    animation: fadeIn 0.3s ease;
}


.btn-gradient {
    background: linear-gradient(to right, var(--primary-pink), var(--primary-violet));
    color: white;
    border: none;
}

/* Responsive */
@media (max-width: 576px) {
    .category-card {
        padding: 0.75rem;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .category-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
}

.bg-website {
    background: linear-gradient(135deg, var(--dark-violet), var(--primary-violet));
}

/* ==================== */
/* POURQUOI CHOISIR NOUS */
/* ==================== */

.why-choose-us {
    background: linear-gradient(135deg, rgba(248, 244, 255, 0.7), rgba(255, 240, 245, 0.7));
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 0 L20 10 L10 20 L0 10 Z" fill="rgba(82, 4, 141, 0.03)" stroke="rgba(82, 4, 141, 0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds)"/></svg>');
    opacity: 0.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 4, 141, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(82, 4, 141, 0.1);
    border-color: rgba(82, 4, 141, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-pink), var(--light-violet));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(82, 4, 141, 0.1);
}

.feature-content h5 {
    color: var(--dark-violet);
    margin-bottom: 0.5rem;
}

.image-why {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-why img {
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.image-why:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(255, 105, 180, 0.1));
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(82, 4, 141, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us {
        padding: 3rem 0;
    }

    .floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1.5rem auto 0;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }

    .image-container {
        border-radius: 15px;
    }
}

/* ===== OFFCANVAS MENU STYLES ===== */
.offcanvas {
    /* background: linear-gradient(180deg, #4b0082 0%, #16213e 100%); */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 280px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.offcanvas-header .brand {
    display: flex;
    align-items: center;
}

.offcanvas-header .logo {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.offcanvas-header .logo:hover {
    transform: scale(1.02);
}

.offcanvas-header .logo-placeholder {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

.offcanvas-header .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, #fff 0%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.offcanvas-body {
    padding: 0;
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}