/* Inquiry page redesign */
.page.inquiry-page h1 {
	display: none;
}

.page.inquiry-page .bookingform{
	background: transparent;
	padding: 0;
	margin-bottom: 0;
}

.inquiry-page-wrap {
	margin-bottom: 40px;
}

.inquiry-hero {
	background: linear-gradient(135deg, #810f0f 0%, #bd4105 55%, #d4621a 100%);
	color: #fff;
	border-radius: 12px;
	padding: 36px 40px;
	margin-bottom: 28px;
	box-shadow: 0 8px 24px rgba(129, 15, 15, 0.22);
}

.inquiry-hero h2 {
	color: #fff;
	margin: 0 0 10px;
	font-size: 28px;
	font-weight: 600;
}

.inquiry-hero p {
	margin: 0;
	max-width: 720px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 16px;
	line-height: 1.6;
}

.inquiry-hero .hero-meta {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
}

.inquiry-hero .hero-meta span {
	font-size: 14px;
	color: #f7ed4a;
}

.inquiry-hero .hero-meta i {
	margin-right: 8px;
}

.inquiry-card {
	background: #fff;
	border: 1px solid #ead9d4;
	border-radius: 12px;
	padding: 28px 28px 18px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.inquiry-section {
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid #f0e4e0;
}

.inquiry-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.inquiry-section-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.inquiry-step {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #810f0f;
	color: #f7ed4a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 15px;
	flex-shrink: 0;
}

.inquiry-section-head h3 {
	margin: 0;
	font-size: 20px;
	color: #810f0f;
}

.inquiry-section-head p {
	margin: 2px 0 0;
	font-size: 13px;
	color: #666;
}

.inquiry-field {
	margin-bottom: 16px;
}

.inquiry-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #444;
	margin-bottom: 6px;
}

.inquiry-field label .req {
	color: #bd4105;
}

.inquiry-field .form-control {
	height: 46px;
	border: 1px solid #d9c8c3;
	border-radius: 8px;
	box-shadow: none;
	font-size: 15px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.inquiry-field textarea.form-control {
	height: auto;
	min-height: 130px;
	resize: vertical;
	padding-top: 12px;
}

.inquiry-field .form-control:focus {
	border-color: #bd4105;
	box-shadow: 0 0 0 3px rgba(189, 65, 5, 0.12);
}

.inquiry-field .input-group {
	width: 100%;
}

.inquiry-field .input-group-addon {
	background: #fdf5f2;
	border: 1px solid #d9c8c3;
	border-right: none;
	border-radius: 8px 0 0 8px;
	color: #810f0f;
	min-width: 44px;
}

.inquiry-field .input-group .form-control {
	border-radius: 0 8px 8px 0;
}

.inquiry-field .input-group .form-control:focus + .input-group-addon,
.inquiry-field .input-group .form-control:focus {
	border-color: #bd4105;
}

.inquiry-departure-note {
	background: #fff8e8;
	border: 1px solid #f0dfa0;
	border-radius: 8px;
	padding: 12px 14px;
	margin-top: 12px;
	font-size: 14px;
	color: #6b5a00;
}

.inquiry-departure-note label {
	display: inline;
	font-weight: 600;
	margin-right: 8px;
}

.inquiry-departure-note .form-control {
	display: inline-block;
	width: auto;
	min-width: 180px;
	height: 38px;
	margin-top: 6px;
}

.inquiry-captcha {
	margin: 18px 0 8px;
}

.inquiry-submit {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 8px;
}

.inquiry-submit .btn-inquiry {
	background: linear-gradient(135deg, #810f0f, #bd4105);
	border: none;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 32px;
	border-radius: 8px;
	transition: transform 0.15s, box-shadow 0.15s;
}

.inquiry-submit .btn-inquiry:hover {
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(129, 15, 15, 0.28);
}

.inquiry-submit #result {
	font-size: 14px;
	color: #810f0f;
}

.inquiry-sidebar {
	position: sticky;
	top: 20px;
}

.inquiry-info-card {
	background: #fff;
	border: 1px solid #ead9d4;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.inquiry-info-card h3 {
	margin: 0 0 16px;
	font-size: 18px;
	color: #810f0f;
	padding-bottom: 12px;
	border-bottom: 2px solid #f7ed4a;
}

.inquiry-info-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.inquiry-info-card li {
	padding: 10px 0;
	border-bottom: 1px dotted #e8d8d3;
	font-size: 14px;
	line-height: 1.5;
}

.inquiry-info-card li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.inquiry-info-card li i {
	color: #bd4105;
	width: 22px;
	margin-right: 8px;
}

.inquiry-info-card a {
	color: #810f0f;
	font-weight: 600;
}

.inquiry-info-card a:hover {
	color: #fa6f1c !important;
}

.inquiry-trust {
	background: #fdf8f6;
}

.inquiry-trust p {
	margin: 0 0 10px;
	font-size: 14px;
	color: #555;
}

.inquiry-trust .trust-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
}

.inquiry-trust .trust-item i {
	color: #bd4105;
	margin-top: 3px;
}

.inquiry-sidebar .tripadvisor {
	margin-top: 0;
}

.inquiry-sidebar .easy-autocomplete {
	width: 100% !important;
}

.inquiry-sidebar .easy-autocomplete input {
	width: 100% !important;
}

@media (max-width: 991px) {
	.inquiry-hero {
		padding: 28px 24px;
	}

	.inquiry-hero h2 {
		font-size: 24px;
	}

	.inquiry-card {
		padding: 22px 18px 14px;
	}

	.inquiry-sidebar {
		position: static;
		margin-top: 24px;
	}
}

@media (max-width: 767px) {
	.inquiry-hero .hero-meta {
		flex-direction: column;
		gap: 10px;
	}
}
