﻿
/* ========== wwwroot/css/home.css ========== */
/* ========================================
   HOME PAGE - Premium Design System
   Styles coh�rents avec le menu moderne
   ======================================== */

/* Emp�cher le d�passement horizontal sur mobile */
.container,
.container-fluid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ========================================
   HERO SECTION - Compact Design
   ======================================== */

.hero-home-compact {
    position: relative;
    padding: 1rem 1rem;
    background: linear-gradient(135deg, 
        #f5e6d3 0%,
        #f9f0e6 50%,
        #f5e6d3 100%
    );
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid #e8d4bb;
    /* LCP optimization */
    content-visibility: auto;
    contain: layout style;
}

/* Spacing for hero icon wrapper */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    margin-bottom: 0;
    margin-left: -20px; /* Rapprocher l'ic�ne du texte */
}

/* Desktop: ensure icon column is vertically centered with text */
@media (min-width: 768px) {
    .hero-home-compact .col-auto {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-text-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-right: 0; /* R�duire l'espace � droite du texte */
    }
}

/* Ensure proper spacing between text and button on desktop */
.hero-home-compact .row.mt-4 {
    margin-top: 1.5rem !important;
}

/* Premier hero-home-compact : angles du bas non arrondis pour connexion avec bandeau */
.hero-home-compact:first-of-type {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.hero-home {
    position: relative;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, 
        #f5e6d3 0%,
        #f9f0e6 50%,
        #f5e6d3 100%
    );
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

position: relative;.hero-content {
    position: relative;
    z-index: 1;
}

/* Ic�ne Hero avec effets */
.hero-icon-wrapper {
    position: relative;
    display: inline-block;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 40px var(--premium-shadow);
    position: relative;
    z-index: 3;
    transform: translateZ(0);
    contain: layout style paint;
}

.hero-icon i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title-compact {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--premium-primary) !important;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 1.6rem;
    text-align: center;
}

.hero-title {
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 2.5rem !important;
}

.brand-highlight {
    font-family: 'Playfair Display', Georgia, serif;
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-style: italic;
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--premium-shadow) 0%,
        var(--premium-shadow) 100%
    );
    z-index: -1;
    border-radius: 3px;
}

.hero-subtitle-compact {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    color: var(--premium-primary) !important;
    font-weight: 500;
    margin: 0 auto;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-align: center;
}

