/**
 * Book Service Styles
 * 
 * Mobile-first, accessible booking flow UI
 * Uses Palette A CSS variables
 *
 * @package Garage_At_Home
 */

/* Palette A CSS Variables */
:root {
	--gh-bg: #0F1113;
	--gh-surface: #141618;
	--gh-accent: #C62828;
	--gh-accent-2: #FF6F61;
	--gh-text: #F5F6F7;
	--gh-muted: #BFC4C6;
	--gh-success: #2ECC71;
	--gh-warning: #F39C12;
	--gh-error: #E74C3C;
}

/* Main Container */
.gh-book-service {
	background-color: var(--gh-bg);
	padding: 2rem 1rem;
	min-height: 100vh;
	width: 100%;
	box-sizing: border-box;
}

.gh-book-service-container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

/* Hero Heading Section */
.gh-book-service-header {
	text-align: center;
	padding: 1.5rem 1rem 1rem;
	margin-bottom: 2rem;
	position: relative;
}

.gh-book-header-graphic {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
	animation: pulse 2s ease-in-out infinite;
	position: relative;
}

.gh-book-header-graphic::before,
.gh-book-header-graphic::after {
	display: none; /* Remove any pseudo-element glows */
}

.gh-book-header-graphic svg {
	width: 80px;
	height: 80px;
	filter: none; /* Remove any filters that might create green glow */
}

.gh-book-header-graphic svg circle,
.gh-book-header-graphic svg path {
	filter: none; /* Remove filters from SVG elements */
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.9;
	}
}

.gh-book-service-main-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--gh-text);
	margin: 0 0 0.75rem;
	background: linear-gradient(135deg, var(--gh-text) 0%, var(--gh-accent-2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.gh-book-service-subtitle {
	font-size: 1rem;
	color: var(--gh-muted);
	margin: 0 0 1.5rem;
	line-height: 1.5;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.gh-book-header-features {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
	width: 100%;
	max-width: 100%;
	overflow-x: visible;
}

.gh-book-feature-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 1rem;
	background: rgba(198, 40, 40, 0.1);
	border: 1px solid rgba(198, 40, 40, 0.3);
	border-radius: 50px;
	color: var(--gh-accent-2);
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
	/* Ensure badges are responsive */
	flex: 0 1 auto;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gh-book-feature-badge:hover {
	background: rgba(198, 40, 40, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

.gh-book-feature-badge svg {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	min-width: 16px;
}

/* Ensure feature badges fit on mobile screen */
@media (max-width: 480px) {
	.gh-book-header-features {
		gap: 0.4rem;
		padding: 0;
	}
	
	.gh-book-feature-badge {
		flex: 1 1 calc(33.333% - 0.4rem);
		max-width: calc(33.333% - 0.4rem);
		padding: 0.35rem 0.4rem;
		font-size: 0.65rem;
		gap: 0.25rem;
	}
	
	.gh-book-feature-badge svg {
		width: 14px;
		height: 14px;
		min-width: 14px;
	}
}

/* Two-Column Layout */
.gh-book-service-layout {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
	position: relative;
}

.gh-book-service-left {
	flex: 1;
	width: 100%;
}

/* Vehicle Section Wrapper - Side by Side Layout */
.gh-book-vehicle-section-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
	margin-bottom: 2rem;
}

/* Left Column Container for Vehicle, Brand, Model */
.gh-book-vehicle-left-column {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
}

@media (min-width: 992px) {
	.gh-book-vehicle-section-wrapper {
		flex-direction: row;
		align-items: flex-start;
		gap: 2rem;
		position: relative;
	}
	
	.gh-book-vehicle-left-column {
		flex: 1;
		min-width: 0;
		max-width: 100%;
	}
	
	.gh-book-vehicle-left-column .gh-book-step {
		margin-bottom: 0;
	}
	
	.gh-book-vehicle-left-column .gh-book-step-vehicle {
		margin-bottom: 0;
	}
}

.gh-book-service-right {
	width: 100%;
	display: none; /* Hide on mobile by default */
}

@media (min-width: 992px) {
	.gh-book-service-right {
		width: 400px;
		flex-shrink: 0;
		display: block; /* Show on desktop */
		position: relative;
		margin-left: 0;
	}
}

/* Steps */
.gh-book-step {
	margin-bottom: 2rem;
}

.gh-book-step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gh-text);
	margin-bottom: 1.5rem;
}

/* Vehicle Type Selection */
.gh-book-vehicle-toggle {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	flex-direction: row; /* Always horizontal */
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.gh-book-vehicle-option {
	flex: 1;
	padding: 1rem 1.25rem;
	background: var(--gh-surface);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: var(--gh-text);
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	min-height: 100px;
}

.gh-book-vehicle-option::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.gh-book-vehicle-option:hover::before {
	left: 100%;
}

.gh-book-vehicle-option:hover {
	border-color: var(--gh-accent-2);
	background: rgba(198, 40, 40, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

.gh-book-vehicle-option.active {
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-color: var(--gh-accent-2);
	color: #fff;
	box-shadow: 0 4px 15px rgba(198, 40, 40, 0.5);
	transform: translateY(-1px);
}

.gh-book-vehicle-option.active::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.gh-book-vehicle-icon-wrapper {
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.gh-book-vehicle-option.active .gh-book-vehicle-icon-wrapper {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.gh-book-vehicle-icon {
	width: 32px;
	height: 32px;
	color: currentColor;
	transition: all 0.3s ease;
}

.gh-book-vehicle-option.active .gh-book-vehicle-icon {
	transform: scale(1.1);
	filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.gh-book-vehicle-selection-indicator {
	position: absolute;
	top: -3px;
	right: -3px;
	width: 22px;
	height: 22px;
	background: var(--gh-accent-2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(198, 40, 40, 0.4);
	border: 2px solid var(--gh-bg);
}

.gh-book-vehicle-option.active .gh-book-vehicle-selection-indicator {
	opacity: 1;
	transform: scale(1);
}

.gh-book-vehicle-selection-indicator svg {
	width: 12px;
	height: 12px;
}

.gh-book-vehicle-label {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	transition: all 0.3s ease;
}

.gh-book-vehicle-option.active .gh-book-vehicle-label {
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Select Dropdowns */
.gh-book-select-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gh-text);
	margin-bottom: 0.5rem;
}

	.gh-book-select,
.gh-book-input {
	width: 100%;
	padding: 0.875rem 1rem;
	background-color: var(--gh-surface);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: var(--gh-text);
	font-size: 16px; /* Prevents zoom on iOS */
	font-family: inherit;
	transition: all 0.2s ease;
	box-sizing: border-box;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 48px; /* Better touch target */
	-webkit-appearance: none;
}

/* Mobile adjustments for selects */
@media (max-width: 767px) {
	.gh-book-select,
	.gh-book-input {
		font-size: 16px;
		min-height: 48px;
		padding: 0.875rem 1rem;
	}
	
	.gh-book-search-input {
		font-size: 16px;
		min-height: 48px;
		padding: 0.875rem 1rem;
	}
}

/* Search input for filtering brand select only */
.gh-book-search-input {
	width: 100%;
	padding: 0.75rem 1rem;
	background-color: var(--gh-surface);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: var(--gh-text);
	font-size: 1rem;
	font-family: inherit;
	margin-bottom: 0.5rem;
	box-sizing: border-box;
	transition: all 0.2s ease;
}

.gh-book-search-input:focus {
	outline: none;
	border-color: var(--gh-accent-2);
	box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
}

.gh-book-search-input::placeholder {
	color: var(--gh-muted);
}

/* Select wrapper */
.gh-book-select-wrapper {
	max-width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Scrollable select listbox for brand only */
.gh-book-select[size] {
	display: block;
	width: 100%;
	padding: 0.5rem 0;
	background-color: var(--gh-surface);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: var(--gh-text);
	font-size: 1rem;
	font-family: inherit;
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 250px;
	min-height: 180px;
	cursor: pointer;
}

/* Custom scrollbar for select */
.gh-book-select[size]::-webkit-scrollbar {
	width: 8px;
}

.gh-book-select[size]::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
	margin: 4px 0;
}

.gh-book-select[size]::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.6) 0%, rgba(255, 111, 97, 0.5) 100%);
	border-radius: 4px;
}

.gh-book-select[size]::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.8) 0%, rgba(255, 111, 97, 0.7) 100%);
}

/* Firefox scrollbar */
.gh-book-select[size] {
	scrollbar-width: thin;
	scrollbar-color: rgba(198, 40, 40, 0.6) rgba(255, 255, 255, 0.05);
}

/* Option styling */
.gh-book-select[size] option {
	padding: 0.65rem 1rem;
	white-space: nowrap;
	cursor: pointer;
}

.gh-book-select[size] option:hover {
	background-color: rgba(198, 40, 40, 0.15);
}

.gh-book-select[size] option:checked,
.gh-book-select[size] option:focus {
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.3) 0%, rgba(255, 111, 97, 0.2) 100%);
	color: var(--gh-accent-2);
	font-weight: 600;
	outline: none;
}

