/* =====================================================
   JB IT SOLUTIONS — FOOTER
   ===================================================== */

.jb-footer {
	position: relative;
	overflow: hidden;
	color: #ffffff;
	background: #1e2428;
}

.jb-footer,
.jb-footer * {
	box-sizing: border-box;
}

.jb-footer::before {
	content: "";
	position: absolute;
	top: -190px;
	right: -120px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(255, 140, 0, 0.13);
	border-radius: 50%;
	pointer-events: none;
}

.jb-footer__main {
	position: relative;
	z-index: 2;
	padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.jb-footer__container {
	width: min(1200px, calc(100% - 40px));
	margin-inline: auto;
}

.jb-footer__grid {
	display: grid;
	grid-template-columns:
		minmax(280px, 1.25fr)
		repeat(3, minmax(150px, 0.65fr));
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}

/* =====================================================
   MERK
   ===================================================== */

.jb-footer__brand {
	max-width: 390px;
}

.jb-footer__logo {
	display: inline-flex;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
}

.jb-footer__logo-image {
	display: block;
	width: min(100%, 225px);
	height: auto;
	object-fit: contain;
	object-position: left center;
}

/* Fallback wanneer het logo-bestand onverhoopt ontbreekt. */
.jb-footer__logo-fallback {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 850;
	line-height: 1.2;
}

.jb-footer__logo-fallback-mark {
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	border-radius: 11px;
	color: #ffffff;
	background: #ff8c00;
	font-weight: 900;
}

.jb-footer__description {
	margin: 1.3rem 0 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.9rem;
	line-height: 1.75;
}

.jb-footer__tagline {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.76rem;
	font-weight: 750;
	line-height: 1.4;
}

.jb-footer__tagline::before {
	content: "✓";
	display: grid;
	width: 1.4rem;
	height: 1.4rem;
	place-items: center;
	border-radius: 50%;
	color: #ff8c00;
	background: rgba(255, 140, 0, 0.1);
	font-weight: 900;
}

/* =====================================================
   KOLOMMEN
   ===================================================== */

.jb-footer__heading {
	margin: 0 0 1rem;
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.jb-footer__links {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jb-footer__links a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.86rem;
	line-height: 1.45;
	text-decoration: none;
	transition:
		color 180ms ease,
		transform 180ms ease;
}

.jb-footer__links a:hover,
.jb-footer__links a:focus-visible {
	color: #ff8c00;
	transform: translateX(3px);
}

.jb-footer__links a:focus-visible {
	outline: 2px solid rgba(255, 140, 0, 0.45);
	outline-offset: 3px;
}

/* =====================================================
   CONTACT
   ===================================================== */

.jb-footer__contact {
	display: grid;
	gap: 0.8rem;
}

.jb-footer__contact-item {
	display: grid;
	gap: 0.15rem;
}

.jb-footer__contact-label {
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.jb-footer__contact-value,
.jb-footer__contact-value a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.86rem;
	line-height: 1.5;
	text-decoration: none;
}

.jb-footer__contact-value a:hover {
	color: #ff8c00;
}

/* =====================================================
   ONDERBALK
   ===================================================== */

.jb-footer__bottom {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.1);
}

.jb-footer__bottom-inner {
	display: flex;
	min-height: 74px;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: min(1200px, calc(100% - 40px));
	margin-inline: auto;
}

.jb-footer__copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.75rem;
	line-height: 1.5;
}

.jb-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jb-footer__legal a {
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.73rem;
	line-height: 1.5;
	text-decoration: none;
}

.jb-footer__legal a:hover {
	color: #ff8c00;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1000px) {
	.jb-footer__grid {
		grid-template-columns:
			minmax(260px, 1.2fr)
			repeat(2, minmax(150px, 0.8fr));
	}

	.jb-footer__column:last-child {
		grid-column: 2 / -1;
	}
}

@media (max-width: 720px) {
	.jb-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jb-footer__brand {
		grid-column: 1 / -1;
		max-width: 560px;
	}

	.jb-footer__column:last-child {
		grid-column: auto;
	}

	.jb-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 1.3rem;
	}
}

@media (max-width: 480px) {
	.jb-footer__container,
	.jb-footer__bottom-inner {
		width: min(100%, calc(100% - 24px));
	}

	.jb-footer__grid {
		grid-template-columns: 1fr;
	}

	.jb-footer__brand,
	.jb-footer__column:last-child {
		grid-column: auto;
	}

	.jb-footer__legal {
		display: grid;
		gap: 0.55rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jb-footer__links a {
		transition: none;
	}

	.jb-footer__links a:hover,
	.jb-footer__links a:focus-visible {
		transform: none;
	}
}

.jb-footer__contact-note {
	display: block;
	margin-top: 0.2rem;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.72rem;
	line-height: 1.5;
}
