/* Add these new styles at the top without removing existing styles */

/* Loader Styles */
.form-loader-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	border-radius: 8px;
}

.form-loader {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #002b6b;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.form-loader-text {
	margin-left: 15px;
	color: #002b6b;
	font-weight: 500;
	font-size: 16px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.form-disabled {
	pointer-events: none;
	opacity: 0.6;
}

/* Better loading states */
.form-loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

.form-loader {
	width: 60px;
	height: 60px;
	border: 6px solid #f3f3f3;
	border-top: 6px solid #002b6b;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

.form-loader-text {
	color: #002b6b;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
}

/* Prevent form submission during loading */
.form-disabled .submit-btn,
.form-disabled .payment-btn {
	pointer-events: none;
	opacity: 0.5;
}

.success-message {
	background-color: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 500;
}

.error-message {
	background-color: #f8d7da;
	color: #721c24;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 500;
}

/* Submit Button Styles */
.submit-btn {
	width: auto;
	min-width: 200px;
	max-width: 400px;
	margin: 20px auto;
	display: block;
	background: #002b6b;
	color: #fff;
	border: none;
	padding: 15px 30px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

/* Date Picker Styles */
.ui-datepicker {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	font-size: 14px;
	z-index: 99999 !important;
}

.ui-datepicker-header {
	background: #002b6b;
	color: #fff;
	border: none;
	border-radius: 4px 4px 0 0;
	padding: 8px;
}

.ui-datepicker-title {
	text-align: center;
	font-weight: 600;
}

.ui-datepicker-prev,
.ui-datepicker-next {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	padding: 4px 8px;
	border-radius: 3px;
	transition: background-color 0.2s;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
	background: rgba(255, 255, 255, 0.2);
}

.ui-datepicker-calendar {
	border-collapse: collapse;
	width: 100%;
	margin: 0;
}

.ui-datepicker-calendar th {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	padding: 8px;
	text-align: center;
	font-weight: 600;
	color: #495057;
}

.ui-datepicker-calendar td {
	border: 1px solid #e9ecef;
	padding: 0;
}

.ui-datepicker-calendar td a {
	display: block;
	padding: 8px;
	text-decoration: none;
	color: #495057;
	text-align: center;
	transition: background-color 0.2s;
}

.ui-datepicker-calendar td a:hover {
	background: #e9ecef;
}

.ui-datepicker-calendar td.ui-datepicker-today a {
	background: #002b6b;
	color: #fff;
}

.ui-datepicker-calendar td.ui-datepicker-current-day a {
	background: #007bff;
	color: #fff;
}

.ui-datepicker-calendar td.ui-datepicker-other-month a {
	color: #adb5bd;
}

/* Date Input Field Styles */
.date-input {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 12px;
	font-size: 14px;
	width: 100%;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.date-input:focus {
	outline: none;
	border-color: #002b6b;
	box-shadow: 0 0 0 2px rgba(0, 43, 107, 0.1);
}

.date-input:hover {
	border-color: #002b6b;
}

/* Ensure date picker appears above other elements */
.ui-datepicker {
	position: absolute !important;
	z-index: 999999 !important;
}

/* Form Layout Improvements */
.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.form-row.full-width {
	flex-direction: column;
}

.form-group {
	flex: 1;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: #002b6b;
	box-shadow: 0 0 0 2px rgba(0, 43, 107, 0.1);
}

.form-group input.error,
.form-group select.error {
	border-color: #fa755a;
}

.field-error {
	color: #fa755a;
	font-size: 12px;
	margin-top: 5px;
	font-weight: 500;
}

.submit-btn:hover {
	background: #001a4a;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 43, 107, 0.3);
}

.submit-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Payment Styles */
.payment-summary {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 4px;
	margin: 30px 0;
	display: none; /* Hidden by default, shown when total > 0 */
}

.total-amount {
	font-size: 18px;
	font-weight: 600;
	color: #002b6b;
	margin-bottom: 15px;
}

.payment-btn {
	width: 100%;
	background: #e5e5e5;
	color: #666;
	border: none;
	padding: 15px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: not-allowed;
	transition: all 0.3s ease;
}

.payment-btn:not(:disabled) {
	background: #002b6b;
	color: #fff;
	cursor: pointer;
}

.field-error {
	color: #dc3545;
	font-size: 12px;
	margin-top: 5px;
}

.error {
	border-color: #dc3545 !important;
}

/* Original Styles */
.trip-details-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
	position: relative;
	/* padding: 40px; */
}

/* Trip Details Header */
.section-title {
	color: #002b6b;
	font-size: 24px;
	font-weight: 600;
	padding: 10px;
}

/* Labels */
.form-label {
	display: block;
	color: #666;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 8px;
}

/* Trip Details Section */
.trip-details-section {
	padding: 10px;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.trip-row.is-hidden {
	display: none !important;
}

.proposed-dates.is-hidden {
	display: none !important;
}

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

/* Select Trip Dropdown */
.select-wrapper {
	position: relative;
	width: 100%;
}

.select-wrapper select,
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"] {
	width: 100%;
	height: 45px;
	padding: 0 15px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	font-size: 14px;
	color: #666;
	background: #fff;
}


input[type=text], input[type=number], input[type=email], input[type=tel], input[type=url], input[type=password], input[type=search], textarea, .input-text {
	background: #fff !important;
}

/* Quantity Control */
.quantity-section {
	width: 100%;
}

.quantity-control {
	display: flex;
	align-items: stretch;
	height: 45px;
	background: #f5f5f5;
	border-radius: 4px;
}

.quantity-btn {
	width: 45px;
	border: none;
	background: #f5f5f5;
	color: #666;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.quantity-input {
	flex: 1;
	width: 60px;
	border: none;
	text-align: center;
	font-size: 16px;
	color: #333;
	background: #f5f5f5;
	border: 1px solid lightgray !important;
}

/* Date Picker */
.date-picker {
	margin-top: 25px;
}

.date-input {
	width: 100%;
	height: 45px;
	padding: 0 15px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	text-transform: none !important;
	color: #666;
	background: #fff;
}

.date-availability {
	margin-top: 20px;
	color: #002b6b;
	font-family: Satoshi;
	font-weight: 700;
	font-size: 25px;
	line-height: 100%;
}

/* Form Navigation */
.form-tabs-container {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 30px 0 15px;
}

.form-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.form-tab {
	background: #f5f5f5;
	color: #666;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	border: none;
	cursor: pointer;
}

.form-tab.active {
	background: #002b6b;
	color: #fff;
}

.add-form-btn {
	width: 30px;
	height: 30px;
	min-width: 30px;
	border: 1px solid #e5e5e5;
	background: #fff;
	border-radius: 4px;
	color: #666;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.help-text {
	color: #666;
	font-size: 14px;
	margin: 10px 0 0px;
}

/* Form Sections */
.form-section {
	margin-bottom: 40px;
}

.form-section h3.section-title {
	color: #002b6b;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
}

/* Form Rows */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

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

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

/* Zip/State/City row */
.form-row.address-row {
	grid-template-columns: 1fr 1fr 1fr;
}

/* Input Fields */
.form-group {
	width: 100%;
}

.form-group input,
.form-group select {
	width: 100%;
	height: 45px;
	padding: 0 15px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	font-size: 14px;
	color: #666;
	background: #fff;
}

.form-group input::placeholder {
	color: #999;
}

/* Checkbox Group */
.checkbox-group {
	margin-top: 30px;
	margin-bottom: 30px;
}

.checkbox-group h4 {
	color: #666;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.checkbox-group label {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	color: #666;
	font-size: 14px;
	cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
	margin: 2px 12px 0 0;
	/* width: 16px; */
	/* height: 16px; */
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	background: #fff;
}

.checkbox-group input[type="checkbox"]:checked {
	background: #002b6b;
	border-color: #002b6b;
}

.checkbox-group input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 11px;
	top: 4px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Submit Button */
.submit-btn {
	width: 100%;
	background: #002b6b;
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
	cursor: pointer;
}

.form-row-section-select {
	padding-top: 20px;
}

/* Waiver Section */
.waiver-section {
	background: #ebebeb;
	margin-top: 20px;
	padding: 20px;
	border-radius: 4px;
}

.form-row-section {
	background: #ebebeb;
	padding: 20px;
	border-radius: 4px;
}

.waiver-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.view-waiver-btn {
	background: #ff6b00;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	text-transform: uppercase;
}

.waiver-text {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 4px;
	margin-bottom: 25px;
}

.waiver-text p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.waiver-checkboxes {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.waiver-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	cursor: pointer;
}

.waiver-checkbox input[type="checkbox"] {
	margin-top: 3px;
	width: 16px;
	height: 16px;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	background: #fff;
}

.waiver-checkbox input[type="checkbox"]:checked {
	background: #002b6b;
	border-color: #002b6b;
}

.waiver-checkbox input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Signature Section */
.signature-section {
	margin-top: 35px;
}

.signature-buttons {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}

.clear-signature,
.remove-signature,
.add-signature {
	background: none;
	border: none;
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	cursor: pointer;
	text-transform: uppercase;
}

.signature-container {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	height: 220px;
	margin-bottom: 15px;
	background: #fff;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.signature-pad {
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: crosshair;
	background: #fff;
	max-width: 100%;
	max-height: 100%;
}

.clear-signature {
	background: none;
	border: none;
	color: #002b6b;
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	margin-top: 10px;
	cursor: pointer;
	text-transform: uppercase;
}

/* Heart Icon */
.heart-icon {
	font-size: 16px;
}

/* Form Instance */
.form-instance {
	display: none;
}

.form-instance.active {
	display: block;
}

/* Stripe Elements */
#card-element {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	min-height: 40px;
	box-shadow: 0 1px 3px 0 #e6ebf1;
	-webkit-transition: box-shadow 150ms ease;
	transition: box-shadow 150ms ease;
}

#card-element.StripeElement--focus {
	box-shadow: 0 1px 3px 0 #cfd7df;
}

#card-element.StripeElement--invalid {
	border-color: #fa755a;
}