/* Default option styling */
.gh-book-select[size] option[value=""] {
	font-weight: 600;
	color: var(--gh-muted);
	font-style: italic;
}

/* Hide options that don't match search */
.gh-book-select[size] option.hidden {
	display: none;
}

.gh-book-select:focus,
.gh-book-input:focus {
	outline: none;
	border-color: var(--gh-accent-2);
	box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
}

.gh-book-select:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.gh-book-select-wrapper {
	margin-top: 1rem;
}

.gh-book-or-divider {
	text-align: center;
	margin: 1.5rem 0;
	position: relative;
	color: var(--gh-muted);
	font-size: 0.9rem;
}

.gh-book-or-divider::before,
.gh-book-or-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 40%;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.gh-book-or-divider::before {
	left: 0;
}

.gh-book-or-divider::after {
	right: 0;
}

.gh-book-or-divider span {
	position: relative;
	background: var(--gh-bg);
	padding: 0 1rem;
}

/* Inline CC Range Grid (within model selection step) */
.gh-book-step-cc-range-inline {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-book-step-subtitle {
	font-size: 1rem;
	font-weight: 600;
	color: var(--gh-muted);
	margin-bottom: 1rem;
}

#gh-book-cc-range-grid-inline {
	margin-top: 0;
}

/* CC Badge */
.gh-book-cc-badge-wrapper {
	display: flex;
	justify-content: center;
	margin: 1.5rem 0;
}

.gh-book-cc-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-radius: 50px;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
}

.gh-book-cc-value {
	font-size: 1.2rem;
}

.gh-book-cc-unit {
	font-size: 0.9rem;
	opacity: 0.9;
}

/* Service Cards */
.gh-book-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.gh-book-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.gh-book-service-card {
	display: block;
	background-color: var(--gh-surface);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;
}

.gh-book-service-card:hover {
	border-color: var(--gh-accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(198, 40, 40, 0.2);
}

.gh-book-service-card.selected {
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-color: var(--gh-accent);
	box-shadow: 0 8px 30px rgba(198, 40, 40, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-3px) scale(1.02);
	color: #fff;
}

.gh-book-service-card.selected .gh-book-service-card-title {
	color: #fff;
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.gh-book-service-card.selected .gh-book-service-card-desc {
	color: rgba(255, 255, 255, 0.9);
}

.gh-book-service-card.selected .gh-book-service-feature {
	color: rgba(255, 255, 255, 0.95);
}

.gh-book-service-card.selected .gh-book-service-feature svg {
	color: rgba(255, 255, 255, 0.95);
}

.gh-book-service-card.selected .gh-book-service-price-value {
	color: #fff;
	font-weight: 700;
}

.gh-book-service-card.selected .gh-book-service-price-label {
	color: rgba(255, 255, 255, 0.8);
}

.gh-book-service-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gh-book-service-card-content {
	padding: 1.5rem;
	position: relative;
	min-height: 280px;
	padding-bottom: 4.5rem; /* Space for button */
}

.gh-book-service-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gh-text);
	margin-bottom: 0.5rem;
}