hero-subtitle-compact-nomargin {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    color: var(--premium-primary) !important;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

    .hero-subtitle {
        font-size: 1.1rem;
        color: #6c757d;
        font-weight: 400;
        max-width: 600px;
        margin: 0 auto;
    }
    /* Feature Badges */
    .hero-features {
        margin: 1.5rem 0;
    }

    .feature-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1rem;
        background: white;
        border: 2px solid var(--premium-shadow);
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, border-color 0.3s ease;
        font-weight: 600;
        color: #2c3e50;
        font-size: 0.9rem;
        transform: translateZ(0);
        contain: layout style;
    }

        .feature-badge:hover,
        .feature-badge:focus {
            will-change: transform;
        }

        .feature-badge i {
            color: var(--premium-primary);
            font-size: 1rem;
        }

        .feature-badge:hover {
            transform: translateY(-5px) scale(1.05) translateZ(0);
            border-color: var(--premium-primary);
        }
    /* Bouton Hero Compact */
    .btn-hero-compact {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.625rem 1.5rem;
        background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 100%);
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 6px 20px rgba(27, 110, 194, 0.4);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        letter-spacing: 0.3px;
        transform: translateZ(0);
        contain: layout style;
    }

    .btn-hero-compact:hover,
    .btn-hero-compact:focus {
        will-change: transform;
    }
    
    /* Afficher les ic�nes sur le bouton hero compact */
    .btn-hero-compact .icon-left,
    .btn-hero-compact .icon-right {
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .btn-hero-compact:hover .icon-left {
        transform: translateX(-3px);
    }
    
    .btn-hero-compact:hover .icon-right {
        transform: translateX(3px);
    }

    .btn-hero-compact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100% );
        transform: translateX(-100%);
        transition: transform 0.5s ease;
        will-change: transform;
    }

    .btn-hero-compact:hover::before {
        transform: translateX(100%);
    }

    .btn-hero-compact:hover {
        transform: translateY(-4px) scale(1.03) translateZ(0);
        color: white;
    }

        .btn-hero-compact:hover::after {
            animation: none;
            opacity: 1;
        }

    .btn-hero-compact:focus {
        outline: 3px solid rgba(27, 110, 194, 0.5);
        outline-offset: 3px;
    }

        .btn-hero-compact:focus::after {
            animation: none;
        }

    .btn-hero-compact:active {
        transform: translateY(-2px) scale(1.01) translateZ(0);
    }
    /* Bouton Hero Premium */
    .btn-hero {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.75rem;
        background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 100%);
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
        box-shadow: 0 8px 20px var(--premium-shadow);
        position: relative;
        overflow: hidden;
        transform: translateZ(0);
        contain: layout style;
    }

        .btn-hero:hover,
        .btn-hero:focus {
            will-change: transform;
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100% );
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            will-change: transform;
        }

        .btn-hero:hover::before {
            transform: translateX(100%);
        }

        .btn-hero:hover {
            transform: translateY(-5px) scale(1.05) translateZ(0);
            color: white;
        }

        .btn-hero i:last-child {
            transition: transform 0.3s ease;
            will-change: transform;
        }

        .btn-hero:hover i:last-child {
            transform: translateX(5px);
        }
    /* ========================================
   SECTION TITLES - �l�gant et Moderne
   ======================================== */

    .section-title-wrapper-left {
        text-align: left;
        position: relative;
        padding: 0;
        margin-bottom: 0.75rem;
    }

    .section-title-wrapper {
        text-align: center;
        position: relative;
        padding: 2rem 0;
    }

    .section-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 30px var(--premium-shadow);
        transform: translateZ(0);
        contain: layout style paint;
    }

        .section-icon i {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 1.85rem;
        font-weight: 700;
        color: #1a3a4f;
        margin-bottom: 0;
        letter-spacing: 0.5px;
        line-height: 1.3;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .section-title-highlight-left i {
            color: var(--premium-primary);
            font-size: 1.75rem;
            filter: drop-shadow(0 2px 4px rgba(27, 110, 194, 0.2));
        }

    .section-title-highlight {
        font-size: 1.75rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0;
        letter-spacing: -0.3px;
        line-height: 1.3;
        text-align: center;
    }

        .section-title-highlight i {
            color: #2c3e50;
            margin-right: 0.5rem;
            font-size: 1.5rem;
            vertical-align: middle;
        }

    .section-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }

    .section-line {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent 0%, var(--premium-primary) 50%, transparent 100% );
        margin: 0 auto;
        border-radius: 2px;
    }
    /* ========================================
   CAROUSEL CONTAINER - Premium
   ======================================== */

    .categories-section {
        margin: 0 !important;
        padding: 0 !important;
        /* Optimize rendering for below-the-fold content */
        content-visibility: auto;
        contain-intrinsic-size: auto 500px;
    }

        .categories-section .container-fluid {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

    .carousel-container {
        background: linear-gradient(135deg, #f5e6d3 0%, #f9f0e6 50%, #f5e6d3 100% );
        border: 2px solid #e8d4bb;
        border-radius: 0 0 1.5rem 1.5rem;
        border-top: none;
        overflow: hidden;
        position: relative;
        contain: layout style;
        /* Disable transitions to prevent CLS */
        min-height:100px; /* Prevent CLS during carousel loading */
    }

        .carousel-container:hover {
            /* No transform or box-shadow changes to prevent CLS */
            border-color: #e8d4bb !important;
        }

        .carousel-container .card,
        .carousel-container .shadow-sm {
            box-shadow: none !important;
        }

        .carousel-container:hover .card,
        .carousel-container:hover .shadow-sm {
            box-shadow: none !important;
        }

        .carousel-container .section-title-wrapper-left {
            padding-top: 0.5rem;
            padding-left: 0;
            margin-bottom: 1rem;
        }

        .carousel-container .section-title-highlight-left {
            margin-left: 115px !important;
            font-weight: 700;
            color: #1a3a4f;
            margin-bottom: 0;
            letter-spacing: 0.5px;
            line-height: 1.3;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

            .carousel-container .section-title-highlight-left i {
                color: var(--premium-primary);
                font-size: 1.75rem;
                filter: drop-shadow(0 2px 4px rgba(27, 110, 194, 0.2));
            }

        .carousel-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent 0%, #d4a574 50%, transparent 100% );
        }

        .carousel-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent 0%, #d4a574 50%, transparent 100% );
        }
        /* Boutons de navigation du carrousel avec couleurs du th�me */
        .carousel-container .btn-outline-primary {
            color: white;
            border: 2px solid var(--premium-primary);
            background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 100%);
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            padding: 0.5rem 0.75rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 12px rgba(27, 110, 194, 0.3);
            will-change: transform;
            transform: translateZ(0);
        }

            .carousel-container .btn-outline-primary:hover {
                color: white;
                background: linear-gradient(135deg, var(--premium-secondary) 0%, var(--premium-primary) 100%);
                border-color: var(--premium-secondary);
                transform: translateY(-3px) scale(1.05) translateZ(0);
            }

            .carousel-container .btn-outline-primary:active,
            .carousel-container .btn-outline-primary:focus {
                color: white;
                background: var(--premium-secondary);
                border-color: var(--premium-secondary);
                box-shadow: 0 0 0 0.3rem rgba(27, 110, 194, 0.25);
                transform: translateY(-2px) translateZ(0);
            }
        /* Indicateurs du carrousel avec couleurs du th�me */
        .carousel-container .carousel-indicators button {
            background-color: var(--theme-primary-rgba-03);
            border: 2px solid var(--premium-primary);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: transform 0.3s ease, background-color 0.3s ease;
            will-change: transform;
            transform: translateZ(0);
        }

            .carousel-container .carousel-indicators button.active {
                background-color: var(--premium-primary);
                transform: scale(1.2) translateZ(0);
            }

            .carousel-container .carousel-indicators button:hover {
                background-color: var(--theme-primary-rgba-05);
                transform: scale(1.1) translateZ(0);
            }
    /* ========================================
   CATEGORY CARDS - Enhanced
   ======================================== */

    .category-card {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        transform: translateZ(0);
        contain: layout style;
        min-height: 100px; /* Prevent CLS during category loading */
    }

        .category-card:hover,
        .category-card:focus {
            will-change: transform;
        }

        .category-card .card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid #e9ecef;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, background 0.3s ease;
            transform: translateZ(0);
        }

        .category-card:hover .card,
        .category-card:focus .card {
            will-change: transform;
        }

    .category-card-clickable:hover .card {
        transform: translateY(-8px) translateZ(0);
        border-color: var(--premium-primary);
        background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    }

    .category-card-clickable.selected .card {
        border-color: var(--premium-primary);
        background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    }

    .category-card .card-body {
        padding: 1.25rem 1rem !important;
    }

    .category-icon-colored {
        font-size: 2.5rem;
        transition: transform 0.3s ease;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        margin: 0 auto;
        border-radius: 50%;
        background: rgba(108, 117, 125, 0.1);
        transform: translateZ(0);
        contain: layout style;
    }

    .category-card:hover .category-icon-colored,
    .category-card:focus .category-icon-colored {
        will-change: transform;
    }

    .category-icon-colored i {
        display: inline-block;
        line-height: 1;
        text-align: center;
    }

    .category-card-clickable:hover .category-icon-colored {
        transform: scale(1.15) translateY(-3px) translateZ(0);
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    }

    .category-icon-gray {
        color: var(--premium-primary);
        background: linear-gradient(135deg, rgba(67, 148, 108, 0.1) 0%, rgba(67, 148, 108, 0.05) 100%);
    }

    .category-card .h6 {
        font-size: 1.05rem;
        font-weight: 600;
        color: #2c3e50;
        letter-spacing: 0.3px;
        transition: color 0.3s ease;
    }

    .category-card-clickable:hover .h6 {
        color: var(--premium-primary);
    }
    /* ========================================
   LOADING SPINNER - Premium
   ======================================== */

    .loading-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 300px;
    }

    .spinner-premium {
        width: 80px;
        height: 80px;
        border: 6px solid var(--premium-shadow);
        border-top-color: var(--premium-primary);
        border-radius: 50%;
        animation: spinPremium 1s linear infinite;
        position: relative;
        will-change: transform;
        contain: layout style paint;
    }

        .spinner-premium::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border: 6px solid var(--premium-shadow);
            border-bottom-color: var(--premium-secondary);
            border-radius: 50%;
            animation: spinPremium 0.8s linear infinite reverse;
        }

    @keyframes spinPremium {
        to {
            transform: rotate(360deg);
        }
    }

    .loading-text {
        color: var(--premium-primary);
        font-weight: 600;
        font-size: 1.1rem;
        animation: loadingPulse 1.5s ease-in-out infinite;
        will-change: opacity;
    }

    @keyframes loadingPulse {
        0%, 100% {
            opacity: 0.6;
        }

        50% {
            opacity: 1;
        }
    }
    /* ========================================
   CTA SECTION - Premium Design
   ======================================== */

    .cta-section {
        position: relative;
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
        overflow: hidden;
        margin-top: 2rem;
        background: linear-gradient(135deg, #f5e6d3 0%, #f9f0e6 25%, var(--premium-primary) 50%, var(--premium-secondary) 75%, var(--premium-primary) 100% );
        box-shadow: 0 12px 40px rgba(27, 110, 194, 0.25);
        border: 2px solid rgba(27, 110, 194, 0.2);
        /* Optimize rendering for below-the-fold content */
        content-visibility: auto;
        contain-intrinsic-size: auto 400px;
    }

    .cta-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(245, 230, 211, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
        opacity: 0.9;
        transform: translateZ(0);
        contain: layout style paint;
    }

    .cta-content {
        position: relative;
        z-index: 1;
    }

    .cta-icon-group {
        position: relative;
        display: inline-block;
        margin-bottom: 1.5rem !important;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 2px solid var(--premium-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        box-shadow: 0 10px 30px rgba(27, 110, 194, 0.3);
        transform: translateZ(0);
        contain: layout style paint;
    }

        .cta-icon i {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 2rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.5px;
        font-style: italic;
    }

    .cta-subtitle {
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95);
        max-width: 600px;
        margin: 0 auto;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        font-weight: 300;
        letter-spacing: 0.3px;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.75rem;
        background: white;
        color: var(--premium-primary);
        border: 2px solid white;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, color 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        transform: translateZ(0);
        contain: layout style;
    }

        .btn-cta:hover,
        .btn-cta:focus {
            will-change: transform;
        }

        .btn-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(27, 110, 194, 0.1) 50%, transparent 100% );
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            will-change: transform;
        }

        .btn-cta:hover::before {
            transform: translateX(100%);
        }

        .btn-cta:hover {
            transform: translateY(-5px) scale(1.05) translateZ(0);
            background: #f9f9f9;
            color: var(--premium-primary);
            text-decoration: none;
        }

    .btn-cta-outline {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.75rem;
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        transform: translateZ(0);
        contain: layout style;
    }

        .btn-cta-outline:hover,
        .btn-cta-outline:focus {
            will-change: transform;
        }

        .btn-cta-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            will-change: transform;
        }

        .btn-cta-outline:hover::before {
            transform: translateX(0);
        }

        .btn-cta-outline:hover {
            transform: translateY(-5px) scale(1.05) translateZ(0);
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            color: white;
            text-decoration: none;
        }

    .cta-features {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .cta-feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: white;
        font-weight: 600;
        font-size: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

        .cta-feature i {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.95);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }
    /* ========================================
   PRODUCT CARDS - Enhanced
   ======================================== */

    .product-card {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
        border-radius: 1.25rem;
        overflow: hidden;
        background: white;
        border: 2px solid var(--premium-shadow);
        transform: translateZ(0);
        contain: layout style;
    }

        .product-card:hover,
        .product-card:focus-within {
            will-change: transform;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02) translateZ(0);
            border-color: var(--premium-shadow);
        }

        .product-card .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
            transform: translateZ(0);
        }

        .product-card:hover .card-img-top,
        .product-card:focus-within .card-img-top {
            will-change: transform;
        }

        .product-card:hover .card-img-top {
            transform: scale(1.1) translateZ(0);
        }

        .product-card .card-body {
            padding: 1.5rem;
        }

        .category-card .card-title,
        .product-card .card-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 600;
            color: #1a3a4f;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.3px;
        }

    .category-card .card-body {
        padding: 1.25rem 1rem !important;
    }

    .category-icon-colored {
        font-size: 2.5rem;
        transition: all 0.3s ease;
    }

    .category-card:hover .category-icon-colored {
        transform: scale(1.15) translateY(-3px);
    }

    .category-icon-gray {
        color: #6c757d;
    }

    .category-card .h6 {
        font-size: 1.05rem;
        font-weight: 600;
        color: #2c3e50;
        letter-spacing: 0.3px;
    }

    .product-card .card-footer {
        padding: 1.25rem 1.5rem;
        background: rgba(27, 110, 194, 0.03);
        border-top: 1px solid var(--premium-shadow);
    }

    .product-card .btn {
        transition: transform 0.3s ease;
        font-weight: 600;
        will-change: transform;
        transform: translateZ(0);
    }

        .product-card .btn:hover {
            transform: translateY(-2px) translateZ(0);
        }
    /* ========================================
   RESPONSIVE DESIGN
   ======================================== */
    /* Optimisation pour �crans laptop (1366px - 1440px) */
    @media (min-width: 1200px) and (max-width: 1440px) {
        .hero-home-compact {
            padding: 0.875rem 1rem;
        }

        .hero-title-compact {
            font-size: 1.5rem;
        }

        .hero-subtitle-compact {
            font-size: 0.875rem;
            line-height: 1.35;
        }

        .btn-hero-compact {
            padding: 0.55rem 1.3rem;
            font-size: 0.875rem;
        }

        .eco-leaves-icon {
            width: 200px;
            height: 200px;
        }

        .hero-image-wrapper {
            min-height: 180px;
        }

        .engagement-banner {
            padding: 0.75rem 1rem;
        }

        .engagement-text {
            font-size: 0.825rem;
            line-height: 1.45;
        }

        .section-title-highlight-left {
            font-size: 1.65rem;
        }

            .section-title-highlight-left i {
                font-size: 1.55rem;
            }

        .category-icon-colored {
            font-size: 2.25rem;
        }

        .category-card .h6 {
            font-size: 1rem;
        }
    }

    @media (max-width: 992px) {
        .hero-home-compact {
            padding: 1.25rem 1rem;
        }

        .hero-title-compact {
            font-size: 1.5rem;
        }

        .hero-subtitle-compact {
            font-size: 0.9rem;
        }

        .btn-hero-compact {
            padding: 0.55rem 1.1rem;
            font-size: 0.85rem;
        }

        .section-title-highlight-left {
            font-size: 1.5rem;
        }

            .section-title-highlight-left i {
                font-size: 1.35rem;
            }

        .category-icon-colored {
            font-size: 2.1rem;
        }

        .category-card .h6 {
            font-size: 0.95rem;
        }

        .section-title-highlight {
            font-size: 1.5rem;
        }

            .section-title-highlight i {
                font-size: 1.3rem;
            }

        .hero-home {
            padding: 3rem 1.5rem;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-icon {
            width: 100px;
            height: 100px;
        }

            .hero-icon i {
                font-size: 3rem;
            }

        .section-title {
            font-size: 2rem;
        }

        .cta-section {
            padding: 2rem 1.25rem;
            margin-top: 1.5rem;
        }

        .cta-title {
            font-size: 1.75rem;
        }

        .cta-icon {
            width: 60px;
            height: 60px;
        }

            .cta-icon i {
                font-size: 2rem;
            }
    }

    @media (max-width: 768px) {
        .hero-home-compact {
            padding: 1rem 0.75rem;
            margin-bottom: 1.25rem;
            border-radius: 0.75rem;
        }
            /* Premier hero-home-compact : angles du bas non arrondis */
            .hero-home-compact:first-of-type {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
                margin-bottom: 0;
                border-bottom: none;
            }
            /* Deuxi�me hero-home-compact : angles du haut non arrondis */
            .hero-home-compact:nth-of-type(2) {
                border-top-left-radius: 0;
                border-top-right-radius: 0;
                border-top: none;
            }

        .hero-title-compact {
            font-size: 1.35rem;
        }

        .hero-subtitle-compact {
            font-size: 0.85rem;
        }

        .btn-hero-compact {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
        }

        .section-title-highlight-left {
            font-size: 1.4rem;
        }

            .section-title-highlight-left i {
                font-size: 1.25rem;
            }

        .category-icon-colored {
            font-size: 2rem;
        }

        .category-card .h6 {
            font-size: 0.9rem;
        }

        .section-title-highlight {
            font-size: 1.35rem;
        }

            .section-title-highlight i {
                font-size: 1.2rem;
            }

        .hero-home {
            padding: 2rem 1rem;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-icon {
            width: 80px;
            height: 80px;
        }

            .hero-icon i {
                font-size: 2.5rem;
            }

        .feature-badge {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }

        .btn-hero {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }

        .section-icon {
            width: 60px;
            height: 60px;
        }

            .section-icon i {
                font-size: 2rem;
            }

        .section-title {
            font-size: 1.75rem;
        }

        .cta-section {
            padding: 2rem 1rem;
            margin-top: 1.5rem;
            border-radius: 1.25rem;
        }

        .cta-title {
            font-size: 1.5rem;
        }

        .cta-subtitle {
            font-size: 0.9rem;
        }

        .cta-icon {
            width: 55px;
            height: 55px;
            border-radius: 14px;
        }

            .cta-icon i {
                font-size: 1.75rem;
            }

        .cta-features {
            gap: 1.5rem;
            font-size: 0.9rem;
        }

        .cta-feature i {
            font-size: 1.25rem;
        }

        .btn-cta,
        .btn-cta-outline {
            padding: 0.65rem 1.5rem;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .hero-home-compact {
            padding: 0.875rem 0.625rem;
            margin-bottom: 1rem;
        }
            /* Premier hero-home-compact : angles du bas non arrondis */
            .hero-home-compact:first-of-type {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
                margin-bottom: 0;
                border-bottom: none;
            }
            /* Deuxi�me hero-home-compact : angles du haut non arrondis */
            .hero-home-compact:nth-of-type(2) {
                border-top-left-radius: 0;
                border-top-right-radius: 0;
                border-top: none;
            }

        .hero-title-compact {
            font-size: 1.25rem;
        }

        .hero-subtitle-compact {
            font-size: 0.8rem;
            margin-bottom: 0.75rem !important;
        }

        .btn-hero-compact {
            padding: 0.45rem 0.9rem;
            font-size: 0.75rem;
            gap: 0.3rem;
        }

        .section-title-highlight-left {
            font-size: 1.25rem;
            gap: 0.3rem;
        }

            .section-title-highlight-left i {
                font-size: 1.1rem;
            }

        .section-title-highlight {
            font-size: 1.25rem;
        }

            .section-title-highlight i {
                font-size: 1.1rem;
                margin-right: 0.3rem;
            }

        .hero-features {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .feature-badge {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

        .cta-section {
            padding: 1.5rem 0.75rem;
            margin-top: 1rem;
            border-radius: 1rem;
        }

        .cta-title {
            font-size: 1.35rem;
        }

        .cta-subtitle {
            font-size: 0.85rem;
        }

        .cta-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
        }

            .cta-icon i {
                font-size: 1.5rem;
            }

        .cta-icon-group {
            margin-bottom: 1rem !important;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: stretch;
            gap: 0.75rem;
            margin-bottom: 1.5rem !important;
        }

        .btn-cta,
        .btn-cta-outline {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            padding: 0.6rem 1.25rem;
            font-size: 0.85rem;
        }

        .cta-features {
            flex-direction: column;
            gap: 0.75rem;
            font-size: 0.85rem;
        }

        .cta-feature i {
            font-size: 1.1rem;
        }
    }
    /* ========================================
   ACCESSIBILITY
   ======================================== */

    .btn-hero:focus,
    .btn-cta:focus,
    .btn-cta-outline:focus {
        outline: 3px solid var(--premium-glow);
        outline-offset: 3px;
    }

    .feature-badge:focus-within,
    .product-card:focus-within {
        outline: 2px solid var(--premium-shadow);
        outline-offset: 2px;
    }
    /* Am�lioration accessibilit� clavier pour les cartes cat�gories */
    .category-card-clickable:focus {
        outline: 3px solid var(--premium-primary);
        outline-offset: 2px;
        border-radius: 0.5rem;
    }
    /* ========================================
   ENGAGEMENT TEXT & ASSOCIATION LINK
   ======================================== */

    .engagement-banner {
        padding: 0.875rem 1rem;
        background: linear-gradient(135deg, #e8d4bb 0%, #f0e0cc 50%, #e8d4bb 100%);
        border: 1px solid #e8d4bb;
        border-top: none;
        border-bottom: none;
        contain: layout style;
    }

    .engagement-content {
        max-width: 1000px;
        margin: 0 auto;
    }

    .engagement-text {
        font-size: 0.875rem;
        line-height: 1.5;
        color: var(--premium-primary) !important;
        margin: 0;
    }

    .engagement-icon {
        font-size: 1.2rem;
        margin-right: 0.25rem;
        filter: brightness(1.3) saturate(0.7);
        opacity: 0.9;
    }

    .association-link {
        color: #e91e63;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
        padding-bottom: 2px;
    }

        .association-link:hover {
            color: #c2185b;
            border-bottom-color: #e91e63;
            text-decoration: none;
        }

        .association-link:focus {
            outline: 2px solid #e91e63;
            outline-offset: 3px;
            border-radius: 2px;
        }
    /* Animation pour le lien association */
    .association-link-hover {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

        .association-link-hover .icon-hover-association {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%) translateY(10px) scale(0) translateZ(0);
            font-size: 1.75rem;
            color: #e91e63;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none;
            filter: drop-shadow(0 4px 12px rgba(233, 30, 99, 0.5));
            will-change: transform, opacity;
        }

        .association-link-hover:hover .icon-hover-association {
            transform: translateX(-50%) translateY(0) scale(1) translateZ(0);
            opacity: 1;
            animation: associationHeartbeat 0.8s ease-in-out infinite;
        }

    @keyframes associationHeartbeat {
        0%, 100% {
            transform: translateX(-50%) translateY(0) scale(1) translateZ(0);
        }

        50% {
            transform: translateX(-50%) translateY(0) scale(1.2) translateZ(0);
        }
    }
    /* ========================================
   BOUTIQUE BUTTON HOVER ANIMATION
   ======================================== */

    .btn-boutique-hover {
        position: relative;
        overflow: visible !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        transform: translateZ(0);
    }

        .btn-boutique-hover .icon-left,
        .btn-boutique-hover .icon-right {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .btn-boutique-hover .icon-hover {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%) translateY(10px) scale(0) translateZ(0);
            font-size: 2rem;
            color: #e91e63;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none;
            filter: drop-shadow(0 4px 12px rgba(233, 30, 99, 0.4));
            will-change: transform, opacity;
        }

        .btn-boutique-hover:hover .icon-hover {
            transform: translateX(-50%) translateY(0) scale(1) translateZ(0);
            opacity: 1;
        }

        .btn-boutique-hover:hover .icon-left {
            transform: translateX(-3px) translateZ(0);
        }

        .btn-boutique-hover:hover .icon-right {
            transform: translateX(3px) translateZ(0);
        }
    /* Animation de pulsation pour l'ic�ne hover */
    @keyframes iconHeartbeat {
        0%, 100% {
            transform: translateX(-50%) translateY(0) scale(1) translateZ(0);
        }

        50% {
            transform: translateX(-50%) translateY(0) scale(1.1) translateZ(0);
        }
    }

    .btn-boutique-hover:hover .icon-hover {
        animation: iconHeartbeat 1s ease-in-out infinite;
    }
    /* Responsive pour le bouton boutique hover */
    @media (max-width: 768px) {
        .btn-boutique-hover .icon-hover {
            top: -30px;
            font-size: 1.75rem;
        }
    }

    @media (max-width: 576px) {
        .btn-boutique-hover .icon-hover {
            top: -25px;
            font-size: 1.5rem;
        }
    }
    /* ========================================
   ANIMATIONS PERFORMANCE
   ======================================== */

    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    /* ========================================
   HERO IMAGE - GIFT BOXES
   ======================================== */

    .hero-image-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        min-height: 220px;
    }
    /* Style pour l'ic�ne SVG des feuilles �co */
    .eco-leaves-icon {
        width: 220px;
        height: 220px;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
        transform: translateZ(0);
        contain: layout style paint;
    }

    .eco-leaves-icon-mobile {
        width: 120px;
        height: 120px;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
        transform: translateZ(0);
        contain: layout style paint;
    }

    /* Responsive pour l'ic�ne des feuilles */
    @media (max-width: 768px) {
        .hero-image-wrapper {
            min-height: 140px;
        }

        .eco-leaves-icon {
            width: 220px;
            height: 220px;
        }

        .eco-leaves-icon-mobile {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 576px) {
        .hero-image-wrapper.d-none {
            display: none !important;
        }

        .eco-leaves-icon-mobile {
            width: 100px;
            height: 100px;
        }
    }

/* ========================================
   CLS PREVENTION - Fixed Heights & Dimensions
   ======================================== */

/* Hero Section - CLS Prevention */
.hero-home-compact {
    min-height: 120px;
}

.hero-content {
    min-height: 100px;
}

.hero-image-wrapper {
    height: 180px;
}

.hero-text-content {
    min-height: 140px;
}

.hero-title-compact {
    min-height: 2.84rem; /* 1.6rem * 1.2 line-height * 2 lines */
    margin-bottom: 0.5rem;
}

.hero-subtitle-compact {
    min-height: 2.52rem; /* 0.9rem * 1.4 line-height * 2 lines */
    margin-bottom: 1rem;
}

/* Engagement Banner - CLS Prevention */
.engagement-banner {
    min-height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engagement-content {
    min-height: 48px;
}

.engagement-text {
    min-height: 1.6rem;
}

/* Products Section - CLS Prevention - FIXED */
.products-section {
    min-height: 450px; /* Increased to accommodate spinner and text */
    height: 450px; /* Fixed height to prevent CLS */
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-section .container-fluid {
    width: 100%;
}

.loading-container {
    min-height: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Skeleton loader for products */
.products-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    min-height: 400px;
}

.product-card-skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease-in-out infinite;
    border-radius: 1.25rem;
    height: 350px;
    transform: translateZ(0);
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.product-card-skeleton-image {
    height: 200px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 1.25rem 1.25rem 0 0;
}

.product-card-skeleton-content {
    padding: 1.5rem;
}

.skeleton-line {
    height: 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.skeleton-line-short {
    width: 60%;
}

/* CTA Section - CLS Prevention - FIXED */
.cta-section {
    min-height: 420px; /* Increased from 380px */
    height: 420px; /* Fixed height to prevent CLS */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-content {
    min-height: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-icon-group {
    height: 82px; /* Includes icon (70px) + margin (12px) */
    margin-bottom: 1.5rem !important;
}

.cta-title {
    margin-bottom: 1rem;
    min-height: 2.8rem; /* Increased to accommodate larger title */
}

.cta-subtitle {
    margin-bottom: 1.5rem;
    min-height: 3.2rem; /* Reserve space for 2 lines + padding */
}

.cta-buttons {
    margin-bottom: 1.5rem;
    min-height: 52px; /* Increased to accommodate button height */
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features {
    min-height: 40px; /* Increased to accommodate feature height */
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Responsive CLS Prevention */
@media (max-width: 992px) {
    .cta-section {
        min-height: 400px;
        height: 400px;
    }
    
    .cta-content {
        min-height: 360px;
    }
    
    .products-section {
        min-height: 420px;
        height: 420px;
    }
    
    .loading-container {
        min-height: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-home-compact {
        min-height: 300px;
    }
    
    .hero-content {
        min-height: 260px;
    }
    
    .hero-image-wrapper {
        height: 140px;
    }
    
    .hero-text-content {
        min-height: 120px;
    }
    
    .hero-title-compact {
        min-height: 3.24rem; /* Adjusted for smaller font size */
    }
    
    .engagement-banner {
        min-height: 100px;
    }
    
    .engagement-content {
        min-height: 64px;
    }
    
    .engagement-text {
        min-height: 2.8rem; /* Reserve space for 2 lines */
        font-size: 0.8rem;
    }
    
    .products-section {
        min-height: 360px;
        height: 360px;
    }
    
    .loading-container {
        min-height: 320px;
        height: 320px;
    }
    
    .products-skeleton {
        min-height: 300px;
    }
    
    .carousel-container {
        min-height: 120px; /* Adjusted for mobile */
    }
    
    .category-card {
        min-height: 180px; /* Adjusted for mobile */
    }
    
    .cta-section {
        min-height: 500px;
        height: 500px;
    }
    
    .cta-content {
        min-height: 460px;
    }
    
    .cta-title {
        min-height: 2.2rem;
    }
    
    .cta-subtitle {
        min-height: 2.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        min-height: 120px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        min-height: 100px;
    }
}

@media (max-width: 576px) {
    .hero-home-compact {
        min-height: 340px;
    }
    
    .hero-content {
        min-height: 300px;
    }
    
    .hero-image-wrapper {
        height: 120px;
        margin-bottom: 0.5rem;
    }
    
    .hero-title-compact {
        min-height: 3rem; /* Adjusted for mobile font size */
    }
    
    .engagement-banner {
        min-height: 140px;
    }
    
    .engagement-content {
        min-height: 100px;
    }
    
    .engagement-text {
        min-height: 4.2rem; /* Reserve space for 3 lines */
        font-size: 0.75rem;
    }
    
    .carousel-container {
        min-height: 100px; /* Adjusted for small mobile */
    }
    
    .category-card {
        min-height: 160px; /* Adjusted for small mobile */
    }
    
    .products-section {
        min-height: 340px;
        height: 340px;
    }
    
    .loading-container {
        min-height: 300px;
        height: 300px;
    }
    
    .cta-section {
        min-height: 560px;
        height: 560px;
    }
    
    .cta-content {
        min-height: 520px;
    }
    
    .cta-title {
        min-height: 2rem;
    }
    
    .cta-subtitle {
        min-height: 2.8rem;
    }
    
    .cta-icon-group {
        margin-bottom: 1rem !important;
        height: 62px; /* Smaller icon on mobile (50px) + margin (12px) */
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1.5rem !important;
        min-height: 130px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
        min-height: 100px;
    }
}

/* ========== wwwroot/css/account-pages.css ========== */
/* ========================================
   ACCOUNT PAGES - Premium Design System
   Harmonis� avec le design moderne de l'application
   ======================================== */

/* ========================================
   LAYOUT G�N�RAL
   ======================================== */

.account-page-container {
    min-height: calc(100vh - 8rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg,
        #f8f9fa 0%,
        #e9ecef 50%,
        #dee2e6 100%
    );
    position: relative;
    overflow: hidden;
}

.account-page-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 50%,
        var(--premium-shadow) 0%,
        transparent 50%
    );
    animation: rotateBackground 30s linear infinite;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   CARTE PRINCIPALE - Design Premium
   ======================================== */

.account-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
    border: 2px solid var(--premium-shadow);
    animation: cardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header avec gradient */
.account-card-header {
    background: linear-gradient(135deg,
        var(--premium-primary) 0%,
        var(--premium-secondary) 50%,
        #16537e 100%
    );
    padding: 1rem 2rem 0.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.account-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%
    );
    animation: rotateHeaderBg 20s linear infinite;
}

@keyframes rotateHeaderBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.account-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
    animation: iconBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s backwards;
}

@keyframes iconBounce {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.account-icon i {
    font-size: 1.65rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.account-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.account-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

/* Corps de la carte */
.account-card-body {
    padding: 1.25rem 2rem;
}

/* ========================================
   FORMULAIRES - Style Premium
   ======================================== */

.form-floating {
    margin-bottom: 0.85rem;
    position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid var(--theme-primary-rgba-02);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    height: calc(2.85rem + 2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-floating > .form-control:placeholder-shown,
.form-floating > .form-select:placeholder-shown {
    border-color: var(--theme-primary-rgba-02);
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
}

.form-floating > .form-control::placeholder,
.form-floating > .form-select::placeholder {
    color: #95a5b8;
    opacity: 1;
}

.form-floating > label {
    padding: 0.9rem 1.25rem;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--premium-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    box-shadow: 0 0 0 4px var(--theme-primary-rgba-01),
                0 8px 24px var(--theme-primary-rgba-015);
    transform: translateY(-2px);
}

.form-floating > .form-control:hover,
.form-floating > .form-select:hover {
    border-color: var(--theme-primary-rgba-04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label {
    color: var(--premium-primary);
    font-weight: 600;
}

/* �tat quand l'input est rempli (valid) */
.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-select:not(:placeholder-shown) {
    border-color: var(--theme-primary-rgba-03);
    background: linear-gradient(135deg, #ffffff 0%, #fafcfe 100%);
}

.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select:not(:placeholder-shown) ~ label {
    color: var(--premium-primary);
}

/* Animation subtile au remplissage */
.form-floating > .form-control:not(:placeholder-shown):not(:focus),
.form-floating > .form-select:not(:placeholder-shown):not(:focus) {
    box-shadow: 0 2px 12px var(--theme-primary-rgba-005);
}

.form-check-input {
width: 1.25rem;
height: 1.25rem;
border: 2px solid var(--theme-primary-rgba-03);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
    cursor: pointer;
}

.form-check-input:hover {
border-color: var(--premium-primary);
box-shadow: 0 4px 12px var(--theme-primary-rgba-015);
    transform: scale(1.05);
}

.form-check-input:checked {
background-color: var(--premium-primary);
border-color: var(--premium-primary);
box-shadow: 0 4px 12px var(--theme-primary-rgba-03);
}

.form-check-input:focus {
border-color: var(--premium-primary);
box-shadow: 0 0 0 4px var(--theme-primary-rgba-01);
}

.form-check-label {
color: #495057;
    font-weight: 500;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-check:hover .form-check-label {
    color: var(--premium-primary);
}

/* Messages de validation */
.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 500;
}

.text-danger::before {
    content: '?';
    font-size: 0.9rem;
}

.validation-summary-errors {
    background: linear-gradient(135deg,
        rgba(220, 53, 69, 0.08) 0%,
        rgba(220, 53, 69, 0.04) 100%
    );
    border: 2px solid rgba(220, 53, 69, 0.2);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.85rem;
    animation: errorShake 0.5s ease-in-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 1.5rem;
}

.validation-summary-errors li {
    color: #dc3545;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ========================================
   BOUTONS - Style Premium
   ======================================== */

.btn-primary {
    width: 100%;
  /*  padding: 0.75rem 2rem;*/
    background: linear-gradient(135deg,
        var(--premium-primary) 0%,
        var(--premium-secondary) 50%,
        var(--premium-primary) 100%
    );
    background-size: 200% 100%;
    border: none;
    /*border-radius: 12px;*/
    color: white;
  /*  font-weight: 600;
    font-size: 1rem;*/
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px var(--premium-shadow);
    position: relative;
    overflow: hidden;
    /*text-transform: uppercase;*/
    /*letter-spacing: 0.5px;*/
    margin-top: 0.25rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--premium-shadow);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-link {
    color: var(--premium-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--premium-secondary);
    gap: 0.75rem;
}

/* ========================================
   EXTERNAL LOGINS - Social Buttons
   ======================================== */

.external-login-form {
    margin: 0;
}

.external-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.no-external-logins {
    text-align: center;
    padding: 1rem;
    opacity: 0.7;
}

.btn-social {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.btn-social:hover::before {
    left: 100%;
}

.btn-social i {
    font-size: 1.1rem;
}

.btn-social span {
    flex: 1;
    text-align: left;
}

.btn-google {
    background: white;
    color: #2c3e50;
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: var(--premium-primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #2c3e50;
}

.btn-facebook {
    background: #1877f2;
    color: white;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.5);
    color: white;
}

.btn-microsoft {
    background: #00a4ef;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 164, 239, 0.3);
}

.btn-microsoft:hover {
    background: #0078d4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 164, 239, 0.5);
    color: white;
}

.btn-twitter {
    background: #1da1f2;
    color: white;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.btn-twitter:hover {
    background: #1a91da;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(29, 161, 242, 0.5);
    color: white;
}

/* Style g�n�rique pour les autres providers */
.btn-social:not(.btn-google):not(.btn-facebook):not(.btn-microsoft):not(.btn-twitter) {
    background: linear-gradient(135deg,
        var(--premium-primary) 0%,
        var(--premium-secondary) 100%
    );
    color: white;
    box-shadow: 0 4px 12px var(--premium-shadow);
}

.btn-social:not(.btn-google):not(.btn-facebook):not(.btn-microsoft):not(.btn-twitter):hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px var(--premium-shadow);
    color: white;
}

/* ========================================
   DIVIDER - S�parateur "OU"
   ======================================== */

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.15rem 0;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--premium-shadow) 50%,
        transparent 100%
    );
}

.login-divider span {
    padding: 0 1rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

/* ========================================
   FOOTER LINKS
   ======================================== */

.account-footer {
    padding: 1rem 2rem;
    background: linear-gradient(135deg,
        #f8f9fa 0%,
        #e9ecef 100%
    );
    border-top: 2px solid var(--premium-shadow);
    text-align: center;
}

.account-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-footer-links a {
    color: var(--premium-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.account-footer-links a:hover {
    color: var(--premium-secondary);
    gap: 0.75rem;
}

/* ========================================
   MANAGE LAYOUT - Navigation Premium
   ======================================== */

.manage-nav {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.manage-nav-item {
display: block;
padding: 1rem 1.25rem;
color: #495057;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.manage-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        var(--premium-primary) 0%,
        var(--premium-secondary) 100%
    );
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.manage-nav-item:hover::before,
.manage-nav-item.active::before {
    transform: scaleY(1);
}

.manage-nav-item:hover {
background: linear-gradient(90deg,
    var(--premium-shadow) 0%,
    var(--theme-primary-rgba-005) 100%
);
    color: var(--premium-primary);
    transform: translateX(8px);
}

.manage-nav-item.active {
    background: linear-gradient(135deg,
        var(--premium-shadow) 0%,
        var(--premium-shadow) 100%
    );
    color: var(--premium-primary);
    font-weight: 600;
}

/* ========================================
   ALERTS & STATUS MESSAGES
   ======================================== */

.alert {
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 2px solid;
    font-weight: 500;
    display: flex;
    align-items: center;
    animation: alertSlideIn 0.3s ease-out;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-success {
    background: linear-gradient(135deg,
        rgba(40, 167, 69, 0.1) 0%,
        rgba(40, 167, 69, 0.05) 100%
    );
    border-color: rgba(40, 167, 69, 0.3);
    color: #155724;
}

.alert-success i {
    color: #28a745;
}

.alert-danger {
    background: linear-gradient(135deg,
        rgba(220, 53, 69, 0.1) 0%,
        rgba(220, 53, 69, 0.05) 100%
    );
    border-color: rgba(220, 53, 69, 0.3);
    color: #721c24;
}

.alert-danger i {
    color: #dc3545;
}

.alert-info {
    background: linear-gradient(135deg,
        var(--premium-shadow) 0%,
        rgba(27, 110, 194, 0.04) 100%
    );
    border-color: var(--premium-shadow);
    color: #0c5460;
}

.alert-info i {
    color: var(--premium-primary);
}

.alert-warning {
    background: linear-gradient(135deg,
        rgba(255, 193, 7, 0.1) 0%,
        rgba(255, 193, 7, 0.05) 100%
    );
    border-color: rgba(255, 193, 7, 0.3);
    color: #856404;
}

.alert-warning i {
    color: #ffc107;
}

.alert-dismissible .btn-close {
    padding: 0.75rem 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.alert-dismissible .btn-close:hover {
    opacity: 1;
}

/* ========================================
   SECTION HEADERS & ICONS
   ======================================== */

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    gap: 0.75rem;
}

.section-icon {
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--premium-shadow);
    transition: all 0.3s ease;
}

.section-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--premium-glow);
}

.section-icon i {
    font-size: 1.4rem;
    color: white;
}

.section-icon-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
}

.section-icon-success:hover {
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.35);
}

.section-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--premium-primary) !important;
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    margin: 0;
    color: var(--premium-primary) !important;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

/* ========================================
   LOGIN SUBMIT BUTTON
   ======================================== */

.login-submit-btn {
    border-radius: 0.75rem;
    padding: 0.875rem;
}

/* ========================================
   ADVANTAGE CARDS
   ======================================== */

.advantage-card {
    padding: 1rem;
    height: 100%;
    background: #f8f9fa;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: #e9ecef;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 2rem;
}

/* ========================================
   CTA BUTTONS
   ======================================== */

.btn-cta-outline {
    border-radius: 2rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-width: 2px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .account-card {
        border-radius: 16px;
        max-width: 100%;
    }

    .account-card-header {
        padding: 2rem 1.5rem;
    }

    .account-icon {
        width: 64px;
        height: 64px;
    }

    .account-icon i {
        font-size: 2rem;
    }

    .account-title {
        font-size: 1.5rem;
    }

    .account-card-body {
        padding: 2rem 1.5rem;
    }

    .account-footer {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .account-page-container {
        padding: 1rem 0.5rem;
    }

    .account-card {
        border-radius: 12px;
    }

    .account-card-header {
        padding: 1.5rem 1.25rem;
    }

    .account-icon {
        width: 56px;
        height: 56px;
    }

    .account-icon i {
        font-size: 1.75rem;
    }

    .account-title {
        font-size: 1.35rem;
    }

    .account-card-body {
        padding: 1.5rem 1.25rem;
    }

    .form-floating > .form-control,
    .form-floating > .form-select {
        padding: 1rem 1.25rem;
        height: calc(3rem + 2px);
    }

    .form-floating > label {
        padding: 1rem 1.25rem;
    }

    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   ANIMATIONS PERFORMANCE
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   DARK MODE SUPPORT (Optionnel)
   ======================================== */

@media (prefers-color-scheme: dark) {
    .account-page-container {
        background: linear-gradient(135deg,
            #1a1d23 0%,
            #2c3e50 50%,
            #34495e 100%
        );
    }

    .account-card {
        background: #2c3e50;
        border-color: var(--premium-shadow);
    }

    .account-card-body {
        color: #ecf0f1;
    }

    .form-floating > .form-control,
    .form-floating > .form-select {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: #ecf0f1;
    }

    .form-floating > .form-control:focus,
    .form-floating > .form-select:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--premium-primary);
    }

    .form-floating > label {
        color: #95a5a6;
    }

    .account-footer {
        background: linear-gradient(135deg,
            #1a1d23 0%,
            #2c3e50 100%
        );
        border-top-color: var(--premium-shadow);
    }

    .manage-nav {
        background: #34495e;
    }

    .manage-nav-item {
        color: #ecf0f1;
    }

    .manage-nav-item:hover {
        background: linear-gradient(90deg,
            var(--premium-shadow) 0%,
            var(--premium-shadow) 100%
        );
    }
}

/* ========== wwwroot/css/manage-account.css ========== */
/* ========================================
   MANAGE ACCOUNT - Styles Premium
   ======================================== */

.manage-account-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ========================================
   HEADER PREMIUM - Design Moderne
   ======================================== */
.manage-header {
    background: linear-gradient(135deg, 
        #0f3460 0%, 
        #1a5490 25%,
        var(--premium-primary) 50%,
        var(--premium-secondary) 75%,
        #16537e 100%
    );
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px var(--premium-shadow),
                0 0 80px var(--premium-shadow),
                inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

/* Effet de verre givr� */
.manage-header::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" width="100" height="100"><rect fill="%231b6ec2" width="100" height="100"/><circle fill="%231861ac" opacity="0.1" cx="50" cy="50" r="40"/></svg>');
    opacity: 0.08;
    pointer-events: none;
}

/* Gradient anim� */
.manage-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 60%
    );
    animation: rotateHeaderBg 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateHeaderBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Bouton Retour */
.btn-back-home {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-back-home i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-back-home:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.25) 100%
    );
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-back-home:hover i {
    transform: translateX(-4px);
}

/* Ic�ne du Header */
.header-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.header-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Texte du Header */
.header-text {
    flex: 1;
}

.header-title {
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0.5rem 0 0 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

/* D�coration du Header */
.header-decoration {
    position: absolute;
    right: 10rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
    z-index: 1;
}

.decoration-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: decorationPulse 3s ease-in-out infinite;
}

.decoration-circle:nth-child(2) {
    animation-delay: 1s;
    width: 50px;
    height: 50px;
}

.decoration-circle:nth-child(3) {
    animation-delay: 2s;
    width: 40px;
    height: 40px;
}

@keyframes decorationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* ========================================
   NAVIGATION SIDEBAR - Design Premium
   ======================================== */
.navigation-sidebar {
    background: linear-gradient(135deg,
        #ffffff 0%,
        #f8f9fa 100%
    );
    border-radius: 1.25rem;
    padding: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.04);
    border: 2px solid var(--premium-shadow);
    position: sticky;
    top: 6rem;
    transition: all 0.3s ease;
}

.navigation-sidebar:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12),
                0 6px 18px rgba(0, 0, 0, 0.06);
    border-color: var(--premium-shadow);
}

/* ========================================
   CONTENT WRAPPER - Zone de Contenu
   ======================================== */
.content-wrapper {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.04);
    border: 2px solid var(--premium-shadow);
    min-height: 600px;
    transition: all 0.3s ease;
}

.content-wrapper:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1),
                0 6px 18px rgba(0, 0, 0, 0.05);
}

/* ========================================
   MENU DE NAVIGATION - Header
   ======================================== */
.manage-nav-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg,
        var(--premium-shadow) 0%,
        rgba(27, 110, 194, 0.03) 100%
    );
    border-radius: 0.75rem;
    margin: 0 1rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--premium-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--premium-shadow);
    box-shadow: 0 2px 8px var(--premium-shadow);
}

.manage-nav-header i {
    font-size: 1.25rem;
    color: var(--premium-primary);
}

/* ========================================
   MENU DE NAVIGATION - Liens
   ======================================== */
.manage-nav-menu {
    gap: 0.5rem;
    padding: 0 1rem 1rem 1rem;
}

.manage-nav-menu .nav-item {
    margin-bottom: 0;
}

.manage-nav-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(90deg,
        rgba(27, 110, 194, 0.02) 0%,
        transparent 100%
    );
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Effet de brillance */
.manage-nav-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--premium-shadow) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.manage-nav-menu .nav-link:hover::before {
    left: 100%;
}

/* Ligne indicatrice � gauche */
.manage-nav-menu .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0%;
    width: 4px;
    background: linear-gradient(180deg,
        var(--premium-primary) 0%,
        var(--premium-secondary) 100%
    );
    border-radius: 0 2px 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(27, 110, 194, 0.6);
}

.manage-nav-menu .nav-link:hover {
    background: linear-gradient(90deg,
        var(--premium-shadow) 0%,
        rgba(27, 110, 194, 0.03) 100%
    );
    color: var(--premium-primary);
    transform: translateX(6px);
    border-color: var(--premium-shadow);
    box-shadow: 0 4px 12px var(--premium-shadow);
}

.manage-nav-menu .nav-link:hover::after {
    height: 50%;
}

/* �tat actif avec un style �l�gant */
.manage-nav-menu .nav-link.active {
    background: linear-gradient(135deg,
        var(--premium-shadow) 0%,
        var(--premium-shadow) 100%
    );
    color: var(--premium-primary);
    font-weight: 700;
    border-color: var(--premium-shadow);
    transform: translateX(6px);
    box-shadow: 0 6px 20px var(--premium-shadow),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.manage-nav-menu .nav-link.active::after {
    height: 70%;
}

/* Ic�nes des liens */
.manage-nav-menu .nav-link i {
    font-size: 1.35rem;
    transition: all 0.3s ease;
    color: #6c757d;
    width: 1.5rem;
    text-align: center;
}

.manage-nav-menu .nav-link:hover i {
    color: var(--premium-primary);
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 2px 6px var(--premium-shadow));
}

.manage-nav-menu .nav-link.active i {
    color: var(--premium-primary);
    transform: scale(1.15);
    filter: drop-shadow(0 2px 8px var(--premium-shadow));
}

/* Texte des liens */
.manage-nav-menu .nav-link span {
    flex: 1;
    transition: all 0.2s ease;
}

.manage-nav-menu .nav-link:hover span {
    letter-spacing: 0.3px;
}

/* Animation d'entr�e */
.manage-nav-menu .nav-item {
    animation: slideInNav 0.4s ease-out backwards;
}

.manage-nav-menu .nav-item:nth-child(1) { animation-delay: 0.05s; }
.manage-nav-menu .nav-item:nth-child(2) { animation-delay: 0.1s; }
.manage-nav-menu .nav-item:nth-child(3) { animation-delay: 0.15s; }
.manage-nav-menu .nav-item:nth-child(4) { animation-delay: 0.2s; }
.manage-nav-menu .nav-item:nth-child(5) { animation-delay: 0.25s; }
.manage-nav-menu .nav-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideInNav {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE - Mobile
   ======================================== */
@media (max-width: 992px) {
    .manage-header {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }

    .header-title {
        font-size: 1.75rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .header-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .header-icon-wrapper i {
        font-size: 2rem;
    }

    .header-decoration {
        display: none;
    }

    .btn-back-home {
        position: static;
        margin-bottom: 1rem;
        width: fit-content;
    }

    .navigation-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 1.5rem;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .manage-nav-header {
        margin: 0 0.75rem 1rem 0.75rem;
        padding: 1rem 1.25rem;
    }

    .manage-nav-menu {
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .manage-account-container {
        padding: 1rem 0.5rem;
    }

    .manage-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .header-content {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .btn-back-home {
        margin-bottom: 1rem;
        align-self: flex-start;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .header-subtitle {
        font-size: 0.9rem;
    }

    .header-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .header-icon-wrapper i {
        font-size: 1.5rem;
    }

    .content-wrapper {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .manage-nav-header {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
        margin: 0 0.5rem 0.875rem 0.5rem;
    }

    .manage-nav-menu {
        padding: 0 0.5rem 0.5rem 0.5rem;
        gap: 0.375rem;
    }

    .manage-nav-menu .nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .manage-nav-menu .nav-link i {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .header-title {
        font-size: 1.25rem;
    }

    .header-subtitle {
        font-size: 0.85rem;
    }

    .content-wrapper {
        padding: 1.25rem;
    }

    .manage-nav-header {
        font-size: 0.8rem;
    }

    .manage-nav-menu .nav-link {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .manage-nav-menu .nav-link i {
        font-size: 1.15rem;
    }

    .btn-back-home {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Effet focus pour l'accessibilit� */
.manage-nav-menu .nav-link:focus,
.btn-back-home:focus {
    outline: 3px solid var(--premium-shadow);
    outline-offset: 2px;
}

/* ========== wwwroot/css/sitemap.css ========== */
/* ========================================
   PLAN DU SITE - STYLES PREMIUM
   ======================================== */

.sitemap-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.sitemap-hero {
    background: linear-gradient(135deg,
     var(--premium-primary) 0%,
        var(--premium-secondary) 50%,
#16537e 100%
    );
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px var(--premium-shadow),
                0 4px 12px rgba(0, 0, 0, 0.1);
}

.sitemap-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
  rgba(255, 255, 255, 0.15) 0%,
        transparent 70%
    );
    animation: rotateSitemapHero 20s linear infinite;
}

@keyframes rotateSitemapHero {
  from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sitemap-hero-content {
    position: relative;
    z-index: 1;
}

.sitemap-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
  height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.25) 0%,
   rgba(255, 255, 255, 0.15) 100%
    );
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.sitemap-hero-icon i {
    font-size: 3.5rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.sitemap-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.sitemap-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CARTES DE SECTIONS
   ======================================== */

.sitemap-card {
    background: linear-gradient(135deg,
    #ffffff 0%,
        #f8f9fa 100%
    );
    border: 2px solid var(--premium-shadow);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
          0 4px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
 position: relative;
}

.sitemap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--premium-primary) 50%,
        transparent 100%
    );
}

.sitemap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px var(--premium-shadow),
                0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--premium-shadow);
}

/* Header de carte */
.sitemap-card-header {
    background: linear-gradient(135deg,
        var(--premium-primary) 0%,
        var(--premium-secondary) 100%
    );
    padding: 1.5rem;
 color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.sitemap-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
 left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
  circle at center,
     rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: rotateCardHeader 15s linear infinite;
}

@keyframes rotateCardHeader {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sitemap-card-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.sitemap-card-header-icon i {
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.sitemap-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Body de carte */
.sitemap-card-body {
    padding: 1.5rem;
}

/* ========================================
   LISTES DE LIENS
   ======================================== */

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 0.75rem;
}

.sitemap-list li:last-child {
    margin-bottom: 0;
}

.sitemap-list a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(90deg,
        rgba(27, 110, 194, 0) 0%,
      rgba(27, 110, 194, 0.03) 100%
    );
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.sitemap-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0%;
    width: 4px;
    background: linear-gradient(180deg,
        var(--premium-primary) 0%,
    var(--premium-secondary) 100%
    );
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
}

.sitemap-list a:hover {
    background: linear-gradient(90deg,
        rgba(27, 110, 194, 0.12) 0%,
 rgba(27, 110, 194, 0.06) 100%
    );
    transform: translateX(8px);
    border-color: var(--premium-shadow);
    box-shadow: 0 4px 12px var(--premium-shadow);
    color: var(--premium-primary);
}

.sitemap-list a:hover::before {
    height: 60%;
}

.sitemap-list a .bi-chevron-right {
    color: var(--premium-primary);
    margin-right: 0.75rem;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.sitemap-list a:hover .bi-chevron-right {
    transform: translateX(4px);
}

.sitemap-list a span {
    flex: 1;
    font-weight: 500;
}

/* Ic�nes de cat�gories */
.sitemap-list a i:not(.bi-chevron-right):not(.bi-arrow-return-right):not(.bi-box-arrow-up-right) {
    margin-right: 0.5rem;
    color: var(--premium-primary);
}

/* Ic�ne externe */
.sitemap-list a .bi-box-arrow-up-right {
    margin-left: auto;
    color: #6c757d;
    font-size: 0.75rem;
}

/* ========================================
   SOUS-LISTES (SOUS-CAT�GORIES)
   ======================================== */

.sitemap-sublist {
    list-style: none;
    padding-left: 2rem;
 margin-top: 0.5rem;
    border-left: 3px solid var(--premium-shadow);
    margin-left: 1rem;
}

.sitemap-sublist li {
    margin-bottom: 0.5rem;
}

.sitemap-sublist a {
    padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
    background: linear-gradient(90deg,
        rgba(27, 110, 194, 0) 0%,
        rgba(27, 110, 194, 0.02) 100%
    );
}

.sitemap-sublist a .bi-arrow-return-right {
    color: var(--premium-primary);
  margin-right: 0.5rem;
    font-size: 0.75rem;
}

.sitemap-sublist a:hover {
    transform: translateX(6px);
}

/* ========================================
   SECTION D'AIDE
   ======================================== */

.sitemap-help-section .card {
border: 2px solid var(--premium-shadow);
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.sitemap-help-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--premium-primary) 50%,
        transparent 100%
    );
}

.sitemap-help-section .card-body {
    padding: 3rem 2rem;
}

.sitemap-help-section h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sitemap-help-section .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sitemap-help-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--premium-shadow);
}

/* ========================================
 RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .sitemap-hero-title {
        font-size: 2rem;
    }

    .sitemap-hero-icon {
    width: 80px;
      height: 80px;
    }

    .sitemap-hero-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sitemap-page-wrapper {
        padding: 1.5rem 1rem;
    }

    .sitemap-hero {
        padding: 3rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 1rem;
    }

    .sitemap-hero-title {
        font-size: 1.75rem;
  }

    .sitemap-hero-subtitle {
     font-size: 1rem;
    }

    .sitemap-hero-icon {
        width: 70px;
     height: 70px;
    }

    .sitemap-hero-icon i {
    font-size: 2rem;
    }

    .sitemap-card {
 border-radius: 1rem;
    }

    .sitemap-card-header {
        padding: 1.25rem;
    }

    .sitemap-card-header-icon {
     width: 40px;
        height: 40px;
    }

  .sitemap-card-header-icon i {
        font-size: 1.5rem;
    }

    .sitemap-card-header h3 {
        font-size: 1.1rem;
    }

    .sitemap-card-body {
        padding: 1.25rem;
    }

    .sitemap-list a {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }

    .sitemap-sublist {
        padding-left: 1.5rem;
    }

  .sitemap-help-section .card-body {
  padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .sitemap-page-wrapper {
     padding: 1rem 0.75rem;
    }

    .sitemap-hero {
  padding: 2rem 1rem;
        border-radius: 0.75rem;
    }

    .sitemap-hero-title {
        font-size: 1.5rem;
  }

    .sitemap-hero-subtitle {
font-size: 0.9rem;
    }

    .sitemap-hero-icon {
    width: 60px;
  height: 60px;
    }

    .sitemap-hero-icon i {
        font-size: 1.75rem;
    }

    .sitemap-card {
      border-radius: 0.75rem;
    }

    .sitemap-card-header {
        padding: 1rem;
    }

    .sitemap-card-header-icon {
        width: 36px;
        height: 36px;
    }

    .sitemap-card-header-icon i {
 font-size: 1.25rem;
    }

    .sitemap-card-header h3 {
        font-size: 1rem;
    }

    .sitemap-card-body {
        padding: 1rem;
    }

    .sitemap-list a {
        padding: 0.6rem 0.75rem;
        font-size: 0.875rem;
    }

    .sitemap-list a:hover {
        transform: translateX(4px);
    }

    .sitemap-sublist {
        padding-left: 1.25rem;
   margin-left: 0.75rem;
    }

    .sitemap-sublist a {
     padding: 0.45rem 0.65rem;
        font-size: 0.85rem;
    }

    .sitemap-help-section .card-body {
   padding: 1.5rem 1rem;
    }

    .sitemap-help-section h4 {
        font-size: 1.1rem;
    }

    .sitemap-help-section .d-flex {
        flex-direction: column !important;
    }

    .sitemap-help-section .btn {
   width: 100%;
      padding: 0.65rem 1.25rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
      opacity: 1;
        transform: translateY(0);
    }
}

.sitemap-card {
    animation: fadeInUp 0.6s ease-out;
}

.sitemap-card:nth-child(1) { animation-delay: 0.1s; }
.sitemap-card:nth-child(2) { animation-delay: 0.2s; }
.sitemap-card:nth-child(3) { animation-delay: 0.3s; }
.sitemap-card:nth-child(4) { animation-delay: 0.4s; }
.sitemap-card:nth-child(5) { animation-delay: 0.5s; }
.sitemap-card:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   ACCESSIBILIT�
   ======================================== */

.sitemap-list a:focus {
    outline: 3px solid var(--premium-glow);
    outline-offset: 2px;
}

.sitemap-help-section .btn:focus {
 outline: 3px solid var(--premium-glow);
    outline-offset: 3px;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .sitemap-hero {
        background: #f8f9fa;
        color: black;
        box-shadow: none;
    }

    .sitemap-hero-icon,
    .sitemap-hero::before,
    .sitemap-card::before,
.sitemap-card-header::before {
        display: none;
 }

    .sitemap-card {
        border: 1px solid #ddd;
     box-shadow: none;
        page-break-inside: avoid;
    }

    .sitemap-card-header {
        background: #f0f0f0;
        color: black;
    }

    .sitemap-help-section {
 display: none;
    }

    .sitemap-list a {
   color: black;
   text-decoration: underline;
    }
}

