.footer {
	background-color: #f8f9fa;
	color: #5a5a5a;
	padding: 50px 0 0;
	border-top: 1px solid #e7e7e7;
	position: relative;
	overflow: hidden;
}

@media (min-width: 1200px) {
	.footer .container {
		max-width: 1280px;
	}
}

.footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #6c5ce7, #a29bfe);
}

.footer h5 {
	color: #343a40;
	font-weight: 500;
	margin-bottom: 25px;
	position: relative;
	font-size: 1.2rem;
	letter-spacing: 0.5px;
}

.footer h5:after {
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #6c5ce7, #a29bfe);
	position: absolute;
	left: 0;
	bottom: -12px;
	border-radius: 3px;
}

.footer ul li {
	margin-bottom: 12px;
	list-style: none;
	position: relative;
	padding-left: 15px;
}

.footer ul li:before {
	content: '•';
	color: #6c5ce7;
	position: absolute;
	left: 0;
	top: -1px;
}

.footer ul li a {
	color: #5a5a5a;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 16px;
}

.footer ul li a:hover {
	color: #6c5ce7;
	padding-left: 5px;
}

.footer .contact-info p {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	font-size: 16px;
}

.footer .contact-info i {
	margin-right: 12px;
	color: #6c5ce7;
	width: 20px;
	text-align: center;
	position: relative;
	top: 3px;
}

.footer .social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background-color: white;
	color: #5a5a5a;
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.footer .social-icons a:hover {
	background: linear-gradient(45deg, #6c5ce7, #a29bfe);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.newsletter-form .form-control {
	border-radius: 30px;
	border: 1px solid #e7e7e7;
	padding: 12px 20px;
	font-size: 16px;
	height: 48px;
	box-shadow: none;
}

.newsletter-form .btn {
	border-radius: 30px;
	padding: 12px 20px;
	background: #6c5ce7;
	border: none;
	font-weight: 500;
	transition: all 0.3s;
	color: #fff;
}

.newsletter-form .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.policy-container {
	background-color: white;
	border-radius: 8px;
	padding: 25px;
	margin-top: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border: 1px solid #e7e7e7;
}

.policy-container h6 {
	color: #343a40;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
}
.policy-container i{
    padding-right: 5px;
    font-size: 22px;
}

.policy-container p {
	font-size: 16px;
	line-height: 1.6;
	color: #5a5a5a;
	margin-bottom: 15px;
}

.policy-container a {
	color: #6c5ce7;
	text-decoration: none;
	font-weight: 500;
}

.policy-container a:hover {
	text-decoration: underline;
}

.footer-bottom {
	background-color: white;
	padding: 20px 0;
	margin-top: 40px;
	border-top: 1px solid #e7e7e7;
}

.footer-bottom .align-items-center {
	max-width: 1280px;
	margin: 0 auto
}

.payment-methods img {
	height: 26px;
	margin-left: 8px;
	transition: all 0.3s;
	filter: grayscale(100%);
	opacity: 0.7;
}

.payment-methods img:hover {
	filter: grayscale(0);
	opacity: 1;
}

.back-to-top {
	position: absolute;
	right: 30px;
	top: -20px;
	width: 40px;
	height: 40px;
	background: linear-gradient(45deg, #6c5ce7, #a29bfe);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 20px rgba(108, 92, 231, 0.3);
	transition: all 0.3s;
}

.back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

@media (max-width: 767.98px) {
	.footer .col-sm-6 {
		margin-bottom: 30px;
	}

	.footer h5 {
		margin-bottom: 20px;
	}

	.back-to-top {
		right: 15px;
		top: -15px;
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}

	.policy-container {
		padding: 20px 15px;
	}
}