/* Inquiry Popup */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}
.popup-overlay.show {
	opacity: 1;
	visibility: visible;
}
.inquiry-popup {
	background: white;
	border-radius: 15px;
	padding: 0;
	max-width: 480px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	position: relative;
	transform: scale(0.7) translateY(50px);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.popup-overlay.show .inquiry-popup {
	transform: scale(1) translateY(0);
}
.popup-header {
	background: linear-gradient(45deg, #1e3c72, #bd2d2e);
	color: white;
	padding: 20px;
	border-radius: 15px 15px 0 0;
	text-align: center;
	position: relative;
}
.popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.popup-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}
.popup-header h2 {
	margin: 0 0 8px 0;
	font-size: 22px;
	font-weight: 700;
	color: #ffff;
}
.popup-header p {
	margin: 0;
	opacity: 0.9;
	font-size: 14px;
	color: #fff;
}
.popup-body {
	padding: 25px;
}
.popup-form-group{
	display: flex; 
	gap: 12px;
	margin-bottom: 18px;
}
.form-group {
	margin-bottom: 18px;
	position: relative;
	flex: 1; 
	margin-bottom: 0;
}
.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: 600;
	font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s ease;
	background: #f8f9fa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #1e3c72;
	background: white;
	box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}
.form-group textarea {
	resize: vertical;
	min-height: 80px;
	margin-bottom: 20px;
}
.submit-btn {
	width: 100%;
	background: linear-gradient(45deg, #1e3c72, #bd2d2e);
	color: white;
	border: none;
	padding: 14px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}
.submit-btn:hover::before {
	left: 100%;
}
.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}
.popup-features {
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e1e5e9;
}
@media (max-width: 768px) {
	.popup-body {
		padding: 30px 20px;
	}
	.popup-header {
		padding: 25px 20px;
	}
	.popup-header h2 {
		font-size: 24px;
	}
	.popup-features {
		flex-direction: column;
		gap: 20px;
	}
	.popup-body form > div[style*="display: flex"] {
		flex-direction: column;
		gap: 0;
	}
	.popup-body form > div[style*="display: flex"] .form-group {
		margin-bottom: 18px !important;
	}
}