/* Variables */
:root {
    --primary-color: #2B5278; /* Bleu professionnel foncé - confiance */
    --primary-light: #3D7AB3; /* Bleu plus clair pour les transitions */
    --secondary-color: #4CAF50; /* Vert - économie et environnement */
    --secondary-light: #66BB6A; /* Vert plus clair */
    --light-color: #F5F7FA;
    --dark-color: #1A2A3A;
    --gray-color: #546E7A;
    --gray-light: #ECEFF1;
    --gray-dark: #37474F;
    --border-color: #CFD8DC;
    --success-color: #43A047;
    --error-color: #E53935;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #3D7AB3);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #66BB6A);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

/* Styles du formulaire multi-étapes */
.form-container {
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.form-step:first-child {
    display: block;
}

.step-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.choice-btn {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.choice-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.choice-btn.selected {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    color: white;
}

.choice-btn i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.choice-btn.selected i {
    color: white;
}

.choice-btn span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.choice-desc {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

.choice-btn.selected .choice-desc {
    color: rgba(255, 255, 255, 0.9);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(43, 82, 120, 0.2);
}

.form-control.error {
    border-color: var(--error-color);
}

.form-required {
    color: var(--error-color);
}

.required-text {
    font-size: 0.8em;
    font-style: italic;
    margin-left: 4px;
}

.form-help {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn.prev {
    background-color: var(--gray-light);
    color: var(--gray-dark);
}

.nav-btn.next {
    background-color: var(--primary-color);
    color: white;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.nav-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .step-choices {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1rem;
        margin: 1rem auto;
    }

    .choice-btn {
        padding: 1.5rem;
    }
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* En-tête */
header {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

header.scrolled {
    padding: 0.7rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    gap: 15px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-icon i {
    position: absolute;
}

.logo-icon .fa-car-side {
    font-size: 2em;
    color: var(--primary-color);
}

.logo-icon .fa-search {
    font-size: 1em;
    color: var(--secondary-color);
    bottom: -5px;
    right: -5px;
    transform: rotate(-45deg);
}

.logo h1 {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
}

.logo .highlight {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
    position: relative;
}

nav ul li a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* Styles pour le menu mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        padding: 80px 20px 20px;
        transition: 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-links a:hover {
        background-color: var(--light-color);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Section principale */
main {
    margin-top: 80px; /* Pour compenser l'en-tête fixe */
}

section {
    padding: 3rem 0;
}

.value-props {
    padding-bottom: 1rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-pattern.svg');
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h1 span {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    margin-top: 3rem;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    max-width: 90%;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: 10%;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

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

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:hover::before {
    width: 100%;
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient-primary);
}

.btn-secondary {
    background: var(--gradient-secondary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section Proposition de valeur */
.value-props {
    text-align: center;
    background-color: white;
    padding: 6rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
}

.guarantee-banner {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin: 2rem 0;
}

.guarantee-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.guarantee-banner i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.guarantee-banner h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.guarantee-banner p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.offer-guarantee {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offer-guarantee i {
    color: #3498db;
    font-size: 1.2rem;
}

.offer-guarantee strong {
    color: #2c3e50;
    font-size: 1rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.value-props-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.value-prop {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.05), transparent);
    transition: var(--transition);
    z-index: -1;
}

.value-prop:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.3);
}

.value-prop:hover::before {
    height: 100%;
}

.value-prop .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.value-prop .icon-wrapper::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background-color: white;
    z-index: -1;
}

.value-prop i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.value-prop h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.value-prop p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Section Offres */
.offers {
    background-color: var(--light-color);
    background-color: var(--gray-light);
    background-image: linear-gradient(to bottom, white, var(--gray-light));
    padding: 2rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.offers .container {
    position: relative;
    z-index: 1;
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.offer-card {
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.offer-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-light);
    z-index: 2;
}

.offer-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.offer-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--gradient-secondary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.offer-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
}

.offer-header h3 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
color: white;
}

.offer-body {
padding: 2.5rem;
}

.offer-price {
font-size: 2.2rem;
font-weight: 800;
margin: 1.5rem 0;
color: var(--primary-color);
text-align: center;
    margin: 1.5rem 0;
    color: var(--primary-color);
    text-align: center;
}

.offer-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: super;
}

.offer-price .period {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.offer-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.offer-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features li:before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-radius: 50%;
    margin-right: 0.8rem;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.offer-features li.not-included {
    color: var(--gray-color);
    text-decoration: line-through;
}

.offer-features li.not-included:before {
    content: "\2715";
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

.offer-action {
    text-align: center;
}

/* Section Processus */
.process {
    background-color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dots-pattern.svg');
    background-size: 20px;
    opacity: 0.05;
    z-index: 0;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: var(--primary-light);
    width: 80%;
    z-index: 1;
    opacity: 0.3;
    display: none;
}

@media (min-width: 992px) {
    .process-line {
        display: block;
    }
}

.process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 5px solid white;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.process-step p {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
}

.process-step .step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
}

.process-arrow {
    position: absolute;
    top: 40px;
    right: -30px;
    font-size: 1.5rem;
    color: var(--primary-light);
    display: none;
}

@media (min-width: 992px) {
    .process-arrow {
        display: block;
    }
    
    .process-step:last-child .process-arrow {
        display: none;
    }
}

.servic.offer-process {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 500px;
}

.offer-process li {
    position: relative;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    min-height: 70px;
}

.offer-process {
    counter-reset: step;
}

.offer-process li {
    counter-increment: step;
}

.offer-process li:before {
    content: counter(step);
    position: absolute;
    left: 1.25rem;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.offer-process li:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.offer-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}

.offer-button-container .btn {
    min-width: 250px;
    text-align: center;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Section Témoignages */
.testimonials {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/quote-pattern.svg');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: white;
}

.testimonials .section-title h2::after {
    background: var(--secondary-color);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8fafc;
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.savings {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Section FAQ */
.faq {
    background-color: var(--light-bg);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('../images/faq-pattern.svg');
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.faq-container {
    margin-top: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-item {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: var(--dark-color);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--primary-color);
}

.faq-question.active {
    color: var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
}

.faq-question:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--gray-color);
    transition: var(--transition);
}

.faq-question.active:after {
    content: "\f106";
    color: var(--primary-color);
    transform: rotate(0deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem;
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Section Formulaire */
.contact {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/form-pattern.svg');
    background-size: 600px;
    background-position: bottom left;
    opacity: 0.08;
    z-index: 0;
    animation: slowMove 60s linear infinite alternate;
}

@keyframes slowMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact .section-title h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Conteneur du formulaire */
.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
}

/* Onglets de sélection d'offre */
.form-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.form-tab {
    flex: 1;
    text-align: center;
    padding: 1.2rem 1rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.form-tab:hover {
    background-color: rgba(0, 123, 255, 0.05);
    color: #0056b3;
}

.form-tab.active {
    color: #0056b3;
    background-color: white;
}

.form-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0056b3, #0096ff);
}

.form-tab i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* En-tête du formulaire */
.form-header {
    padding: 2rem;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-bottom: 1px solid #e9ecef;
}

.offer-1-header, .offer-2-header {
    display: none;
}

.active-offer {
    display: block;
}

.form-header h3 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-header h3 i {
    margin-right: 10px;
    color: #28a745;
}

.form-header p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0056b3;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0056b3;
    display: block;
}

.price-info {
    font-size: 0.9rem;
    color: #6c757d;
    display: block;
    margin-top: 0.3rem;
}

/* Sections du formulaire */
.form-section {
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
    transition: opacity 0.3s ease;
}

.offer-1-field, .offer-2-field {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h4 {
    color: #212529;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f3f5;
}

/* Groupes de formulaire */
.form-group {
    margin-bottom: 1.8rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #343a40;
}

label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-help {
    display: inline;
    font-size: 0.875em;
    color: var(--text-muted);
    font-weight: normal;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23343a40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 3rem;
    cursor: pointer;
}

select.form-control:hover {
    border-color: #adb5bd;
}

select.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.15);
}

select.form-control option {
    padding: 1rem;
    background-color: white;
    color: #343a40;
}

select.form-control option:first-child {
    color: #6c757d;
    font-style: italic;
}

/* Styles pour le menu déroulant */
select.form-control {
appearance: none;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 0.7rem center;
background-size: 1em;
padding-right: 2.5rem;
cursor: pointer;
}

select.form-control:focus {
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

select.form-control option {
padding: 0.5rem;
font-size: 1em;
}

select.form-control option:first-child {
color: var(--placeholder-color);
}

.form-control:focus {
outline: none;
border-color: #0056b3;
box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
    background-color: white;
}

.form-control::placeholder {
    color: #adb5bd;
}

/* Aide et informations */
.form-help {
    display: flex;
    align-items: center;
    margin-top: 0.7rem;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.form-help i {
    margin-right: 6px;
    color: #0056b3;
    font-size: 1rem;
}

.form-required {
    color: #dc3545;
    font-weight: 600;
}

/* Cases à cocher */
.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 0.8rem 0;
}

.form-check input {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    accent-color: #0056b3;
}

.form-check label {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
}

.form-check a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.form-check a:hover {
    color: #003d82;
    text-decoration: underline;
}

/* Mise en page en colonnes */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-col {
    flex: 1;
    padding: 0 15px;
    min-width: 250px;
}

/* Pied de formulaire */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.security-info {
    display: flex;
    gap: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #495057;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid #dee2e6;
}

.security-badge i {
    color: #28a745;
    margin-right: 6px;
    font-size: 1rem;
}

.form-submit {
    text-align: right;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #0096ff 100%);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.3);
    background: linear-gradient(135deg, #004494 0%, #0087e8 100%);
}

.btn-primary i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .form-container {
        margin: 0 1rem;
        padding: 0;
    }
    
    .form-header, .form-section {
        padding: 1.5rem;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .security-info {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .form-submit {
        text-align: center;
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .form-tab {
        font-size: 0.9rem;
        padding: 1rem 0.5rem;
    }
    
    .form-tab i {
        margin-right: 4px;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}

.form-submit .btn {
    min-width: 200px;
    padding: 1rem 2rem;
}

.offer-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-option {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.offer-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(44, 82, 130, 0.1);
}

.offer-option h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.offer-specific-fields {
    display: none;
}

.offer-specific-fields.show {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.footer-logo .logo-icon .fa-car-side {
    position: absolute;
    font-size: 1.8em;
    color: white;
    left: 0;
    top: 0;
}

.footer-logo .logo-icon .fa-search {
    position: absolute;
    font-size: 0.9em;
    color: var(--secondary-color);
    bottom: -3px;
    right: -3px;
    transform: rotate(-45deg);
}

.footer-logo h2 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo .highlight {
    color: var(--secondary-color);
}

.footer p {
    margin: 0;
    font-size: 0.9em;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-nav {
    flex: 1;
    min-width: 200px;
}

.footer-nav h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Media Queries pour le menu mobile */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-menu .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .menu-overlay.show {
        display: block;
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Styles pour le formulaire par étapes */
.multi-step-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.form-step {
    padding: 2rem;
    transition: all 0.3s ease;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

.step-title {
    text-align: center;
    color: var(--text-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes borderGlow {
    0% {
        border-color: #2B5278;
    }
    25% {
        border-color: #3D7AB3;
    }
    50% {
        border-color: #4CAF50;
    }
    75% {
        border-color: #3D7AB3;
    }
    100% {
        border-color: #2B5278;
    }
}

.choice-btn {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 2.5px solid var(--primary-color);
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: borderGlow 3s infinite;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.choice-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    animation: none;
    border-color: var(--primary-color);
}

.choice-btn i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.choice-btn s.offer-highlight {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 4px;
    display: inline-block;
}

.choice-btn span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.choice-desc {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-align: center;
    margin: 0;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-info {
    background-color: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.info-header i {
    color: var(--primary-color);
    font-size: 1.25em;
}

.info-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 600;
}

.service-info p {
    margin: 0 0 1rem;
    color: var(--text-color);
    font-size: 0.95em;
    line-height: 1.5;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95em;
}

.service-benefits li i {
    color: var(--success-color);
    font-size: 1em;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn.prev {
    background: var(--gray-light);
    color: var(--dark-color);
}

.nav-btn.next {
    background: var(--secondary-color);
    color: white;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease-out forwards;
}

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

.form-step {
    animation: slideIn 0.3s ease-out forwards;
}

/* Bouton flottant */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 500;
}

.floating-btn i {
    font-size: 1.2rem;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: var(--primary-color);
    color: white;
}