.gh-book-service-card-desc {
	font-size: 0.9rem;
	color: var(--gh-muted);
	margin-bottom: 1rem;
	line-height: 1.5;
}

.gh-book-service-features {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.gh-book-service-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--gh-muted);
	line-height: 1.4;
}

.gh-book-feature-icon {
	flex-shrink: 0;
	margin-top: 0.1rem;
	color: var(--gh-accent-2);
}

.gh-book-service-feature-warning .gh-book-feature-icon {
	color: var(--gh-warning);
}

.gh-book-service-feature-time .gh-book-feature-icon {
	color: var(--gh-accent-2);
}

.gh-book-service-card-price-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-book-service-card-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* General service card buttons container - needs column layout for checklist button */
.gh-book-service-card[data-service="general"] .gh-book-service-card-buttons {
	flex-direction: column;
	gap: 0.5rem;
	align-items: flex-end;
}

.gh-book-service-card-price {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	flex: 1;
}

.gh-book-service-price-label {
	font-size: 0.85rem;
	color: var(--gh-muted);
}

.gh-book-service-price-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gh-accent-2);
}

.gh-book-service-time {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.85rem;
	color: var(--gh-muted);
}

.gh-book-time-icon {
	color: var(--gh-accent-2);
}

.gh-book-service-card.selected .gh-book-service-time {
	color: rgba(255, 255, 255, 0.8);
	border-top-color: rgba(255, 255, 255, 0.2);
}

/* Old Price Strikethrough */
.gh-book-service-price-old {
	font-size: 0.875rem;
	color: var(--gh-muted);
	text-decoration: line-through;
	margin-right: 0.5rem;
	opacity: 0.7;
}

.gh-book-service-card.selected .gh-book-service-price-old {
	color: rgba(255, 255, 255, 0.6);
}

/* Book Now Button in Service Card */
.gh-book-service-card-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.75rem 1.2rem;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.3) 0%, rgba(255, 111, 97, 0.2) 100%);
	border: 2px solid rgba(198, 40, 40, 0.4);
	flex-shrink: 0;
	border-radius: 12px;
	color: var(--gh-muted);
	font-size: 0.95rem;
	font-weight: 700;
	cursor: not-allowed;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	white-space: nowrap;
	z-index: 10;
	overflow: hidden;
	position: relative;
}

/* Background pattern for realistic texture */
.gh-book-button-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.1;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(198, 40, 40, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 111, 97, 0.2) 0%, transparent 50%),
		linear-gradient(135deg, transparent 0%, rgba(198, 40, 40, 0.1) 100%);
	background-size: 200% 200%, 150% 150%, 100% 100%;
	background-position: 0% 0%, 100% 100%, 0% 0%;
	animation: patternMove 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes patternMove {
	0%, 100% {
		background-position: 0% 0%, 100% 100%, 0% 0%;
	}
	50% {
		background-position: 100% 100%, 0% 0%, 50% 50%;
	}
}

/* Enabled/Ready state */
.gh-book-service-card-button.ready {
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-color: var(--gh-accent-2);
	color: var(--gh-text);
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4), 
	            0 0 0 0 rgba(198, 40, 40, 0.2);
	animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
	0%, 100% {
		box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4), 
		            0 0 0 0 rgba(198, 40, 40, 0.2);
	}
	50% {
		box-shadow: 0 4px 20px rgba(198, 40, 40, 0.6), 
		            0 0 0 8px rgba(198, 40, 40, 0.1);
	}
}

.gh-book-button-graphic {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.gh-book-button-icon {
	flex-shrink: 0;
	transition: all 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
	position: relative;
	z-index: 2;
	opacity: 0.6;
}

.gh-book-service-card-button.ready .gh-book-button-icon {
	opacity: 1;
	filter: drop-shadow(0 2px 6px rgba(255, 111, 97, 0.5));
}

.gh-book-button-glow {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 111, 97, 0.4) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.gh-book-service-card-button.ready .gh-book-button-glow {
	opacity: 1;
	animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

.gh-book-button-text {
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.gh-book-button-arrow {
	flex-shrink: 0;
	transition: transform 0.3s ease;
	opacity: 0.6;
	position: relative;
	z-index: 2;
}

.gh-book-service-card-button.ready .gh-book-button-arrow {
	opacity: 1;
}

/* Ripple effect for click animation */
.gh-book-button-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: scale(0);
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

.gh-book-service-card-button.ready:active .gh-book-button-ripple {
	animation: ripple 0.6s ease-out;
}

@keyframes ripple {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	100% {
		transform: scale(4);
		opacity: 0;
	}
}

/* Decorative elements for each service type */
.gh-book-button-sparkle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--gh-text);
	border-radius: 50%;
	opacity: 0;
	animation: sparkle 2s ease-in-out infinite;
	box-shadow: 
		8px 0 0 var(--gh-text),
		-8px 0 0 var(--gh-text),
		0 8px 0 var(--gh-text),
		0 -8px 0 var(--gh-text);
}

.gh-book-button-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid var(--gh-accent-2);
	opacity: 0;
	animation: pulse 2s ease-in-out infinite;
}

.gh-book-button-ring {
	position: absolute;
	width: 120%;
	height: 120%;
	border: 2px solid var(--gh-accent-2);
	border-radius: 50%;
	opacity: 0;
	animation: ringPulse 2s ease-in-out infinite;
}

.gh-book-button-shine {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
	opacity: 0;
	animation: shine 3s ease-in-out infinite;
	transform: translateX(-100%);
}

@keyframes sparkle {
	0%, 100% { opacity: 0; transform: scale(0); }
	50% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
	0%, 100% { 
		opacity: 0;
		transform: scale(0.8);
	}
	50% { 
		opacity: 0.6;
		transform: scale(1.2);
	}
}

@keyframes ringPulse {
	0%, 100% { 
		opacity: 0;
		transform: scale(0.9);
	}
	50% { 
		opacity: 0.4;
		transform: scale(1.1);
	}
}

