.tender-wrapper {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	margin: 60px auto;
	max-width: var(--custom-max-width);
	border: 1px solid rgba(0, 0, 0, .05)
}

.tender-header::after,
.tender-header::before {
	position: absolute;
	opacity: .1;
	border-radius: 50%;
	filter: blur(40px);
	content: ''
}

.tender-header {
	background: linear-gradient(135deg, var(--secondary-color) 0, #0f1c30 100%);
	color: var(--white);
	padding: 20px 10px;
	position: relative;
	overflow: hidden
}

.tender-header::before {
	top: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: var(--theme-color)
}

.tender-header::after {
	bottom: -100px;
	left: -50px;
	width: 200px;
	height: 200px;
	background: var(--secondary-light)
}

.tender-badge {
	background-color: var(--theme-color);
	color: var(--text-color);
	padding: 6px 16px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 20px;
	box-shadow: 0 4px 10px rgba(235, 41, 44, .4)
}

.tender-title {
	font-weight: 800;
	font-size: 30px;
	line-height: 1.2;
	color: var(--white);
	position: relative;
	z-index: 2
}

.bank-info-box {
	display: flex;
	gap: 20px;
	background: rgba(255, 255, 255, .08);
	padding: 25px;
	border-radius: var(--radius-md);
	margin-top: 30px;
	border: 1px solid rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px);
	position: relative;
	z-index: 2
}

.bank-icon {
	font-size: 36px;
	color: var(--theme-color);
	display: flex;
	align-items: center
}

.bank-text {
	font-size: 16px;
	line-height: 1.7;
	color: #e0e0e0
}

.tender-body {
	padding: 50px 40px
}

.section-header {
	color: var(--text-color);
	font-weight: 800;
	font-size: 24px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 10px
}

.section-header::before {
	content: '';
	width: 6px;
	height: 30px;
	background: var(--theme-color);
	border-radius: 3px
}

/* ✅ Added new class for Proposal Requirements header spacing */
.proposal-req-header {
	margin-top: 40px;
}

/* ✅ Added new class for intro paragraphs */
.proposal-intro-text {
	color: #666;
	font-size: 16px;
}

.key-info-list,
.requirements-list {
	list-style: none;
	padding: 0;
	margin: 0
}

.req-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding: 20px;
	background: var(--white);
	border-radius: var(--radius-md);
	border: 1px solid #eee;
	transition: .3s
}

.alert-box,
.exp-card:hover .exp-icon-wrap,
.req-number {
	background: var(--secondary-color)
}

.req-item:hover {
	border-color: var(--theme-color);
	box-shadow: var(--shadow-sm);
	transform: translateX(5px)
}

.req-number {
	color: var(--white);
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
	margin-right: 20px;
	margin-top: -2px
}

.alert-box,
.sidebar-card {
	border-radius: var(--radius-md)
}

.req-content {
	font-size: 16px;
	color: var(--text-main);
	line-height: 1.6;
	padding-top: 8px
}

.alert-box {
	color: var(--white);
	padding: 25px;
	margin-top: 30px;
	display: flex;
	gap: 15px;
	align-items: flex-start
}

.alert-icon {
	font-size: 24px;
	color: #ffd166;
	flex-shrink: 0
}

.alert-text strong {
	display: block;
	margin-bottom: 5px;
	font-size: 18px
}

.alert-text {
	font-size: 16px;
	line-height: 1.6;
	opacity: .9
}

.sidebar-card {
	background: var(--white);
	box-shadow: var(--shadow-md);
	padding: 30px;
	text-align: center;
	border-top: 5px solid var(--theme-color);
	margin-bottom: 30px
}

.sidebar-icon {
	font-size: 40px;
	color: var(--secondary-color);
	margin-bottom: 15px
}

.contact-label,
.sidebar-title {
	font-size: 18px;
	text-transform: uppercase
}

