/**
 * Reveal footer (Features → Tweaks → Elementor → Enable reveal footer).
 *
 * The footer is fixed to the bottom, behind the content; the content wrapper sits
 * above it (z-index) and reserves the reveal gap with the footer's live height
 * (--geeks-footer-height, set by JS). As the content scrolls up off the end, the
 * footer underneath is revealed. Give your content an opaque background in
 * Elementor so the footer stays hidden until the very bottom.
 */
.geeks-reveal-footer .elementor-location-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
}

.geeks-reveal-footer .site-main {
	position: relative;
	z-index: 1;
	margin-bottom: var(--geeks-footer-height, 0px);
}
