/* Styles pour la section hero */
.hero-section {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 0;
    margin-top: -80px; /* Compensation pour le header fixe */
    padding-top: calc(5rem + 80px);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.25rem;
}

.hero-cta .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-form .card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
}

.hero-form .card-body {
    padding: 2rem;
}

.hero-form .card-title {
    color: var(--dark-color);
    font-weight: 700;
}

.form-label {
    color: var(--dark-color);
    font-weight: 500;
}

.vehicle-options .form-check {
    margin-bottom: 0.5rem;
}

.vehicle-options .form-check-input {
    margin-right: 0.5rem;
}

#heroTarifResult {
    background-color: rgba(25, 135, 84, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
}

#heroTarifAmount {
    color: var(--success-color);
    font-size: 1.5rem;
}