.bg-grey-80 {
    background-color: #f8f9fa;
}
.box-reservation-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    margin: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}
.form-reservation {
    width: 100%;
}
.form-reservation .form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-reservation .form-label {
    display: block;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-weight: 500;
}
.trip-type-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e6f6;
    padding-bottom: 20px;
    width: 100%;
    clear: both;
}
.trip-type-options {
    display: flex;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}
.trip-type-option {
    flex: 1;
    position: relative;
}
.trip-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}
.trip-type-option label {
    display: block;
    padding: 12px 25px;
    background: #f8f9fa;
    border: 2px solid #e0e6f6;
    border-radius: 8px;
    text-align: center;
    color: #2a2a2a;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 0;
}
.trip-type-option input[type="radio"]:checked + label {
    background: #066ac9;
    border-color: #066ac9;
    color: #fff;
}
.form-reservation .form-control {
    height: 52px;
    border: 1px solid #e0e6f6;
    border-radius: 8px;
    padding: 0 20px;
    padding-right: 40px;
    width: 100%;
    color: #2a2a2a;
    background: #fff;
    font-size: 14px;
}
.form-reservation .form-control:focus {
    border-color: #066ac9;
    box-shadow: none;
    outline: none;
}
.form-input-date,
.form-input-time,
.form-input-location {
    position: relative;
}
.form-input-date i,
.form-input-time i,
.form-input-location i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9a9ea7;
    pointer-events: none;
    z-index: 1;
}
.dropdown-locations {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}
.location-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 1px solid #f5f5f5;
}
.location-item:last-child {
    border-bottom: none;
}
.location-item:hover {
    background: #f8f9fa;
}
.location-item img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.location-item h6 {
    margin: 0;
    font-size: 14px;
    color: #2a2a2a;
    font-weight: 500;
}
.location-item span {
    display: block;
    font-size: 12px;
    color: #9a9ea7;
    margin-top: 2px;
}
.btn-booking {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #066ac9;
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 20px;
}
.btn-booking:hover {
    background: #0558a6;
}
.btn-booking i {
    font-size: 18px;
}
.timepicker-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e0e6f6;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 5px;
}
.time-option {
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.2s;
}
.time-option:hover {
    background: #f8f9fa;
}

@media (max-width: 991px) {
    .box-reservation-form {
        padding: 20px;
        margin: 0 10px;
    }
    .form-reservation .form-control {
        margin-bottom: 0;
    }
    .trip-type-group {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    .trip-type-options {
        flex-direction: row;
        gap: 10px;
    }
    .mb-20 {
        margin-bottom: 15px !important;
    }
}
