/* ==========================================================================
   Admission Consultant Pro — Inquiry Popup
   ========================================================================== */

.acp-popup-overlay{
	position: fixed;
	inset: 0;
	background: rgba(10,20,35,0.62);
	backdrop-filter: blur(2px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}
.acp-popup-overlay.is-open{
	opacity: 1;
	visibility: visible;
}

.acp-popup-card{
	--acp-primary: #0F2A4A;
	--acp-accent: #C9962C;
	position: relative;
	background: #FAFAF8;
	border-radius: 16px;
	max-width: 440px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 34px 28px 26px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.35);
	transform: translateY(14px) scale(.98);
	transition: transform .25s ease;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.acp-popup-overlay.is-open .acp-popup-card{
	transform: translateY(0) scale(1);
}

.acp-popup-close{
	position: absolute;
	top: 12px;
	right: 14px;
	width: 32px;
	height: 32px;
	border: none;
	background: rgba(15,42,74,0.06);
	color: #1C2530;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background .15s ease;
}
.acp-popup-close:hover{ background: rgba(15,42,74,0.12); }

.acp-popup-card h3{
	font-family: 'Fraunces', Georgia, serif;
	font-size: 21px;
	color: var(--acp-primary);
	margin: 4px 0 6px;
	padding-right: 20px;
}
.acp-popup-subtitle{
	font-size: 13.5px;
	color: #5B6572;
	margin: 0 0 20px;
	line-height: 1.5;
}

.acp-popup-field{
	display: block;
	margin-bottom: 14px;
}
.acp-popup-field span{
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: #1C2530;
	margin-bottom: 5px;
}
.acp-popup-field input,
.acp-popup-field select{
	box-sizing: border-box !important;
	width: 100% !important;
	padding: 11px 12px !important;
	border: 1.5px solid #E4E1D8 !important;
	border-radius: 9px !important;
	font-size: 14px;
	font-family: inherit;
	background: #fff !important;
	color: #1C2530;
	height: auto !important;
}
.acp-popup-field input:focus,
.acp-popup-field select:focus{
	outline: none;
	border-color: var(--acp-primary);
	box-shadow: 0 0 0 3px rgba(15,42,74,0.12);
}

.acp-hp-field{
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	opacity: 0;
}

.acp-popup-error{
	color: #B3261E;
	font-size: 13px;
	margin: 0 0 10px;
	min-height: 0;
}

.acp-popup-submit{
	width: 100% !important;
	box-sizing: border-box !important;
	padding: 13px 16px !important;
	font-size: 14.5px;
	margin-top: 4px;
}
.acp-popup-submit[disabled]{ opacity: .65; cursor: default; }

.acp-popup-privacy{
	font-size: 11.5px;
	color: #8a919c;
	text-align: center;
	margin: 12px 0 0;
	line-height: 1.5;
}

.acp-popup-success{
	text-align: center;
	padding: 20px 4px 6px;
}
.acp-popup-success-icon{
	width: 52px;
	height: 52px;
	color: #2E7D5B;
	margin-bottom: 12px;
}
.acp-popup-success h3{
	color: #2E7D5B;
	margin-bottom: 8px;
}
.acp-popup-success p{
	font-size: 14px;
	color: #5B6572;
}

@media (max-width: 480px){
	.acp-popup-card{ padding: 28px 20px 20px; border-radius: 14px; }
}

.acp-floating-whatsapp{
	position: fixed;
	bottom: 22px;
	right: 22px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
	z-index: 99998;
	transition: transform .15s ease;
}
.acp-floating-whatsapp:hover{ transform: scale(1.08); color: #fff; }

@media (max-width: 480px){
	.acp-floating-whatsapp{ width: 50px; height: 50px; bottom: 16px; right: 16px; }
}
