/* Popup Styles */
.aligo-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.aligo-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.aligo-modal-content {
	position: relative;
	background: #fff;
	width: 600px;
	max-width: 95%;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	z-index: 1;
	animation: aligoFadeIn 0.3s ease;
	padding: 30px;
}

.aligo-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #666;
	padding: 0;
	z-index: 2;
}

.aligo-modal-close:hover {
	color: #000;
}

.aligo-enquiry-button {
	margin-top: 10px;
}

@media (max-width: 768px) {
	.aligo-modal-content {
		width: 90%;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.aligo-modal-content {
		width: 95%;
	}
}

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