.section-content .section-text {
    max-width: 495px;
}
#residentialMoving .section-img,
#commercialMoving .section-img
{
    left: -180px;
}
#specialtyMoving .section-img {
    width: 100%;
    height: auto;
    top: -125px;
}
#residentialMoving > div {
    border-top: solid 2px var(--light-orange);
    border-right: solid 2px var(--light-orange);
    border-radius: 0 var(--section-big-border) 0 0;
}


.process-timeline {
	position: relative;
	max-width: 1000px;
	margin: 4rem auto 0;
	padding: 2rem 0;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #4A90E2, #357ABD, #4A90E2);
	transform: translateX(-50%);
	border-radius: 2px;
}

.timeline-step {
	position: relative;
	margin: 3rem 0;
	display: flex;
	align-items: center;
}

.timeline-step-left {
	justify-content: flex-end;
}

.timeline-step-right {
	justify-content: flex-start;
}

.timeline-content {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	max-width: 45%;
	position: relative;
}

.timeline-step-left .timeline-content {
	flex-direction: row-reverse;
}

.step-badge {
	position: relative;
	z-index: 2;
}

.step-number {
	background: linear-gradient(135deg, #4A90E2, #357ABD);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.5rem;
	box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
	border: 4px solid white;
	transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

.step-info {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid #e8ecef;
	position: relative;
	transition: all 0.3s ease;
}

.step-info:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-info::before {
	content: '';
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	border: 12px solid transparent;
	transform: translateY(-50%);
}

.timeline-step-left .step-info::before {
	right: -24px;
	border-left-color: white;
}

.timeline-step-right .step-info::before {
	left: -24px;
	border-right-color: white;
}

.step-info h3 {
	margin: 0 0 1rem 0;
	color: #2c3e50;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.step-info p {
	margin: 0;
	color: #666;
	line-height: 1.6;
	font-size: 0.95rem;
}

.bg-light {
	background-color: #f8f9fa;
}

.bg-blue {
	background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.cta-content {
	text-align: center;
	padding: 4rem 2rem;
}

.cta-content h2 {
	margin-bottom: 1rem;
	font-size: 2.5rem;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-buttons {
	gap: 1rem;
}

.btn_white {
	background: white;
	color: #4A90E2;
	border: 2px solid white;
}

.btn_outline_white {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn_outline_white:hover {
	background: white;
	color: #4A90E2;
}

/* Service SVG Icons */
.svg-home::before {
	content: "🏠";
	font-size: 2rem;
}

.svg-office::before {
	content: "🏢";
	font-size: 2rem;
}

.svg-specialty::before {
	content: "🎨";
	font-size: 2rem;
}

.svg-packing::before {
	content: "📦";
	font-size: 2rem;
}

@media (max-width: 860px){
    #residentialMoving .section-img,
    #commercialMoving .section-img
    {
        left: -70px;
    }
    #specialtyMoving .section-img {
        top: -95px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
	.process-timeline {
		padding: 1rem 0;
		margin: 2rem auto 0;
	}

	.timeline-line {
		left: 30px;
	}

	.timeline-step {
		margin: 2rem 0;
		justify-content: flex-start !important;
		padding-left: 80px;
	}

	.timeline-step-left,
	.timeline-step-right {
		justify-content: flex-start;
	}

	.timeline-content {
		max-width: 100%;
		flex-direction: row !important;
	}

	.timeline-step-left .timeline-content {
		flex-direction: row !important;
	}

	.step-badge {
		position: absolute;
		left: -65px;
		top: 0;
	}

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.step-info {
		padding: 1.5rem;
		margin-left: 0;
	}

	.step-info::before {
		display: none;
	}

	.step-info h3 {
		font-size: 1rem;
	}

	.step-info p {
		font-size: 0.9rem;
	}

	.cta-buttons {
		flex-direction: column;
		width: 100%;
	}

	.cta-content h2 {
		font-size: 2rem;
	}
}
