footer.site-footer {
	position: relative;
	background-color: var(--black-bg);
	color: #fff;
	font-family: var(--lato);
	font-weight: 300;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		border-bottom: 5px solid white;
		border-top: 15px solid var(--dark-blue);
	}

	.footer-inner {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: flex-start;
		max-width: var(--content-width-narrow);
		margin: 0 auto;
		padding: 80px 20px 60px 20px;
		gap: 60px;
	}

	.col-1,
	.col-2,
	.col-3,
	.col-4 {
		width: 100%;
		max-width: 260px;
		min-width: 180px;
		margin: 0 10px;
	}

	h4 {
		font-size: 1.875rem;
		margin-bottom: 18px;
		color: #fff;
		letter-spacing: 1px;
		text-transform: uppercase;
		text-align: left;
	}

	ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	ul li {
		padding: 0;
		margin: 0 0 6px 0;
		line-height: 1.2;
		color: #fff;
		font-weight: 400;
		display: block;
		position: relative;
		font-weight: 300;
	}

	ul li:after {
		content: none !important; /* Remove FontAwesome icon after all lis */
	}

	a {
		color: #fff;
		font-size: 1rem;
		text-decoration: none;
		transition: color 0.2s;
	}

	a:hover {
		color: var(--orange);
	}

	/* Phone icon only before phone number */
	.footer-phone {
		display: flex;
		align-items: center;
		gap: 8px;
		margin: 0 0 30px 0;
		font-size: 0.9375rem;
	}
	.footer-phone:before {
		content: "\f095";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		font-size: 1rem;
		margin-right: 8px;
		display: inline-block;
	}

	/* Social icons row */
	.soc-med {
		display: flex;
		display: none;
		flex-direction: row;
		gap: 18px;
		align-items: center;
		margin-top: 18px;
		margin-bottom: 0;
		padding: 0;
	}
	.soc-med li {
		width: 20px;
		height: 20px;
		margin: 0;
		padding: 0;
	}
	.soc-med a {
		width: 100%;
		height: 100%;
		display: block;
		background: center/contain no-repeat;
		text-indent: -9999px;
		overflow: hidden;
	}
	.soc-med .li a {
		background-image: url(../images/li-white.svg);
	}
	.soc-med .fb a {
		background-image: url(../images/fb-white.svg);
	}
	.soc-med .ig a {
		background-image: url(../images/ig-white.svg);
	}

	/* Address and contact details */
	.footer-address {
		font-size: 1rem;
		color: #fff;
		line-height: 1.5;
		margin-top: -1px;
		margin-bottom: 25px;
	}

	/* Responsive: stack columns on mobile */
	@media (max-width: 1100px) {
		.footer-inner {
			gap: 30px;
		}
	}

	/* Responsive: stack columns on mobile */
	@media (max-width: 900px) {
		.footer-inner {
			flex-direction: column;
			align-items: flex-start;
			gap: 30px;
			padding: 40px 10px 20px 10px;
		}
		.col-1,
		.col-2,
		.col-3,
		.col-4 {
			max-width: 100%;
			min-width: 0;
		}
	}
}

/* Copyright bar */
.footer-footer {
	background: #fff;
	color: var(--black-text);
	font-size: 0.75rem;
	text-align: center;
	padding: 18px 10px 18px 10px;
	margin: 0;
	width: 100%;
	border-top: 1px solid #e5e5e5;
	font-family: var(--lato);
}

/* Add more gap between Sales and Technical Enquires in footer */
footer .col-2 ul:first-of-type {
	margin-bottom: 50px;
}
