@charset "UTF-8";

.tr-booking-container {
	font-family: inherit;
	background: #fdfaf6;
	padding: 2rem;
	border-radius: 1.5rem;
	box-shadow: 0 25px 60px rgba(18, 20, 28, 0.1);
	color: #2b2b2b;
}

.tr-booking-container h1,
.tr-booking-container h2,
.tr-booking-container h3,
.tr-booking-container h4,
.tr-booking-container p,
.tr-booking-container label {
	color: #1f1b16;
}

.tr-booking-container small {
	color: #5c4a2b;
}

.tr-booking-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.tr-header-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #c1a062;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.tr-booking-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
}

.tr-card {
	background: #fff;
	border-radius: 1.2rem;
	padding: 1.5rem;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.tr-card--services {
	border: 1px solid rgba(193, 160, 98, 0.2);
}

.tr-step-head {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1rem;
}

.tr-step-index {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #c1a062;
	color: #c1a062;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.tr-service-list {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-bottom: 1.5rem;
	transition: max-height 0.4s ease, opacity 0.4s ease;
	max-height: 1200px;
}

.tr-service-list--collapsed {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	margin-bottom: 0;
}

.tr-service-item {
	border: 1px solid #e0d5c3;
	border-radius: 1rem;
	padding: 1rem;
	cursor: pointer;
	transition: border-color 0.3s ease, transform 0.2s ease, background 0.3s ease;
	background: #fff;
}

.tr-service-item h4 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	color: #1f1b16;
}

.tr-service-item strong {
	color: #c1a062;
	font-size: 0.95rem;
}

.tr-service-item:hover,
.tr-service-item--active {
	border-color: #c1a062;
	background: #fffaf0;
	transform: translateY(-2px);
}

.tr-schedule-panel {
	border-top: 1px solid rgba(193, 160, 98, 0.25);
	padding-top: 1.2rem;
}

.tr-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.tr-field label {
	font-weight: 600;
	color: #1f1b16;
}

.tr-field input,
.tr-field select {
	border: 1px solid #d5c6af;
	border-radius: 0.8rem;
	padding: 0.85rem 1rem;
	font-size: 1rem;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tr-field input:focus,
.tr-field select:focus {
	border-color: #c1a062;
	box-shadow: 0 0 0 3px rgba(193, 160, 98, 0.2);
	outline: none;
}

.tr-btn {
	width: 100%;
	border: none;
	border-radius: 999px;
	background: #c1a062;
	color: #fff;
	padding: 0.95rem;
	font-size: 1.05rem;
	cursor: pointer;
	font-weight: 600;
	box-shadow: 0 12px 18px rgba(193, 160, 98, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tr-btn:hover {
	transform: translateY(-1px);
	background: #a77c35;
	box-shadow: 0 18px 25px rgba(193, 160, 98, 0.45);
}

.tr-alert {
	margin-top: 1rem;
	padding: 0.9rem;
	border-radius: 0.8rem;
	font-weight: 600;
}

.tr-alert--error {
	background: #fff0f0;
	color: #912020;
	border: 1px solid #f2b9b9;
}

.tr-alert--success {
	background: #f3fff3;
	color: #1b5724;
	border: 1px solid #b7e4c7;
}

.tr-policy {
	display: flex;
	gap: 0.7rem;
	background: #fff8ef;
	padding: 0.8rem 1rem;
	border-radius: 0.9rem;
	border: 1px solid rgba(193, 160, 98, 0.35);
	margin-bottom: 1rem;
}

.tr-icon-bullet {
	font-size: 1.3rem;
}

#tr-recaptcha-container {
	background: #fffdfa;
	padding: 0.9rem 1rem;
	border-radius: 0.8rem;
	border: 1px dashed rgba(193, 160, 98, 0.6);
}

#tr-recaptcha-container .tr-recaptcha-hint {
	font-size: 0.9rem;
	color: #5c4a2b;
}

@media (max-width: 640px) {
	.tr-booking-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

