.booking-light-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);
    background: rgba(51, 51, 51, 0.95);
    border-radius: 8px;
    color: #ffffff;
}
div.form-section:nth-child(3) > textarea:nth-child(5) {
font-family: var(--e-global-typography-primary-font-family), Sans-serif !important;
    font-weight: var(--e-global-typography-primary-font-weight) !important;
	font-size: 16px !important;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
	font-family: var(--e-global-typography-primary-font-family), Sans-serif !important;
    font-weight: var(--e-global-typography-primary-font-weight) !important;
	font-size: 16px !important;
}

textarea {
    height: 100px;
    resize: vertical;
}

.occasion-buttons,
.package-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.occasion-buttons label,
.package-buttons label {
    flex: 1;
    min-width: 150px;
}

.occasion-buttons input[type="radio"],
.package-buttons input[type="radio"] {
    display: none;
}

.button-label {
    display: block;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.occasion-buttons input[type="radio"]:checked + .button-label,
.package-buttons input[type="radio"]:checked + .button-label {
    background: #d24d97;
    color: white;
    border-color: #d24d97;
}
#otherOccasionField {
    margin-top: 10px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #d24d97;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);
}

.submit-button:hover {
    background: #d81b60;
}

#bookingResponse {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

#bookingResponse.success {
    background: rgba(46, 125, 50, 0.2);
    color: #4caf50;
}

#bookingResponse.error {
    background: rgba(198, 40, 40, 0.2);
    color: #ef5350;
}

/* Datepicker customization */
.ui-datepicker {
    padding: 15px;
    background: #333;
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    color: #ffffff;
}

.ui-datepicker-header {
    background: #d24d97;
    color: white;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.ui-datepicker-calendar {
    width: 100%;
}

.ui-datepicker-calendar th {
    color: #d24d97;
    padding: 5px;
}

.ui-datepicker-calendar td {
    padding: 2px;
}

.ui-datepicker-calendar td a {
    display: block;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ui-datepicker-calendar td a:hover {
    background: rgba(233, 30, 99, 0.3);
}

.ui-datepicker-calendar .ui-state-active {
    background: #d24d97;
    color: white;
}

.ui-datepicker-prev, .ui-datepicker-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker-next {
    right: 5px;
}

.privacy-section {
    margin-bottom: 20px;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 25px;
    width: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.privacy-checkbox:hover input ~ .checkmark {
    background: rgba(255, 255, 255, 0.2);
}

.privacy-checkbox input:checked ~ .checkmark {
    background-color: #d24d97;
    border-color: #d24d97;
}
div.form-section:nth-child(3) > textarea:nth-child(5) {
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.privacy-text {
    color: rgba(255, 255, 255, 0.9);
}

.privacy-text a {
    color: #d24d97;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-text a:hover {
    color: #ff4081;
    text-decoration: underline;
}
