@charset "utf-8";

#contact-form {}

#contact-form input[type="text"],
#contact-form input[type="date"],
#contact-form textarea {
	width: 100%;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: normal;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background: #fff;
	border: 1px solid #e1e1e1;
	color: #221c24;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	box-sizing: border-box;
}

#contact-form textarea {
	height: auto;
	resize: vertical;
	overflow: hidden;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="date"]:focus,
#contact-form textarea:focus {
	border-color: #c1c1c1;
	background: #fff;
	color: #221c24;
}

#contact-form a {
	color: #221c24;
}

/* 예약 폼 카드 스타일 업그레이드 */
.reservation-form-wrap{
	max-width: 760px;
	margin: 0 auto;
	padding: 48px 34px 36px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 22px 50px rgba(0,0,0,0.10);
	border: 1px solid rgba(0,0,0,0.04);
	position: relative;
}

/* 카드 상단 포인트 라인 */
.reservation-form-wrap::before{
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	margin: 0 auto 30px;
	background: #666666;
	border-radius: 999px;
	opacity: 0.9;
}

/* 라벨 스타일 */
.reserve-label{
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 700;
	color: #222;
	text-align: left;
	letter-spacing: -0.2px;
}

/* 입력창 스타일 */
.reserve-input{
	width: 100%;
	height: 62px;
	padding: 0 20px !important;
	font-size: 16px !important;
	background: #fafafa;
	border: 1px solid #dedede !important;
	border-radius: 14px;
	box-sizing: border-box;
	color: #221c24 !important;
	transition: all 0.25s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* 포커스 효과 */
.reserve-input:focus{
	background: #ffffff;
	border-color: #bdbdbd !important;
	box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
	outline: none;
}

/* 방문 희망일 안내문구 */
.reserve-help{
	margin-top: 10px;
	margin-bottom: 4px;
	font-size: 13px;
	line-height: 1.6;
	color: #777;
	text-align: left;
}

/* 항목 간 간격 */
.reservation-form-wrap .mg-b20{
	margin-bottom: 26px;
}

/* 체크박스 영역 정렬 */
.reservation-form-wrap .text-sm-left{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 6px;
}

.reservation-form-wrap input[type="checkbox"]{
	transform: scale(1.1);
	margin-right: 4px;
}

.reservation-form-wrap label[for="agree"]{
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 500;
	color: #444;
}

.reservation-form-wrap .text-sm-left a{
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid rgba(0,0,0,0.15);
	line-height: 1.2;
}

/* reservation 섹션 아래 여백 확보 */
.xet-contact{
	padding-bottom: 80px !important;
}

/* 모바일 최적화 */
@media screen and (max-width: 767px){
	.reservation-form-wrap{
		max-width: 100%;
		padding: 34px 20px 28px;
		border-radius: 16px;
		box-shadow: 0 14px 30px rgba(0,0,0,0.08);
	}

	.reservation-form-wrap::before{
		width: 44px;
		height: 3px;
		margin-bottom: 24px;
	}

	.reserve-label{
		font-size: 15px;
		margin-bottom: 8px;
	}

	.reserve-input{
		height: 56px;
		padding: 0 16px !important;
		font-size: 15px !important;
		border-radius: 12px;
	}

	.reserve-help{
		font-size: 12px;
		line-height: 1.5;
		margin-top: 8px;
	}

	.reservation-form-wrap .mg-b20{
		margin-bottom: 20px;
	}

	.reservation-form-wrap .text-sm-left{
		flex-wrap: wrap;
		gap: 4px;
		line-height: 1.5;
	}

	.reservation-form-wrap label[for="agree"]{
		font-size: 14px;
	}
}
}