/* Landing Page Voyance - Design Immersif et Captivant */

/* Variables CSS */
:root {
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary-color: #F59E0B;
    --accent-color: #EF4444;
    --mystic-purple: #A855F7;
    --cosmic-blue: #3B82F6;
    --ethereal-pink: #EC4899;
    --golden-yellow: #FCD34D;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-mystic: 0 0 50px rgba(139, 92, 246, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.8s ease;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    background: #000;
}

/* Fond animé mystique */
.voyance-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 25%, #16213E 50%, #0F3460 75%, #533483 100%);
    overflow: hidden;
}

/* Particules flottantes */
.voyance-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(236, 72, 153, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(252, 211, 77, 0.8), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(168, 85, 247, 0.8), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float 20s linear infinite;
    opacity: 0.6;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Effet de néon pulsant */
.voyance-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Header immersif */
.voyance-header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    z-index: 10;
}

.voyance-titre {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FCD34D, #F59E0B, #EC4899, #A855F7, #3B82F6);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    position: relative;
}

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

/* Effet de lueur autour du titre */
.voyance-titre::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FCD34D, #F59E0B, #EC4899, #A855F7, #3B82F6);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

.voyance-sous-titre {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Problématiques avec effet holographique */
.voyance-avantages {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.8s both;
}

.problematiques h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* Section de solution */
.voyance-solution {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 1.2s both;
}

.voyance-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.voyance-solution h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
    position: relative;
    z-index: 2;
}

.voyance-solution p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
}

.voyance-avantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.voyance-avantages ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.voyance-avantages li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    padding-left: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    animation: fadeInLeft 0.8s ease-out both;
}

.voyance-avantages li:nth-child(1) { animation-delay: 0.02s; }
.voyance-avantages li:nth-child(2) { animation-delay: 0.04s; }
.voyance-avantages li:nth-child(3) { animation-delay: 0.06s; }
.voyance-avantages li:nth-child(4) { animation-delay: 0.08s; }

.voyance-avantages li::before {
    content: '✨';
    margin-right: 15px;
    font-size: 1.3rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Formulaire futuriste */
.voyance-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 1s both;
}

.voyance-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FCD34D, #F59E0B, #EC4899, #A855F7, #3B82F6);
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    animation: fadeInUp 0.15s ease-out both;
}

.form-group:nth-child(1) { animation-delay: 0.01s; }
.form-group:nth-child(2) { animation-delay: 0.02s; }
.form-group:nth-child(3) { animation-delay: 0.03s; }
.form-group:nth-child(4) { animation-delay: 0.04s; }
.form-group:nth-child(5) { animation-delay: 0.05s; }

.form-group label {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.form-group:hover label::after {
    width: 50%;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.5), rgba(139, 92, 246, 0.5));
}

.form-group:focus-within label::after {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--mystic-purple));
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"] {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Styles spécifiques pour iOS - champs date */
.form-group input[type="date"] {
    /* Forcer la même apparence que les autres champs sur iOS */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* S'assurer que la hauteur est cohérente */
    height: auto;
    min-height: 56px; /* 18px padding top + 18px padding bottom + 20px line-height */
    box-sizing: border-box;
}