#card-element.StripeElement--webkit-autofill {
	background-color: #fefde5 !important;
}

.stripe-payment-section {
	margin: 20px 0;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 4px;
}

.card-element-wrapper {
	margin-bottom: 20px;
}

.card-element-wrapper label {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	color: #32325d;
}

#card-errors {
	color: #fa755a;
	font-size: 14px;
	margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 767px) {
	.trip-details-form-wrapper {
		padding: 20px;
	}

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

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

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

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

	.form-tabs-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.form-tabs {
		width: 100%;
	}

	.add-form-btn {
		align-self: flex-end;
	}
}

/* Date Input Styles */
.date-input {
	cursor: pointer;
	background: white;
}

.date-input:focus {
	outline: none;
	border-color: #007cba;
	box-shadow: 0 0 0 1px #007cba;
}

/* Custom date input styling for better appearance */
.date-input::-webkit-calendar-picker-indicator {
	background-color: #007cba;
	padding: 5px;
	cursor: pointer;
	border-radius: 3px;
	filter: invert(1);
}

.date-input::-webkit-calendar-picker-indicator:hover {
	background-color: #005a87;
}

/* Payment Success Message Styles */
.payment-success-message {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 20px;
	text-align: center;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	z-index: 9999 !important;
}

.payment-success-message h3 {
	margin: 0 0 15px 0;
	color: #155724;
}

