.expert-led-interaction {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
}

.expert-led-interaction img {
	width: 100%;
	height: auto;
	display: block;
}

.expert-led-interaction-popups {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.edi-popup {
	position: absolute;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 12px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	opacity: 0;
	transform: scale(0.5) translateY(20px);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	cursor: pointer;
	white-space: nowrap;
}

/* Vector message tail */
.edi-popup::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
}

/* Popup 1 - Profile Review */
.edi-popup-1 {
	top: 15%;
	left: calc(50% + 30px);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	animation-delay: 0.5s;
}

.edi-popup-1::after {
	bottom: -8px;
	left: 20px;
	border-width: 8px 8px 0 0;
	border-color: #6b6cd1 transparent transparent transparent;
}

/* Popup 2 - Screening Call */
.edi-popup-2 {
	top: 30%;
	left: calc(50% + 30px);
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	animation-delay: 1s;
}

.edi-popup-2::after {
	top: 50%;
	left: -7px;
	transform: translateY(-50%);
	border-width: 8px 8px 8px 0;
	border-color: transparent #f18ae5 transparent transparent;
}

/* Popup 3 - Feedback & Recommendations */
.edi-popup-3 {
	top: 45%;
	left: calc(50% - 30px);
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	animation-delay: 1.5s;
}

.edi-popup-3::after {
	top: -4px;
	left: 35px;
	transform: translateY(-50%);
	border-width: 0 8px 8px 8px;
	border-color: transparent transparent #44b5fe transparent;
}

/* Animation classes */
.edi-popup.animate-in {
	opacity: 1;
	transform: scale(1) translateY(0);
}

.edi-popup:hover {
	transform: scale(1.05) translateY(-2px);
	box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
}

/* Pulse animation */
@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.edi-popup.pulse {
	animation: pulse 2s infinite;
}

/* Floating animation */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.edi-popup.float {
	animation: float 3s ease-in-out infinite;
}

/* Icon before text */
.edi-popup::before {
	content: "✓";
	display: inline-block;
	margin-right: 8px;
	font-size: 16px;
	font-weight: bold;
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s ease;
}

.edi-popup.show-check::before {
	opacity: 1;
	transform: scale(1);
}

/* Ripple effect on click */
@keyframes ripple {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	100% {
		transform: scale(4);
		opacity: 0;
	}
}

.edi-popup-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	width: 20px;
	height: 20px;
	animation: ripple 0.6s ease-out;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.edi-popup {
		font-size: 12px;
		padding: 10px 16px;
		border-radius: 16px;
	}

	.edi-popup-1 {
		top: 10%;
		left: 5%;
	}

	.edi-popup-2 {
		top: 40%;
		right: 5%;
	}

	.edi-popup-3 {
		bottom: 15%;
		left: 5%;
	}
}