@keyframes shine {
	0% {
		opacity: 0;
		transform: translateX(-100%) translateY(-100%);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(100%) translateY(100%);
	}
}

.gh-book-service-card-button.ready:hover:not(.disabled) .gh-book-button-icon {
	transform: rotate(15deg) scale(1.15);
	filter: drop-shadow(0 4px 12px rgba(255, 111, 97, 0.8));
}

.gh-book-service-card-button.ready:hover:not(.disabled) .gh-book-button-arrow {
	transform: translateX(5px);
}

.gh-book-service-card-button.ready:hover:not(.disabled) {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 10px 30px rgba(198, 40, 40, 0.7),
	            0 0 25px rgba(255, 111, 97, 0.4),
	            0 0 40px rgba(198, 40, 40, 0.2);
	background: linear-gradient(135deg, var(--gh-accent-2) 0%, var(--gh-accent) 100%);
}

.gh-book-service-card-button.ready:hover:not(.disabled) .gh-book-button-glow {
	opacity: 1;
	transform: scale(1.3);
}

.gh-book-service-card-button.ready:hover:not(.disabled) .gh-book-button-sparkle {
	opacity: 1;
	animation-delay: 0s;
}

.gh-book-service-card-button.ready:hover:not(.disabled) .gh-book-button-pulse {
	opacity: 0.5;
}

.gh-book-service-card-button.ready:hover:not(.disabled) .gh-book-button-ring {
	opacity: 0.4;
}

.gh-book-service-card-button.ready:hover:not(.disabled) .gh-book-button-shine {
	opacity: 1;
	animation-duration: 1.5s;
}

.gh-book-service-card-button.ready:active:not(.disabled) {
	transform: translateY(-2px) scale(0.98);
	box-shadow: 0 4px 15px rgba(198, 40, 40, 0.5),
	            0 0 10px rgba(255, 111, 97, 0.3);
}

.gh-book-service-card-button.ready:active:not(.disabled) .gh-book-button-icon {
	transform: rotate(0deg) scale(1.05);
}

.gh-book-service-card-button.ready:active:not(.disabled) .gh-book-button-text {
	transform: scale(0.95);
}

.gh-book-service-card-button.ready:active:not(.disabled) .gh-book-button-arrow {
	transform: translateX(2px);
}

.gh-book-service-card-button.disabled,
.gh-book-service-card-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: var(--gh-surface);
	box-shadow: none;
}

.gh-book-service-card-button.disabled .gh-book-button-icon,
.gh-book-service-card-button:disabled .gh-book-button-icon {
	transform: none;
	filter: none;
}

.gh-book-service-card-button.disabled .gh-book-button-arrow,
.gh-book-service-card-button:disabled .gh-book-button-arrow {
	transform: none;
	opacity: 0.5;
}

.gh-book-service-card-button.disabled .gh-book-button-sparkle,
.gh-book-service-card-button.disabled .gh-book-button-pulse,
.gh-book-service-card-button.disabled .gh-book-button-ring,
.gh-book-service-card-button.disabled .gh-book-button-shine,
.gh-book-service-card-button.disabled .gh-book-button-glow,
.gh-book-service-card-button:disabled .gh-book-button-sparkle,
.gh-book-service-card-button:disabled .gh-book-button-pulse,
.gh-book-service-card-button:disabled .gh-book-button-ring,
.gh-book-service-card-button:disabled .gh-book-button-shine,
.gh-book-service-card-button:disabled .gh-book-button-glow {
	display: none;
	animation: none;
	opacity: 0;
}

/* Click animation */
.gh-book-service-card-button.ready.clicked {
	animation: buttonClick 0.3s ease-out;
}

@keyframes buttonClick {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}

.gh-book-service-card-button.ready.clicked .gh-book-button-icon {
	animation: iconBounce 0.3s ease-out;
}

@keyframes iconBounce {
	0%, 100% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.2) rotate(10deg);
	}
}

/* Placeholder Graphic */
.gh-book-placeholder-graphic {
	width: 200px;
	height: 200px;
	margin: 0 auto 1rem;
	opacity: 0.4;
}

/* CC Range Selected Info Display */
.gh-book-cc-range-selected-info {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.1) 0%, rgba(255, 111, 97, 0.1) 100%);
	border: 2px solid var(--gh-accent);
	border-radius: 12px;
	animation: slideInDown 0.3s ease-out;
}

.gh-book-cc-range-selected-badge {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.gh-book-cc-range-check-icon {
	color: var(--gh-success);
	flex-shrink: 0;
}

.gh-book-cc-range-selected-label {
	color: var(--gh-muted);
	font-size: 0.9rem;
	font-weight: 500;
}

.gh-book-cc-range-selected-value {
	color: var(--gh-text);
	font-size: 1.1rem;
	font-weight: 700;
	background: var(--gh-accent);
	padding: 0.4rem 0.8rem;
	border-radius: 8px;
	display: inline-block;
	box-shadow: 0 2px 8px rgba(198, 40, 40, 0.3);
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* CC Range Grid */
.gh-book-cc-range-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.75rem;
	margin-top: 1rem;
}

.gh-book-cc-range-item {
	padding: 1.25rem 0.75rem;
	background: linear-gradient(135deg, var(--gh-surface) 0%, rgba(20, 22, 24, 0.9) 100%);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	color: var(--gh-text);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 110px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gh-book-cc-range-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.05) 0%, rgba(255, 111, 97, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.gh-book-cc-range-item::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(198, 40, 40, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.gh-book-cc-range-item:hover {
	border-color: var(--gh-accent);
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.2) 0%, rgba(255, 111, 97, 0.15) 100%);
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(198, 40, 40, 0.4);
}

.gh-book-cc-range-item:hover::before,
.gh-book-cc-range-item:hover::after {
	opacity: 1;
}


.gh-book-cc-range-item.active::before,
.gh-book-cc-range-item.active::after {
	opacity: 0;
}

.gh-book-cc-range-item.active {
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border-color: var(--gh-accent);
	color: #fff;
	box-shadow: 0 8px 30px rgba(198, 40, 40, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-3px) scale(1.02);
}

/* CC Range Icon */
.gh-book-cc-range-icon {
	width: 40px;
	height: 40px;
	margin-bottom: 0.5rem;
	opacity: 0.7;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	position: relative;
}

.gh-book-cc-range-icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	stroke-width: 2.5;
}

