
/* Reset & Scoped Styles */
.apm-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	z-index: 9999999;
	display: none;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity .3s ease;
	font-family: "Kumbh Sans", sans-serif;
}

.apm-overlay.show {
	display: flex;
	opacity: 1;
}

.apm-modal-box {
	background: #f8faff;
	width: 95%;
	max-width: 1150px;
	/* Slightly wider */
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
	display: flex;
	flex-direction: row;
	position: relative;
	max-height: 95vh;
	overflow-y: auto;
}

.apm-close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	background: #e5e7eb;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 50;
	color: #ef4444;
	font-weight: bold;
	transition: .2s;
	font-size: 16px;
}

.apm-close-btn:hover {
	background: #d1d5db;
	color: #dc2626;
}

/* --- Left Column --- */
.apm-left-col {
	width: 50%;
	padding: 50px 40px;
	display: flex;
	overflow: auto;
	flex-direction: column;
	background: #f0f6ff;
}

.apm-heading-main {
	font-size: 28px;
	/* Increased */
	font-weight: 800;
	text-align: center;
	margin-bottom: 30px;
	color: #111;
	line-height: 1.25;
}

/* Testimonial Card */
.apm-testimonial-card {
	background: #fff;
	border-radius: 16px;
	padding: 35px 25px 25px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}

.apm-testimonial-img {
	width: 80px;
	/* Larger image */
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
	margin-top: -15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.apm-quote {
	font-size: 15px;
	/* Increased */
	line-height: 1.6;
	color: #374151;
	margin-bottom: 18px;
	font-weight: 500;
}

.apm-author {
	font-weight: 800;
	font-size: 17px;
	/* Increased */
	color: #111;
	display: block;
}

.apm-location {
	font-size: 13px;
	/* Increased */
	color: #6b7280;
	display: block;
	margin-bottom: 8px;
}

.apm-stars {
	color: #fbbf24;
	font-size: 18px;
	/* Increased */
	margin-bottom: 6px;
	letter-spacing: 2px;
}

.apm-clutch-verified {
	font-size: 12px;
	color: #555;
	display: block;
	font-weight: 600;
}

/* Features Row */
.apm-features-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
	gap: 20px;
}

.apm-feature-col {
	width: 50%;
}

.apm-f-title {
	font-size: 15px;
	/* Increased */
	font-weight: 800;
	color: #111;
	margin-bottom: 12px;
	display: block;
}

.apm-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.apm-list li {
	font-size: 13px;
	/* Increased */
	color: #374151;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	line-height: 1.4;
	font-weight: 500;
}

.apm-list li.check::before {
	content: "✔";
	color: #ef4444;
	margin-right: 8px;
	font-weight: 900;
	font-size: 14px;
}

.apm-contact-item {
	font-size: 13px;
	/* Increased */
	margin-bottom: 8px;
	color: #374151;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.apm-contact-item svg {
	width: 20px;
	height: 20px;
	fill: #ff5b4a;
}

/* Logo Bar */
.apm-logo-bar {
	background: #1f2937;
	border-radius: 10px;
	padding: 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.apm-clutch-white {
	font-size: 14px;
	/* Increased */
	color: #fff;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* --- Right Column (Form) --- */
.apm-right-col {
	width: 50%;
	padding: 50px;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.apm-r-head {
	font-size: 20px;
	/* Increased */
	font-weight: 700;
	color: #111;
	margin-bottom: 25px;
	line-height: 1.4;
}

.apm-r-head span {
	color: #2563eb;
}

.apm-input-group {
	margin-bottom: 18px;
}

.apm-input-control {
	width: 100%;
	padding: 14px 16px;
	/* Larger padding */
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
	/* Increased */
	color: #1f2937;
	outline: none;
	transition: all .2s;
	background: #fff;
}

.apm-input-control:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.apm-input-control::placeholder {
	color: #9ca3af;
}

.apm-textarea-control {
	min-height: 100px;
	resize: none;
}

.apm-nda-check {
	display: flex;
	align-items: center;
	font-size: 13px;
	/* Increased */
	color: #4b5563;
	margin-bottom: 25px;
	gap: 8px;
	font-weight: 500;
}

.apm-nda-check input {
	width: 16px;
	height: 16px;
	accent-color: #10b981;
}

.apm-nda-icon {
	color: #10b981;
	font-weight: bold;
	font-size: 14px;
}

.apm-captcha-box {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	padding: 12px 15px;
	width: 220px;
	/* Wider */
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}

.apm-captcha-text {
	font-size: 14px;
	/* Increased */
	display: flex;
	align-items: center;
	gap: 10px;
	color: #374151;
}

.apm-captcha-text input {
	width: 18px;
	height: 18px;
}

.apm-submit-button {
	background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
	color: white;
	border: none;
	padding: 16px 30px;
	border-radius: 8px;
	font-weight: 800;
	font-size: 16px;
	/* Increased */
	text-transform: uppercase;
	cursor: pointer;
	width: auto;
	min-width: 240px;
	box-shadow: 0 4px 6px -1px rgba(245, 158, 11, .3);
	transition: transform .1s;
}

.apm-submit-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 8px -1px rgba(245, 158, 11, .4);
}

.apm-footer-text {
	margin-top: 20px;
	font-size: 13px;
	/* Increased */
	color: #6b7280;
	text-align: left;
}

.apm-footer-text span {
	color: #2563eb;
	font-weight: 700;
}

/* Slider Fades */
.apm-slide {
	display: none;
	animation: fadeEffect .5s;
}

.apm-slide.active {
	display: block;
}

@keyframes fadeEffect {
	from {
		opacity: .5;
	}
	
	to {
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 900px) {
	.apm-modal-box {
		flex-direction: column;
		width: 95%;
		height: auto;
		max-height: 90vh;
	}
	
	.apm-left-col {
		display: none;
	}
	
	.apm-right-col {
		width: 100%;
		padding: 30px 20px;
	}
	
	.apm-heading-main {
		font-size: 20px;
	}
}
