/**
 * Healthcare Professional Popup Styles
 * Stella Theme - EuroEyes
 */

/* Overlay */
.hcp-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

/* Popup Container */
.hcp-popup {
	background-image: url(../images/bg-popup.jpg);
	background-size: cover;
	background-position: right;
	max-width: 850px;
	width: 100%;
	position: relative;
	overflow: hidden;
	animation: hcpFadeIn 0.3s ease-out;
	padding-right: 20%;
	min-height: 500px;
	display: flex;
}

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

.hcp-popup__inner {
	display: flex;
	align-items: stretch;
}

/* Content Area */
.hcp-popup__content {
	padding: 40px 45px;
	flex: 1;
}

/* Logo */
.hcp-popup__logo {
	margin-bottom: 45px;
}

.hcp-popup__logo-img {
	height: 40px;
	width: auto;
}

/* Title */
.hcp-popup__body h2 {
	font-family: "Arimo", sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.3;
	color: #0b3d4f;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

/* Body Text */
.hcp-popup__body p {
	font-family: "Arimo", sans-serif;
	font-size: 15px;
	line-height: 1.4;
	color: #0b3d4f;
	margin-bottom: 12px;
	text-align: justify;
}

.hcp-popup__body p:last-child {
	margin-bottom: 0;
}

.hcp-popup__body {
	margin-bottom: 30px;
}

/* Buttons */
.hcp-popup__buttons {
	margin-top: 80px;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hcp-btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	font-family: "Arimo", sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid #0b3d4f;
	text-align: center;
	letter-spacing: 0.5px;
	line-height: 1.4;
	min-width: 160px;
}

.hcp-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(11, 61, 79, 0.3);
}

/* Primary Button - "Cán bộ y tế" */
.hcp-btn--primary {
	background-color: #0b3d4f;
	color: #ffffff;
}

.hcp-btn--primary:hover {
	background-color: #0a4e66;
	border-color: #0a4e66;
}

/* Secondary Button - "Không phải cán bộ y tế" */
.hcp-btn--secondary {
	background-color: #ffffff;
	color: #0b3d4f;
}

.hcp-btn--secondary:hover {
	background-color: #f0f0f0;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 768px) {
	.hcp-popup {
		padding: 0;
		background-position: 80%;
	}

	.hcp-popup__content {
		padding: 20px;
	}
	.hcp-popup__body {
		max-width: 65%;
	}

	.hcp-popup__body h2 {
		font-size: 19px;
	}

	.hcp-popup__body p {
		font-size: 14px;
		text-align: left;
	}

	.hcp-btn {
		padding: 10px 24px;
		font-size: 13px;
		min-width: 140px;
	}
	.hcp-popup__buttons {
		margin-top: 30px;
		justify-content: space-between;
	}
}

/* Mobile
@media (max-width: 576px) {
	.hcp-overlay {
		padding: 15px;
	}

	.hcp-popup {
		max-width: 100%;
	}

	.hcp-popup__content {
		padding: 25px 20px;
	}

	.hcp-popup__body h2 {
		font-size: 17px;
	}

	.hcp-popup__body p {
		font-size: 13px;
	}

	.hcp-popup__buttons {
		flex-direction: column;
		gap: 10px;
	}

	.hcp-btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 13px;
		min-width: auto;
	}
} */