.sidebar-title {
	font-weight: 800;
	color: var(--text-color);
	margin-bottom: 20px;
	letter-spacing: .5px
}

.contact-box {
	background: var(--bg-light);
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 15px;
	text-align: left;
	border-left: 4px solid var(--secondary-light)
}

.contact-label {
	font-weight: 700;
	color: var(--secondary-color);
	display: block;
	margin-bottom: 5px
}

.contact-value {
	font-size: 16px;
	color: var(--text-main);
	line-height: 1.5
}

/* ✅ Updated existing rule to include font-size instead of inline style */
.contact-value a {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
}

.deadline-btn {
	background: var(--theme-color);
	color: var(--text-color);
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	margin-top: 10px;
	transition: .3s
}

.deadline-btn:hover {
	background: var(--theme-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(235, 41, 44, .3)
}

.deadline-small {
	font-size: 14px;
	opacity: .8;
	display: block;
	font-weight: 700
}

.deadline-big {
	font-size: 18px;
	font-weight: 800;
	display: block;
	color: var(--text-color)
}

.key-info-card {
	background: var(--bg-light);
	border-radius: var(--radius-md);
	padding: 25px;
	border: 1px solid #e0e0e0
}

.key-info-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--theme-color)
}

.key-info-icon {
	width: 36px;
	height: 36px;
	background: var(--theme-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	color: var(--white);
	font-size: 16px
}

.key-info-title {
	font-weight: 800;
	color: var(--text-color);
	font-size: 16px;
	margin: 0;
	text-transform: uppercase
}

.key-info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px dashed #ced4da
}

.key-info-item:last-child {
	border-bottom: none
}

.key-label {
	font-weight: 600;
	color: var(--text-muted);
	font-size: 16px
}

.key-value {
	font-weight: 700;
	color: var(--text-color);
	font-size: 16px;
	text-align: right
}

.expectations-section {
	background: var(--bg-light);
	padding: 60px 40px;
	border-top: 1px solid #eee
}

.exp-card,
.exp-icon-wrap {
	background: var(--white);
	transition: .3s
}

.expect-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px
}

.exp-card {
	text-align: center;
	padding: 30px 20px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm)
}

.exp-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-md)
}

.exp-icon-wrap {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
	color: var(--secondary-color);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
	border: 2px solid rgba(235, 41, 44, .1)
}

.exp-card:hover .exp-icon-wrap {
	color: var(--white);
	border-color: var(--secondary-color)
}

.exp-title {
	font-weight: 800;
	color: var(--dark-blue-color);
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 10px
}

.exp-text {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.6;
	text-align: justify
}

.notice-box {
	margin: 0 40px 40px;
	background: #fff3cd;
	border-left: 5px solid #ffc107;
	padding: 20px 25px;
	border-radius: 8px
}

.notice-title {
	font-weight: 800;
	color: #856404;
	font-size: 16px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px
}

.notice-text {
	font-size: 16px;
	color: #664d03;
	line-height: 1.5
}

@media (max-width:991px) {
	.expect-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width:768px) {
	.tender-wrapper {
		margin: 20px
	}

	.tender-header {
		padding: 40px 20px
	}

	.tender-title {
		font-size: 28px
	}

	.tender-body {
		padding: 30px 20px
	}

	.bank-info-box {
		flex-direction: column;
		padding: 20px
	}

	.expect-grid {
		grid-template-columns: 1fr
	}

	.key-info-item {
		flex-direction: column;
		align-items: flex-start
	}

	.key-value {
		text-align: left;
		margin-top: 5px
	}
}

/* === Forms Page Title Backgrounds === */
#tf-page-title .bg-layer {
	background-image: url(../images/background/innerbanner09.webp);
}

#tf-page-title .pattern-1 {
	background-image: url(../images/shape/shape-18.png);
}

#tf-page-title .pattern-2 {
	background-image: url(../images/shape/shape-17.png);
}