/**
 * Event Process Steps Widget Styles
 *
 * @package AlberCAS
 * @since   1.0.0
 */

/* Container  */
.albercas-process-steps {
	padding: 60px 40px;
}

/* Steps Wrapper */
.albercas-process-steps-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Individual Step */
.albercas-process-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 350px;
	position: relative;
}

/* Step Title - Above Circle */
.albercas-step-title {
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 15px 0;
	line-height: 1.4;
	text-align: center;
	width: 100%;
}

/* Step Circle Wrapper (Circle + Line) */
.albercas-step-circle-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	position: relative;
}

/* Step Circle */
.albercas-step-circle {
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.albercas-step-number {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}

/* Connecting Line - FIXED OVERFLOW */
.albercas-step-line {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	width: calc(100% - 40px);
	height: 2px;
	background-color: rgba(255, 255, 255, 0.2);
	z-index: 1;
	margin-left: 40px;
}

/* Step Description - Below Circle */
.albercas-step-description {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 15px 0 0 0;
	text-align: center;
	width: 100%;
}

/* CTA Button */
.albercas-cta-button-wrapper {
	text-align: center;
	margin-top: 50px;
}

.albercas-cta-button {
	display: inline-block;
	padding: 15px 40px;
	background-color: #00bfa5;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

/* Hover Effects */
.albercas-step-circle:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.albercas-process-steps-wrapper {
		gap: 40px;
	}

	.albercas-step-line {
		width: calc(100% - 35px);
		margin-left: 35px;
	}

	.albercas-step-circle {
		width: 70px;
		height: 70px;
	}

	.albercas-step-number {
		font-size: 28px;
	}

	.albercas-step-title {
		font-size: 16px;
	}

	.albercas-step-description {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.albercas-process-steps {
		padding: 40px 20px;
	}

	.albercas-process-steps-wrapper {
		flex-direction: column;
		gap: 40px;
		align-items: center;
	}

	.albercas-process-step {
		width: 100%;
		max-width: 100%;
	}

	.albercas-step-circle-wrapper {
		flex-direction: column;
		align-items: center;
	}

	.albercas-step-line {
		width: 2px;
		height: 30px;
		position: relative;
		left: 0;
		top: 0;
		transform: none;
		margin: 10px 0;
		margin-left: 0;
	}

	.albercas-step-title {
		font-size: 18px;
	}

	.albercas-step-description {
		font-size: 14px;
	}

	.albercas-cta-button {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.albercas-step-circle {
		width: 60px;
		height: 60px;
	}

	.albercas-step-number {
		font-size: 24px;
	}

	.albercas-step-title {
		font-size: 16px;
	}

	.albercas-step-description {
		font-size: 13px;
	}

	.albercas-cta-button {
		padding: 12px 30px;
		font-size: 15px;
	}
}