.customer-relations-section {
	background: #f8f9fa
}

.auto-container {
	var(--max-width);
	margin: 0 auto;
	padding: 0 15px
}

.contact-card {
	position: relative;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
	overflow: hidden;
	border-left: 6px solid;
	transition: transform .3s, box-shadow .3s
}

.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .12)
}

.ceo-card,
.manager-card {
	border-left-color: var(--secondary-color)
}

.card-header-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 0 30px 30px 0;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	position: relative;
	margin: 10px
}

.badge-icon,
.contact-icon,
.profile-avatar {
	border-radius: 50%;
	display: flex
}

.ceo-card .card-header-badge,
.ceo-card .contact-icon,
.manager-card .card-header-badge,
.manager-card .contact-icon {
	background: var(--secondary-color)
}

.badge-icon {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, .2);
	align-items: center;
	justify-content: center
}

.badge-icon i {
	font-size: 14px
}

.card-body {
	padding: 35px 40px
}

.profile-section {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 2px solid #f0f0f0
}

.profile-avatar {
	width: 80px;
	height: 80px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.male-avatar {
	background: rgba(30, 90, 168, .1)
}

.female-avatar i,
.male-avatar i {
	font-size: 36px;
	color: var(--secondary-color)
}

.female-avatar {
	background: rgba(42, 122, 122, .1)
}

.profile-info h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--title-color);
	margin-bottom: 8px
}

.profile-info h4 span {
	font-weight: 600;
	color: var(--text-color)
}

.profile-info .address {
	color: var(--text-color);
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px
}

.profile-info .address i {
	color: var(--secondary-color);
	font-size: 16px
}

.contact-details {
	display: flex;
	gap: 30px;
	flex-wrap: wrap
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	min-width: 200px
}

.contact-icon {
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	font-size: 20px
}

.contact-item .info h5 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--title-color);
	margin-bottom: 4px;
	letter-spacing: .5px
}

.contact-item .info p {
	color: var(--text-color);
	font-size: 15px;
	font-weight: 500;
	margin: 0
}

@media (max-width:991px) {
	.card-body {
		padding: 25px 30px
	}

	.contact-details {
		gap: 20px
	}
}

@media (max-width:768px) {
	.card-body {
		padding: 20px
	}

	.profile-section {
		flex-direction: column;
		text-align: center;
		gap: 15px
	}

	.profile-info .address {
		justify-content: center
	}

	.contact-details {
		flex-direction: column;
		gap: 15px
	}

	.contact-item {
		width: 100%
	}

	.profile-info h4 {
		font-size: 18px
	}
}

/* === Forms Page Title Backgrounds === */
#tf-page-title .bg-layer {
	background-image: url(../images/background/innerbanner01.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);
}