/* ─── Site Footer Widget ────────────────────────────────────────────────── */

.hbc-foot-wrap {
	position: relative;
	padding: 70px 5% 40px;
	background-color: #1f1c1a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hbc-foot-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.55);
	z-index: 1;
	pointer-events: none;
}

.hbc-foot-inner {
	position: relative;
	z-index: 2;
}

.hbc-foot-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(var(--hbc-foot-cols, 3), 1fr);
	gap: 48px;
	align-items: start;
}

/* Brand column */

.hbc-foot-brand {
	color: #ffffff;
}

.hbc-foot-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	color: #ffffff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}

.hbc-foot-logo img {
	display: block;
	width: 52px;
	height: auto;
	max-height: 52px;
	object-fit: contain;
}

.hbc-foot-tagline {
	max-width: 320px;
	margin-bottom: 26px;
	padding: 22px 26px 24px;
	background-color: transparent;
}

.hbc-foot-tagline-title {
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.hbc-foot-tagline-sub {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

.hbc-foot-phone {
	display: inline-block;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.hbc-foot-phone:hover {
	opacity: 0.85;
}

/* Link columns */

.hbc-foot-col-links-wrap {
	color: #ffffff;
	text-align: left !important;
}

.hbc-foot-col-title {
	margin: 0 0 18px;
	padding: 0;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.hbc-foot-col-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hbc-foot-col-title a:hover {
	transition: color 0.2s ease;
}

.hbc-foot-col-links {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 2.1;
}

.hbc-foot-col-links li {
	margin: 0;
	padding: 0;
}

.hbc-foot-col-links a,
.hbc-foot-col-links .hbc-foot-link {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hbc-foot-col-links a:hover {
	color: #e6c180;
}

/* ─── Tablet (≤1024px) ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.hbc-foot-grid {
		grid-template-columns: 1fr 1fr !important;
		gap: 28px 24px;
	}

	.hbc-foot-brand {
		grid-column: 1 / -1;
	}

	.hbc-foot-tagline {
		max-width: none;
	}

	.hbc-foot-col-links-wrap {
		text-align: left;
	}
}

/* ─── Mobile (≤767px) ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.hbc-foot-wrap {
		padding: 40px 18px 30px;
	}

	.hbc-foot-grid {
		grid-template-columns: 1fr 1fr !important;
		gap: 28px 20px;
	}

	.hbc-foot-brand {
		grid-column: 1 / -1;
		text-align: left;
	}

	.hbc-foot-logo {
		justify-content: flex-start;
		font-size: 22px;
	}

	.hbc-foot-tagline {
		margin-left: 0;
		margin-right: 0;
	}

	.hbc-foot-tagline-title {
		font-size: 19px;
	}

	.hbc-foot-social {
		justify-content: flex-start;
	}

	.hbc-foot-col-links-wrap {
		text-align: left !important;
	}

	.hbc-foot-col-title {
		font-size: 16px;
		margin-bottom: 14px;
	}

	.hbc-foot-col-links {
		font-size: 13px;
		line-height: 1.95;
	}
}

/* ── 社交媒体图标 ────────────────────────────────────────────── */

.hbc-foot-social {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.hbc-foot-social-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	color: #ffffff;
	background: transparent;
	transition: all 0.25s ease;
}

.hbc-foot-social-item:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
	color: #ffffff;
}

.hbc-foot-social-item i {
	font-size: 16px;
	color: inherit;
}

.hbc-foot-social-item svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
