@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { opacity: 0 }
}

.typing-text {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end);
}

.typing-cursor {
    animation: blink 0.7s infinite;
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-hover {
    transition: all 0.3s ease;
}

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

.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

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

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

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

/* Correction pour les selects sur mobile */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px !important;
    min-height: 44px;
}

select option {
    background-color: white;
    color: #12161dff;
    padding: 12px;
    font-size: 16px;
}

/* Pour Safari/iOS */
@supports (-webkit-touch-callout: none) {
    select {
        font-size: 16px !important;
    }
}
