/* 언제든지 연락주세요! 섹션 - 완전히 새로운 디자인 */
.contact-new-section {
	position: relative;
	padding: 6em 2em;
	min-height: 100vh;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
}

.contact-new-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./img/0-5.jpg') center/cover;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	filter: blur(2px);
	opacity: 0.6;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.contact-new-container {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.contact-new-header {
	text-align: center;
	margin-bottom: 4em;
	position: relative;
}

.contact-new-header.visible {
	opacity: 1;
	transform: translateY(0);
}

.contact-new-header::before {
	content: '';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 6px;
	background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd23f);
	border-radius: 3px;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.contact-new-title {
	font-size: 4.2em;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.8em 0;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
	line-height: 1.1;
	letter-spacing: -1px;
	position: relative;
	animation: titleGlow 3s ease-in-out infinite;
}

.contact-new-title span {
	display: inline-block;
	opacity: 0;
	transform: translateY(30px);
	animation: titleSlideIn 0.8s ease-out forwards;
}

.contact-new-title span:nth-child(1) { animation-delay: 0.1s; }
.contact-new-title span:nth-child(2) { animation-delay: 0.2s; }
.contact-new-title span:nth-child(3) { animation-delay: 0.3s; }
.contact-new-title span:nth-child(4) { animation-delay: 0.4s; }
.contact-new-title span:nth-child(5) { animation-delay: 0.5s; }
.contact-new-title span:nth-child(6) { animation-delay: 0.6s; }
.contact-new-title span:nth-child(7) { animation-delay: 0.7s; }
.contact-new-title span:nth-child(8) { animation-delay: 0.8s; }
.contact-new-title span:nth-child(9) { animation-delay: 0.9s; }
.contact-new-title span:nth-child(10) { animation-delay: 1.0s; }
.contact-new-title span:nth-child(11) { animation-delay: 1.1s; }
.contact-new-title span:nth-child(12) { animation-delay: 1.2s; }
.contact-new-title span:nth-child(13) { animation-delay: 1.3s; }
.contact-new-title span:nth-child(14) { animation-delay: 1.4s; }
.contact-new-title span:nth-child(15) { animation-delay: 1.5s; }
.contact-new-title span:nth-child(16) { animation-delay: 1.6s; }
.contact-new-title span:nth-child(17) { animation-delay: 1.7s; }
.contact-new-title span:nth-child(18) { animation-delay: 1.8s; }
.contact-new-title span:nth-child(19) { animation-delay: 1.9s; }
.contact-new-title span:nth-child(20) { animation-delay: 2.0s; }

.contact-new-title::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b35, #f7931e);
	border-radius: 2px;
}

.contact-new-subtitle {
	font-size: 1.6em;
	color: #e8f4fd;
	margin: 2em 0 0 0;
	font-weight: 400;
	opacity: 0.9;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.contact-new-content {
	display: flex;
	flex-direction: column;
	gap: 3em;
}

.contact-new-row {
	display: flex;
	gap: 2.5em;
	align-items: stretch;
}

.contact-new-row:first-child {
	margin-bottom: 1em;
}

.contact-new-info-box {
	flex: 1;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	padding: 3em 2.5em;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-new-info-box.visible {
	opacity: 1;
	transform: translateY(0);
}

.contact-new-info-box:nth-child(1) { transition-delay: 0s; }
.contact-new-info-box:nth-child(2) { transition-delay: 0s; }
.contact-new-info-box:nth-child(3) { transition-delay: 0s; }

.contact-new-info-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.3s ease;
}

.contact-new-info-box:hover::before {
	left: 100%;
}

.contact-new-info-box:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.contact-new-info-box:nth-child(1) {
	border-left: 4px solid #ff6b35;
}

.contact-new-info-box:nth-child(2) {
	border-left: 4px solid #4ecdc4;
}

.contact-new-info-box:nth-child(3) {
	border-left: 4px solid #45b7d1;
}

.info-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2em auto;
	font-size: 2.8em;
	position: relative;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.4s ease;
}

.contact-new-info-box:nth-child(1) .info-icon {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.1));
	border-color: rgba(255, 107, 53, 0.5);
}

.contact-new-info-box:nth-child(2) .info-icon {
	background: linear-gradient(135deg, rgba(78, 205, 196, 0.3), rgba(78, 205, 196, 0.1));
	border-color: rgba(78, 205, 196, 0.5);
}

.contact-new-info-box:nth-child(3) .info-icon {
	background: linear-gradient(135deg, rgba(69, 183, 209, 0.3), rgba(69, 183, 209, 0.1));
	border-color: rgba(69, 183, 209, 0.5);
}

.contact-new-info-box:hover .info-icon {
	transform: rotate(10deg) scale(1.1);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-title {
	font-size: 1.6em;
	color: #ffffff;
	margin: 0 0 1.5em 0;
	font-weight: 600;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	position: relative;
}

.info-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 1px;
	transition: width 0.3s ease;
}

.contact-new-info-box:hover .info-title::after {
	width: 60px;
}

.info-content {
	font-size: 1.1em;
	color: #f0f0f0;
	margin: 0;
	line-height: 1.7;
	text-align: center;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	position: relative;
	padding: 0 0.5em;
}

