/* ==========================================================================
   V20 — footer.css
   Cloned from v20.nl footer. Mobile-first (2-col), 5-col at >=768px.
   ========================================================================== */

.site-footer {
	background-color: #08090b;
	border-top: 1px solid var(--v20-border);   /* divider above the footer */
	color: #9ca3af;
	padding-top: 76px;
	margin-top: 5px;
}

/* ---- Floating WhatsApp button ---- */
.wa-float {
	position: fixed;
	left: 40px;
	bottom: 40px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50%;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, .3);
	transition: background-color .3s ease, transform .3s ease;
}

.wa-float svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.wa-float:hover {
	background-color: #128c7e;
	color: #fff;
	transform: scale(1.1);
}

.wa-float.animated {
	animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
	0%   { transform: scale(1); }
	14%  { transform: scale(1.25); }
	28%  { transform: scale(1); }
	42%  { transform: scale(1.25); }
	70%  { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
	.wa-float.animated {
		animation: none;
	}
}

/* ---- Column grid ---- */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-6) var(--space-5);
}

/* Newsletter spans full width on mobile (Bootstrap col-md-3 → col-12). */
.footer-col--newsletter {
	grid-column: 1 / -1;
}

.footer-title {
	color: var(--v20-neon);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1.1rem;
	margin-bottom: 1.2rem;
	text-shadow: 0 0 10px rgba(0, 255, 136, .3);
}

/* ---- Company info column ---- */
.footer-info {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: .9rem;
	line-height: 1.7;
	color: #9ca3af;
}

.footer-info li {
	margin-bottom: .15rem;
}

.footer-info li.is-spaced {
	margin-top: .5rem;
}

.footer-info strong {
	color: #fff;
}

.footer-info a {
	color: inherit;
	text-decoration: underline;
}

/* ---- Link columns ---- */
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.footer-link {
	display: inline-block;
	color: #9ca3af;
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color var(--transition), transform var(--transition), text-shadow var(--transition);
}

.footer-link:hover {
	color: #fff;
	transform: translateX(5px);
	text-shadow: 0 0 5px rgba(255, 255, 255, .5);
}

/* ---- Newsletter ---- */
.footer-newsletter__desc {
	color: #9ca3af;
	font-size: .875rem;
	margin-bottom: var(--space-4);
}

.footer-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.footer-input {
	width: 100%;
	padding: 10px 15px;
	background-color: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
	border-radius: 8px 0 0 8px;
}

.footer-input::placeholder {
	color: rgba(255, 255, 255, .4);
}

.footer-input:focus {
	outline: 0;
	border-color: var(--v20-neon);
	box-shadow: 0 0 10px rgba(0, 255, 136, .2);
}

.footer-btn {
	width: 100%;
	padding: 10px 20px;
	background-color: var(--v20-neon);
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	border-radius: 0 8px 8px 0;
	transition: background-color var(--transition), box-shadow var(--transition);
}

.footer-btn:hover {
	background-color: #fff;
	box-shadow: 0 0 15px var(--v20-neon);
}

/* ---- Bottom bar ---- */
.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-4);
	padding: var(--space-5) 0;
	margin-top: var(--space-5);
	border-top: 1px solid rgba(108, 117, 125, .25);   /* border-secondary opacity-25 */
}

.footer-copy {
	margin: 0;
	font-size: .875rem;
	color: #9ca3af;
}

.footer-social {
	list-style: none;
	display: flex;
	align-items: center;
	gap: var(--space-4);
	margin: 0;
	padding: 0;
}

.social-link {
	display: inline-flex;
	color: #666;
	transition: color var(--transition), transform var(--transition);
}

.social-link svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.social-link:hover {
	color: var(--v20-neon);
	transform: scale(1.2);
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (min-width: 576px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 3fr 2fr 2fr 2fr 3fr;
		gap: var(--space-5);
	}

	.footer-col--newsletter {
		grid-column: auto;
	}
}
