.ggc-booking-wrap {
	--ggc-primary: #3f8f4f;
	--ggc-primary-dark: #2f6d3c;
	--ggc-accent: #f4b03e;
	--ggc-text: #22321f;
	--ggc-bg: #ffffff;
	--ggc-radius: 14px;
	--ggc-border: #e1e8dc;
	--ggc-muted: #6b7a66;

	max-width: 720px;
	margin: 0 auto;
	font-family: inherit;
	color: var(--ggc-text);
	box-sizing: border-box;
}

.ggc-booking-wrap * {
	box-sizing: border-box;
}

.ggc-booking-card {
	background: var(--ggc-bg);
	border-radius: var(--ggc-radius);
	box-shadow: 0 10px 35px rgba(34, 50, 31, 0.1), 0 2px 8px rgba(34, 50, 31, 0.06);
	overflow: hidden;
	border: 1px solid var(--ggc-border);
}

.ggc-booking-header {
	background: linear-gradient(135deg, var(--ggc-primary) 0%, var(--ggc-primary-dark) 100%);
	padding: 32px 36px;
	position: relative;
}

.ggc-booking-header::after {
	content: "";
	position: absolute;
	right: -30px;
	top: -30px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.ggc-booking-header h2 {
	margin: 0;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.2px;
}

/* Stepper */
.ggc-stepper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 24px 36px 4px;
	background: #fafcf9;
	border-bottom: 1px solid var(--ggc-border);
}

.ggc-step-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	position: relative;
	z-index: 1;
}

.ggc-step-circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 2px solid var(--ggc-border);
	color: var(--ggc-muted);
	font-weight: 700;
	font-size: 13px;
	transition: all 0.2s ease;
}

.ggc-step-label {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--ggc-muted);
	text-align: center;
	white-space: nowrap;
}

.ggc-step-node.is-active .ggc-step-circle {
	background: var(--ggc-primary);
	border-color: var(--ggc-primary);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(63, 143, 79, 0.15);
}

.ggc-step-node.is-active .ggc-step-label {
	color: var(--ggc-primary-dark);
}

.ggc-step-node.is-complete .ggc-step-circle {
	background: var(--ggc-primary-dark);
	border-color: var(--ggc-primary-dark);
	color: #fff;
}

.ggc-step-node.is-complete .ggc-step-circle::after {
	content: "\2713";
}

.ggc-step-node.is-complete .ggc-step-circle {
	font-size: 0;
}

.ggc-step-connector {
	flex: 1 1 auto;
	height: 2px;
	background: var(--ggc-border);
	margin: 15px -4px 0;
}

@media (max-width: 560px) {
	.ggc-stepper {
		padding: 18px 16px 4px;
	}
	.ggc-step-label {
		display: none;
	}
}

.ggc-booking-form {
	padding: 32px 36px 36px;
}

.ggc-step-panel {
	display: none;
}

.ggc-step-panel.is-active {
	display: block;
	animation: ggc-fade-in 0.25s ease;
}

@keyframes ggc-fade-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ggc-service-select {
	margin-bottom: 24px;
}

.ggc-service-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 12px;
}

@media (max-width: 560px) {
	.ggc-service-options {
		grid-template-columns: 1fr;
	}
}

.ggc-service-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 16px;
	border: 1.5px solid var(--ggc-border);
	border-radius: calc(var(--ggc-radius) / 1.6);
	cursor: pointer;
	background: #fafcf9;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ggc-service-card input[type="radio"] {
	accent-color: var(--ggc-primary);
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.ggc-service-card-title {
	font-weight: 600;
	font-size: 14.5px;
}

.ggc-service-card:hover {
	border-color: var(--ggc-primary);
}

.ggc-service-card.is-selected {
	border-color: var(--ggc-primary);
	background: rgba(63, 143, 79, 0.07);
	box-shadow: 0 0 0 3px rgba(63, 143, 79, 0.12);
}

/* Review step */
.ggc-review-summary {
	border: 1px solid var(--ggc-border);
	border-radius: calc(var(--ggc-radius) / 2);
	overflow: hidden;
}

.ggc-review-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 16px;
	font-size: 14px;
	border-bottom: 1px solid var(--ggc-border);
}

.ggc-review-row:last-child {
	border-bottom: none;
}

.ggc-review-row:nth-child(odd) {
	background: #fafcf9;
}

.ggc-review-label {
	font-weight: 600;
	color: var(--ggc-muted);
	flex: 0 0 45%;
}

