body {
    /*background-image: url('/images/parking-orly.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

.overlay {
    background: rgba(0, 0, 0, 0.25);
    padding: 4rem 2rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

    .overlay h1 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

.overlay p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

/* Nouveau Style - Section des étapes */
.steps-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 2rem;
    background-color: #F8F9FA;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-block {
    background-color: #049397;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-block:hover {
    transform: translateY(-10px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F7941D;
    color: white;
    font-size: 1.5rem;
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-section

{
    grid-template-columns: 1fr;
    padding: 1rem;
}

.step-block {
    padding: 1.5rem;
}

}

.form-wrapper {
    max-width: 800px;
    margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

    .form-wrapper h2 {
        text-align: center;
        color: #F7941D;
        margin-bottom: 2rem;
    }

label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #212529;
}

input[type="text"],
input[type="email"],
input[type="datetime-local"],
input[readonly] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

input:focus {
    border-color: #049397;
    outline: none;
}

#card-element {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: white;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background-color: #049397 !important;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.text-danger {
    font-size: 0.9rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.offers-title {
    display: block;
    width: 100%;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.5rem;
}

.offers-grid {
    background-color:#049397;
    padding: 60px 0;
    /*margin-top:50px;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.offer-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease-in-out;
}

    .offer-card:hover {
        transform: translateY(-5px);
    }

.offer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
}

.company-description {
    margin: 10px 0;
    font-size: 0.95rem;
    color: #555;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
}

    .offer-features li {
        margin-bottom: 5px;
    }

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
}

/* ✅ Responsive Mobile */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .offer-card {
        padding: 15px;
    }

    .company-logo {
        width: 50px;
        height: 50px;
    }

    .offer-header h3 {
        font-size: 1.1rem;
    }

    .company-description,
    .offer-features {
        font-size: 0.9rem;
    }

    .btn-block {
        font-size: 0.95rem;
    }
}

.x-large {
    color: #e4a01e;
    font-size: x-large;
}

.reservation-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: x-large;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
}

.form-control, .custom-select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.custom-select {
    background-color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg ..."); /* optionnel pour flèche */
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1rem;
}

.btn-block {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.1rem;
    border-radius: 8px;
    background-color: #049397;
    color: #fff;
    border: none;
    cursor: pointer;
}

    .btn-block:hover {
        background-color: #0056b3;
    }

.text-danger {
    color: #dc3545;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .reservation-form {
        padding: 1.2rem;
    }

    .btn-block {
        font-size: 1rem;
    }
}

/* Card error payment*/
.card-error-box {
    color: #b00020;
    background-color: #ffe6e6;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hidden {
    display: none;
}

.shake {
    animation: shake 0.3s;
}

@keyframes shake {
    0% {
        transform: translateX(0px);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0px);
    }
}