.lux-booking-container {
    background: #fff;
    padding: 20px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lux-booking-form {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lux-heading {
    font-size: 20px;
    font-weight: 700;
    max-width: 200px;
    line-height: 1.2;
    margin-right: 10px;
}

.lux-fields-wrapper {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}

.lux-field {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    border-right: 1px solid #E5E5E5;
    flex: 1;
    min-width: 0;
}

.lux-field:last-child {
    border-right: none;
}

.lux-field label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #666;
}

.lux-field-inner {
    position: relative;
    padding: 10px 15px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.lux-field-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF4D0D;
    transition: width 0.3s ease;
}

.lux-field-inner:focus-within::after {
    width: 100%;
}

.lux-field input, .lux-field select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    padding: 0;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.lux-field input:focus, .lux-field select:focus {
    box-shadow: none;
}

/* Custom Select Wrapper for arrow styling */
.lux-select-wrapper {
    position: relative;
    width: 100%;
}

.lux-select-wrapper::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #666 transparent transparent transparent;
    pointer-events: none;
    transition: all 0.3s ease;
}

.lux-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px !important;
    cursor: pointer;
    font-family: inherit, 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Fix for IE */
.lux-select::-ms-expand {
    display: none;
}

.lux-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 15px 30px;
    transition: all 0.3s ease;
    width: 100%;
}

.lux-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lux-btn:hover .lux-btn-icon {
    transform: translateX(3px);
}

.lux-btn:hover .align-icon-left {
    transform: translateX(-3px);
}

.lux-form-msg.success {
    color: green;
}
.lux-form-msg.error {
    color: red;
}

@media (max-width: 1024px) {
    .lux-booking-form {
        flex-direction: column;
        align-items: stretch;
    }
    .lux-heading {
        max-width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .lux-fields-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .lux-field {
        border-right: none;
        border-bottom: 1px solid #E5E5E5;
        padding: 15px 0;
        width: 100%;
    }
    .lux-field:last-child {
        border-bottom: none;
    }
}