.gpc-booking-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	background: linear-gradient(135deg, #0b4f3c 0%, #0e6b50 100%);
	border-radius: 14px;
	padding: 18px 22px;
	margin: 0 0 18px;
	box-shadow: 0 4px 16px rgba(11,79,60,.25);
}
.gpc-booking-cta-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: #ffffff;
}
.gpc-booking-cta-eyebrow {
	font-size: 15px;
	font-weight: 800;
}
.gpc-booking-cta-sub {
	font-size: 13px;
	opacity: .85;
}
.gpc-booking-cta-btn {
	background: #ffb703;
	color: #10241d;
	border: none;
	border-radius: 999px;
	padding: 13px 26px;
	font-size: 14.5px;
	font-weight: 800;
	letter-spacing: .2px;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .15s ease, box-shadow .15s ease;
	box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.gpc-booking-cta-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 5px 14px rgba(0,0,0,.28);
}
@media (max-width: 600px) {
	.gpc-booking-cta { padding: 15px 16px; }
	.gpc-booking-cta-btn { width: 100%; text-align: center; padding: 14px 18px; }
}

/* ---------------------------------------------------------------- modal */
.gpc-booking-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
}
.gpc-booking-modal.is-open {
	display: block;
}
.gpc-booking-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10,20,17,.6);
}
body.gpc-booking-lock-scroll {
	overflow: hidden;
}
.gpc-booking-modal-panel {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin: 4vh auto;
	max-height: 92vh;
	overflow-y: auto;
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 28px 24px;
	box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.gpc-booking-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #444;
}
.gpc-booking-modal-title {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 800;
	color: #0b4f3c;
}
.gpc-booking-modal-listing {
	margin: 0 0 18px;
	font-size: 13.5px;
	color: #555;
}
.gpc-booking-form-status {
	display: none;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13.5px;
	margin-bottom: 14px;
}
.gpc-booking-form-status.is-visible {
	display: block;
}
.gpc-booking-form-status.is-success {
	background: #e6f5ee;
	color: #0b4f3c;
}
.gpc-booking-form-status.is-error {
	background: #fdecec;
	color: #9c1c1c;
}
.gpc-booking-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 16px;
}
.gpc-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #22322c;
}
.gpc-field-full {
	grid-column: 1 / -1;
}
.gpc-field em {
	color: #c0392b;
	font-style: normal;
}
.gpc-field .gpc-optional {
	font-weight: 500;
	color: #888;
	font-size: 11.5px;
}
.gpc-field input,
.gpc-field select,
.gpc-field textarea {
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 12px;
	border: 1px solid #d7dcda;
	border-radius: 9px;
	background: #fbfcfb;
	color: #1c1c1c;
}
.gpc-field input:focus,
.gpc-field select:focus,
.gpc-field textarea:focus {
	outline: none;
	border-color: #0e6b50;
	background: #ffffff;
}
.gpc-field-toggle {
	align-self: flex-start;
	background: none;
	border: none;
	padding: 0;
	color: #0e6b50;
	font-size: 11.5px;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}
.gpc-booking-submit-btn {
	width: 100%;
	margin-top: 20px;
	background: #0b4f3c;
	color: #ffffff;
	border: none;
	border-radius: 999px;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
}
.gpc-booking-submit-btn:disabled {
	opacity: .7;
	cursor: not-allowed;
}
.gpc-booking-submit-btn:hover:not(:disabled) {
	background: #0e6b50;
}
.gpc-booking-form-note {
	margin: 10px 0 0;
	font-size: 11.5px;
	color: #888;
	text-align: center;
}
@media (max-width: 600px) {
	.gpc-booking-fields {
		grid-template-columns: 1fr;
	}
	.gpc-booking-modal-panel {
		margin: 0;
		max-height: 100vh;
		height: 100%;
		border-radius: 0;
	}
}
