.booking-module-container {
	font-family: 'Poppins', sans-serif;
	background-color: #FEFBF4;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.05);
	overflow: hidden;
	max-width: 900px;
	margin: 0 auto;
	min-height: 550px;
	display: flex;
	flex-direction: column;
}

/* Header */
.bm-header {
	padding: 30px;
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.bm-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #2D2D2D;
}

.bm-steps {
	display: flex;
	gap: 20px;
}

.bm-step {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: #aaa;
}

.bm-step.active {
	color: #2D2D2D;
}

.bm-step-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #eee;
	margin-right: 8px;
	transition: background 0.3s;
}

.bm-step-indicator.active {
	background: #6EC1E4; /* Primary */
}

/* Content Area */
.bm-content {
	padding: 30px;
	flex-grow: 1;
	position: relative;
}

.bm-step-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 25px;
	color: #2D2D2D;
}

.bm-view {
	display: none;
	animation: fadeIn 0.4s ease;
}

.bm-view.active {
	display: block;
}

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

/* Service List (Modules) */
.bm-service-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.bm-service-card {
	background: #fff;
	border: 2px solid transparent;
	padding: 25px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 180px;
	position: relative;
}

.bm-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.bm-service-card.selected {
	border-color: #6EC1E4;
	background: #F0F9FD;
}

.bm-service-icon {
	font-size: 24px;
	color: #6EC1E4;
	margin-bottom: 15px;
}

.bm-service-name {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
	color: #2D2D2D;
}

.bm-service-desc {
	font-size: 14px;
	color: #54595F;
	line-height: 1.5;
	margin-bottom: 15px;
	flex-grow: 1;
}

.bm-service-meta {
	font-size: 13px;
	color: #aaa;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 15px;
}

.bm-btn-select {
	background: transparent;
	border: 1px solid #ddd;
	color: #54595F;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-family: inherit;
	font-weight: 500;
	transition: all 0.3s;
	align-self: flex-start;
}

.bm-service-card:hover .bm-btn-select {
	border-color: #6EC1E4;
	color: #6EC1E4;
}

.bm-service-card.selected .bm-btn-select {
	background: #6EC1E4;
	color: #fff;
	border-color: #6EC1E4;
}

/* Calendar View */
.bm-cols {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.bm-col-left {
	flex: 1;
	min-width: 300px;
}

.bm-col-right {
	flex: 1;
	min-width: 250px;
	border-left: 1px solid rgba(0,0,0,0.05);
	padding-left: 40px;
}

@media (max-width: 768px) {
	.bm-col-right {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid rgba(0,0,0,0.05);
		padding-top: 30px;
	}
}

.bm-calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.bm-current-month {
	font-weight: 600;
	font-size: 18px;
	color: #2D2D2D;
}

.bm-cal-nav {
	background: #fff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	color: #54595F;
	transition: all 0.2s;
}

.bm-cal-nav:hover {
	background: #6EC1E4;
	color: #fff;
}

.bm-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
}

.bm-day-header {
	text-align: center;
	font-size: 12px;
	color: #aaa;
	font-weight: 600;
	margin-bottom: 5px;
}

.bm-day {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	font-size: 14px;
	color: #2D2D2D;
	transition: all 0.2s;
}

.bm-day:hover:not(.empty):not(.disabled) {
	background: #F0F9FD;
	color: #6EC1E4;
}

.bm-day.selected {
	background: #6EC1E4 !important; /* Primary */
	color: #fff !important;
	box-shadow: 0 4px 10px rgba(110, 193, 228, 0.4);
}

.bm-day.disabled {
	opacity: 0.3;
	cursor: not-allowed;
	background: transparent;
}

.bm-day.empty {
	background: transparent;
	cursor: default;
}

.bm-day.today {
	border: 1px solid #6EC1E4;
	font-weight: 700;
}

/* Time Slots */
.bm-section-title {
	margin: 0 0 20px;
	font-size: 18px;
	color: #2D2D2D;
}

.bm-time-slots {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.bm-time-slot {
	background: #fff;
	padding: 12px;
	text-align: center;
	border-radius: 12px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.2s;
	font-weight: 500;
	color: #54595F;
}

.bm-time-slot:hover {
	border-color: #6EC1E4;
	color: #6EC1E4;
}

.bm-time-slot.selected {
	background: #6EC1E4;
	color: #fff;
	border-color: #6EC1E4;
}

.bm-placeholder-text {
	grid-column: span 2;
	text-align: center;
	color: #aaa;
	font-style: italic;
	margin-top: 20px;
}

/* Actions */
.bm-actions {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}

.bm-btn-secondary {
	background: transparent;
	border: none;
	color: #54595F;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 20px;
	font-family: inherit;
}

.bm-btn-secondary:hover {
	color: #2D2D2D;
	text-decoration: underline;
}

.bm-btn-primary {
	background: #6EC1E4;
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(110, 193, 228, 0.3);
}

.bm-btn-primary:hover {
	background: #25C6DA; /* Accent */
	transform: translateY(-2px);
}

/* Form View */
.bm-summary-card {
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	border: 1px solid rgba(0,0,0,0.05);
}

.bm-summary-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: #2D2D2D;
}

.bm-summary-item i {
	color: #6EC1E4;
}

.bm-form {
	max-width: 100%;
}

.bm-form-row {
	display: flex;
	gap: 20px;
}

@media (max-width: 600px) {
	.bm-form-row {
		flex-direction: column;
		gap: 0;
	}
}

.bm-form-group {
	margin-bottom: 20px;
	flex: 1;
}

.bm-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #54595F;
}

.bm-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 12px;
	font-family: inherit;
	font-size: 16px;
	background: #fff;
	transition: all 0.2s;
}

.bm-input:focus {
	outline: none;
	border-color: #6EC1E4;
	box-shadow: 0 0 0 3px rgba(110, 193, 228, 0.1);
}

.bm-input.error {
	border-color: #ff6b6b;
	background: #fff0f0;
}

/* Success View */
.bm-success-content {
	text-align: center;
	padding: 40px;
}

.bm-success-icon {
	width: 80px;
	height: 80px;
	background: #6EC1E4;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	margin: 0 auto 20px;
	animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
	from { transform: scale(0); }
	to { transform: scale(1); }
}
