.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
	transition: all 300ms ease;
	visibility: hidden;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	background: #ffffff;
	border-radius: 20px;
	width: 90%;
	max-width: 420px;
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.9);
	transition: transform 300ms ease;
	font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

.overlay:target .popup {
	transform: scale(1);
}

.popup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #06D85F, #4CAF50);
}

.popup-header {
	text-align: center !important;
	margin-bottom: 30px !important;
}

.popup-header h2 {
	color: #2c3e50;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 8px 0;
}

.popup-header p {
	color: #7f8c8d;
	font-size: 14px;
	text-align: center;
	max-width: 250px;
	margin: 0 auto;
}

.close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	color: #bdc3c7;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close:hover {
	color: #e74c3c;
	background: rgba(231, 76, 60, 0.1);
	transform: rotate(90deg);
}

.content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 20px;
	background: #f8f9fa;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
	cursor: pointer;
	text-decoration: none;

}

.contact-item:hover {
	background: #06D85F;
	color: white;
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(6, 216, 95, 0.3);
}

.icon-container {
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.contact-item:hover .icon-container {
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.contact-label {
	font-size: 12px;
	color: #7f8c8d;
	font-weight: 400;
	transition: all 0.3s ease;
}

.contact-item:hover .contact-label {
	color: rgba(255, 255, 255, 0.8);
}

.contact-text {
	color: #2c3e50;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.contact-item:hover .contact-text {
	color: white;
}

@media (max-width: 480px) {
	.popup {
		width: 95%;
		padding: 30px 20px;
		max-width: none;
	}

	.contact-item {
		padding: 12px 15px;
	}

	.contact-text {
		font-size: 14px;
	}

	.icon-container {
		width: 35px;
		height: 35px;
	}
}

/* Keep your existing button styles unchanged */
.button {
	font-size: 1em;
	padding: 10px;
	color: #fff;
	border: 2px solid #06D85F;
	border-radius: 20px/50px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-out;
	background: transparent;
	display: inline-block;
}

.button:hover {
	background: #06D85F;
}