.gh-book-cc-range-item:hover .gh-book-cc-range-icon {
	opacity: 1;
	transform: scale(1.2) rotate(5deg);
}

.gh-book-cc-range-item.active .gh-book-cc-range-icon {
	opacity: 1;
	filter: brightness(0) invert(1);
	transform: scale(1.15);
}

.gh-book-cc-range-label {
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.03em;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
}

/* Responsive adjustments for CC range grid */
@media (max-width: 767px) {
	.gh-book-cc-range-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}
	
	.gh-book-cc-range-item {
		min-height: 110px; /* Better touch target */
		padding: 1rem 0.75rem;
		gap: 0.5rem;
	}
	
	.gh-book-cc-range-icon {
		width: 36px;
		height: 36px;
		margin-bottom: 0.4rem;
	}
	
	.gh-book-cc-range-label {
		font-size: 0.75rem;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.gh-book-cc-range-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.75rem;
	}
	
	.gh-book-cc-range-item {
		min-height: 105px;
		padding: 1.15rem 0.7rem;
	}
	
	.gh-book-cc-range-icon {
		width: 38px;
		height: 38px;
	}
	
	.gh-book-cc-range-label {
		font-size: 0.8rem;
	}
}

@media (min-width: 992px) {
	.gh-book-cc-range-grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 0.75rem;
	}
	
	.gh-book-cc-range-item {
		min-height: 110px;
		padding: 1.25rem 0.75rem;
	}
	
	.gh-book-cc-range-icon {
		width: 40px;
		height: 40px;
	}
	
	.gh-book-cc-range-label {
		font-size: 0.85rem;
	}
}

/* Brand Grid */
.gh-book-brand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.gh-book-brand-item {
	padding: 1rem;
	background-color: var(--gh-surface);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--gh-text);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gh-book-brand-item:hover {
	border-color: var(--gh-accent);
	background-color: rgba(198, 40, 40, 0.1);
	transform: translateY(-2px);
}

.gh-book-brand-item.active {
	background-color: var(--gh-accent);
	border-color: var(--gh-accent);
	color: #fff;
}

/* Price Summary */
.gh-book-price-summary {
	background-color: var(--gh-surface);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	margin-top: 1rem;
}

.gh-book-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-book-price-row:last-child {
	border-bottom: none;
}

.gh-book-price-label {
	font-size: 1rem;
	color: var(--gh-muted);
}

.gh-book-price-value {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gh-text);
}

.gh-book-price-final {
	border-top: 2px solid rgba(255, 255, 255, 0.2);
	margin-top: 0.5rem;
	padding-top: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
}

.gh-book-price-final-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
}

.gh-book-price-final .gh-book-price-label {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gh-text);
}

.gh-book-price-final-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gh-accent-2);
}

/* Start Booking Button (styled like active CC range button) */
.gh-book-start-booking-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem 1.75rem;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.2) 0%, rgba(255, 111, 97, 0.15) 100%);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	color: var(--gh-muted);
	font-size: 1rem;
	font-weight: 700;
	cursor: not-allowed;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
	min-width: 180px;
}

/* Background pattern */
.gh-book-start-button-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.1;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(198, 40, 40, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 111, 97, 0.2) 0%, transparent 50%);
	background-size: 200% 200%, 150% 150%;
	background-position: 0% 0%, 100% 100%;
	animation: patternMove 8s ease-in-out infinite;
	pointer-events: none;
}

.gh-book-start-button-graphic {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	z-index: 2;
}

.gh-book-start-button-icon {
	flex-shrink: 0;
	transition: all 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
	opacity: 0.6;
	position: relative;
	z-index: 2;
}

.gh-book-start-button-glow {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 111, 97, 0.4) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.gh-book-start-button-text {
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.gh-book-start-button-shine {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 70%
	);
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 1;
}

