 :root {
            --primary-color: #E57103;
            --primary-dark: #cc6400;
            --primary-light: #fef0e3;
            --secondary-color: #2c3e50;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #6c757d;
            --white: #ffffff;
            --black: #333333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
            --border-radius: 30px;
            --font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

    
      

        .subtitle {
            font-size: 1.2rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Champ de recherche principal */
        .search-container {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 30px;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .search-container:focus-within {
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
            transform: translateY(-2px);
        }

        .search-form {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .search-input-wrapper {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 25px;
        }

        .search-icon {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-right: 15px;
            transition: var(--transition);
        }

        .search-container:focus-within .search-icon {
            transform: scale(1.1);
        }

        .search-input {
            width: 100%;
            padding: 22px 0;
            border: none;
            outline: none;
            font-size: 1.1rem;
            color: var(--secondary-color);
            font-family: var(--font-family);
            background: transparent;
        }

        .search-input::placeholder {
            color: #aaa;
            font-weight: 400;
        }

        .search-button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0 40px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 70px;
            border-top-right-radius: var(--border-radius);
            border-bottom-right-radius: var(--border-radius);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .search-button:hover {
            background-color: var(--primary-dark);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 4px 8px rgba(229, 113, 3, 0.3);
        }

        .search-button:active {
            transform: translateY(1px);
        }

        .search-button i {
            margin-left: 10px;
            font-size: 0.9rem;
        }

        /* Variantes de design */
        .design-variants {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .variant-title {
            text-align: center;
            margin: 60px 0 30px;
            color: var(--secondary-color);
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
        }

        .variant-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 3px;
        }

        .variant {
            background-color: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .variant h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        /* Version avec bouton intégré */
        .search-integrated {
            display: flex;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .search-integrated:focus-within {
            box-shadow: var(--shadow-hover);
        }

        .search-integrated .search-input {
            padding: 20px 25px;
            background-color: var(--white);
            border-top-left-radius: var(--border-radius);
            border-bottom-left-radius: var(--border-radius);
            border: 2px solid transparent;
            border-right: none;
        }

        .search-integrated .search-button {
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            min-height: 66px;
        }

        /* Version minimaliste */
        .search-minimal {
            display: flex;
            border-radius: var(--border-radius);
            overflow: hidden;
            background-color: var(--white);
            border: 2px solid var(--medium-gray);
            transition: var(--transition);
        }

        .search-minimal:focus-within {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        .search-minimal .search-input {
            padding: 18px 25px;
            background-color: transparent;
        }

        .search-minimal .search-button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0 30px;
            border-radius: var(--border-radius);
            margin: 5px;
            min-height: 60px;
        }

        /* Version avec icône seulement */
        .search-icon-only .search-button {
            padding: 0 25px;
        }

        .search-icon-only .search-button span {
            display: none;
        }

        .search-icon-only .search-button i {
            margin-left: 0;
            font-size: 1.2rem;
        }

        /* Informations et instructions */
        .instructions {
            margin-top: 40px;
            text-align: center;
            color: var(--dark-gray);
            font-size: 0.95rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .instructions p {
            margin-bottom: 10px;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .feature {
            display: flex;
            align-items: center;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .feature i {
            margin-right: 8px;
        }

        /* Version mobile */
        @media screen and (max-width: 768px) {
            .search-container, .search-integrated, .search-minimal {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            
            .search-input-wrapper {
                padding: 20px;
                width: 100%;
            }
            
            .search-input {
                padding: 15px 0;
            }
            
            .search-button {
                padding: 20px;
                width: 100%;
                border-radius: 0 0 var(--border-radius) var(--border-radius);
                min-height: 60px;
            }
            
            .search-integrated .search-input,
            .search-integrated .search-button {
                border-radius: 0;
            }
            
            .search-integrated .search-input {
                border-radius: var(--border-radius) var(--border-radius) 0 0;
            }
            
            .search-integrated .search-button {
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }
            
            .search-minimal .search-button {
                margin: 8px;
                border-radius: var(--border-radius);
            }
            
            .design-variants {
                grid-template-columns: 1fr;
            }
            
            .logo {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
        }

        /* Animation pour focus */
        .search-input:focus {
            background-color: var(--white);
        }

        /* Code couleur affiché */
        .color-info {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow);
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .color-sample {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 10px;
            margin: 0 auto 15px;
            box-shadow: 0 4px 8px rgba(229, 113, 3, 0.3);
        }

        .color-code {
            font-family: monospace;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
            background-color: var(--light-gray);
            padding: 5px 15px;
            border-radius: 5px;
            display: inline-block;
            margin-top: 10px;
        }

        .demo-title {
            text-align: center;
            margin-top: 60px;
            color: var(--dark-gray);
            font-size: 0.95rem;
            border-top: 1px solid var(--medium-gray);
            padding-top: 30px;
            max-width: 800px;
        }


        /*Hero*/


         .hero {
            /*background-color: #2F5597;*/
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 40px 5%;
        }

        /* Motifs circulaires en arrière-plan */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 40px, transparent 50px),
                radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.07) 60px, transparent 70px),
                radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.06) 70px, transparent 80px),
                radial-gradient(circle at 80% 85%, rgba(255, 255, 255, 0.04) 50px, transparent 60px),
                radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05) 90px, transparent 100px);
                */
            z-index: 1;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: #FFD700;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-primary {
            background-color: #FFD700;
            color: #2F5597;
            border: none;
        }

        .btn-primary:hover {
            background-color: #FFC400;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            /*background-color: transparent;*/
            background-color: #2F5597;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .image-container {
            position: relative;
            width: 100%;
            max-width: 600px;
        }

        .main-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .main-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        /* Icônes de métiers manuels */
        .craft-icons {
            display: flex;
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50px;
            padding: 15px 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            gap: 20px;
        }

        .icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #2F5597;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .icon-label {
            font-size: 0.8rem;
            color: #2F5597;
            font-weight: 600;
        }

        /* Stats section */
        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            max-width: 500px;
            z-index: 2;
            position: relative;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #FFD700;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 60px 5%;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 50px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .image-container {
                max-width: 80%;
            }
            
            .stats {
                margin: 50px auto 0;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 22px;
                font-size: 1rem;
            }
            
            .craft-icons {
                padding: 10px 15px;
                gap: 15px;
                bottom: -15px;
            }
            
            .icon-circle {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .craft-icons {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }


/*Champ qui se filtre*/

.filter-section {
            margin-bottom: 30px;
        }
        
        .search-box {
            position: relative;
            margin-bottom: 15px;
        }
        
        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #8e2de2;
            font-size: 1.2rem;
        }
        
        #search-input {
            width: 100%;
            padding: 18px 20px 18px 55px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
        }
        
        #search-input:focus {
            outline: none;
            border-color: #8e2de2;
            background-color: white;
            box-shadow: 0 5px 15px rgba(142, 45, 226, 0.1);
        }
        
        .select-wrapper {
            position: relative;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            background-color: #f9f9f9;
            transition: all 0.3s ease;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .select-wrapper:focus-within {
            border-color: #8e2de2;
            box-shadow: 0 5px 15px rgba(142, 45, 226, 0.1);
        }
        
        #styled-select {
            width: 100%;
            padding: 18px 20px;
            border: none;
            background-color: transparent;
            font-size: 1.1rem;
            color: #333;
            cursor: pointer;
            outline: none;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        
        .select-wrapper::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #8e2de2;
            pointer-events: none;
            font-size: 1rem;
        }
        
        #styled-select option {
            padding: 15px 20px;
            font-size: 1rem;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s;
        }
        
        #styled-select option:hover {
            background-color: #f0e6ff;
        }
        
        #styled-select option:checked {
            background-color: #8e2de2;
            color: white;
        }
        
        .result-info {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding: 15px;
            background-color: #f0e6ff;
            border-radius: 10px;
            color: #4a00e0;
            font-weight: 500;
        }
        
        .highlight {
            background-color: #fffacd;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: bold;
        }
        
        .instructions {
            background-color: #f9f9f9;
            border-left: 4px solid #8e2de2;
            padding: 18px;
            margin-top: 25px;
            border-radius: 0 10px 10px 0;
        }
        
        .instructions h3 {
            color: #4a00e0;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .instructions ul {
            padding-left: 20px;
        }
        
        .instructions li {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
        }
        
        @media (max-width: 768px) {
            .container {
                border-radius: 15px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .content {
                padding: 20px;
            }
            
            #search-input, #styled-select {
                padding: 15px 20px 15px 50px;
                font-size: 1rem;
            }
        }

        /*Code étape soumission problème*/

        .form-container {
            width: 100%;
            max-width: 800px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        .form-header {
            background: linear-gradient(to right, #4a00e0, #8e2de2);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .form-header h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .form-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .steps-indicator {
            display: flex;
            justify-content: center;
            margin: 30px 0;
            position: relative;
        }
        
        .steps-indicator:before {
            content: '';
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 4px;
            background-color: #e0e0e0;
            z-index: 1;
        }
        
        .step {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #888;
            margin: 0 25px;
            z-index: 2;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .step.active {
            background-color: #4a00e0;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(74, 0, 224, 0.4);
        }
        
        .step.completed {
            background-color: #00c851;
            color: white;
        }
        
        .step-label {
            position: absolute;
            bottom: -30px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #555;
            white-space: nowrap;
        }
        
        .step.active .step-label {
            color: #4a00e0;
        }
        
        .form-content {
            padding: 30px 40px;
            min-height: 400px;
            position: relative;
            overflow: auto;
        }
        
        .form-step {
            position: absolute;
            width: calc(100% - 80px);
            padding: 20px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        
        .form-step.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: all;
        }
        
        .form-step h2 {
            color: #4a00e0;
            margin-bottom: 25px;
            font-size: 1.8rem;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        
        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: #4a00e0;
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 0, 224, 0.1);
        }
        
        .form-footer {
            padding: 25px 40px;
            background-color: #f9f9f9;
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #eee;
        }
        
        .btn {
            padding: 14px 30px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-prev {
            background-color: #f0f0f0;
            color: #555;
        }
        
        .btn-prev:hover {
            background-color: #e0e0e0;
        }
        
        .btn-next {
            background: linear-gradient(to right, #4a00e0, #8e2de2);
            color: white;
        }
        
        .btn-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
        }
        
        .btn-submit {
            background: linear-gradient(to right, #00c851, #00d26a);
            color: white;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 200, 81, 0.3);
        }
        
        .step-progress {
            height: 8px;
            background-color: #e0e0e0;
            border-radius: 4px;
            margin-top: 20px;
            overflow: hidden;
        }
        
        .step-progress-bar {
            height: 100%;
            background: linear-gradient(to right, #4a00e0, #8e2de2);
            width: 33.33%;
            transition: width 0.5s ease;
        }
        
        .success-message {
            text-align: center;
            padding: 50px 20px;
            display: none;
        }
        
        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(to right, #00c851, #00d26a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 3rem;
        }
        
        .success-message h2 {
            color: #00c851;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .form-container {
                margin: 10px;
            }
            
            .form-content {
                padding: 20px;
                min-height: 350px;
            }
            
            .form-step {
                width: calc(100% - 40px);
            }
            
            .steps-indicator:before {
                width: 80%;
            }
            
            .step {
                width: 50px;
                height: 50px;
                margin: 0 15px;
            }
        }

        /*Fin code soumission */