.payment-success-message p {
	margin: 0 0 10px 0;
}

.payment-success-message p:last-child {
	margin-bottom: 0;
}

#reload-page-btn {
	background: #0073aa !important;
	color: white !important;
	border: none !important;
	padding: 10px 20px !important;
	border-radius: 5px !important;
	cursor: pointer !important;
	font-size: 16px !important;
	transition: background-color 0.3s ease !important;
}

#reload-page-btn:hover {
	background: #005a87 !important;
}

/* Add these new styles at the top without removing existing styles */
.loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.loader {
	width: 50px;
	height: 50px;
	border: 5px solid #f3f3f3;
	border-radius: 50%;
	border-top: 5px solid #002b6b;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.success-message {
	background-color: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 500;
}

.error-message {
	background-color: #f8d7da;
	color: #721c24;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 500;
}

.trip-details-form-wrapper {
	max-width: 1120px;
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
	/* padding: 40px; */
}

/* Trip Details Header */
.section-title {
	color: #002b6b;
	font-size: 24px;
	font-weight: 600;
	padding: 10px;
}

h2.section-title {
	padding: 0;
	margin-top: 0;
	color: #022568 !important;
	font-family: Satoshi !important;
	font-weight: 700;
	font-size: 25px !important;
	line-height: 100%;
}

