@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Lexend:wght@100..900&display=swap');

.contact-section {
	width: 80%;
	height: auto;
	margin: 40px auto;
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	border-radius: 12px;
	background: rgba(8, 16, 26, 0.7);
	border: 2px solid #00ffff;
	box-shadow:
		0 0 12px rgba(0, 255, 255, 0.6),
		0 0 24px rgba(255, 0, 255, 0.35),
		inset 0 0 20px rgba(0, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.contact-map {
	width: 100%;
	height: auto;
	flex: 50%;
	min-height: 320px;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border: 2px solid rgba(0, 255, 255, 0.6);
	box-shadow:
		0 0 10px rgba(0, 255, 255, 0.6),
		0 0 20px rgba(255, 0, 255, 0.3);
	filter: saturate(1.15) contrast(1.05);
}

.contact-form {
	width: 100%;
	height: auto;
	flex: 50%;
	padding: 30px;
	text-align: center;
	color: #d9faff;
	text-shadow: 0 0 6px rgba(0, 255, 255, 0.35);
}

.contact-form h1 {
	margin-bottom: 8px;
	font-family: "Arvo", serif;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ff00ff;
	text-shadow:
		0 0 6px rgba(255, 0, 255, 0.7),
		0 0 14px rgba(0, 255, 255, 0.4);
}

.contact-form p {
	margin-bottom: 16px;
	font-size: 16px;
	color: #9be7ff;
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.contact-form-txt {
	width: 100%;
	height: 44px;
	color: #e0f7ff;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(0, 255, 255, 0.6);
	border-radius: 10px;
	outline: none;
	margin-bottom: 18px;
	padding: 12px 14px;
	box-shadow: inset 0 0 8px rgba(0, 255, 255, 0.1);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.contact-form-txt::placeholder {
	color: rgba(155, 233, 255, 0.6);
}

.contact-form-textarea {
	width: 100%;
	height: 140px;
	color: #e0f7ff;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(0, 255, 255, 0.6);
	border-radius: 10px;
	outline: none;
	margin-bottom: 18px;
	padding: 12px 14px;
	resize: none;
	box-shadow: inset 0 0 8px rgba(0, 255, 255, 0.1);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.contact-form-textarea::placeholder {
	color: rgba(155, 233, 255, 0.6);
}

.contact-form-btn {
	width: 100%;
	border: 2px solid rgba(255, 0, 255, 0.7);
	outline: none;
	border-radius: 10px;
	background: linear-gradient(90deg, #ff00ff 0%, #00ffff 100%);
	color: #0a0f19;
	text-transform: uppercase;
	padding: 12px 0;
	cursor: pointer;
	font-size: 18px;
	letter-spacing: 1px;
	box-shadow:
		0 0 10px rgba(255, 0, 255, 0.6),
		0 0 20px rgba(0, 255, 255, 0.35);
	transition: transform 0.08s ease, box-shadow 0.2s ease, filter 0.2s ease;
	font-family: "Lexend", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.contact-form-btn:hover {
	filter: brightness(1.1);
	box-shadow:
		0 0 12px rgba(255, 0, 255, 0.8),
		0 0 26px rgba(0, 255, 255, 0.45);
}

/* Focus states for neon glow effect */
.contact-form-txt:focus, .contact-form-textarea:focus {
	border-color: rgba(255, 0, 255, 0.8);
	box-shadow:
		0 0 10px rgba(0, 255, 255, 0.5),
		0 0 18px rgba(255, 0, 255, 0.35),
		inset 0 0 8px rgba(0, 255, 255, 0.15);
	transform: translateY(-1px);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
	.contact-section {
		width: 90%;
		padding: 16px;
	}
}

@media screen and (max-width: 768px) {
	.contact-map {
		min-height: 260px;
	}
	.contact-form {
		padding: 24px 16px;
	}
}

/* New 80s-styled contact section enhancements */
.contact-header {
	text-align: center;
	width: 100%;
	margin-bottom: 20px;
}

.contact-header h1 {
	font-family: "Arvo", serif;
	color: #ff00ff;
	text-shadow: 0 0 10px rgba(255, 0, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.4);
	letter-spacing: 2px;
	margin: 0 0 6px 0;
}

.contact-header p {
	color: #9be7ff;
	font-weight: 500;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 20px;
	width: 100%;
}

.contact-cards {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.contact-card {
	background: rgba(0, 0, 0, 0.35);
	border: 1.5px solid rgba(0, 255, 255, 0.5);
	border-radius: 10px;
	padding: 12px;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.25), inset 0 0 10px rgba(255, 0, 255, 0.08);
}

.contact-card-title {
	font-family: "Arvo", serif;
	color: #ff00ff;
	margin-bottom: 6px;
	text-shadow: 0 0 6px rgba(255, 0, 255, 0.6);
	letter-spacing: 1px;
}

.contact-card-body {
	color: #d9faff;
	font-weight: 500;
}

.contact-link {
	color: #00ffff;
	text-decoration: none;
	border-bottom: 1px dashed rgba(0, 255, 255, 0.6);
}

.contact-link:hover {
	color: #a0ffff;
	filter: brightness(1.15);
}

.hours-list {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #bff3ff;
}

.hours-list li {
	margin: 2px 0;
}

.contact-socials {
	display: flex;
	gap: 10px;
	margin-top: 14px;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.45);
	border: 1.5px solid rgba(255, 0, 255, 0.6);
	color: #ffccff;
	box-shadow: 0 0 10px rgba(255, 0, 255, 0.5), 0 0 16px rgba(0, 255, 255, 0.25);
	transition: transform 0.08s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.15);
	box-shadow: 0 0 12px rgba(255, 0, 255, 0.8), 0 0 24px rgba(0, 255, 255, 0.4);
}

/* Responsive for grid/cards */
@media screen and (max-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.contact-cards {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 640px) {
	.contact-cards {
		grid-template-columns: 1fr;
	}
}