/* ═══════════════════════════════════════════════
   How to Get Here Journey Timeline – 487dae26
   Luxury Villa Aesthetic
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ── Wrapper ── */
.jt-487dae26-wrapper {
	background-color: #f5f1eb;
	padding: 50px 40px;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}

/* ── Header ── */
.jt-487dae26-header {
	text-align: center;
	margin-bottom: 30px;
}

.jt-487dae26-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 36px;
	font-weight: 600;
	color: #2c3e50;
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.jt-487dae26-subtitle {
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-size: 18px;
	color: #5a7a6e;
	margin: 0;
	line-height: 1.4;
}

/* ── Steps Container ── */
.jt-487dae26-steps-container {
	position: relative;
}

.jt-487dae26-steps {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
	position: relative;
	z-index: 2;
}

/* ── Connector Line ── */
.jt-487dae26-connector {
	position: absolute;
	top: 75px;
	left: 10%;
	right: 10%;
	border-top: 2px dashed #3a8a8c;
	z-index: 1;
	pointer-events: none;
}

/* ── Single Step ── */
.jt-487dae26-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 0;
	min-width: 0;
	max-width: 180px;
	position: relative;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jt-487dae26-animated .jt-487dae26-step:hover {
	transform: translateY(-8px);
}

/* ── Step Visual ── */
.jt-487dae26-step-visual {
	position: relative;
	margin-bottom: 14px;
}

.jt-487dae26-step-number {
	position: absolute;
	top: -4px;
	left: -4px;
	width: 30px;
	height: 30px;
	background-color: #3a8a8c;
	color: #ffffff;
	border-radius: 50%;
	font-family: 'Lato', Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	box-shadow: 0 2px 8px rgba(58, 138, 140, 0.35);
	line-height: 1;
}

.jt-487dae26-image-wrap {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #d4c9a8;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	background-color: #e8e2d8;
	transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.jt-487dae26-animated .jt-487dae26-step:hover .jt-487dae26-image-wrap {
	box-shadow: 0 8px 30px rgba(58, 138, 140, 0.25);
	border-color: #3a8a8c;
}

.jt-487dae26-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.jt-487dae26-animated .jt-487dae26-step:hover .jt-487dae26-image-wrap img {
	transform: scale(1.08);
}

/* ── Step Content ── */
.jt-487dae26-step-content {
	max-width: 160px;
}

.jt-487dae26-step-title {
	font-family: 'Lato', Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 4px 0;
	line-height: 1.3;
}

.jt-487dae26-step-desc {
	font-family: 'Lato', Arial, sans-serif;
	font-size: 12px;
	color: #6b7c85;
	margin: 0;
	line-height: 1.5;
}

.jt-487dae26-step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 6px;
	color: #3a8a8c;
	font-size: 18px;
}

.jt-487dae26-step-icon svg {
	width: 18px;
	height: 18px;
	fill: #3a8a8c;
}

/* ═══════════════════════════════════════════════
   Responsive: Tablet – 2 columns
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) and (min-width: 768px) {
	.jt-487dae26-steps {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px 20px;
	}

	.jt-487dae26-step {
		flex: 0 0 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}

	.jt-487dae26-connector {
		display: none;
	}
}

/* ═══════════════════════════════════════════════
   Responsive: Mobile – vertical stacked
   ═══════════════════════════════════════════════ */
@media (max-width: 767px) {
	.jt-487dae26-wrapper {
		padding: 30px 20px;
	}

	.jt-487dae26-title {
		font-size: 26px;
	}

	.jt-487dae26-subtitle {
		font-size: 15px;
	}

	.jt-487dae26-steps {
		flex-direction: column;
		align-items: center;
		gap: 28px;
	}

	.jt-487dae26-step {
		flex-direction: row;
		text-align: left;
		max-width: 100%;
		gap: 16px;
	}

	.jt-487dae26-step-visual {
		margin-bottom: 0;
		flex-shrink: 0;
	}

	.jt-487dae26-image-wrap {
		width: 90px;
		height: 90px;
	}

	.jt-487dae26-step-content {
		max-width: none;
	}

	.jt-487dae26-connector {
		display: none;
	}

	/* Vertical connector for mobile */
	.jt-487dae26-has-connector .jt-487dae26-steps-container::before {
		content: '';
		position: absolute;
		top: 45px;
		bottom: 45px;
		left: calc(50% - 45px + 20px);
		border-left: 2px dashed #3a8a8c;
		z-index: 1;
	}
}