/* Enabled/Active state (darker shade like active CC range button) */
.gh-book-start-booking-button:not(:disabled) {
	background: linear-gradient(135deg, #8B1A1A 0%, #B8442E 100%);
	border-color: #8B1A1A;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 8px 30px rgba(139, 26, 26, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-2px) scale(1.02);
	animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
	0%, 100% {
		box-shadow: 0 8px 30px rgba(139, 26, 26, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	}
	50% {
		box-shadow: 0 10px 35px rgba(139, 26, 26, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	}
}

.gh-book-start-booking-button:not(:disabled) .gh-book-start-button-icon {
	opacity: 1;
	filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
	transform: scale(1.1);
}

.gh-book-start-booking-button:not(:disabled) .gh-book-start-button-glow {
	opacity: 1;
	animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

.gh-book-start-booking-button:not(:disabled):hover {
	background: linear-gradient(135deg, #7A1515 0%, #A03A28 100%);
	border-color: #7A1515;
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 12px 40px rgba(139, 26, 26, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gh-book-start-booking-button:not(:disabled):hover .gh-book-start-button-icon {
	transform: translateX(3px) scale(1.15);
	filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4));
}

.gh-book-start-booking-button:not(:disabled):hover .gh-book-start-button-shine {
	opacity: 1;
	animation: shineSweep 1.5s ease-in-out infinite;
}

@keyframes shineSweep {
	0% {
		left: -50%;
		opacity: 0;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		left: 150%;
		opacity: 0;
	}
}

.gh-book-start-booking-button:not(:disabled):active {
	transform: translateY(-1px) scale(1);
	box-shadow: 0 6px 25px rgba(139, 26, 26, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.gh-book-start-booking-button:not(:disabled):active .gh-book-start-button-icon {
	transform: translateX(2px) scale(1.05);
}

/* Disabled state */
.gh-book-start-booking-button:disabled .gh-book-start-button-glow,
.gh-book-start-booking-button:disabled .gh-book-start-button-shine {
	display: none;
	opacity: 0;
}

/* Responsive styles for Start Booking button */
@media (max-width: 768px) {
	.gh-book-price-final {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}
	
	.gh-book-price-final-wrapper {
		width: 100%;
	}
	
	.gh-book-start-booking-button {
		width: 100%;
		min-width: auto;
		padding: 0.9rem 1.5rem;
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.gh-book-start-booking-button {
		padding: 1rem 1.5rem;
		font-size: 0.9375rem;
		gap: 0.75rem;
		min-height: 52px; /* Better touch target */
		width: 100%;
	}
	
	.gh-book-start-button-icon {
		width: 20px;
		height: 20px;
	}
}

.gh-book-price-old {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gh-book-price-old-label {
	font-size: 0.9rem;
	color: var(--gh-muted);
}

.gh-book-price-old-value {
	font-size: 1rem;
	color: var(--gh-muted);
	text-decoration: line-through;
}

/* CTA Button */
.gh-book-cta-button {
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.gh-book-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
}

.gh-book-cta-button:active {
	transform: translateY(0);
}

.gh-book-cta-note {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.85rem;
	color: var(--gh-muted);
}

/* Error Message */
.gh-book-error {
	display: none;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	background-color: rgba(231, 76, 60, 0.1);
	border: 2px solid var(--gh-error);
	border-radius: 8px;
	margin-top: 1.5rem;
	color: var(--gh-error);
}

.gh-book-error.show {
	display: flex;
}

.gh-book-error-icon {
	flex-shrink: 0;
}

.gh-book-error-message {
	flex: 1;
	font-size: 0.9rem;
	font-weight: 500;
}

/* Loading State */
.gh-book-loading-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3rem 2rem;
	color: var(--gh-muted);
}

.gh-book-loading-state.hidden {
	display: none;
}

.gh-book-loading-graphic {
	width: 120px;
	height: 120px;
	position: relative;
	margin-bottom: 1.5rem;
}

.gh-book-loading-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gh-text);
	margin-bottom: 0.5rem;
}

.gh-book-loading-desc {
	color: var(--gh-muted);
	font-size: 0.95rem;
	margin: 0;
}

/* Loading Spinner */
.gh-book-loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--gh-accent);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

.gh-book-loading-spinner-small {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--gh-accent);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: inline-block;
	margin-right: 0.5rem;
}

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

/* Image Display */
.gh-book-image-wrapper {
	background: linear-gradient(135deg, var(--gh-surface) 0%, rgba(15, 17, 19, 0.95) 100%);
	border: 3px solid rgba(0, 0, 0, 0.5);
	border-radius: 16px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	position: relative;
	overflow: hidden;
	box-shadow: 
		inset 0 0 20px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(0, 0, 0, 0.8),
		0 4px 15px rgba(0, 0, 0, 0.6);
}

.gh-book-image-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at top left, rgba(198, 40, 40, 0.1) 0%, transparent 50%),
		radial-gradient(circle at bottom right, rgba(255, 111, 97, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.gh-book-image-wrapper::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.3) 0%, rgba(255, 111, 97, 0.2) 50%, rgba(198, 40, 40, 0.3) 100%);
	border-radius: 16px;
	z-index: -1;
	opacity: 0.6;
}

.gh-book-model-image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
	border: 2px solid rgba(0, 0, 0, 0.3);
}

.gh-book-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.3;
}

.gh-book-model-info {
	margin-top: 1.5rem;
	text-align: center;
}

.gh-book-model-info h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gh-text);
	margin-bottom: 0.5rem;
}

.gh-book-model-info p {
	font-size: 0.9rem;
	color: var(--gh-muted);
	margin: 0;
}

/* Booking Modal */
.gh-book-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gh-book-modal[aria-hidden="false"] {
	opacity: 1;
	visibility: visible;
}

.gh-book-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(4px);
}

.gh-book-modal-content {
	position: relative;
	background: var(--gh-surface);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform 0.3s ease;
	margin: auto;
}

.gh-book-modal[aria-hidden="false"] .gh-book-modal-content {
	transform: scale(1);
}

.gh-book-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: var(--gh-text);
	cursor: pointer;
	transition: all 0.2s ease;
	z-index: 1;
}

.gh-book-modal-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.gh-book-modal-close svg {
	width: 20px;
	height: 20px;
}

.gh-book-modal-header {
	padding: 2rem 2rem 1rem;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-book-modal-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--gh-text);
	margin: 0 0 0.5rem;
}

.gh-book-modal-subtitle {
	font-size: 0.95rem;
	color: var(--gh-muted);
	margin: 0;
}

.gh-book-modal-body {
	padding: 2rem;
}

.gh-book-modal-options {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.gh-book-modal-option {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem;
	background: var(--gh-bg);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	width: 100%;
}

.gh-book-modal-option:hover {
	border-color: var(--gh-accent);
	background: rgba(198, 40, 40, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(198, 40, 40, 0.2);
}

.gh-book-modal-option-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(198, 40, 40, 0.1);
	border-radius: 12px;
	color: var(--gh-accent);
	transition: all 0.3s ease;
}

.gh-book-modal-option:hover .gh-book-modal-option-icon {
	background: var(--gh-accent);
	color: #fff;
	transform: scale(1.1);
}

.gh-book-modal-option-icon svg {
	width: 32px;
	height: 32px;
}

.gh-book-modal-option-content {
	flex: 1;
}

.gh-book-modal-option-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gh-text);
	margin: 0 0 0.25rem;
}

