        .floating-demo-button {
            position: fixed;
            right: 20px;
            top: 200px; /* Position fixe par rapport au header */
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        .demo-btn-link {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white !important;
            padding: 0;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-decoration: none !important;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .demo-btn-link:hover {
            background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: white !important;
            text-decoration: none !important;
        }
        
        /* Floating Language Selector */
        .floating-language-selector {
            position: fixed;
            right: 20px;
            top: 140px; /* Juste au-dessus du bouton démo */
            z-index: 1000;
        }
        
        .language-dropdown {
            position: relative;
        }
        
        .language-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .language-toggle:hover {
            border-color: #28a745;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            text-decoration: none;
        }
        
        .flag-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .language-dropdown-menu {
            position: absolute;
            right: 60px;
            top: 0;
            background: white;
            border-radius: 25px;
            padding: 5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            min-width: 80px;
            z-index: 1001;
        }
        
        .language-dropdown:hover .language-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        /* Créer une zone invisible pour maintenir le hover */
        .language-dropdown::before {
            content: '';
            position: absolute;
            right: 50px;
            top: 0;
            width: 20px;
            height: 50px;
            z-index: 1000;
        }
        
        .language-link {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            text-decoration: none;
            color: #333;
            border-radius: 20px;
            transition: all 0.2s ease;
            font-size: 14px;
            font-weight: 500;
        }
        
        .language-link:hover {
            background: #f8f9fa;
            color: #28a745;
            text-decoration: none;
        }
        
        .flag-mini {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            margin-right: 8px;
            object-fit: cover;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .floating-demo-button {
                right: 15px;
                top: 120px; /* Position plus haute sur mobile aussi */
            }
            
            .floating-language-selector {
                right: 15px;
                top: 80px; /* Juste au-dessus du bouton démo */
            }
            
            .demo-btn-link {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            
            .language-toggle {
                width: 45px;
                height: 45px;
            }
            
            .flag-icon {
                width: 25px;
                height: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .demo-btn-link {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            
            .language-toggle {
                width: 40px;
                height: 40px;
            }
            
            .flag-icon {
                width: 22px;
                height: 22px;
            }
            
            .floating-language-selector {
                bottom: 130px;
            }
        }
        
        /* Assurer que le menu principal est fixé */
        .navbar-fixed {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 1030 !important;
            width: 100% !important;
            background: rgba(33, 51, 62, 0.95) !important; /* Background semi-transparent */
            backdrop-filter: blur(10px) !important; /* Effet de flou */
            border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        }
        
        /* Compenser l'espace du navbar fixe */
        body {
            padding-top: 80px; /* Hauteur approximative du navbar */
        }
        </style>
    <style>
        /* CSS personnalisé pour Select2 au lieu du thème Bootstrap 5 */
        .select2-container .select2-selection--single {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            height: 45px;
            padding: 0.375rem 0.75rem;
            background: #f8f9fa;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .select2-container--focus .select2-selection--single,
        .select2-container--open .select2-selection--single {
            border-color: #28a745;
            background: white;
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        }
        
        .select2-container .select2-selection--single .select2-selection__rendered {
            color: #495057;
            font-size: 1rem;
            line-height: 2.2;
            padding-left: 0;
            padding-right: 0;
        }
        
        .select2-container .select2-selection--single .select2-selection__placeholder {
            color: #6c757d;
        }
        
        .select2-dropdown {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .select2-results__option {
            padding: 8px 12px;
            font-size: 0.95rem;
        }
        
        .select2-results__option--highlighted {
            background-color: #28a745 !important;
            color: white !important;
        }
        
        .flag-emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
    </style>
<style>
/* Assurer que la page ne soit pas noire */
body.register-page {
    background-color: #ffffff;
    color: #333333;
}

body.register-page .register-body {
    background-color: #ffffff;
    min-height: 100vh;
}

/* S'assurer que le contenu est visible */
.register-container {
    background-color: #ffffff;
    color: #333333;
}

/* Masquer le preloader par défaut sur cette page */
#preloader {
    display: none !important;
}

#global-loader {
    display: none !important;
}

/* S'assurer que tous les éléments principaux sont visibles */
.register-body,
.register-container,
.register-header,
.register-content {
    opacity: 1 !important;
    visibility: visible !important;
}
/* Styles modernes pour le formulaire d'inscription */
.register-steps {
    margin-bottom: 2rem;
}

/* ===== HERO SECTION STYLES - TITRE PRINCIPAL PLUS GRAND ===== */
.hero h1.effect-static-text {
    font-size: 4.5rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -0.02em !important;
}

.hero h1.effect-static-text .featured {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #28a745 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: gradientShift 3s ease-in-out infinite !important;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero .lead {
    font-size: 1.8rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin-bottom: 2rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Responsive pour le titre principal */
@media (max-width: 1200px) {
    .hero h1.effect-static-text {
        font-size: 3.8rem !important;
    }
    
    .hero .lead {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 768px) {
    .hero h1.effect-static-text {
        font-size: 2.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero .lead {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1.effect-static-text {
        font-size: 2.2rem !important;
    }
    
    .hero .lead {
        font-size: 1.1rem !important;
    }
}

/* ===== AMÉLIORATION DE LA SECTION HERO ===== */
.hero {
    position: relative !important;
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero .slide-content {
    position: relative !important;
    z-index: 10 !important;
    padding: 3rem 0 !important;
}

.hero .slide-content .inner {
    text-align: center !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/* Amélioration du contraste et de la lisibilité */
.hero .slide-content::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: -1 !important;
    border-radius: 20px !important;
    margin: 2rem !important;
}

/* Animation d'apparition pour le titre */
.hero h1.effect-static-text {
    animation: titleSlideIn 1.2s ease-out !important;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation d'apparition pour le sous-titre */
.hero .lead {
    animation: subtitleSlideIn 1.5s ease-out 0.3s both !important;
}

@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de brillance sur le texte MYVIOO */
.hero h1.effect-static-text .featured span {
    position: relative !important;
    overflow: hidden !important;
}

.hero h1.effect-static-text .featured span::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
    animation: shine 3s ease-in-out infinite !important;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-indicator > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 150px;
    position: relative;
}

.step-indicator > div:not(:last-child)::after {
    content: '>';
    position: absolute;
    right: -1rem;
    top: 25px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #dee2e6;
    font-weight: 300;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-indicator > div:not(:last-child):hover::after {
    color: #fd7e14;
    transform: translateY(-50%) scale(1.2);
}

/* Flèches colorées selon l'état des étapes */
.step-indicator > div.completed:not(:last-child)::after {
    color: #28a745;
}

.step-indicator > div.active:not(:last-child)::after {
    color: #fd7e14;
}

.step-indicator > div:not(:last-child)::after {
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0.75rem;
}

.step-circle i {
    transition: all 0.3s ease;
}

.step-circle.active {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.3);
}

.step-circle.active i {
    animation: pulse 2s infinite;
}

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

.step-circle.completed {
    background: #28a745;
    color: white;
}

.step-circle.completed i {
    transform: scale(1.1);
}

.step-label {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    line-height: 1.3;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle.active ~ .step-label,
.step-indicator > div .step-label.active {
    color: #fd7e14;
    font-weight: 700;
}

.step-circle.completed ~ .step-label,
.step-indicator > div .step-label.completed {
    color: #28a745;
    font-weight: 700;
}

.account-type-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.account-type-card {
    border: 3px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.account-type-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
    transition: left 0.5s;
}

.account-type-card:hover::before {
    left: 100%;
}

.account-type-card:hover {
    border-color: #28a745;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.account-type-card.selected {
    border-color: #28a745;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.3);
}

.account-type-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #28a745;
    transition: all 0.3s ease;
}

.account-type-card.selected i {
    color: white;
    transform: scale(1.2);
}

.account-type-card h4 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.account-type-card p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.form-step {
    display: none;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.modern-form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    width: 100%;
    font-family: inherit;
    height: auto;
    min-height: 45px;
    line-height: 1.4;
}

.modern-form-control:focus {
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    outline: none;
    transform: translateY(-2px);
}

.modern-form-control::placeholder {
    color: #6c757d;
    font-size: 0.95rem;
    opacity: 0.8;
}

.modern-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #dc3545;
    margin-left: 0.25rem;
}

.btn-modern {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
}

.btn-secondary {
    background: #6c757d;
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.button-group {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #28a745;
    margin-top: 2px;
}

.checkbox-label {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.checkbox-label a {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Password input with toggle */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .modern-form-control {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #28a745;
}

/* Phone input with country prefix */
.phone-input-wrapper {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-input-wrapper:focus-within {
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    background: #e9ecef;
    border-right: 2px solid #dee2e6;
    border-radius: 10px 0 0 10px;
    gap: 0.5rem;
    min-width: 80px;
}

.phone-prefix .flag-mini {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.phone-prefix span {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.phone-input {
    border: none !important;
    border-radius: 0 10px 10px 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
}

.phone-input:focus {
    border: none !important;
    box-shadow: none !important;
}

/* Country select with flags */
.country-select option {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Password strength indicator */
.password-strength {
    margin-top: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.strength-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.strength-fill.weak {
    background: #dc3545;
    width: 25%;
}

.strength-fill.fair {
    background: #fd7e14;
    width: 50%;
}

.strength-fill.good {
    background: #ffc107;
    width: 75%;
}

.strength-fill.strong {
    background: #28a745;
    width: 100%;
}

.strength-text {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.strength-requirements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}

.requirement {
    font-size: 0.8rem;
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.requirement.valid {
    color: #28a745;
}

.requirement.valid i {
    color: #28a745;
}

.requirement i {
    font-size: 0.7rem;
    width: 12px;
}

/* Interests grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.interest-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.interest-item:hover {
    background: rgba(40, 167, 69, 0.1);
}

.interest-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #28a745;
    cursor: pointer;
}

.interest-item label {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
}

.interest-item input:checked ~ label,
.interest-item.checked label {
    color: #28a745;
    font-weight: 600;
}

.interest-item input:checked + label,
.interest-item.checked {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Membership type selection */
.membership-type-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.membership-option {
    position: relative;
}

.membership-option input[type="radio"] {
    display: none;
}

.membership-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.membership-label:hover {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
    transform: translateY(-2px);
}

.membership-option input[type="radio"]:checked + .membership-label {
    border-color: #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.membership-label i {
    font-size: 2rem;
    color: #28a745;
    min-width: 40px;
    text-align: center;
}

.membership-label span {
    font-weight: 600;
    color: #213342;
    font-size: 1.1rem;
}

/* Community steps visibility */
.community-step {
    display: none !important;
}

.community-step.visible {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 150px;
}

.community-step.active {
    display: block !important;
}

/* Form text helper */
.form-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .membership-type-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .membership-label {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .membership-label i {
        font-size: 1.5rem;
    }
}

/* Summary section */
.summary-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
}

.summary-section h4 {
    color: #1a202c;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-section p {
    color: #718096;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.summary-group {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(40, 167, 69, 0.12);
    box-shadow: -12px 0 24px rgba(40, 167, 69, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
}

.summary-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #28a745 0%, #20c997 50%, #28a745 100%);
    background-size: 100% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0 -200%; }
    50% { background-position: 0 200%; }
}

.summary-group:hover {
    transform: translateX(2px);
    box-shadow: -16px 0 32px rgba(40, 167, 69, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(40, 167, 69, 0.2);
}

.summary-group h5 {
    color: #1a202c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 1rem;
}

.summary-group h5 i {
    color: #28a745;
    font-size: 1.5rem;
    padding: 10px;
    background: rgba(40, 167, 69, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.summary-group:hover h5 i {
    background: rgba(40, 167, 69, 0.15);
    transform: scale(1.05);
    border-color: rgba(40, 167, 69, 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(40, 167, 69, 0.08);
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.summary-item:hover {
    background: rgba(40, 167, 69, 0.02);
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 0;
    margin-right: 0;
    border-bottom-color: rgba(40, 167, 69, 0.15);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #4a5568;
    flex: 0 0 40%;
    font-size: 0.95rem;
}

.summary-value {
    font-weight: 700;
    color: #1a202c;
    flex: 1;
    text-align: right;
    word-break: break-word;
    font-size: 0.95rem;
}

.summary-value.empty {
    color: #a0aec0;
    font-style: italic;
    font-weight: 500;
}

/* Community summary sections avec charte professionnelle */
.community-summary::before {
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #28a745 100%);
}

.community-summary {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08) 0%, rgba(32, 201, 151, 0.05) 100%);
    border: 1px solid rgba(40, 167, 69, 0.2);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.12);
}

.community-summary h5 {
    color: #1a202c !important;
}

.community-summary h5 i {
    color: #28a745 !important;
    background: rgba(40, 167, 69, 0.15) !important;
}

.community-summary:hover h5 i {
    background: rgba(40, 167, 69, 0.25) !important;
}

.community-summary .summary-item {
    border-bottom-color: rgba(40, 167, 69, 0.15);
}

.community-summary .summary-item:hover {
    background: rgba(40, 167, 69, 0.05);
}

/* Validation errors for password strength */
.validation-summary.show {
    display: block !important;
}

.validation-summary {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #fc8181;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: none;
}

.validation-summary h4,
.validation-summary h6 {
    color: #c53030;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.validation-summary ul {
    color: #742a2a;
    margin: 0;
    padding-left: 1.5rem;
    font-weight: 500;
}

.validation-summary li {
    margin-bottom: 0.25rem;
}

/* CSS for URL input with prefix */
.url-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.url-input-wrapper:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.url-prefix {
    background: #f7fafc;
    color: #4a5568;
    font-weight: 600;
    padding: 12px 8px 12px 12px;
    font-size: 1rem;
    border-right: 1px solid #e2e8f0;
    white-space: nowrap;
}

.url-input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    padding: 12px 12px 12px 8px !important;
    font-size: 1rem;
    background: transparent;
}

.url-input:focus {
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

.url-input-wrapper.valid {
    border-color: #48bb78;
}

.url-input-wrapper.invalid {
    border-color: #f56565;
}

/* CSS Professional Select2 avec fonctionnalités avancées */
.select2-pro-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.select2-pro-wrapper .select2-container {
    width: 100% !important;
}

.select2-pro-wrapper .select2-selection {
    height: 54px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.select2-pro-wrapper .select2-selection:hover {
    border-color: #cbd5e0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.select2-pro-wrapper .select2-selection--single:focus,
.select2-pro-wrapper .select2-container--focus .select2-selection {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15) !important;
}

.select2-pro-wrapper .select2-selection__rendered {
    color: #2d3748 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 50px !important;
    padding-left: 16px !important;
}

.select2-pro-wrapper .select2-selection__placeholder {
    color: #a0aec0 !important;
    font-weight: 500 !important;
}

.select2-pro-wrapper .select2-selection__arrow {
    height: 50px !important;
    right: 12px !important;
}

.select2-pro-wrapper .select2-dropdown {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    background: white !important;
    margin-top: 4px !important;
}

.select2-pro-wrapper .select2-results__option {
    padding: 12px 16px !important;
    font-size: 1rem !important;
    color: #2d3748 !important;
    border-bottom: 1px solid #f7fafc !important;
    transition: all 0.2s ease !important;
}

.select2-pro-wrapper .select2-results__option:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    transform: translateX(4px) !important;
}

.select2-pro-wrapper .select2-results__option--highlighted {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.select2-pro-wrapper .select2-search__field {
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 1rem !important;
}

/* CSS pour les conteneurs d'ajout professionnel */
.select2-add-new {
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

.add-new-container {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.add-new-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.1rem;
}

.add-new-header i {
    color: #667eea;
    font-size: 1.3rem;
}

.add-new-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.add-new-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    outline: none;
}

.add-new-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-add-confirm {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-add-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.btn-add-cancel {
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-add-cancel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(160, 174, 192, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CSS for input group with button */
.input-group {
    display: flex;
    align-items: stretch;
}

.input-group .modern-form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.input-group-append {
    display: flex;
}

.input-group-append .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 2px solid #e2e8f0;
    border-left: none;
    background: #667eea;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group-append .btn:hover {
    background: #5a67d8;
    border-color: #5a67d8;
}

.input-group-append .btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* CSS Professional pour le générateur de slug */
.slug-generator-pro {
    position: relative;
}

.slug-input-wrapper {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slug-input-wrapper:hover {
    border-color: #cbd5e0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.slug-input-wrapper:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.slug-prefix {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
}

.slug-prefix::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #764ba2;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.slug-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    background: transparent;
    min-width: 200px;
}

.slug-input::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.slug-actions {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 8px;
}

.btn-generate-slug {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.2);
}

.btn-generate-slug:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(72, 187, 120, 0.3);
}

.btn-check-slug {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.btn-check-slug:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.slug-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
}

.slug-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
}

.slug-status.available {
    color: #38a169;
}

.slug-status.available i {
    color: #48bb78;
}

.slug-status.unavailable {
    color: #e53e3e;
}

.slug-status.unavailable i {
    color: #f56565;
}

.slug-status.checking {
    color: #667eea;
}

.slug-status.checking i {
    color: #667eea;
    animation: spin 1s linear infinite;
}

.slug-preview {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.preview-url {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.slug-input.valid {
    color: #38a169;
}

.slug-input.invalid {
    color: #e53e3e;
}

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

/* CSS pour le générateur de slug pleine largeur */
.slug-generator-pro-full {
    position: relative;
    width: 100%;
}

.slug-input-wrapper-full {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.slug-input-wrapper-full:hover {
    border-color: #cbd5e0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.slug-input-wrapper-full:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.slug-prefix-full {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    min-width: 280px;
}

.slug-prefix-full::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #764ba2;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.slug-input-full {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    background: transparent;
    min-width: 200px;
}

.slug-input-full::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.slug-actions-full {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 8px;
    background: #f7fafc;
    border-left: 1px solid #e2e8f0;
}

.btn-generate-slug-full {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.2);
}

.btn-generate-slug-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(72, 187, 120, 0.3);
}

.btn-check-slug-full {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.btn-check-slug-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.slug-feedback-full {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
    width: 100%;
}

.slug-status-full {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
}

.slug-status-full.available {
    color: #38a169;
}

.slug-status-full.available i {
    color: #48bb78;
}

.slug-status-full.unavailable {
    color: #e53e3e;
}

.slug-status-full.unavailable i {
    color: #f56565;
}

.slug-status-full.checking {
    color: #667eea;
}

.slug-status-full.checking i {
    color: #667eea;
    animation: spin 1s linear infinite;
}

.slug-preview-full {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.preview-url-full {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    word-break: break-all;
}

.slug-input-full.valid {
    color: #38a169;
}

.slug-input-full.invalid {
    color: #e53e3e;
}

/* CSS pour la nouvelle structure séparée */
.slug-input-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.slug-input-field {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slug-input-field:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    outline: none;
}

.slug-input-field::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.btn-auto-generate {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(72, 187, 120, 0.2);
    white-space: nowrap;
}

.btn-auto-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(72, 187, 120, 0.3);
}

.btn-auto-generate:active {
    transform: translateY(0);
}

.slug-feedback {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
}

.slug-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
}

.slug-status.available {
    color: #38a169;
}

.slug-status.available i {
    color: #48bb78;
}

.slug-status.unavailable {
    color: #e53e3e;
}

.slug-status.unavailable i {
    color: #f56565;
}

.slug-status.checking {
    color: #667eea;
}

.slug-status.checking i {
    color: #667eea;
    animation: spin 1s linear infinite;
}

/* CSS pour l'URL de la communauté */
.url-preview-container {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
}

.url-preview-container:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.url-prefix-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 8px;
    white-space: nowrap;
}

.url-slug-display {
    flex: 1;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    padding: 8px 12px;
    background: #f7fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    min-height: 36px;
    display: flex;
    align-items: center;
}

.url-preview-container .btn-copy-url,
.url-preview-container .btn-check-url {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.url-preview-container .btn-copy-url:hover,
.url-preview-container .btn-check-url:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.url-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    padding: 0.5rem 0;
}

.url-status i {
    color: #667eea;
}

.url-status.available {
    color: #38a169;
}

.url-status.available i {
    color: #48bb78;
}

.url-status.unavailable {
    color: #e53e3e;
}

.url-status.unavailable i {
    color: #f56565;
}

.url-status.checking {
    color: #667eea;
}

.url-status.checking i {
    color: #667eea;
    animation: spin 1s linear infinite;
}

/* CSS professionnel pour l'URL du site web */
.website-url-container {
    position: relative;
    margin-bottom: 1rem;
}

.website-url-input-wrapper {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.website-url-input-wrapper:hover {
    border-color: #cbd5e0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.website-url-input-wrapper:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.website-url-prefix {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    min-width: 100px;
}

.website-url-prefix::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #764ba2;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.website-url-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    background: transparent;
    min-width: 200px;
}

.website-url-input::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.website-url-actions {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 8px;
    background: #f7fafc;
    border-left: 1px solid #e2e8f0;
}

.btn-validate-url {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.2);
}

.btn-validate-url:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(72, 187, 120, 0.3);
}

.btn-open-url {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.btn-open-url:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.website-url-feedback {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
}

.website-url-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
}

.website-url-status.valid {
    color: #38a169;
}

.website-url-status.valid i {
    color: #48bb78;
}

.website-url-status.invalid {
    color: #e53e3e;
}

.website-url-status.invalid i {
    color: #f56565;
}

.website-url-status.checking {
    color: #667eea;
}

.website-url-status.checking i {
    color: #667eea;
    animation: spin 1s linear infinite;
}

.website-url-input.valid {
    color: #38a169;
}

.website-url-input.invalid {
    color: #e53e3e;
}

@media (max-width: 768px) {
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .summary-label {
        flex: none;
    }
    
    .summary-value {
        text-align: left;
        flex: none;
        width: 100%;
    }
    
    .summary-section {
        padding: 1rem;
    }
    
    .summary-group {
        padding: 1rem;
    }
}

.text-muted {
    color: #6c757d !important;
}

/* Step titles */
.step-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Form spacing optimization */
.form-step .row {
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: 0;
}

.form-step [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

/* Compact form layout */
.form-step {
    line-height: 1.3;
}

.form-step .row + .row {
    margin-top: 0.5rem;
}

/* Reduce spacing for validation errors when not shown */
.validation-error:not(.show) {
    margin-bottom: 0;
    min-height: 0;
}

/* Country selector with flags */
.country-selector {
    position: relative;
}

.country-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-left: 3rem;
}

.country-flag {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 18px;
    border-radius: 3px;
    z-index: 1;
}

/* Phone input with country code */
.phone-input-container {
    position: relative;
    display: flex;
    gap: 0.5rem;
}

.country-code {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #495057;
    min-width: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

/* Flag icons now handled by SVG images in .flag-mini class */
.country-code .flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.phone-input {
    flex: 1;
}

/* Password strength indicator */
.password-strength-indicator {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
    /* État par défaut sans JavaScript */
    opacity: 0.5;
}

.password-strength-indicator i {
    font-size: 1.2rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.password-strength-indicator.strength-weak i {
    color: #dc3545;
}

.password-strength-indicator.strength-fair i {
    color: #fd7e14;
}

.password-strength-indicator.strength-good i {
    color: #ffc107;
}

.password-strength-indicator.strength-strong i {
    color: #28a745;
}

/* Password feedback inline */
.password-feedback {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    line-height: 1.2;
}

.strength-level {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.missing-requirements {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

/* Couleurs selon la force */
.strength-level.weak {
    color: #dc3545;
}

.strength-level.fair {
    color: #fd7e14;
}

.strength-level.good {
    color: #ffc107;
}

.strength-level.strong {
    color: #28a745;
}

/* Styles spécifiques pour le champ pays Select2 */
.select2-country + .select2-container .select2-selection--single {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    height: 50px !important;
    padding: 0.375rem 0.75rem;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.select2-country + .select2-container--focus .select2-selection--single,
.select2-country + .select2-container--open .select2-selection--single {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background: #ffffff;
}

.select2-country + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #495057;
    line-height: 34px !important;
    padding-left: 0;
    padding-right: 20px;
    font-size: 16px;
    vertical-align: middle;
}

.select2-country + .select2-container .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
    font-style: italic;
}

.select2-country + .select2-container .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    right: 15px !important;
    top: 0 !important;
    position: absolute !important;
}

.select2-country + .select2-dropdown {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.select2-country + .select2-container .select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
}

.select2-country + .select2-container .select2-results__option--highlighted {
    background-color: #007bff;
    color: white;
}

/* Styles spécifiques pour les champs secteur, domaine, spécialité et organisation Select2 */
.select2-sector + .select2-container .select2-selection--single,
.select2-speciality + .select2-container .select2-selection--single,
.select2-user-speciality + .select2-container .select2-selection--single,
.select2-organization + .select2-container .select2-selection--single {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    height: 50px !important;
    padding: 0.375rem 0.75rem;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.select2-sector + .select2-container--focus .select2-selection--single,
.select2-sector + .select2-container--open .select2-selection--single,
.select2-speciality + .select2-container--focus .select2-selection--single,
.select2-speciality + .select2-container--open .select2-selection--single,
.select2-user-speciality + .select2-container--focus .select2-selection--single,
.select2-user-speciality + .select2-container--open .select2-selection--single,
.select2-organization + .select2-container--focus .select2-selection--single,
.select2-organization + .select2-container--open .select2-selection--single {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background: #ffffff;
}

.select2-sector + .select2-container .select2-selection--single .select2-selection__rendered,
.select2-speciality + .select2-container .select2-selection--single .select2-selection__rendered,
.select2-user-speciality + .select2-container .select2-selection--single .select2-selection__rendered,
.select2-organization + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #495057;
    font-size: 16px;
    line-height: 34px !important;
    padding-left: 0;
    vertical-align: middle;
}

.select2-sector + .select2-container .select2-selection--single .select2-selection__placeholder,
.select2-speciality + .select2-container .select2-selection--single .select2-selection__placeholder,
.select2-user-speciality + .select2-container .select2-selection--single .select2-selection__placeholder,
.select2-organization + .select2-container .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

.select2-sector + .select2-dropdown,
.select2-speciality + .select2-dropdown,
.select2-user-speciality + .select2-dropdown,
.select2-organization + .select2-dropdown {
    border: 2px solid #007bff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.select2-sector + .select2-container .select2-results__option,
.select2-speciality + .select2-container .select2-results__option,
.select2-user-speciality + .select2-container .select2-results__option,
.select2-organization + .select2-container .select2-results__option {
    padding: 12px 15px;
    font-size: 16px;
}

.select2-sector + .select2-container .select2-results__option--highlighted,
.select2-speciality + .select2-container .select2-results__option--highlighted,
.select2-user-speciality + .select2-container .select2-results__option--highlighted,
.select2-organization + .select2-container .select2-results__option--highlighted {
    background-color: #007bff;
    color: white;
}

/* Bloc nouvelle organisation - Design moderne professionnel avec charte MyVIOO */
.new-organization-block {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-organization-block.show {
    opacity: 1;
    transform: translateY(0);
}

.new-organization-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(40, 167, 69, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.new-organization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #28a745 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

.new-organization-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(40, 167, 69, 0.02) 0%, 
        rgba(32, 201, 151, 0.02) 50%, 
        rgba(40, 167, 69, 0.02) 100%);
    pointer-events: none;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.new-organization-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    margin: 0;
    border: none;
}

.new-organization-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.new-organization-title i {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.btn-close-new-org {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.btn-close-new-org:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.new-organization-form {
    padding: 35px 30px 30px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
    position: relative;
    z-index: 2;
}

.new-organization-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.new-organization-form .modern-label {
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.new-organization-form .modern-label .required {
    color: #28a745;
    font-weight: bold;
}

.new-organization-form .modern-form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8f5e8;
    border-radius: 12px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
}

.new-organization-form .modern-form-control:focus {
    border-color: #28a745;
    background: #ffffff;
    box-shadow: 0 0 0 0.3rem rgba(40, 167, 69, 0.15), 0 4px 15px rgba(40, 167, 69, 0.2);
    outline: none;
    transform: translateY(-2px);
}

.new-organization-form .modern-form-control:hover {
    border-color: #20c997;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

.new-organization-form .modern-form-control.error {
    border-color: #dc3545;
    background: #fff5f5;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.new-organization-form textarea.modern-form-control {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.new-organization-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #e8f5e8;
    margin-top: 25px;
    position: relative;
}

.new-organization-actions::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

.new-organization-actions .btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.new-organization-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.new-organization-actions .btn:hover::before {
    left: 100%;
}

.new-organization-actions .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: 2px solid transparent;
}

.new-organization-actions .btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.new-organization-actions .btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.new-organization-actions .btn-primary:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5);
}

.new-organization-actions .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.new-organization-actions .btn:disabled::before {
    display: none;
}

/* Option spéciale dans Select2 - Charte verte */
.new-org-select-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 600;
    color: #28a745 !important;
    transition: all 0.3s ease;
}

.new-org-select-option:hover,
.new-org-select-option.selected {
    color: white !important;
    background-color: #28a745;
    border-radius: 4px;
}

.new-org-select-option i {
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

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

/* Validation errors dans le bloc organisation - Même style que les autres validations */
.new-organization-form .validation-error {
    display: none;
    margin-top: 8px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;
    animation: fadeInDown 0.3s ease-out;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-organization-form .validation-error.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.new-organization-form .validation-error i {
    margin-right: 6px;
    font-size: 14px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .new-organization-form {
        padding: 25px 20px;
    }
    
    .new-organization-legend {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .new-organization-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .new-organization-actions .btn {
        justify-content: center;
        padding: 15px 25px;
    }
    
    .new-organization-form .modern-form-control {
        padding: 12px 15px;
    }
}

/* Toast notifications modernes */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast-notification {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #28a745;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

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

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

.toast-notification.info {
    border-left-color: #17a2b8;
}

.toast-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.toast-notification.error::before {
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
}

.toast-notification.info::before {
    background: linear-gradient(180deg, #17a2b8 0%, #138496 100%);
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.toast-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #2d5a3d;
}

.toast-title i {
    font-size: 18px;
    color: #28a745;
}

.toast-notification.error .toast-title {
    color: #721c24;
}

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

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.toast-close:hover {
    background: rgba(108, 117, 125, 0.1);
    transform: rotate(90deg);
}

.toast-message {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #28a745;
    border-radius: 0 0 12px 12px;
    transition: width 0.1s linear;
}

.toast-notification.error .toast-progress {
    background: #dc3545;
}

.toast-notification.info .toast-progress {
    background: #17a2b8;
}

/* Section organisation dans le récapitulatif */
#selected-organization-summary {
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
    border: 2px solid #e8f5e8;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

#selected-organization-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

#selected-organization-summary h5 {
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#selected-organization-summary h5 i {
    color: #28a745;
    font-size: 18px;
}

.organization-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8f5e8;
}

.organization-details .summary-item {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.organization-details .summary-label {
    font-weight: 500;
    color: #495057;
    min-width: 120px;
}

.organization-details .summary-value {
    color: #2d5a3d;
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.organization-details .summary-value a {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
}

.organization-details .summary-value a:hover {
    color: #20c997;
    text-decoration: underline;
}

#summary-selected-organization {
    font-size: 16px;
    color: #2d5a3d;
}

#summary-selected-organization strong {
    color: #28a745;
    font-weight: 600;
}

#summary-selected-organization .text-muted {
    font-style: italic;
    color: #6c757d;
}

/* Animation pour l'apparition des détails */
.organization-details {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.organization-details[style*="block"] {
    opacity: 1;
    transform: translateY(0);
}

/* Alertes modernes */
.modern-alert {
    border: none;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.5s ease-out;
}

.modern-alert.alert-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-left: 4px solid #155724;
}

.modern-alert.alert-danger {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    border-left: 4px solid #721c24;
}

.modern-alert i {
    font-size: 1.2em;
}

.modern-alert strong {
    font-weight: 600;
}

.modern-alert ul {
    padding-left: 20px;
}

.modern-alert ul li {
    margin: 5px 0;
}

/* Header photo pour pages success/error */
.header-photo-container {
    margin-bottom: 30px;
}

.header-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: fadeIn 1s ease-out;
}

/* Styles pour page de succès - Design propre */
.success-content-clean {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.success-icon-clean {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 25px;
    animation: bounceIn 1s ease-out;
}

.success-title-clean {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2rem;
}

.success-subtitle-clean {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.success-message-clean {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.success-action-clean {
    margin: 40px 0;
    text-align: center;
}

.btn-clean {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-clean:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Styles pour page d'erreur - Design propre */
.error-content-clean {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.error-icon-clean {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 25px;
    animation: shake 1s ease-in-out;
}

.error-title-clean {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2rem;
}

.error-description-clean {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-list-clean {
    margin: 30px 0;
    padding: 25px;
    background: #fff5f5;
    border-radius: 15px;
    text-align: left;
    border-left: 4px solid #dc3545;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-list-clean h5 {
    color: #721c24;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.error-list-clean ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-list-clean li {
    padding: 8px 0;
    border-bottom: 1px solid #f8d7da;
    position: relative;
    padding-left: 30px;
    color: #721c24;
}

.error-list-clean li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.error-list-clean li:last-child {
    border-bottom: none;
}

.error-actions-clean {
    margin: 40px 0;
    text-align: center;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}


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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Navigation des boutons */
.form-navigation {
    display: flex !important;
    justify-content: flex-end !important; /* Toujours à droite par défaut */
    align-items: center;
    margin-top: 2rem;
    padding: 1rem 0;
    gap: 1rem;
}

.form-navigation .btn {
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Quand il y a un bouton Précédent visible, aligner à gauche et droite */
.form-navigation:has(.btn-secondary:not([style*="display: none"])) {
    justify-content: space-between !important;
}

/* Force le bouton suivant à droite quand le bouton précédent est caché */
.form-navigation:has(.btn-secondary[style*="display: none"]) {
    justify-content: flex-end !important;
}

/* Style spécifique pour le bouton suivant seul */
.form-navigation .btn-primary:only-child {
    margin-left: auto !important;
}

/* Alternative: utiliser JavaScript pour ajouter une classe */
.form-navigation.step-1-only {
    justify-content: flex-end !important;
}

.form-navigation.step-multiple {
    justify-content: space-between !important;
}

.form-navigation .btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

.form-navigation .btn-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.form-navigation .btn-primary {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    border-color: #fd7e14;
    color: white;
}

.form-navigation .btn-primary:hover {
    background: linear-gradient(135deg, #e8690b, #ffb300);
    border-color: #e8690b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
}

.form-navigation .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-color: #28a745;
    color: white;
}

.form-navigation .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Styles pour la validation - utiliser les styles existants */
.is-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Styles pour Select2 */
.select2-container--bootstrap-5 .select2-selection {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    min-height: 45px;
    padding: 0.375rem 0.75rem;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    transform: translateY(-2px);
}

.select2-container--bootstrap-5 .select2-selection__rendered {
    color: #495057;
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 0;
    padding-right: 0;
}

.select2-container--bootstrap-5 .select2-selection__placeholder {
    color: #6c757d;
    font-size: 0.95rem;
    opacity: 0.8;
}

.select2-dropdown {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.select2-container--bootstrap-5 .select2-results__option {
    padding: 8px 12px;
    font-size: 0.95rem;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: #28a745;
    color: white;
}

.flag-emoji {
    font-size: 1.2em;
    margin-right: 8px;
}

/* Styles pour le champ téléphone */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.phone-prefix {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0.75rem 0.75rem;
    min-height: 45px;
    white-space: nowrap;
}

.phone-prefix .flag-emoji-display {
    font-size: 1.2em;
    margin-right: 8px;
    display: inline-block;
    line-height: 1;
}

/* Fallback pour les anciennes images SVG si elles existent encore */
.phone-prefix img.flag-mini {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    border-radius: 2px;
    object-fit: cover;
}

.phone-prefix span {
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
}

.phone-input {
    border-left: none !important;
    border-radius: 0 12px 12px 0 !important;
    padding-left: 0.75rem !important;
}

.phone-input:focus {
    border-left: none !important;
}

/* Assurer la cohérence visuelle */
.phone-input-wrapper:focus-within .phone-prefix {
    border-color: #28a745;
    background: white;
}

/* État initial du tooltip sans JavaScript */
.password-tooltip .strength-text {
    color: #6c757d;
}

.password-tooltip .strength-fill {
    width: 0%;
    background: #e9ecef;
}

.password-tooltip.show {
    display: block;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper:hover .password-tooltip,
.password-strength-indicator:hover + .password-tooltip {
    display: block;
}

.strength-bar {
    height: 4px;
    border-radius: 2px;
    background: #e9ecef;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 0%;
}

.strength-weak .strength-fill {
    width: 25%;
    background: #dc3545;
}

.strength-fair .strength-fill {
    width: 50%;
    background: #fd7e14;
}

.strength-good .strength-fill {
    width: 75%;
    background: #ffc107;
}

.strength-strong .strength-fill {
    width: 100%;
    background: #28a745;
}

.strength-text {
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strength-weak .strength-text {
    color: #dc3545;
}

.strength-fair .strength-text {
    color: #fd7e14;
}

.strength-good .strength-text {
    color: #ffc107;
}

.strength-strong .strength-text {
    color: #28a745;
}

.strength-requirements {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.strength-requirements ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.strength-requirements li {
    margin-bottom: 0.25rem;
    position: relative;
}

.strength-requirements li::before {
    content: "✗";
    position: absolute;
    left: -1.2rem;
    color: #dc3545;
    font-weight: bold;
}

.strength-requirements li.met::before {
    content: "✓";
    color: #28a745;
}

/* Password tooltip requirements */

/* Styles pour les étapes Owner */
.owner-step {
    display: none;
}

.owner-step.show {
    display: block;
}

.owner-summary {
    display: none;
}

.owner-summary.show {
    display: block;
}


/* Titre principal du récapitulatif - Charte verte */
.summary-main-title {
    color: #28a745 !important;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #28a745;
    padding-bottom: 0.5rem;
}

.requirement {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
    color: #dc3545;
    transition: color 0.3s ease;
}

.requirement::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.requirement.met {
    color: #28a745;
}

.requirement.met::before {
    content: "✓";
    color: #28a745;
}

.step-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Validation styles */
.form-group {
    position: relative;
    margin-bottom: 0.25rem;
}

.validation-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.15rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-height: 0.8rem;
}

.validation-error.show {
    opacity: 1;
    transform: translateY(0);
}

.validation-error i {
    margin-right: 0.5rem;
}

.modern-form-control.error {
    border-color: #dc3545;
    background-color: #fff5f5;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.modern-form-control.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.modern-form-control.valid {
    border-color: #28a745;
    background-color: #f8fff8;
}

.modern-form-control.valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Classes spécifiques pour la force du mot de passe */
.modern-form-control.password-weak {
    border-color: #dc3545 !important;
    background-color: #fff5f5 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.modern-form-control.password-fair {
    border-color: #fd7e14 !important;
    background-color: #fff8f0 !important;
    box-shadow: 0 0 0 0.2rem rgba(253, 126, 20, 0.25) !important;
}

.modern-form-control.password-good {
    border-color: #ffc107 !important;
    background-color: #fffdf0 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25) !important;
}

.modern-form-control.password-strong {
    border-color: #28a745 !important;
    background-color: #f8fff8 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Email validation states - Style EXACTEMENT identique aux autres champs */
.validation-error.checking {
    color: #17a2b8;
    font-size: 0.875rem;
    margin-top: 0.15rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    min-height: 0.8rem;
}

.validation-error.success {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.15rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    min-height: 0.8rem;
}

.validation-error.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.15rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    min-height: 0.8rem;
}

/* Icônes avec même espacement */
.validation-error.checking i,
.validation-error.success i,
.validation-error.error i {
    margin-right: 0.5rem;
}

/* États des champs - Cohérent avec le style existant */
.modern-form-control.is-checking {
    border-color: #17a2b8 !important;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25) !important;
    background-color: rgba(23, 162, 184, 0.05) !important;
}

.modern-form-control.is-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
    background-color: rgba(40, 167, 69, 0.05) !important;
}

.modern-form-control.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
    background-color: rgba(220, 53, 69, 0.05) !important;
}

/* Animation pour le spinner */
.fa-spinner.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}
/* .form-group.valid::after {
    content: "✓";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    pointer-events: none;
} */

/* .password-input-wrapper.valid::after {
    right: 50px;
} */

/* Validation summary */
.validation-summary {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: none;
}

.validation-summary.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.validation-summary h6 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.validation-summary ul {
    margin: 0;
    padding-left: 1.5rem;
}

.validation-summary li {
    margin-bottom: 0.25rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .account-type-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-indicator {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .step-indicator > div {
        max-width: 120px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .step-circle i {
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.8rem;
        min-height: 2rem;
    }
    
    .account-type-card {
        padding: 1.5rem;
    }
    
    .account-type-card i {
        font-size: 3rem;
    }
    
    .account-type-card h4 {
        font-size: 1.2rem;
    }
    
    .modern-form-control {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .modern-label {
        font-size: 0.85rem;
    }
    
    .btn-modern {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===== PRICING PLAN STYLES ===== */
.pricing-plan-selection {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-option {
    flex: 1;
    position: relative;
}

.pricing-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pricing-label {
    display: block;
    padding: 2rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-label:hover {
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.pricing-option input[type="radio"]:checked + .pricing-label {
    border-color: #28a745;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.25);
}

.pricing-option input[type="radio"]:checked + .pricing-label .pricing-icon {
    color: #fff;
}

.pricing-option input[type="radio"]:checked + .pricing-label .pricing-price {
    color: #fff;
    font-weight: bold;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #28a745;
    transition: all 0.3s ease;
}

.pricing-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: inherit;
}

.pricing-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.pricing-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #28a745;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Free Plan Specific Styles */
.pricing-option[data-plan="free"] .pricing-icon {
    color: #28a745;
}

.pricing-option[data-plan="free"] input[type="radio"]:checked + .pricing-label {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.pricing-option[data-plan="free"] input[type="radio"]:checked + .pricing-label .pricing-price {
    color: #fff;
}

/* Paid Plan Specific Styles */
.pricing-option[data-plan="paid"] .pricing-icon {
    color: #28a745;
}

.pricing-option[data-plan="paid"] input[type="radio"]:checked + .pricing-label {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.pricing-option[data-plan="paid"] .pricing-price {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-option[data-plan="paid"] input[type="radio"]:checked + .pricing-label .pricing-price {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-plan-selection {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-label {
        padding: 1.5rem 1rem;
    }
    
    .pricing-icon {
        font-size: 2rem;
    }
    
    .pricing-content h4 {
        font-size: 1.3rem;
    }
    
    .pricing-price {
        font-size: 1rem;
    }
}

/* Animation for selection */
@keyframes pricingPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.pricing-option input[type="radio"]:checked + .pricing-label {
    animation: pricingPulse 0.6s ease-out;
}


/* ========================================
   SIMPLE SECTION DESIGN FOR COMMUNITY STEP
   ======================================== */

.section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.section-title {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: #28a745;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Simplified form spacing */
.form-step .row .col-12.px-2.mb-3 {
    margin-bottom: 1.5rem !important;
}

.form-step .row .col-12.px-2.mb-1 {
    margin-bottom: 0rem !important;
}

/* Cleaner pricing options */
.pricing-plan-selection {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.pricing-option {
    flex: 1;
    position: relative;
}

.pricing-label {
    display: block;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.pricing-label:hover {
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

.pricing-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pricing-option input[type="radio"]:checked + .pricing-label {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.pricing-icon {
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-icon i {
    font-size: 1.5rem;
    color: #28a745;
}

.pricing-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    text-align: center;
}

.pricing-content p {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
}

.pricing-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #28a745;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .pricing-plan-selection {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
}

