.container_div {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* 헤더 스타일 */
.header_div {
	background: linear-gradient(135deg, #FF7F00 0%, #FF9A00 100%);
	color: white;
	padding: 60px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	margin-bottom: 50px;
	box-shadow: 0 10px 30px rgba(255, 127, 0, 0.3);
}

.header_div::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.header_div::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

.header_div h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
	animation: fadeInDown 0.8s ease-out;
}

.header_div p {
	font-size: 1.2rem;
	opacity: 0.9;
	position: relative;
	z-index: 1;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

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

/* 센터 선택 섹션 */
.selection-section {
	background: white;
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	animation: fadeIn 0.8s ease-out 0.4s both;
}

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

.selection-title {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

.selection-container {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.select-wrapper {
	position: relative;
	min-width: 200px;
}

.select-wrapper label {
	display: block;
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 8px;
	font-weight: 500;
}

.select-wrapper select {
	width: 100%;
	height: auto;
	padding: 12px 40px 12px 15px;
	font-size: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	background: white;
	cursor: pointer;
	appearance: none;
	transition: all 0.3s ease;
}

.select-wrapper select:hover {
	border-color: #FF7F00;
}

.select-wrapper select:focus {
	outline: none;
	border-color: #FF7F00;
	box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.1);
}

.select-wrapper::after {
	content: '▼';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #FF7F00;
	font-size: 0.8rem;
	margin-top: 15px;
}

.search-button {
	padding: 12px 30px;
	background: #FF7F00;
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 25px;
	position: relative;
	overflow: hidden;
}

.search-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.search-button:active::before {
	width: 300px;
	height: 300px;
}

.search-button:hover {
	background: #e66e00;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
}

/* 지도 섹션 */
.map-section {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}

.map-section.active {
	opacity: 1;
	transform: translateY(0);
}

.center-name {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 10px;
	text-align: center;
}

.center-subtitle {
	font-size: 1rem;
	color: #666;
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}

.map-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.map-wrapper {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
	align-items: start;
}

.map-area {
	width: 100%;
	height: 400px;
	background: #f0f0f0;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-area {
	padding: 20px;
}

.info-item {
	margin-bottom: 30px;
	animation: slideInRight 0.5s ease-out both;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.info-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
	color: #FF7F00;
	font-weight: bold;
	margin-bottom: 10px;
}

.info-label span {
	font-size: 1.3rem;
}

.info-content {
	color: #666;
	padding-left: 35px;
	line-height: 1.8;
}

.transport-info {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 10px;
	margin-top: 20px;
	border-left: 4px solid #FF7F00;
}

.transport-info h4 {
	color: #333;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.transport-item {
	padding: 8px 0;
	color: #666;
}

.transport-item strong {
	color: #FF7F00;
	margin-right: 8px;
}

.route-card {
	background: #e3f2fd;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 10px;
	transition: transform 0.2s ease;
}

.route-card:hover {
	transform: translateX(5px);
}

.location-highlight {
	background: #fff3cd;
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 15px;
	border: 1px solid #ffeaa7;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.shuttle-info {
	background: #d4edda;
	padding: 15px 20px;
	border-radius: 10px;
	margin-top: 10px;
	border: 1px solid #c3e6cb;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.parking-info {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	margin-top: 15px;
	border-left: 4px solid #FF7F00;
}

/* 빠른 연락 버튼 */
.quick-contact {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1000;
}

.contact-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #FF7F00;
	color: white;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.contact-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn.call {
	background: #00C851;
}

.contact-btn.kakao {
	background: #FEE500;
	color: #3C1E1E;
}

/* 반응형 */
@media (max-width: 768px) {
	.header h1 {
		font-size: 2rem;
	}

	.selection-section {
		padding: 20px;
	}

	.selection-container {
		flex-direction: column;
		width: 100%;
	}

	.select-wrapper {
		width: 100%;
	}

	.map-section {
		padding: 20px;
	}

	.map-container {
		grid-template-columns: 1fr;
	}

	.map-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.map-area {
		height: 300px;
	}

	.info-content {
		padding-left: 25px;
	}

	.quick-contact {
		bottom: 20px;
		right: 20px;
	}

	.contact-btn {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}
}

/* 로딩 스피너 */
.loading {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.loading::after {
	content: '';
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #FF7F00;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}