.contact-new-organization {
	background: linear-gradient(135deg, rgba(41, 128, 185, 0.95), rgba(142, 68, 173, 0.95));
	backdrop-filter: blur(15px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	padding: 3.5em 4em;
	text-align: center;
	margin-top: 2em;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-new-organization.visible {
	opacity: 1;
	transform: translateY(0);
}

.contact-new-organization::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c, #f39c12);
}

.org-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5em;
	margin-bottom: 2.5em;
}

.org-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3498db, #9b59b6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8em;
	color: white;
	box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
	animation: orgIconFloat 4s ease-in-out infinite;
}

.org-title {
	font-size: 1.8em;
	color: #ffffff;
	font-weight: 600;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.org-details {
	color: #ecf0f1;
}

.org-name {
	font-size: 1.4em;
	font-weight: 600;
	margin-bottom: 0.8em;
	color: #ffff00 !important;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.org-sub {
	font-size: 1.1em;
	font-weight: 500;
	color: #ffff00 !important;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* 더 구체적인 선택자로 추가 */
.contact-new-organization .org-name,
.contact-new-organization .org-sub {
	color: #ffff00 !important;
}

/* 인라인 스타일을 덮어쓰기 위한 추가 선택자 */
.contact-new-organization .org-details .org-name,
.contact-new-organization .org-details .org-sub {
	color: #ffff00 !important;
}

/* 애니메이션 키프레임 */
@keyframes titleGlow {
	0%, 100% {
		filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
	}
	50% {
		filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
	}
}

@keyframes titleSlideIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes orgIconFloat {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-10px) rotate(5deg);
	}
	75% {
		transform: translateY(-5px) rotate(-3deg);
	}
}

/* 모바일 반응형 */
@media screen and (max-width: 1024px) {
	.contact-new-section {
		padding: 5em 1.5em;
	}
	
	.contact-new-title {
		font-size: 3.8em;
	}
	
	.contact-new-subtitle {
		font-size: 1.5em;
	}
	
	.contact-new-row {
		gap: 2em;
	}
	
	.contact-new-info-box {
		padding: 2.5em 1.8em;
	}
	
	.info-icon {
		width: 70px;
		height: 70px;
		font-size: 2.5em;
	}
}

@media screen and (max-width: 768px) {
	.contact-new-section {
		padding: 4em 1em;
		min-height: auto;
	}
	
	.contact-new-title {
		font-size: 3.2em;
	}
	
	.contact-new-subtitle {
		font-size: 1.4em;
	}
	
	.contact-new-content {
		gap: 2.5em;
	}
	
	.contact-new-row {
		flex-direction: column;
		gap: 2em;
	}
	
	.contact-new-info-box {
		padding: 2.5em 2em;
	}
	
	.info-icon {
		width: 65px;
		height: 65px;
		font-size: 2.3em;
	}
	
	.info-title {
		font-size: 1.5em;
	}
	
	.info-content {
		font-size: 1em;
	}
	
	.contact-new-organization {
		padding: 3em 2.5em;
	}
}

@media screen and (max-width: 480px) {
	.contact-new-section {
		padding: 3em 0.8em;
	}
	
	.contact-new-title {
		font-size: 2.8em;
	}
	
	.contact-new-subtitle {
		font-size: 1.3em;
	}
	
	.contact-new-content {
		gap: 2em;
	}
	
	.contact-new-row {
		gap: 1.8em;
	}
	
	.contact-new-info-box {
		padding: 2em 1.5em;
	}
	
	.info-icon {
		width: 60px;
		height: 60px;
		font-size: 2em;
	}
	
	.info-title {
		font-size: 1.4em;
	}
	
	.info-content {
		font-size: 0.95em;
	}
	
	.contact-new-organization {
		padding: 2.5em 2em;
	}
	
	.org-title {
		font-size: 1.6em;
	}
	
	.org-name {
		font-size: 1.3em;
	}
	
	.org-sub {
		font-size: 1em;
	}
}
.application-method-section {
	position: relative;
	padding: 6em 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	overflow: hidden;
}

.application-method-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.application-method-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2em;
	position: relative;
	z-index: 2;
}

.application-method-header {
	text-align: center;
	margin-bottom: 4em;
}

.application-method-title {
	font-size: 3.5em;
	font-weight: 700;
	color: #333;
	margin: 0 0 0.5em 0;
	background: linear-gradient(135deg, #ff4200, #ff6b3d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.application-method-subtitle {
	font-size: 1.3em;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.application-method-steps {
	display: flex;
	flex-direction: column;
	gap: 3em;
	max-width: 800px;
	margin: 0 auto;
}

.method-step {
	display: flex;
	align-items: flex-start;
	gap: 2em;
	padding: 2.5em;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-step:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff4200, #ff6b3d);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8em;
	font-weight: 700;
	flex-shrink: 0;
}

.step-content {
	flex: 1;
}

.step-title {
	font-size: 1.5em;
	font-weight: 600;
	color: #333;
	margin: 0 0 0.8em 0;
}

.step-description {
	font-size: 1.1em;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

