.booking {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.booking .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking .content {
    width: 100%;
    max-width: 100%;
}

.booking .card {
    width: 100%;
    max-width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.booking .card-body {
    padding: 16px;
}

.trip-type-selector {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e8;
}

.trip-type-selector .radio-button {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.trip-type-selector .radio-button input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4D73FC;
}

.trip-type-selector .radio-button label {
    font-size: 14px;
    font-weight: 500;
    color: #0B0C0D;
    cursor: pointer;
    margin: 0;
}

.booking-info {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
}

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

.form-row-bottom {
    grid-template-columns: 1fr 1fr 1fr;
}

.custom-sel-input-block,
.input-date-picker {
    padding: 12px 16px;
    position: relative;
    background: white;
    transition: all 0.2s ease;
}

.custom-sel-input-block:hover,
.input-date-picker:hover {
    background: #f8f9ff;
}

.custom-sel-input-block:not(:last-child) {
    border-right: 1px solid #e8e8e8;
}

.input-date-picker:not(:last-child) {
    border-right: 1px solid #e8e8e8;
}

.custom-sel-input-block label,
.input-date-picker label {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
    display: block;
}

.custom-sel-input-block .sel-input,
.input-date-picker .sel-input {
    font-size: 14px;
    font-weight: 500;
    color: #0B0C0D;
    border: none;
    padding: 0;
    background: transparent;
    width: 100%;
    outline: none;
    cursor: pointer;
}

.custom-sel-input-block .sel-input::placeholder,
.input-date-picker .sel-input::placeholder {
    color: #999;
    font-weight: 400;
}

.swap-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    background: white;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

.swap-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.swap-btn:hover {
    border-color: #4D73FC;
    background: #f8f9ff;
    transform: rotate(180deg);
}

.swap-btn svg {
    width: 16px;
    height: 16px;
}

.passenger-selector {
    cursor: pointer;
}

.seat-booking {
    font-size: 14px;
    font-weight: 500;
    color: #0B0C0D;
    cursor: pointer;
    padding: 0;
}

.passenger-area {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
}

.passenger-area h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

.passenger-area .passenger-box {
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.passenger-area .content-box h5 {
    font-size: 13px;
    margin-bottom: 2px;
}

.passenger-area .content-box p {
    font-size: 11px;
}

.passenger-area.active {
    display: block;
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding-top: 8px;
}

.showbtn {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    background: #4D73FC;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(77, 115, 252, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.showbtn:hover {
    background: #3d5fd9;
    box-shadow: 0 4px 8px rgba(77, 115, 252, 0.4);
}

.showbtn svg {
    width: 16px;
    height: 16px;
}

.airport_select_from,
.airport_select_to {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    list-style: none;
    padding: 12px 0;
    display: none;
}

.airport_select_from.active,
.airport_select_to.active {
    display: block;
}

.airport_select_from li,
.airport_select_to li {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.airport_select_from li:hover,
.airport_select_to li:hover {
    background: rgba(77, 115, 252, 0.1);
}

.passenger-area .passenger-box {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.passenger-area .passenger-box:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.radio-tile-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.radio-tile {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-button:checked + .radio-tile {
    border-color: #4D73FC;
    background: rgba(77, 115, 252, 0.05);
}

.radio-tile:hover {
    border-color: #4D73FC;
    background: rgba(77, 115, 252, 0.02);
}

.quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.quantity input[type="button"] {
    width: 36px;
    height: 36px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity input[type="button"]:hover {
    border-color: #4D73FC;
    background: rgba(77, 115, 252, 0.05);
    color: #4D73FC;
}

.quantity .number {
    width: 60px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    font-weight: 600;
    font-size: 16px;
}

.content-box h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0B0C0D;
}

.content-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

@media (max-width: 1200px) {
    .form-row-bottom {
        grid-template-columns: 1fr 1fr;
    }
    
    .passenger-selector {
        grid-column: 1 / -1;
        border-top: 1px solid #e8e8e8;
    }
}

@media (max-width: 768px) {
    .booking .card-body {
        padding: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        border-bottom: none;
    }
    
    .form-row-bottom {
        grid-template-columns: 1fr;
    }
    
    .custom-sel-input-block,
    .input-date-picker {
        padding: 12px;
        border-right: none !important;
        border-bottom: 1px solid #e8e8e8;
    }
    
    .custom-sel-input-block:last-child,
    .input-date-picker:last-child {
        border-bottom: none;
    }
    
    .swap-button {
        padding: 8px;
        border-left: none;
        border-right: none;
        border-top: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }
    
    .swap-btn {
        width: 28px;
        height: 28px;
    }
    
    .custom-sel-input-block .sel-input,
    .input-date-picker .sel-input {
        font-size: 14px;
    }
    
    .showbtn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .trip-type-selector {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .booking .card-body {
        padding: 12px;
    }
    
    .custom-sel-input-block,
    .input-date-picker {
        padding: 10px;
    }
    
    .custom-sel-input-block .sel-input,
    .input-date-picker .sel-input {
        font-size: 13px;
    }
    
    .trip-type-selector {
        gap: 12px;
        flex-direction: column;
    }
    
    .radio-tile-group {
        grid-template-columns: 1fr;
    }
    
    .showbtn {
        font-size: 14px;
        padding: 10px 20px;
    }
}