.gh-book-modal-option-desc {
	font-size: 0.85rem;
	color: var(--gh-muted);
	margin: 0;
	line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
	.gh-book-service {
		padding: 1.25rem 1rem;
		min-height: auto;
	}
	
	.gh-book-service-container {
		max-width: 100%;
	}

	.gh-book-step-title {
		font-size: 1.25rem;
		line-height: 1.3;
		margin-bottom: 1.25rem;
	}
	
	.gh-book-step {
		margin-bottom: 1.75rem;
	}

	.gh-book-vehicle-toggle {
		flex-direction: row; /* Keep horizontal on mobile */
		gap: 0.75rem;
		max-width: 100%;
		margin-top: 0.75rem;
	}
	
	.gh-book-vehicle-option {
		padding: 0.875rem 0.75rem;
		gap: 0.5rem;
		min-height: 90px; /* Better touch target */
		border-radius: 10px;
		flex: 1;
	}
	
	.gh-book-vehicle-icon-wrapper {
		width: 40px;
		height: 40px;
	}
	
	.gh-book-vehicle-icon {
		width: 24px;
		height: 24px;
	}
	
	.gh-book-vehicle-label {
		font-size: 0.85rem;
		font-weight: 600;
	}
	
	.gh-book-vehicle-selection-indicator {
		width: 18px;
		height: 18px;
		top: -2px;
		right: -2px;
		border-width: 1.5px;
	}
	
	.gh-book-vehicle-selection-indicator svg {
		width: 9px;
		height: 9px;
	}
	
	.gh-book-step-title {
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}
	
	.gh-book-service-header {
		padding: 1rem 0.75rem 0.75rem;
		margin-bottom: 1.5rem;
	}
	
	.gh-book-header-graphic {
		margin-bottom: 0.75rem;
	}
	
	.gh-book-header-graphic::before,
	.gh-book-header-graphic::after {
		display: none !important; /* Remove any pseudo-element glows */
	}
	
	.gh-book-header-graphic svg {
		width: 60px;
		height: 60px;
		filter: none !important; /* Remove any filters that might create green glow */
	}
	
	.gh-book-header-graphic svg circle,
	.gh-book-header-graphic svg path {
		filter: none !important; /* Remove filters from SVG elements */
	}
	
	.gh-book-service-main-title {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
		line-height: 1.2;
	}
	
	.gh-book-service-subtitle {
		font-size: 0.9375rem;
		margin-bottom: 1.25rem;
		line-height: 1.5;
		padding: 0 0.5rem;
	}
	
	.gh-book-header-features {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.5rem;
		margin-top: 1rem;
		justify-content: center;
		overflow-x: visible;
		padding: 0.25rem 0;
		/* Ensure all badges fit on same screen */
		width: 100%;
		max-width: 100%;
	}
	
	.gh-book-feature-badge {
		flex: 1 1 auto;
		min-width: 0;
		max-width: calc(33.333% - 0.5rem);
		padding: 0.4rem 0.5rem;
		font-size: 0.7rem;
		gap: 0.3rem;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
		/* Center content */
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.gh-book-feature-badge svg {
		width: 14px;
		height: 14px;
	}

	.gh-book-service-card-content {
		padding: 1.25rem;
		min-height: auto;
		padding-bottom: 5rem; /* More space for button */
	}
	
	.gh-book-service-card-price-wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}
	
	.gh-book-service-card-button {
		width: 100%;
		padding: 0.875rem 1.25rem;
		font-size: 0.9375rem;
		min-height: 48px; /* Better touch target */
	}

	.gh-book-button-icon {
		width: 16px;
		height: 16px;
	}

	.gh-book-modal-content {
		max-width: 100%;
		margin: 0;
		border-radius: 12px 12px 0 0;
		max-height: 95vh;
	}

	.gh-book-modal-header {
		padding: 1.5rem 1.5rem 1rem;
	}

	.gh-book-modal-body {
		padding: 1.5rem;
	}

	.gh-book-modal-option {
		padding: 1.25rem;
	}

	/* Hide all image-related elements on mobile */
	.gh-book-service-right {
		display: none !important;
	}
	
	.gh-book-image-wrapper {
		display: none !important;
	}
	
	.gh-book-image-container {
		display: none !important;
	}
	
	.gh-book-model-image {
		display: none !important;
	}
	
	.gh-book-image-placeholder {
		display: none !important;
	}
	
	.gh-book-model-info {
		display: none !important;
	}
}

/* Desktop Modal Styles */
@media (min-width: 768px) {
	.gh-book-modal {
		padding: 2rem;
		align-items: center;
		justify-content: center;
	}
	
	.gh-book-modal-content {
		max-width: 600px;
		width: auto;
		min-width: 500px;
		margin: 0 auto;
		transform: scale(0.95);
		border-radius: 20px;
	}
	
	.gh-book-modal[aria-hidden="false"] .gh-book-modal-content {
		transform: scale(1);
	}
	
	.gh-book-modal-header {
		padding: 2.5rem 3rem 1.5rem;
	}
	
	.gh-book-modal-title {
		font-size: 2rem;
	}
	
	.gh-book-modal-subtitle {
		font-size: 1rem;
	}
	
	.gh-book-modal-body {
		padding: 2.5rem 3rem;
	}
	
	.gh-book-modal-option {
		padding: 2rem;
		transition: all 0.3s ease;
		border-radius: 12px;
	}
	
	.gh-book-modal-option:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	}
	
	.gh-book-modal-option-icon {
		width: 48px;
		height: 48px;
	}
	
	.gh-book-modal-option-icon svg {
		width: 28px;
		height: 28px;
	}
	
	.gh-book-modal-option-title {
		font-size: 1.25rem;
	}
	
	.gh-book-modal-option-desc {
		font-size: 0.95rem;
	}
	
	/* Guest form modal desktop styles */
	#gh-book-guest-form-modal .gh-book-modal-content {
		max-width: 700px;
		min-width: 600px;
	}
	
	#gh-book-guest-form-modal .gh-book-modal-body {
		padding: 2.5rem 3rem;
	}
	
	.gh-book-form-row {
		margin-bottom: 1.75rem;
	}
	
	.gh-book-form-label {
		font-size: 1rem;
		margin-bottom: 0.625rem;
	}
	
	.gh-book-form-input {
		padding: 1rem 1.25rem;
		font-size: 1.05rem;
	}
	
	.gh-book-form-submit {
		padding: 1.25rem 2.5rem;
		font-size: 1.15rem;
	}
}

