/* Modern Footer Styles */
#footer {
	background-color: #fff;
	border-top: 1px solid #f0f0f0;
	font-family: 'Inter', sans-serif;
}

.footer-column-heading {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1f2937;
	margin-bottom: 24px;
}

.footer-link {
	display: block;
	color: #6b7280;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	margin-bottom: 12px;
	transition: all 0.2s ease;
	padding: 0;
}

.footer-link:hover {
	color: #2398B6;
	transform: translateX(3px);
}

.social-icon-wrapper {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.social-icon {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	color: #6b7280;
	font-size: 17px;
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none !important;
}

.social-icon:hover {
	background: #2398B6;
	color: #fff;
	transform: translateY(-3px);
}

.app-store-badge {
	height: 40px;
	object-fit: contain;
	transition: transform 0.2s ease;
}

.app-store-badge:hover {
	transform: scale(1.05);
}

.legal-section {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #f3f4f6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright-text {
	font-size: 14px;
	color: #9ca3af;
}

.legal-links {
	display: flex;
	gap: 24px;
}

.legal-link {
	font-size: 14px;
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.2s;
}

.legal-link:hover {
	color: #2398B6;
}

@media (max-width: 991px) {
	#footer {
		padding: 60px 0 30px;
	}

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

@media (max-width: 575px) {
	.legal-section {
		flex-direction: column;
		text-align: center;
	}

	.legal-links {
		justify-content: center;
	}
}