.ggc-review-value {
	flex: 1;
	text-align: right;
	word-break: break-word;
}

/* Step nav (Back / Continue) */
.ggc-step-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
}

.ggc-btn-back {
	background: none;
	border: none;
	color: var(--ggc-muted);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	padding: 10px 6px;
}

.ggc-btn-back:hover {
	color: var(--ggc-primary-dark);
}

.ggc-btn-next {
	background: var(--ggc-primary);
	color: #fff;
	border: none;
	font-weight: 700;
	font-size: 14.5px;
	padding: 13px 26px;
	border-radius: calc(var(--ggc-radius) / 1.8);
	cursor: pointer;
	margin-left: auto;
	transition: background 0.15s ease, transform 0.12s ease;
}

.ggc-btn-next:hover {
	background: var(--ggc-primary-dark);
	transform: translateY(-1px);
}

.ggc-step-nav .ggc-submit-btn {
	margin-left: auto;
	width: auto;
	padding: 13px 30px;
}

.ggc-section-heading {
	margin: 28px 0 16px;
	padding-top: 16px;
	border-top: 1px dashed var(--ggc-border);
}

.ggc-section-heading:first-of-type {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}

.ggc-section-heading h3 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: var(--ggc-primary-dark);
}

.ggc-basic-note {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--ggc-muted);
}

.ggc-advance-note {
	font-style: italic;
}

.ggc-field-group {
	margin-bottom: 18px;
	flex: 1;
}

.ggc-field-row {
	display: flex;
	gap: 16px;
}

.ggc-field-row-3 .ggc-field-group {
	min-width: 0;
}

@media (max-width: 560px) {
	.ggc-field-row {
		flex-direction: column;
		gap: 0;
	}
}

.ggc-field-group label {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--ggc-text);
}

.ggc-field-group .req {
	color: #d6482f;
}

.ggc-field-group input[type="text"],
.ggc-field-group input[type="email"],
.ggc-field-group input[type="tel"],
.ggc-field-group input[type="number"],
.ggc-field-group input[type="date"],
.ggc-field-group input[type="time"],
.ggc-field-group select,
.ggc-field-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--ggc-border);
	border-radius: calc(var(--ggc-radius) / 2.2);
	font-size: 14.5px;
	color: var(--ggc-text);
	background: #fafcf9;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	font-family: inherit;
}

.ggc-field-group input:focus,
.ggc-field-group select:focus,
.ggc-field-group textarea:focus {
	outline: none;
	border-color: var(--ggc-primary);
	box-shadow: 0 0 0 3px rgba(63, 143, 79, 0.15);
	background: #fff;
}

.ggc-field-group textarea {
	resize: vertical;
	min-height: 90px;
}

.ggc-form-message {
	display: none;
	padding: 12px 14px;
	border-radius: calc(var(--ggc-radius) / 2.2);
	font-size: 13.5px;
	margin-bottom: 18px;
}

.ggc-form-message.ggc-error {
	display: block;
	background: #fdecea;
	color: #a83226;
	border: 1px solid #f3c6bf;
}

.ggc-submit-btn {
	width: 100%;
	background: var(--ggc-accent);
	color: #2a2205;
	font-size: 16px;
	font-weight: 700;
	padding: 15px 20px;
	border: none;
	border-radius: calc(var(--ggc-radius) / 1.6);
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 6px 18px rgba(244, 176, 62, 0.35);
}

.ggc-submit-btn:hover {
	background: #eaa322;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(244, 176, 62, 0.45);
}

.ggc-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.ggc-btn-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(42, 34, 5, 0.25);
	border-top-color: #2a2205;
	border-radius: 50%;
	display: none;
	animation: ggc-spin 0.7s linear infinite;
}

.ggc-submit-btn.is-loading .ggc-btn-spinner {
	display: inline-block;
}

@keyframes ggc-spin {
	to {
		transform: rotate(360deg);
	}
}

.ggc-confirmation-screen {
	padding: 48px 36px 52px;
	text-align: center;
}

.ggc-confirmation-icon {
	width: 64px;
	height: 64px;
	line-height: 64px;
	border-radius: 50%;
	background: var(--ggc-primary);
	color: #fff;
	font-size: 30px;
	margin: 0 auto 20px;
}

.ggc-confirmation-text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--ggc-text);
	white-space: pre-line;
	max-width: 480px;
	margin: 0 auto;
}