/* Styles pour les navigateurs WebKit (Safari, Chrome sur iOS) */
@supports (-webkit-appearance: none) {
    .form-group input[type="date"] {
        /* Supprimer les styles par défaut de Safari */
        -webkit-appearance: none;
        /* S'assurer que le texte est aligné correctement */
        text-align: left;
        /* Forcer la même taille de police */
        font-size: 1rem;
        /* S'assurer que la couleur est cohérente */
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Styles spécifiques pour iOS Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .form-group input[type="date"] {
        /* Supprimer les icônes par défaut de Safari */
        -webkit-appearance: none;
        /* S'assurer que le padding est respecté */
        padding: 18px 20px;
        /* Forcer la même hauteur */
        line-height: 1.2;
    }
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:hover {
    border-color: rgba(236, 72, 153, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
    transform: translateY(-1px);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* S'assurer que les états hover et focus fonctionnent sur iOS */
.form-group input[type="date"]:hover {
    border-color: rgba(236, 72, 153, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
    transform: translateY(-1px);
}

.form-group input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.age-notice {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

.success-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: slideInDown 0.3s ease;
}

/* Checkbox mystique */
.consentement {
    margin-bottom: 30px;
    animation: fadeInUp 0.15s ease-out 0.1s both;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    margin-right: 15px;
    margin-top: 2px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: block;
}

.checkbox-label:hover .checkmark {
    border-color: rgba(236, 72, 153, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, var(--primary-color), var(--mystic-purple));
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    animation: checkmarkPulse 0.5s ease-out;
}

@keyframes checkmarkPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    animation: sparkle 1s ease-out;
}

/* Bouton de soumission spectaculaire */
.voyance-submit {
    width: 100%;
    background: linear-gradient(45deg, #FCD34D, #F59E0B, #EC4899, #A855F7, #3B82F6);
    background-size: 400% 400%;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease-in-out infinite, fadeInUp 0.8s ease-out 2.4s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.voyance-submit::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;
}

.voyance-submit:hover::before {
    left: 100%;
}

.voyance-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.voyance-submit:active {
    transform: translateY(-1px) scale(0.98);
}

.voyance-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    animation-play-state: paused;
}

/* Messages avec effet holographique */
.voyance-message {
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.5s ease-out;
}

.voyance-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.voyance-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

/* Messages d'erreur de validation */
.field-error {
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group input.error {
    border-color: #EF4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
    animation: errorPulse 0.5s ease-in-out;
}

@keyframes errorPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.5); }
}

.consentement.error .field-error {
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 8px;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* États de chargement */
.loading .btn-text {
    display: none;
}

.loading .btn-loading {
    display: inline-block !important;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Effet de parallaxe sur scroll */
.voyance-container {
    perspective: 1000px;
}

.voyance-header,
.voyance-avantages,
.voyance-form {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Responsive Design */
@media (min-width: 768px) {
    .voyance-container {
        padding: 40px;
        max-width: 700px;
    }
    
    .voyance-titre {
        font-size: 4rem;
    }
    
    .voyance-sous-titre {
        font-size: 1.5rem;
    }
    
    .voyance-form {
        padding: 50px 40px;
    }
    
    .voyance-submit {
        padding: 25px;
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .voyance-container {
        max-width: 800px;
        padding: 60px 40px;
    }
    
    .voyance-titre {
        font-size: 5rem;
    }
    
    .voyance-avantages {
        padding: 40px;
    }
}

/* Effet de curseur personnalisé */
.voyance-container {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

.custom-cursor.hover {
    transform: scale(2);
    background: radial-gradient(circle, rgba(236, 72, 153, 0.8), transparent);
}

/* Améliorations d'accessibilité */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible pour l'accessibilité */
.voyance-submit:focus-visible,
.form-group input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Support du mode sombre */
@media (prefers-color-scheme: dark) {
    .voyance-container {
        background: linear-gradient(135deg, #000000 0%, #1A1A2E 25%, #16213E 50%, #0F3460 75%, #533483 100%);
    }
}

/* Système de particules */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8), transparent);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle.attracted {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.8), transparent);
    transform: scale(1.5);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Effets de distorsion */
.distorted {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    filter: hue-rotate(30deg);
    transition: all 0.3s ease;
}

/* Effets de néon */
.neon-pulse {
    text-shadow: 
        0 0 5px rgba(139, 92, 246, 0.8),
        0 0 10px rgba(139, 92, 246, 0.6),
        0 0 15px rgba(139, 92, 246, 0.4),
        0 0 20px rgba(139, 92, 246, 0.2);
}

.neon-glow {
    box-shadow: 
        0 0 10px rgba(139, 92, 246, 0.5),
        0 0 20px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(139, 92, 246, 0.1);
}

/* Effets de morphing */
.morphing {
    transform: scale(1.05) skew(-2deg);
    filter: hue-rotate(180deg);
    transition: all 0.3s ease;
}

/* Curseur personnalisé */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

.custom-cursor.hover {
    transform: scale(2);
    background: radial-gradient(circle, rgba(236, 72, 153, 0.8), transparent);
}

/* Animations d'entrée avancées */
.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.title-complete {
    animation: titleComplete 0.5s ease-out;
}

@keyframes titleComplete {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Effets de validation */
.shake {
    animation: shake 0.5s ease-in-out;
}

.success-glow {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    border-color: #10B981;
}

.formatting {
    background: rgba(252, 211, 77, 0.2);
    transform: scale(1.02);
}

/* Particules d'erreur */
.error-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #EF4444, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    animation: errorParticle 1s ease-out forwards;
}

@keyframes errorParticle {
    0% {
        transform: scale(0) translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: scale(1) translate(var(--x), var(--y));
        opacity: 0;
    }
}

/* États de soumission */
.preparing-submission {
    filter: brightness(1.2) contrast(1.1);
}

.submitting {
    filter: hue-rotate(30deg) brightness(1.1);
}

.success-animation {
    animation: successPulse 2s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Animation de chargement */
.loading-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: flex;
    gap: 10px;
}

.loading-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #FCD34D, #F59E0B, #EC4899, #A855F7, #3B82F6);
    border-radius: 50%;
    animation: loadingBounce 1.4s ease-in-out infinite both;
}

@keyframes loadingBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Confettis */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 1000;
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Effets de vibration */
.celebration-vibration {
    animation: celebrationVibration 1s ease-out;
}

.error-vibration {
    animation: errorVibration 0.5s ease-in-out;
}

@keyframes celebrationVibration {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes errorVibration {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Indicateur de tracking */
.tracking-indicator {
    animation: trackingPulse 1s ease-out;
}

@keyframes trackingPulse {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* Effets de distorsion au scroll */
.voyance-container {
    transition: filter 0.1s ease-out;
}

/* Responsive pour les effets */
@media (max-width: 768px) {
    .particle {
        width: 2px;
        height: 2px;
    }
    
    .custom-cursor {
        display: none;
    }
    
    .loading-dot {
        width: 8px;
        height: 8px;
    }
    
    .confetti {
        width: 6px;
        height: 6px;
    }
}

/* Optimisations de performance */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .confetti,
    .error-particle {
        animation: none;
    }
    
    .custom-cursor {
        display: none;
    }
    
    .distorted,
    .morphing {
        transform: none;
        filter: none;
    }
}

/* Formulaire Multi-Étapes Immersif */
.voyance-form-multi-step {
    position: relative;
    max-width: 100vw;
    margin: 0 auto;
    min-height: 100svh;
    /* ;*/
    padding: 40px;
    overflow: visible;
}

/* Particules flottantes pour le formulaire */
.voyance-form-multi-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(236, 72, 153, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(252, 211, 77, 0.8), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(168, 85, 247, 0.8), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float 20s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

/* Effet de néon pulsant pour le formulaire */
.voyance-form-multi-step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.step-container {
    position: relative;
    min-height: 400px;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.step.previous {
    opacity: 0;
    transform: translateX(-50px);
}

.step-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    text-align: left;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.step-title sup {
    font-size: .8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.step-subtitle {
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.step-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
}

.progress-dot.active {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
    transform: scale(1.2);
}

.progress-dot.completed {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Options de choix */
.choice-options {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.choice-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    min-height: 60px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.choice-option:nth-child(1) { animation-delay: 0.01s; }
.choice-option:nth-child(2) { animation-delay: 0.02s; }
.choice-option:nth-child(3) { animation-delay: 0.03s; }
.choice-option:nth-child(4) { animation-delay: 0.04s; }
.choice-option:nth-child(5) { animation-delay: 0.05s; }
.choice-option:nth-child(6) { animation-delay: 0.06s; }

.choice-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.choice-option.selected {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.3));
    border: 3px solid #EC4899;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    transform: translateY(-3px);
}

.choice-option.selected .choice-icon {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.choice-option.selected .choice-label {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}



.choice-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 0.6s ease;
}

.choice-option:hover::before {
    left: 100%;
}

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

.choice-label {
    display: flex;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    width: 100%;
    position: relative;
    padding-left: 60px;
    padding-right: 20px;
    transition: all 0.3s ease;
}



.choice-icon {
    font-size: 1.5rem;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}



/* Messages psychologiques */
.psychological-message {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.psychological-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.psychological-message h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.psychological-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Boutons de navigation */
.step-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    backdrop-filter: blur(10px);
    padding: 15px;
    z-index: 100;
    left: 0;
    bottom: 0;
    position: fixed;
}

.step-btn {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.step-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

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

.step-btn:hover::before {
    left: 100%;
}

.btn-back {
    background: linear-gradient(135deg, #6B7280, #4B5563);
}

.btn-back:hover {
    background: none !important;
    box-shadow: none !important;
}

/* Animations spéciales */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); }
    50% { box-shadow: 0 0 30px rgba(236, 72, 153, 0.8); }
}



/* Responsive */
@media (max-width: 768px) {
    .voyance-form-multi-step {
        padding: 0 16px 60px;
        margin: 0 0 60px;
    }

    .step-progress {
        padding: 14px;
        gap: 6px;
    }
    .progress-dot {
        flex: 0 0 12px;
        height: 12px;
        margin: 0;
    }

    .step-navigation {
        padding: 10px;
    }
    
    .step-title {
        font-size: 1.6rem;
    }
    
    .choice-options {
        gap: 10px;
    }
    
    .choice-option {
        padding: 15px;
    }
    
    .choice-label {
        font-size: 1rem;
    }
    
    .step-navigation {
        flex-direction: row-reverse;
        gap: 15px;
        align-items: stretch;
    }
    
    .step-btn {
        width: 100%;
        order: 1;
    }
    
    /* Styles spécifiques pour iOS mobile - champs date */
    .form-group input[type="date"] {
        /* S'assurer que la hauteur est cohérente sur mobile iOS */
        min-height: 52px; /* Légèrement plus petit sur mobile */
        font-size: 16px; /* Éviter le zoom automatique sur iOS */
        /* Forcer l'apparence cohérente */
        -webkit-appearance: none;
        appearance: none;
        /* S'assurer que le padding est respecté */
        padding: 16px 18px;
    }
    
    .btn-back {
        order: 2;
    }
}

/* Effets immersifs pour le mode immersif */
.immersive-mode .voyance-form-multi-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.immersive-mode .choice-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(236, 72, 153, 0.8);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.4);
}

.immersive-mode .step-btn {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

/* Styles pour la page de démonstration multi-étapes */
.demo-multi-step-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.demo-steps-explanation {
    margin: 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-explanation {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-explanation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
    border-color: rgba(236, 72, 153, 0.5);
}

.step-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 0.6s ease;
}

.step-explanation:hover::before {
    left: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.step-explanation h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.step-explanation p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.demo-statistics {
    margin: 60px 0;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.voyance-introduction {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.voyance-introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.voyance-introduction p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive pour la démonstration */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .step-explanation {
        padding: 20px;
    }
    
    .stat-card {
        padding: 20px;
    }
}

/* Styles pour les étapes de transition */
.transition-step {
    text-align: center;
    padding: 0;
}

.transition-message {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.transition-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.transition-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    display: block;
}

.transition-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
    position: relative;
    z-index: 2;
}

.transition-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.transition-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Animation spéciale pour les étapes de transition */
.transition-step .step-header {
    animation: fadeInDown 0.6s ease-out;
}

.transition-step .transition-message {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.transition-step .stat-item:nth-child(1) {
    animation: fadeInLeft 0.6s ease-out 0.4s both;
}

.transition-step .stat-item:nth-child(2) {
    animation: fadeInRight 0.6s ease-out 0.6s both;
}

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

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

/* Responsive pour les étapes de transition */
@media (max-width: 768px) {
    .transition-message {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .transition-icon {
        font-size: 3rem;
    }
    
    .transition-title {
        font-size: 1.5rem;
    }
    
    .transition-text {
        font-size: 1.1rem;
    }
    
    .transition-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mode immersif pour les transitions */
.immersive-mode .transition-message {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.3));
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.4);
}

.immersive-mode .transition-icon {
    animation: float 2s ease-in-out infinite, pulse-glow 3s ease-in-out infinite;
}

.immersive-mode .stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.5);
}

/* Styles pour les inputs avec icônes */
.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input[type="email"],
.input-wrapper input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    min-height: 44px;
    backdrop-filter: blur(10px);
}

.input-wrapper input[type="email"]:focus,
.input-wrapper input[type="tel"]:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.input-wrapper input[type="email"]::placeholder,
.input-wrapper input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 2;
}

/* Animation au focus */
.input-wrapper:focus-within .input-icon {
    animation: pulse 1s ease-in-out;
}

/* Styles pour les labels avec icônes */
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Styles responsifs pour les inputs */
@media (max-width: 768px) {
    .input-wrapper input[type="email"],
    .input-wrapper input[type="tel"] {
        font-size: 16px; /* Évite le zoom sur iOS */
        padding: 12px;
    }

    .input-icon {
        font-size: 1.1rem;
        left: 12px;
    }

    .form-group label {
        font-size: 0.95rem;
    }
}