/* Kiwi Steps Widget Styles */

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

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideLeft {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Main Wrapper */
.kiwi-steps-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
}

/* Animation classes - CSS-based animations */
.kiwi-steps-wrapper.fade-up {
	animation: fadeInUp 0.6s ease-out forwards;
}

.kiwi-steps-wrapper.fade-in {
	animation: fadeIn 0.6s ease-out forwards;
}

.kiwi-steps-wrapper.slide-up {
	animation: slideUp 0.6s ease-out forwards;
}

.kiwi-steps-wrapper.slide-left {
	animation: slideLeft 0.6s ease-out forwards;
}

/* Override Elementor's invisible class */
.elementor-invisible {
	visibility: visible !important;
	opacity: 1 !important;
}

/* Title Row */
.steps-title-row {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

/* Steps Row */
.steps-row {
	width: 100%;
	display: flex;
	justify-content: center;
}

/* Section Title */
.kiwi-steps-title {
	margin: 0 0 30px 0;
	font-size: 28px;
	font-weight: 600;
	color: #000000;
	text-align: center;
	letter-spacing: 0.5px;
}

/* Steps Container - Grid Layout */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}

/* Individual Step Card */
.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.step:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
	border-color: #d0d0d0;
}

/* Step Circle - Number Badge */
.step-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #333333;
	color: #ffffff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.step:hover .step-circle {
	background-color: #000000;
	transform: scale(1.1);
}

/* Step Title */
.step-title {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 600;
	color: #000000;
	line-height: 1.4;
}

/* Step Description */
.step-desc {
	margin: 0;
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.step {
		padding: 20px 15px;
	}

	.step-circle {
		width: 50px;
		height: 50px;
		font-size: 22px;
		margin-bottom: 15px;
	}

	.step-title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.step-desc {
		font-size: 13px;
	}
}

/* Responsive - Mobile */
@media (max-width: 576px) {
	.steps {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.step {
		padding: 15px 12px;
	}

	.step-circle {
		width: 45px;
		height: 45px;
		font-size: 20px;
		margin-bottom: 12px;
	}

	.step-title {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.step-desc {
		font-size: 12px;
	}
}
