.footer {
	position: relative;
	background: url(../images/img-bg-footer.png) no-repeat center/ cover;
	color: #ffffff;
	padding: 55px 0px 0;
	overflow: hidden;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
	z-index: 1;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #171b5c;
	z-index: -1;
	opacity: 1;
}

.footer-container {
	position: relative;
}

.footer-content {
	margin-bottom: 40px;
}
.footer-content>.row{
	gap: 20px 0;
}
.footer-section h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 1px;
	position: relative;
	color: #fff;
	text-transform: uppercase;
}
.footer-logo{
	margin-bottom: 10px;
	line-height: 0;
}
.footer-logo img{
	max-width: 180px;
}
.footer-socail{
	margin-bottom: 35px;
}
.footer-socail ul{
	display: flex;
	justify-content: center;
	gap: 15px;

}
.footer-socail ul a{
	line-height: 0;
	display: block;
}
.footer-socail ul img{
	width: 30px;
	height: 30px;
}
/* .footer-section h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
	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: 10px;
	padding-left: 15px;
	position: relative;
	transition: transform 0.2s ease;
	
}
.footer-section li:last-child{
	margin-bottom: 0;
}

.footer-section li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: white;
	transition: transform 0.3s ease;
}

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

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

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

.footer-section a:hover,
.footer-section a:focus {
	color: #4ecdc4;
	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;
}
.footer-bottom__flex{
	gap: 10px;
}
.footer-payment{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.footer-payment h2{
	font-size: 16px;
}
.footer-payment img{
	max-width: 176px;
}
.footer-payment p{
	line-height: 0;
}
.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: 15px 0;
	text-align: center;
	color: #000;
	font-size: 16px;
	background: #ede6d9;
}

.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: 40px 0 0;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-bottom: 20px;
	}



	.payment-methods {
		justify-content: center;
	}
	.footer-section h2{
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	

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

	.contact-item strong {
		min-width: auto;
	}
	.footer-bottom__flex{
		flex-direction: column-reverse;
		align-items: center;
	}
	.footer-section{
		font-size: 14px;
	}
}

/* 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: 10px;
    font-size: 15px;
}
.contact-info p:last-child{
	margin-bottom: 0;
}
/* High contrast mode support */
@media (prefers-contrast: high) {
	.footer {
		border-top: 3px solid #fff;
	}

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

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