.footer {
	position: relative;
	background: url(https://bivaco.net/hanoimotorcycle2/_assets/media/77a47cf47bafab4b845aeeb7fbecc903.png);
	color: #ffffff;
	padding: 55px 0px 10px;
	overflow: hidden;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000000c7;
	z-index: 0;
}
.footer-bottom a {
    color: #fff;
}
.footer-container {
	position: relative;
}

.footer-content {
	margin-bottom: 40px;
}

.footer-section h2 {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 24px;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 12px;
	text-transform: uppercase;
}

.footer-section h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: #FFF;
	border-radius: 2px;
	transition: width 0.3s ease;
}

.footer-section:hover h2::after {
	width: 80px;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 14px;
	padding-left: 20px;
	position: relative;
	transition: transform 0.2s ease;
	font-size: 16px;
}

.footer-section li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #fff300;
	transition: transform 0.3s ease;
}

.footer-section li:hover {
	transform: translateX(5px);
}

.footer-section li:hover::before {
	transform: translateX(3px);
}

.footer-section a {
	color: #e0e0e0;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 16px;
}

.footer-section a:hover,
.footer-section a:focus {
	color: #fff300;
	outline: none;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.contact-item:hover {
	background: rgba(78, 205, 196, 0.1);
}

.contact-item strong {
	color: #4ecdc4;
	min-width: 90px;
	font-weight: 600;
}

.contact-item a {
	color: #e0e0e0;
	word-break: break-word;
}

.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.payment-icon {
	width: 50px;
	height: 32px;
	background: white;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: bold;
	color: #333;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.payment-icon:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 15px;
	text-align: center;
	color: #fff;
	font-size: 16px;
}

.footer-bottom p {
	animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.footer {
		padding: 20px 0px 16px;
	}

	.footer-content {
		margin-bottom: 10px;
	}

	.footer-section {
		margin-top: 15px;
	}

	.footer-section h2 {
		font-size: 20px;
	}

	.payment-methods {
		justify-content: center;
	}
}

@media (max-width: 480px) {


	.contact-item {
		flex-direction: column;
		gap: 4px;
	}

	.contact-item strong {
		min-width: auto;
	}
}

/* Accessibility */
a:focus-visible {
	outline: 2px solid #4ecdc4;
	outline-offset: 2px;
	border-radius: 2px;
}

/* Performance: will-change for animated elements */
.footer-section li,
.payment-icon {
	will-change: transform;
}
.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-info .hotline {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.fb-page iframe {
	width: 100% !important;
	max-width: 500px !important;
}

.fb_iframe_widget_fluid span {
	width: 100% !important;
}
/* High contrast mode support */
@media (prefers-contrast: high) {
	.footer {
		border-top: 3px solid #fff;
	}

	.footer-section a {
		text-decoration: underline;
	}

	.fb-page {
		margin-top: 15px;
	}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}