.reservation-section {
	background-color: #000000;
	color: #FFFFFF;
	padding: 5rem 1rem;
	font-family: 'Roboto', sans-serif;
}
.reservation-section .container {
	max-width: 700px;
	margin: 0 auto;
}
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}
.section-header .section-title {
	font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem;
}
.section-header .section-subtitle {
	font-size: 1.1rem; color: #b0b0b0;
}
.reservation-form-wrapper {
	background-color: #111;
	padding: 2.5rem;
	border-radius: 8px;
	border: 1px solid #333;
}
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 700;
}
.form-group input, .form-group textarea, .form-group select {
	width: 100%;
	padding: 0.8rem 1rem;
	background-color: #1a1a1a;
	border: 1px solid #444;
	border-radius: 5px;
	color: #FFFFFF;
	font-size: 1rem;
	font-family: inherit;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.radio-group {
	display: flex;
	gap: 1.5rem;
}
.radio-label {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.radio-label input[type="radio"] {
	margin-right: 0.5rem;
	width: auto;
}
.tos-group {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}
.tos-group input[type="checkbox"] {
	width: auto;
	margin-right: 0.75rem;
}
.tos-group label {
	margin-bottom: 0;
	cursor: pointer;
}
.reservation-form-wrapper .btn {
	width: 100%; padding: 1rem; background-color: #FFFFFF;
	border: 2px solid #FFFFFF; color: #000000;
	text-transform: uppercase; font-weight: 700;
	cursor: pointer; transition: all 0.3s ease;
}
.reservation-form-wrapper .btn:hover {
	background-color: #333; color: #FFFFFF; border-color: #333;
}

.swal2-html-container .text-left { text-align: left; }
.swal2-html-container .mb-4 { margin-bottom: 1rem; }
.swal2-html-container .mt-4 { margin-top: 1rem; }
.swal2-html-container .list-disc { list-style-type: disc; }
.swal2-html-container .list-inside { list-style-position: inside; }
.swal2-html-container .text-sm { font-size: 0.875rem; }
.swal2-html-container .text-gray-400 { color: #9ca3af; }

.radio-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	width: 100%;
}
.radio-label {
	flex: 1;
	padding: 0.8rem 1rem;
	border: 2px solid #444;
	border-radius: 5px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
	position: relative;
}
.radio-label input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.radio-label:hover {
	border-color: #FFFFFF;
}

.radio-label:has(input[type="radio"]:checked) {
	background-color: #FFFFFF;
	color: #000000;
	border-color: #FFFFFF;
	font-weight: 700;
}