/* Process Section - Ultra Premium Design */

.process-section {
	padding: 140px 0 120px;
	background: linear-gradient(180deg, #0a0a15 0%, #0f0f1e 50%, #0a0a15 100%);
	position: relative;
	overflow: hidden;
}

/* Background Elements */
.process-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle at 30% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
	pointer-events: none;
}

.process-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(184, 134, 11, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(184, 134, 11, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 40s linear infinite;
	opacity: 0.4;
	pointer-events: none;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}

/* Header */
.process-header {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 2;
}

.process-badge {
	display: inline-block;
	padding: 10px 28px;
	background: rgba(184, 134, 11, 0.12);
	border: 2px solid rgba(184, 134, 11, 0.5);
	border-radius: 30px;
	color: #FFD700;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	margin-bottom: 22px;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(184, 134, 11, 0.15);
}

.process-title {
	font-size: 52px;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.process-title span {
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.process-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
	font-weight: 400;
}

/* Timeline */
.process-timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	z-index: 2;
}

.process-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, 
		transparent 0%,
		rgba(184, 134, 11, 0.6) 10%, 
		rgba(184, 134, 11, 0.4) 50%, 
		rgba(184, 134, 11, 0.6) 90%,
		transparent 100%);
	transform: translateX(-50%);
	box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

/* Process Step */
.process-step {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 60px;
	position: relative;
}

.process-step:last-child {
	margin-bottom: 0;
}

.process-step:nth-child(even) {
	flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
	text-align: right;
}

.process-step:nth-child(even) .step-icon {
	margin-left: auto;
	margin-right: 0;
}

.process-step:nth-child(even) .step-features {
	justify-content: flex-end;
}

/* Step Number Wrapper */
.step-number-wrapper {
	position: relative;
	flex-shrink: 0;
	z-index: 3;
}

.step-number {
	width: 110px;
	height: 110px;
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	box-shadow: 
		0 0 0 10px rgba(10, 10, 21, 1),
		0 0 0 14px rgba(184, 134, 11, 0.4),
		0 0 40px rgba(184, 134, 11, 0.6),
		0 25px 70px rgba(184, 134, 11, 0.5);
	position: relative;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: -2px;
}

.step-number::before {
	content: '';
	position: absolute;
	inset: -18px;
	border: 3px dashed rgba(184, 134, 11, 0.5);
	border-radius: 50%;
	animation: stepRotate 30s linear infinite;
}

@keyframes stepRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.step-pulse {
	position: absolute;
	inset: -12px;
	border-radius: 50%;
	border: 3px solid rgba(184, 134, 11, 0.7);
	animation: stepPulse 3s ease-out infinite;
}

@keyframes stepPulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

/* Step Content */
.step-content {
	flex: 1;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(12px);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	padding: 45px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.step-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
	transition: left 0.8s ease;
}

.process-step:hover .step-content::before {
	left: 100%;
}

.process-step:hover .step-content {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(184, 134, 11, 0.5);
	transform: translateY(-10px);
	box-shadow: 
		0 40px 100px rgba(184, 134, 11, 0.25),
		0 0 60px rgba(184, 134, 11, 0.15);
}

.process-step:hover .step-number {
	transform: scale(1.2) rotate(8deg);
	box-shadow: 
		0 0 0 10px rgba(10, 10, 21, 1),
		0 0 0 14px rgba(184, 134, 11, 0.6),
		0 0 50px rgba(184, 134, 11, 0.8),
		0 30px 80px rgba(184, 134, 11, 0.6);
}

/* Step Icon */
.step-icon {
	width: 85px;
	height: 85px;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.18) 0%, rgba(255, 215, 0, 0.18) 100%);
	border: 2px solid rgba(184, 134, 11, 0.35);
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	box-shadow: 0 8px 24px rgba(184, 134, 11, 0.15);
}

.step-icon::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 22px;
	border: 2px solid transparent;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.3), rgba(255, 215, 0, 0.3)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.process-step:hover .step-icon::after {
	opacity: 1;
}

.step-icon i {
	font-size: 38px;
	color: #FFD700;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-icon {
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	border-color: transparent;
	transform: scale(1.15) rotate(-8deg);
	box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
}

.process-step:hover .step-icon i {
	color: #fff;
	transform: scale(1.2) rotate(8deg);
}

/* Step Title */
.step-title {
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
	transition: all 0.3s ease;
	letter-spacing: -0.5px;
}

.process-step:hover .step-title {
	color: #FFD700;
}

/* Step Description */
.step-description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.85;
	margin-bottom: 22px;
	font-weight: 400;
}

/* Step Features */
.step-features {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.step-features span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 16px;
	background: rgba(184, 134, 11, 0.12);
	border: 1px solid rgba(184, 134, 11, 0.35);
	border-radius: 22px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.step-features span i {
	font-size: 14px;
	color: #FFD700;
}

.process-step:hover .step-features span {
	background: rgba(184, 134, 11, 0.2);
	border-color: rgba(184, 134, 11, 0.6);
	color: #fff;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
	.process-timeline::before {
		left: 50px;
	}
	
	.process-step,
	.process-step:nth-child(even) {
		flex-direction: row;
	}
	
	.process-step:nth-child(even) .step-content {
		text-align: left;
	}
	
	.process-step:nth-child(even) .step-icon {
		margin-left: 0;
		margin-right: auto;
	}
	
	.process-step:nth-child(even) .step-features {
		justify-content: flex-start;
	}
	
	.step-number {
		width: 90px;
		height: 90px;
		font-size: 28px;
	}
	
	.process-title {
		font-size: 40px;
	}
}

@media (max-width: 768px) {
	.process-section {
		padding: 100px 0 80px;
	}
	
	.process-header {
		margin-bottom: 60px;
	}
	
	.process-title {
		font-size: 36px;
	}
	
	.process-subtitle {
		font-size: 16px;
	}
	
	.process-timeline::before {
		left: 35px;
	}
	
	.process-step {
		gap: 25px;
		margin-bottom: 50px;
	}
	
	.step-number {
		width: 70px;
		height: 70px;
		font-size: 24px;
	}
	
	.step-number::before {
		inset: -10px;
	}
	
	.step-content {
		padding: 30px;
	}
	
	.step-icon {
		width: 70px;
		height: 70px;
	}
	
	.step-icon i {
		font-size: 32px;
	}
	
	.step-title {
		font-size: 20px;
	}
	
	.step-description {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.process-timeline::before {
		left: 30px;
	}
	
	.process-step {
		gap: 20px;
	}
	
	.step-number {
		width: 60px;
		height: 60px;
		font-size: 20px;
		box-shadow: 
			0 0 0 6px rgba(15, 15, 30, 1),
			0 0 0 10px rgba(184, 134, 11, 0.3),
			0 15px 40px rgba(184, 134, 11, 0.4);
	}
	
	.step-number::before {
		inset: -8px;
		border-width: 2px;
	}
	
	.step-content {
		padding: 24px;
	}
	
	.step-icon {
		width: 60px;
		height: 60px;
	}
	
	.step-icon i {
		font-size: 28px;
	}
	
	.step-title {
		font-size: 18px;
	}
	
	.step-features span {
		font-size: 11px;
		padding: 5px 12px;
	}
}
