#voyage-carte{




    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
}
#voyage-carte .row.progressBar-carte {
    display: flex;
    margin: 0;
    width: 100%;
    background: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

button.swal2-confirm {
    font-size: 16px;
}

.swal2-html-container {
    font-size: 14px;
}

.bg-blue {
    background-color: var(--color-site-2);
}

#voyage-carte .form-control, .post-password-form input[type='password'] {
    border-radius: 8px;
}

#voyage-carte .content-title {
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

#voyage-carte .content-title .title-carte {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

#voyage-carte .content-title p {
    font-size: 16px;
}

#voyage-carte .step {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #e9ecef;
    margin: 0 5px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    color: #000;
    font-size: 16px;
}

#voyage-carte .step.active {
    background: var(--color-site-2);
    color: white;
}

#voyage-carte .step.completed {
    background: #28a745;
    color: white;
}

#voyage-carte .form-container {
    padding: 15px;
}

#voyage-carte .section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

#voyage-carte .section.active {
    display: block;
}

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

#voyage-carte h2 {
    color: var(--color-site-2);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

#voyage-carte .form-group {
    margin-bottom: 20px;
}

#voyage-carte .hotel-card label {
    font-size: 20px;
    color: var(--color-site-2);
    display: inline-flex;
    align-items: center;
}

#voyage-carte label {
    display: block;
    font-weight: 600 !important;
    margin-bottom: 5px;
    color: #333;
}

#hotelCategoryGroup label {
    margin-bottom: 0;
}

#hotelCategoryGroup .radio {
    margin-right: 6px;
}

#voyage-carte .radio-item i {
    color: #FFA601;
}

#voyage-carte .transfert input[type=checkbox] {
    margin: 0 !important;
}


#voyage-carte input, select, textarea {

    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

#voyage-carte input:focus, select:focus, textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

#voyage-carte .radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#voyage-carte .radio-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
}

#voyage-carte .radio-item input {
    width: auto;
    margin-right: 8px;
}

#voyage-carte .conditional {
    display: none;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

#voyage-carte .conditional.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

#voyage-carte .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#voyage-carte .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

#voyage-carte .hotel-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

#voyage-carte .hotel-card:hover, .hotel-card:active {
    border-color: #4a90e2;
}


#voyage-carte .navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

#voyage-carte .btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

#voyage-carte .btn-prev {
    background: #6c757d;
    color: white;
}

#voyage-carte .btn-next {
    background: var(--color-site-2);
    color: #fff;
}

#voyage-carte .btn-submit {
    background: #28a745;
    color: white;
}

#voyage-carte .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

#voyage-carte .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hotel-card:has(input:checked) {
    background: #e3f2fd;
    border-color: #4a90e2;
}

@media (max-width: 768px) {
    #voyage-carte .grid-2 {
        grid-template-columns: 1fr;
    }

    #voyage-carte .progressBar-carte {
        flex-direction: column;
        gap: 10px;
    }

    #voyage-carte .step {
        margin: 5px 0;
    }
}
