/* Variables */
:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --warning-color: #f59e0b;
}

/* Styles de base */
.min-vh-75 {
    min-height: 75vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--warning-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Cartes de services */
.feature-card {
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    background-color: var(--primary-color);
}

/* Process steps */
.process-step {
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Témoignages */
.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    background-color: var(--primary-color);
    color: white;
}

/* CTA */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Ombre personnalisée */
.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}