.contact-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0);
	opacity: 0;
	transition: opacity 0.3s ease, background-color 0.3s ease;
}

.contact-modal.show {
	display: block;
	opacity: 1;
	background-color: rgba(0,0,0,0.5);
}

.contact-modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 90%;
	max-width: 400px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transform: translateY(-50px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-modal.show .contact-modal-content {
	transform: translateY(0);
	opacity: 1;
}

.contact-modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.2s ease;
}

.contact-modal-close:hover {
	color: #000;
}

