/* Custom Popup Styles */
.custom-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

.popup-content {
	background: white;
	border-radius: 15px;
	padding: 40px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.popup-icon {
	font-size: 3rem;
	color: #3498db;
	margin-bottom: 20px;
}

.popup-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
}

.popup-phone {
	font-size: 1.8rem;
	font-weight: 700;
	color: #3498db;
	margin-bottom: 30px;
	letter-spacing: 1px;
}

.popup-close {
	background: linear-gradient(135deg, #3498db, #2980b9);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.popup-close:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}
