.tour-enquiry-form {
	background-color: #f5f7fa;
	border-radius: 20px;
	padding: 28px 32px;
	box-shadow: 0 18px 45px -20px rgba(34, 36, 38, 0.25);
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tour-enquiry-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px 24px;
}

.tour-enquiry-field label {
	display: block;
	font-weight: 600;
	font-size: 0.95rem;
	color: #1b1f23;
	margin-bottom: 8px;
}

.tour-enquiry-field {
	display: flex;
	flex-direction: column;
}

.tour-enquiry-field input.form-control,
.tour-enquiry-field select.form-control {
	border-radius: 999px;
	border: 1px solid #d9dfe7;
	background-color: #ffffff;
	padding: 0.75rem 1.2rem;
	height: auto;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tour-enquiry-field textarea.form-control {
	border-radius: 18px;
	border: 1px solid #d9dfe7;
	min-height: 140px;
	padding: 0.85rem 1.2rem;
	resize: vertical;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tour-enquiry-field input.form-control:focus,
.tour-enquiry-field select.form-control:focus,
.tour-enquiry-field textarea.form-control:focus {
	border-color: #1f69ff;
	box-shadow: 0 0 0 0.2rem rgba(31, 105, 255, 0.15);
	outline: none;
}

.tour-enquiry-field--readonly input.form-control {
	background-color: #eef2f7;
	color: #3e4a59;
	font-weight: 600;
	cursor: not-allowed;
}

.tour-enquiry-field--full {
	grid-column: 1 / -1;
}

.tour-enquiry-actions {
	margin-top: 10px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.enquiry_modal form .btn-primary{
	background-color: #281501;
    border-radius: 30px;
    color: #fff;
    display: block;
    margin: auto auto;
    padding: 10px 25px;
}

.tour-enquiry-actions .btn {
	padding: 0.85rem 2.5rem;
	border-radius: 999px;
	font-weight: 600;
	box-shadow: 0 12px 25px -16px rgba(31, 105, 255, 0.75);
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tour-enquiry-form .error {
	display: none;
	font-size: 0.85rem;
	margin-top: 6px;
}
.tour-enquiry-form .error.show {
	display: block;
}

.tour-summary-table {
	width: 100%;
	border-collapse: collapse;
}

.tour-summary-table th,
.tour-summary-table td {
	padding: 12px 14px;
	text-align: left;
	font-size: 1.4rem;
}

.tour-summary-table thead tr {
	background: #ab5800;
	color: #fff;
}

.tour-summary-table tbody tr:nth-child(odd) {
	background: #f8fafc;
}

.tour-summary-table .summary-total td {
	font-weight: 700;
	font-size: 1.4rem;
	background: #eef3fb;
}

.tour-enquiry-field .g-recaptcha {
	transform: scale(1);
	transform-origin: left top;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.tour-enquiry-field .g-recaptcha + #captchaError {
	margin-top: 6px;
}
.enquiry_modal .modal-dialog {
	max-width: 720px;
}
.enquiry_modal .modal-header {
	background-color: #ffb900;
    color: #000000;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    height: 70px;
    align-items: flex-start;
}
.enquiry_modal .modal-header .modal-title {
	font-size: 18px;
	font-weight: 600;
}
.enquiry_modal .modal-header .close {
	color: #000000;
	opacity: 1;
	font-size: 16px;
	width: 30px;
	height: 30px;
	display: flex;
	flex:none;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: 0.3s ease-in-out;
}
.enquiry_modal .modal-header .close:hover {
	background-color: #fff;
	color: #000000;
}
.enquiry_modal .modal-header .close:hover span {
	color: #fff;
}
.enquiry_modal .modal-content {
	border: none;
	border-radius: 24px;
	overflow: hidden;
}

.enquiry_modal .modal-body {
    position: relative;
    background: rgb(241 241 241 / 98%);
    z-index: 1;
    padding: 15px 24px 24px 24px;
    margin-top: -20px;
}

.enquiry_modal .modal-header {
	border-bottom: none;
}

.enquiry_modal .close {
	line-height: 1;
}
.tour-enquiry-summary{
	margin-top: 10px;
}
@media (max-width: 575.98px) {
	.tour-enquiry-form {
		padding: 22px 18px;
	}

	.tour-enquiry-grid {
		gap: 16px;
	}

	.tour-enquiry-actions .btn {
		width: 100%;
	}

	.tour-summary-table th,
	.tour-summary-table td {
		padding: 10px 12px;
	}
}

