.gf-seq-wrap {
	max-width: 920px;
	margin: 0 auto;
}

/* ناوبری بالای فرآیند */
.gf-seq-header-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	flex-wrap: wrap;
	gap: 10px;
}

.gf-seq-back-link {
	display: inline-block;
	color: #64748b;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	transition: color 0.2s ease;
}
.gf-seq-back-link:hover {
	color: #0f172a;
}

.gf-seq-user-badge {
	font-size: 13px;
	color: #475569;
	background: #f1f5f9;
	padding: 6px 14px;
	border-radius: 99px;
	border: 1px solid #e2e8f0;
}

.gf-seq-user-badge a {
	color: #ef4444;
	text-decoration: none;
	margin-right: 4px;
	font-weight: bold;
}
.gf-seq-user-badge a:hover {
	text-decoration: underline;
}

/* لیست پکیج ها */
.gf-seq-packages-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.gf-seq-pkg-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gf-seq-pkg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}
.gf-seq-pkg-title {
	margin: 0 0 10px 0;
	font-size: 18px;
	color: #0f172a;
	font-weight: 800;
}
.gf-seq-pkg-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.8;
	margin: 0 0 20px 0;
	flex-grow: 1;
}
.gf-seq-pkg-meta {
	border-top: 1px dashed #e2e8f0;
	padding-top: 14px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #475569;
}
.gf-seq-pkg-btn {
	display: block;
	text-align: center;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #fff !important;
	text-decoration: none !important;
	padding: 12px;
	border-radius: 12px;
	font-weight: bold;
	font-size: 14px;
	transition: background 0.2s;
}
.gf-seq-pkg-btn:hover {
	background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* گیت ورودی کد پرسنلی */
.gf-seq-gate-card {
	text-align: center;
	max-width: 500px;
	margin: 40px auto;
}
.gf-seq-gate-card h2 {
	font-size: 22px;
	color: #0f172a;
	margin-bottom: 10px;
	font-weight: 800;
}
.gf-seq-gate-card p {
	color: #64748b;
	font-size: 14px;
	margin-bottom: 25px;
}
.gf-seq-field-group {
	text-align: right;
	margin-bottom: 20px;
}
.gf-seq-field-group label {
	display: block;
	font-weight: bold;
	margin-bottom: 8px;
	color: #334155;
}
.gf-seq-field-group input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	font-size: 16px;
	text-align: center;
	transition: border-color 0.2s;
}
.gf-seq-field-group input:focus {
	border-color: #2563eb;
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.gf-seq-submit-btn {
	width: 100%;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: #fff;
	border: none;
	padding: 14px;
	border-radius: 12px;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.2s;
}
.gf-seq-submit-btn:hover {
	background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* نوار پیشرفت */
.gf-seq-progress {
	background: linear-gradient(135deg, #ffffff, #f8fbff);
	border: 1px solid #e6edf5;
	border-radius: 24px;
	padding: 24px 18px 20px;
	margin-bottom: 24px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.gf-seq-progress-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.gf-seq-progress-summary {
	font-size: 14px;
	color: #334155;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	padding: 8px 14px;
}

.gf-seq-progress-track {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 8px;
}

.gf-seq-progress-track::before {
	content: "";
	position: absolute;
	top: 28px;
	right: 40px;
	left: 40px;
	height: 6px;
	border-radius: 999px;
	background: #e5e7eb;
	z-index: 1;
}

.gf-seq-progress-bar {
	position: absolute;
	top: 28px;
	right: 40px;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, #22c55e, #06b6d4);
	z-index: 2;
	transition: width 0.4s ease;
}

.gf-seq-step {
	position: relative;
	z-index: 3;
	flex: 1;
	text-align: center;
	min-width: 0;
}

.gf-seq-step-circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 3px solid #d1d5db;
	color: #94a3b8;
	font-weight: 700;
	font-size: 18px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
	transition: all 0.3s ease;
}

.gf-seq-step-title {
	font-size: 13px;
	line-height: 1.9;
	color: #334155;
	font-weight: 700;
	padding: 0 6px;
	word-break: break-word;
}

.gf-seq-step-time {
	margin-top: 4px;
	font-size: 12px;
	color: #64748b;
	line-height: 1.8;
}

.gf-seq-step.active .gf-seq-step-circle {
	border-color: #2563eb;
	color: #2563eb;
	background: #eff6ff;
	transform: scale(1.08);
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.gf-seq-step.done .gf-seq-step-circle {
	border-color: #10b981;
	background: linear-gradient(135deg, #10b981, #22c55e);
	color: #fff;
}

.gf-seq-timer-card {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: #fff;
	border-radius: 22px;
	padding: 24px;
	margin-bottom: 22px;
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
	text-align: center;
}

.gf-seq-timer-label {
	font-size: 14px;
	opacity: 0.9;
	margin-bottom: 10px;
}

.gf-seq-timer-time {
	font-size: 42px;
	font-weight: 800;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 8px;
}

.gf-seq-timer-note {
	font-size: 14px;
	color: #cbd5e1;
}

.gf-seq-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.gf-seq-card .gform_wrapper {
	margin: 0;
}

.gf-seq-card .gform_description {
	display: block !important;
	margin-bottom: 24px !important;
	font-size: 15px !important;
	line-height: 2 !important;
	color: #475569 !important;
	background: #f8fafc;
	padding: 14px 16px;
	border-radius: 14px;
	border-right: 4px solid #38bdf8;
}

.gf-seq-message {
	text-align: center;
	padding: 42px 24px;
	border-radius: 24px;
	background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
	border: 1px solid #bbf7d0;
	color: #166534;
	box-shadow: 0 12px 30px rgba(34, 197, 94, 0.08);
}

.gf-seq-message h2 {
	margin: 0 0 10px;
	font-size: 28px;
}

.gf-seq-message p {
	margin: 0;
	font-size: 16px;
	line-height: 1.9;
}

@media (max-width: 767px) {
	.gf-seq-progress-track::before,
	.gf-seq-progress-bar {
		right: 28px;
		left: 28px;
		top: 24px;
	}

	.gf-seq-step-circle {
		width: 44px;
		height: 44px;
		font-size: 15px;
	}

	.gf-seq-step-title {
		font-size: 11px;
	}

	.gf-seq-step-time {
		font-size: 10px;
	}

	.gf-seq-card {
		padding: 18px;
	}

	.gf-seq-timer-time {
		font-size: 32px;
	}
}

/* غیرقابل ویرایش و خاکستری کردن فیلد کد پرسنلی در تمامی مراحل فرم‌ها */
.gf-readonly-field input {
    background-color: #f1f5f9 !important;
    color: #64748b !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    border-color: #cbd5e1 !important;
}