@media (min-width: 768px) {
	.gh-book-service-card-content {
		padding: 2rem;
	}
	
	.gh-book-image-wrapper {
		padding: 2.5rem;
	}
}

@media (min-width: 992px) {
	.gh-book-service-container {
		max-width: 1400px;
	}
	
	.gh-book-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.gh-book-service-right {
		position: sticky;
		top: 2rem;
	}
}

/* What Services Can You Book Section */
.gh-book-services-info {
	background-color: var(--gh-surface);
	padding: 4rem 1rem;
	margin-top: 4rem;
	border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.gh-book-services-info-container {
	max-width: 1200px;
	margin: 0 auto;
}

.gh-book-services-info-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--gh-text);
	text-align: center;
	margin-bottom: 1rem;
}

.gh-book-services-info-subtitle {
	font-size: 1.1rem;
	color: var(--gh-muted);
	text-align: center;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.gh-book-services-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.gh-book-services-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.gh-book-services-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.gh-book-service-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background-color: var(--gh-bg);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.gh-book-service-item:hover {
	border-color: var(--gh-accent);
	background: rgba(198, 40, 40, 0.05);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(198, 40, 40, 0.2);
}

.gh-book-service-item-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.2) 0%, rgba(255, 111, 97, 0.15) 100%);
	border-radius: 12px;
	color: var(--gh-accent);
	transition: all 0.3s ease;
}

.gh-book-service-item:hover .gh-book-service-item-icon {
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	color: #fff;
	transform: scale(1.1);
}

.gh-book-service-item-icon svg {
	width: 24px;
	height: 24px;
	stroke-width: 2.5;
}

.gh-book-service-item-content {
	flex: 1;
}

.gh-book-service-item-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--gh-text);
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.gh-book-service-item-desc {
	font-size: 0.9rem;
	color: var(--gh-muted);
	margin: 0;
	line-height: 1.5;
}

/* Bike Brands Section Spacing */
.gh-book-service + .gh-brands-section {
	margin-top: 0;
	padding-top: 4rem;
	background-color: var(--gh-bg);
}

/* Guest Booking Form Styles */
.gh-book-guest-form {
	padding: 0;
}

.gh-book-form-row {
	margin-bottom: 1.5rem;
}

.gh-book-form-group {
	width: 100%;
}

.gh-book-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--gh-text);
}

.gh-book-form-label .required {
	color: var(--gh-error);
	margin-left: 2px;
}

.gh-book-form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--gh-text);
	font-size: 1rem;
	transition: all 0.2s ease;
	box-sizing: border-box;
	font-family: inherit;
}

.gh-book-form-input:focus {
	outline: none;
	border-color: var(--gh-accent);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.2);
}

.gh-book-form-input::placeholder {
	color: var(--gh-muted);
	opacity: 0.6;
}

.gh-book-form-input textarea {
	resize: vertical;
	min-height: 80px;
}

.gh-book-form-error {
	display: none;
	padding: 0.875rem 1rem;
	background: rgba(231, 76, 60, 0.1);
	border: 2px solid var(--gh-error);
	border-radius: 8px;
	color: var(--gh-error);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.gh-book-form-submit {
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-2) 100%);
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gh-book-form-submit:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(198, 40, 40, 0.4);
}

.gh-book-form-submit:active:not(:disabled) {
	transform: translateY(0);
}

.gh-book-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Checklist Popup Styles (Similar to Pricing Section) */
.gh-book-checklist-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(4px);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gh-book-checklist-popup-overlay:not([hidden]) {
	display: flex;
	opacity: 1;
}

.gh-book-checklist-popup-content {
	background: var(--gh-surface);
	border-radius: 16px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	position: relative;
	transform: scale(0.95);
	transition: transform 0.3s ease;
}

.gh-book-checklist-popup-overlay:not([hidden]) .gh-book-checklist-popup-content {
	transform: scale(1);
}

.gh-book-checklist-popup-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--gh-text);
	transition: all 0.2s ease;
	z-index: 10;
}

.gh-book-checklist-popup-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.gh-book-checklist-popup-close:focus {
	outline: 2px solid var(--gh-accent-2);
	outline-offset: 2px;
}

.gh-book-checklist-popup-scroll {
	padding: 2rem;
	overflow-y: auto;
	flex: 1;
}

.gh-book-checklist-popup-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--gh-text);
	margin: 0 0 1.5rem 0;
	letter-spacing: -0.5px;
	padding-right: 3rem;
}

/* Checklist List */
.gh-book-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.gh-book-checklist-item {
	font-size: 0.9375rem;
	color: var(--gh-text);
	line-height: 1.6;
	padding-left: 1.75rem;
	position: relative;
}

.gh-book-checklist-item::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--gh-accent-2);
	font-weight: 700;
	font-size: 1.125rem;
	top: 0;
}

/* Checklist Button in Service Cards */
.gh-book-service-checklist-btn {
	background: transparent !important;
	border: 2px solid rgba(255, 111, 97, 0.3) !important;
	color: var(--gh-accent-2) !important;
	padding: 0.5rem 0.875rem !important;
	border-radius: 8px !important;
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	white-space: nowrap !important;
	text-align: center !important;
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: auto !important;
	min-width: 100px !important;
	margin-top: 0.5rem !important;
}

.gh-book-service-checklist-btn:hover {
	background: rgba(255, 111, 97, 0.1);
	border-color: var(--gh-accent-2);
	transform: translateY(-1px);
}

.gh-book-service-checklist-btn:focus {
	outline: 2px solid var(--gh-accent-2);
	outline-offset: 2px;
}

.gh-book-service-checklist-btn:active {
	transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
	.gh-book-checklist-popup-content {
		max-width: 100%;
		border-radius: 16px 16px 0 0;
		max-height: 85vh;
	}

	.gh-book-checklist-popup-scroll {
		padding: 1.5rem;
	}

	.gh-book-checklist-popup-title {
		font-size: 1.25rem;
		padding-right: 2.5rem;
	}

	.gh-book-checklist-item {
		font-size: 0.875rem;
		padding-left: 1.5rem;
	}
}

