@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;
    }
}


 /* partenaire Scroll */
        .partenaires-carousel-wrapper {
						overflow: hidden;
						position: relative;
						width: 100%;
					}
					.partenaires-carousel-wrapper::before,
					.partenaires-carousel-wrapper::after {
						content: '';
						position: absolute;
						top: 0;
						bottom: 0;
						width: 80px;
						z-index: 2;
						pointer-events: none;
					}
					.partenaires-carousel-wrapper::before {
						left: 0;
						background: linear-gradient(to right, white, transparent);
					}
					.partenaires-carousel-wrapper::after {
						right: 0;
						background: linear-gradient(to left, white, transparent);
					}
					.partenaires-carousel-track {
						display: flex;
						align-items: center;
						gap: 3rem;
						width: max-content;
						animation: partenaires-scroll 22s linear infinite;
					}
					.partenaires-carousel-track:hover {
						animation-play-state: paused;
					}
					.partenaires-logo-item {
						flex-shrink: 0;
						display: flex;
						align-items: center;
						justify-content: center;
						height: 64px;
						padding: 0 1rem;
						filter: grayscale(100%);
						opacity: 0.55;
						transition: filter 0.3s ease, opacity 0.3s ease;
					}
					.partenaires-logo-item:hover {
						filter: grayscale(0%);
						opacity: 1;
					}
					.partenaires-logo-item img {
						max-height: 48px;
						max-width: 130px;
						width: auto;
						object-fit: contain;
					}
					@keyframes partenaires-scroll {
						0%   { transform: translateX(0); }
						100% { transform: translateX(-50%); }
					}

	/* Avis client */
.avis-carousel-outer { position: relative; }
				.avis-carousel-track { display: flex; will-change: transform; }
				.avis-card {
					flex: 0 0 calc(33.333% - 24px);
					margin: 0 12px;
					background: #fff;
					border-radius: 1rem;
					box-shadow: 0 2px 16px rgba(0,0,0,0.07);
					padding: 1.5rem;
					border: 1px solid #e5e7eb;
					display: flex;
					flex-direction: column;
					min-height: 200px;
				}
				@media (max-width: 1023px) {
					.avis-card { flex: 0 0 calc(50% - 24px); }
				}
				@media (max-width: 639px) {
					.avis-card { flex: 0 0 calc(100% - 24px); }
				}
				.avis-avatar {
					width: 2.5rem; height: 2.5rem;
					border-radius: 50%;
					background: var(--color-green, #16a34a);
					color: #fff;
					font-weight: 700;
					font-size: 0.85rem;
					display: flex; align-items: center; justify-content: center;
					flex-shrink: 0;
				}
				.avis-btn-nav {
					position: absolute; top: 50%; transform: translateY(-50%);
					background: #fff; border: 1px solid #e5e7eb;
					border-radius: 50%; width: 2.25rem; height: 2.25rem;
					display: flex; align-items: center; justify-content: center;
					box-shadow: 0 2px 8px rgba(0,0,0,0.1);
					cursor: pointer; z-index: 10; color: #374151;
					transition: background 0.2s, color 0.2s;
				}
				.avis-btn-nav:hover { background: var(--color-green, #16a34a); color: #fff; }
				.avis-dot {
					width: 8px; height: 8px; border-radius: 50%;
					background: #d1d5db; cursor: pointer; transition: background 0.3s, transform 0.3s;
				}
				.avis-dot.active { background: var(--color-green, #16a34a); transform: scale(1.3); }
			