/* Labels */
.form-label {
	display: block;
	margin-bottom: 8px;
	font-family: Roboto;
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #717171;
	letter-spacing: 1px;
}

/* Trip Details Section */
.trip-details-section {
	padding: 40px;
	box-shadow: unset;
}

.trip-row {
	margin-top: 25px;
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 20px;
}

/* Select Trip Dropdown */
.select-wrapper {
	position: relative;
	width: 100%;
}

.select-wrapper select,
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"] {
	width: 100%;
	height: 45px;
	padding: 0 15px;
	border: 1px solid #e5e5e5;
	background: #fff;
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	text-transform: capitalize;
}

input[type=text], input[type=number], input[type=email], input[type=tel], input[type=url], input[type=password], input[type=search], textarea, .input-text {
	background: #fff !important;
}

/* Quantity Control */
.quantity-section {
	width: 100%;
}

.quantity-control {
	display: flex;
	align-items: stretch;
	height: 45px;
	background: white;
	border-radius: 5px !important;
	border: 0.5px solid #e5e5e5;
	overflow: hidden;
}

.quantity-control input.quantity-input {
	border: 0 !important;
	box-shadow: unset !important;
}

.quantity-btn {
	width: 45px;
	border: none;
	background: white;
	color: #666;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.quantity-input {
	flex: 1;
	width: 60px;
	border: none;
	text-align: center;
	font-size: 16px;
	color: #333;
	background: #f5f5f5;
	border: 1px solid lightgray !important;
}

/* Date Picker */
.date-picker {
	margin-top: 25px;
}

.date-input {
	width: 100%;
	height: 45px;
	padding: 0 15px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	text-transform: none !important;
	color: #666;
	background: #fff;
}

/* Form Navigation */
.form-tabs-container {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 30px 0 15px;
}

.form-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.form-tab {
	background: #f5f5f5;
	color: #022568;
	cursor: pointer;
	font-family: Roboto;
	font-weight: 600;
	font-size: 14.22px;
	line-height: 100%;
	text-transform: uppercase;

}

.form-tab.active {
	background: #002b6b;
	color: #fff;
}

.add-form-btn {
	width: 30px;
	height: 30px;
	min-width: 30px;
	border: 1px solid #e5e5e5;
	background: #fff;
	border-radius: 4px;
	color: #666;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.help-text {
	color: #8f8f8f;
	margin: 10px 0 0px;
	font-family: Satoshi;
	font-weight: 500;
	font-size: 15px;
	line-height: 100%;
}

/* Form Sections */
.form-section {
	margin-bottom: 40px;
}

.form-section h3.section-title {
	color: #002b6b;
	margin-bottom: 25px;
	padding: 0;
	font-family: Satoshi;
	font-weight: 700;
	font-size: 25px;
	line-height: 100%;
}

/* Form Rows */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

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

/* Input Fields */
.form-group {
	width: 100%;
}

.form-group input,
.form-group select {
	width: 100%;
	height: 55px;
	padding: 0 15px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	color: #666;
	background: #fff;
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	text-transform: none !important

}

.form-group input::placeholder {
	color: #999;
}

/* Select2 Customization */
.select-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 15px;
	width: 100%;
}

.select2-container {
	width: 100% !important;
}

.select2-container--default .select2-selection--single {
	height: 55px;
	padding: 8px 15px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	background-color: #fff;

}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 10px 0;
	color: #969696;
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	text-transform: capitalize;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 55px;
	right: 10px;
}

.select2-container .select2-selection--multiple {
	min-height: 55px !important;
	display: flex;
	align-items: center;
}

.select2-dropdown {
	border-color: #e5e5e5;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option {
	padding: 8px 15px;
	font-size: 14px;
	color: #666;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #002b6b;
	color: #fff;
}

/* Required Field */
.required {
	color: #ff6b00;
	margin-left: 2px;
}

/* Selected Tags */
.selected-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: #f5f5f5;
	border-radius: 20px;
	font-size: 13px;
	color: #666;
}

