/* ============================================================
 * Talordata Blog — footer.css
 * Replicates components/layout/AppFooter.vue.
 * ============================================================ */

.footer {
	background: #090b0f;
	position: relative;
	display: flex;
	flex-direction: column;
}
.footer .footer-box {
	padding: 80px 0 60px;
	display: flex;
	gap: 60px;
	max-width: 1391px;
}
.footer .footer-left {
	flex: none;
	width: 296px;
}
.footer .footer-logo { height: 28px; width: auto; display: block; }
.footer .contact_us {
	margin-top: 28px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
}
.footer .company-address {
	margin-top: 8px;
	color: #9ca3af;
	font-size: 12px;
	line-height: 20px;
}
.footer .company-address p { margin: 0; }

.footer .contact-icons {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.footer .contact-icon-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px; height: 20px;
}
.footer .contact-icon-item .icon-default,
.footer .contact-icon-item .icon-hover {
	width: 20px; height: 20px;
	display: block;
}
.footer .contact-icon-item .icon-hover {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.2s ease;
}
.footer .contact-icon-item:hover .icon-hover { opacity: 1; }
.footer .contact-icon-item:hover .contact-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.footer .contact-tooltip {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 14px);
	transform: translateX(-50%) translateY(8px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 10;
	pointer-events: none;
}
.footer .email-tooltip {
	white-space: nowrap;
	background: #fff;
	border-radius: 4px;
	padding: 5px 8px;
	color: #1c1d1f;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.1;
	box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.footer .qrcode-tooltip {
	background: #fff;
	border-radius: 7.692px;
	padding: 7.692px;
	box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.footer .qrcode-tooltip img { width: 74.615px; height: auto; display: block; }

.footer .footer-right {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 20px;
}
.footer .footer-col { min-width: 0; }
.footer .footer-col .title {
	margin: 0 0 20px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}
.footer .footer-col .list { display: flex; flex-direction: column; gap: 10px; }
.footer .footer-col .list a {
	color: #9ca3af;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	transition: color 0.2s ease;
}
.footer .footer-col .list a:hover { color: #fff; }

.footer .footer-bottom {
	width: 100%;
	border-top: 1px solid #1f2937;
}
.footer .footer-bottom-inner {
	max-width: 1391px;
	padding: 16px 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer .copyright {
	margin: 0;
	color: #6b7280;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
}

@media (max-width: 1200px) {
	.footer .footer-box { flex-direction: column; gap: 40px; }
	.footer .footer-left { width: 100%; }
	.footer .footer-right { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
}
@media (max-width: 700px) {
	.footer .footer-box { padding: 40px 16px; gap: 32px; }
	.footer .footer-right { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer .footer-bottom-inner { padding: 16px; }
}
