.toast-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9998;
}
.toast-overlay.visible {
	display: block;
}
.contact-toast {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	max-width: min(90vw, 640px);
	width: max-content;
	min-width: min(90vw, 320px);
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	color: #333;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	padding: 1.5em 1.5em 1em 1.5em;
	transform: translate(-50%, -48%);
	opacity: 0;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}
.contact-toast.visible {
	transform: translate(-50%, -50%);
	opacity: 1;
}
.contact-toast h2 {
	margin: 0 0 1em 0;
	font-size: 1.2em;
	font-weight: bold;
}
.contact-toast img {
	display: block;
	max-width: 50%;
	height: auto;
	border-radius: 30%;
	margin: 0 auto 0.75em auto;
}
.contact-toast .toast-body {
	line-height: 1.6;
	text-align: center;
}
.contact-toast .toast-body a {
	color: #287f79;
}
.contact-toast .toast-close-btn {
	display: block;
	margin: 1em auto 0 auto;
	background: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #666;
	cursor: pointer;
	font-size: 0.9em;
	padding: 0.3em 1.2em;
}
.contact-toast .toast-close-btn:hover {
	border-color: #999;
	color: #333;
}
.contact-fab {
	position: fixed;
	bottom: 1.5em;
	right: 1.5em;
	border-radius: 2em;
	background: linear-gradient(45deg, #297f7a, #45bbb8, #409e9b);
	color: #fff;
	border: none;
	font-size: 0.9em;
	cursor: pointer;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
	z-index: 9997;
	padding: 0.8em 1.4em;
	transition: background 0.2s;
}
.contact-fab:hover {
	background: linear-gradient(45deg, #1f6460, #35a8a5, #308e8b);
}