.tag-remove {
	background: none;
	border: none;
	color: #666;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Checkbox Group */
.checkbox-group {
	margin-top: 30px;
	margin-bottom: 30px;
}

.checkbox-group h4 {
	color: #666;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.checkbox-group label {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	color: #022568;
	cursor: pointer;
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	text-transform: capitalize;
}

.checkbox-group input[type="checkbox"] {
	margin: 2px 12px 0 0;
	width: 20px;
	height: 23px;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	background: #fff;
}

.checkbox-group input[type="checkbox"]:checked {
	background: #002b6b;
	border-color: #002b6b;
}

/* Save Form Button */
.save-form-btn {
	width: 100%;
	background: #002b6b;
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	height: 68px;
	font-family: Roboto;
	font-weight: 600;
	font-size: 14.22px;
	line-height: 100%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.select2 {
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;
	text-transform: capitalize;
	color: #969696;
}

.select2-container .select2-search--inline .select2-search__field {
	height: 52px;
	border: 0;
}

.form-row-section-select {
	padding-top: 20px;
}

.form-group.checkbox-group h4 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	text-transform: uppercase;
	color: #717171;
	border-top: 0.5px solid #b6b6b6;
	padding-top: 25px;
}

/* Waiver Section */
.waiver-section {
	margin-top: 20px;
	background: #f7f7f7;
	padding: 20px 40px;
	border-radius: 15px;
}

.form-row-section {
	background: #f7f7f7;
	padding: 20px 40px;
	border-radius: 15px;
}

.waiver-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.waiver-header h3 {
	font-family: Roboto;
	font-weight: 700;
	font-size: 24px;
	color: #002b6b;
	margin: 0;
}

.waiver-header::after {
	content: '';
	width: 100%;
	height: 2px;
	background: #ff6b00;
	margin-top: 10px;
	position: absolute;
	left: 0;
}

/* Waiver Preview Container */
.waiver-preview-container {
	background: #e8f4fd;
	border-left: 4px solid #ff6b00;
	padding: 20px;
	margin-bottom: 25px;
	border-radius: 0 8px 8px 0;
}

.trip-info h4 {
	font-family: Roboto;
	font-weight: 700;
	font-size: 18px;
	color: #002b6b;
	margin: 0 0 15px 0;
}

.trip-info p {
	font-family: Satoshi;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	margin: 5px 0;
}

.waiver-preview-text {
	margin: 20px 0;
	position: relative;
}

.waiver-preview-text p {
	font-family: Satoshi;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin: 10px 0;
}

.waiver-preview-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: linear-gradient(transparent, #e8f4fd);
	pointer-events: none;
}

.read-waiver-btn {
	background: #ff6b00;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-family: Roboto;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	text-transform: none;
	display: block;
	margin: 20px auto 0;
	transition: background-color 0.3s ease;
}

.read-waiver-btn:hover {
	background: #e55a00;
}

/* Date of Birth Field */
.date-of-birth-input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: Satoshi;
	font-size: 16px;
	margin-top: 10px;
}

/* Parental Consent Section */
.parental-consent-section {
	margin: 20px 0;
}

.parental-consent-alert {
	background: #ff6b00;
	border: 1px solid #e55a00;
	border-radius: 6px;
	padding: 15px;
}

.parental-consent-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-family: Satoshi;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: white;
}

.parental-consent-checkbox input[type="checkbox"] {
	margin-top: 3px;
	width: 16px;
	height: 16px;
	border: 1px solid #fff;
	border-radius: 3px;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	background: #fff;
}

.parental-consent-checkbox input[type="checkbox"]:checked {
	background: #fff;
	border-color: #fff;
}

.parental-consent-checkbox input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: solid #ff6b00;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Waiver Status Indicator */
.waiver-status {
	margin: 20px 0;
}

.waiver-status-message {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 6px;
	padding: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.status-icon {
	font-size: 18px;
}

.status-text {
	font-family: Satoshi;
	font-weight: 500;
	font-size: 16px;
	color: #155724;
}

/* Waiver Modal */
.waiver-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.waiver-modal-content {
	background-color: #fff;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

.waiver-modal-header {
	background: #002b6b;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 10001;
}

.waiver-modal-title {
	font-family: Roboto;
	font-weight: 700;
	font-size: 24px;
	margin: 0;
}

.waiver-modal-close {
	background: none;
	border: none;
	color: white;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.waiver-modal-close:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.waiver-scroll-indicator {
	background: #dc3545;
	color: white;
	text-align: center;
	padding: 10px;
	font-family: Roboto;
	font-weight: 600;
	font-size: 16px;
	position: sticky;
	top: 0;
	z-index: 10000;
}

.waiver-modal-body {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	font-family: Satoshi;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}

.waiver-modal-body h1,
.waiver-modal-body h2,
.waiver-modal-body h3 {
	color: #002b6b;
	font-family: Roboto;
	font-weight: 700;
}

.waiver-modal-body h1 {
	font-size: 24px;
	margin: 20px 0 15px 0;
}

.waiver-modal-body h2 {
	font-size: 20px;
	margin: 18px 0 12px 0;
}

.waiver-modal-body h3 {
	font-size: 18px;
	margin: 15px 0 10px 0;
}

.waiver-modal-body p {
	margin: 10px 0;
}

.waiver-modal-body strong {
	font-weight: 700;
	color: #002b6b;
}

.waiver-modal-body ul,
.waiver-modal-body ol {
	margin: 15px 0;
	padding-left: 30px;
}

.waiver-modal-body li {
	margin: 8px 0;
}

.waiver-modal-footer {
	background: #f8f9fa;
	padding: 20px;
	border-top: 1px solid #e5e5e5;
	position: sticky;
	bottom: 0;
	text-align: center;
}

.waiver-sign-btn {
	background: #28a745;
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 6px;
	cursor: pointer;
	font-family: Roboto;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
	min-width: 200px;
}

.waiver-sign-btn:disabled {
	background: #6c757d;
	cursor: not-allowed;
}

.waiver-sign-btn:not(:disabled):hover {
	background: #218838;
}

/* Responsive Modal */
@media (max-width: 768px) {
	.waiver-modal-content {
		margin: 0;
	}

	.waiver-modal-header {
		padding: 15px;
	}

	.waiver-modal-title {
		font-size: 20px;
	}

	.waiver-modal-body {
		padding: 15px;
		font-size: 14px;
	}

	.waiver-modal-footer {
		padding: 15px;
	}

	.waiver-sign-btn {
		padding: 12px 24px;
		font-size: 16px;
		min-width: 150px;
	}
}

.waiver-checkboxes {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.waiver-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	cursor: pointer;
}

.waiver-checkbox input[type="checkbox"] {
	margin-top: 3px;
	/* width: auto; */

	border: 1px solid #e5e5e5;
	border-radius: 3px;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	background: #fff;
}

.waiver-checkbox input[type="checkbox"]:checked {
	background: #002b6b;
	border-color: #002b6b;
}

.waiver-checkbox input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.waiver-checkboxes span {
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	line-height: 29px;
}

/* Signature Section */
.signature-section {
	margin-top: 35px;
}

.signature-container {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	height: 150px;
	margin-bottom: 15px;
	background: #fff;
	width: 100%;
}

.signature-pad {
	width: 100%;
	height: 100%;
}

.clear-signature {
	background: none;
	border: none;
	color: #002b6b;
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	margin-top: 10px;
	cursor: pointer;
	text-transform: uppercase;
}

/* Submit Button */
.submit-btn {
	width: 100%;
	background: #002b6b;
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
	cursor: pointer;
	height: 68px;
	font-family: Roboto;
	font-weight: 600;
	font-size: 14.22px;
	line-height: 100%;
	text-transform: uppercase;
}

/* Heart Icon */
.heart-icon {
	font-size: 16px;
}

/* Form Instance */
.form-instance {
	display: none;
}

.form-instance.active {
	display: block;
}

.field-error {
	color: #d93025;
	font-size: 13px;
	margin-top: 5px;
}

.error {
	border-color: #d93025 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
	.trip-details-form-wrapper {
		padding: 20px;
	}

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

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

	.form-tabs-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.form-tabs {
		width: 100%;
	}

	.add-form-btn {
		align-self: flex-end;
	}
}

/* Keep all existing styles below */
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
	padding-left: 18px;
}

.select2-container .select2-search--inline .select2-search__field {
	font-family: Satoshi;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	text-transform: capitalize;
	padding: 15px 0 !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
	margin-bottom: 0;
}

.select2-container .select2-selection--multiple {
	padding-left: 15px;
}
