/*
 * Fabryka 99 - Main Stylesheet (2026 Standard)
 * Designed for Astra Child Theme
 */

/* ==========================================================================
   1. VARIABLES & CORE STYLES
   ========================================================================== */
:root {
	/* Brand Colors */
	--color-green: #7FC241;
	--color-green-hover: #6ea837;
	--color-green-glow: rgba(127, 194, 65, 0.4);
	
	--color-gray: #8F8F8F;
	--color-gray-dark: #292D32;
	--color-gray-light: #F5F5F5;
	
	/* Theme Gradients - lighter, warmer and brighter */
	--bg-dark-grad: radial-gradient(circle at 50% 50%, #292e38 0%, #15181c 100%);
	--it-overlay-grad: linear-gradient(135deg, rgba(32, 35, 43, 0.55) 0%, rgba(15, 17, 21, 0.65) 100%);
	--re-overlay-grad: linear-gradient(135deg, rgba(32, 40, 32, 0.55) 0%, rgba(15, 20, 15, 0.65) 100%);
	
	/* Glassmorphism Styles - brighter card backdrops */
	--glass-bg: rgba(255, 255, 255, 0.08);
	--glass-border: rgba(255, 255, 255, 0.16);
	--glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
	--glass-blur: blur(12px);
	
	/* Typography */
	--font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	
	/* 2026 Immersive variables */
	--color-orange: #f97316;
	--color-orange-glow: rgba(249, 115, 22, 0.4);
}

/* ==========================================================================
   2026 IMMERSIVE STYLES (Audio Engine, Loader & Cursor)
   ========================================================================== */

/* Audio Wave Toggle */
.f99-audio-toggle {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0 !important;
	outline: none;
	position: relative;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	margin-right: 15px;
	z-index: 999;
}

.theme-it .f99-audio-toggle:hover {
	border-color: var(--color-green) !important;
	box-shadow: 0 0 15px var(--color-green-glow);
}

.theme-re .f99-audio-toggle:hover {
	border-color: var(--color-orange) !important;
	box-shadow: 0 0 15px var(--color-orange-glow);
}

.audio-wave-visualizer {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 18px;
	width: 20px;
	justify-content: center;
}

.audio-wave-bar {
	width: 2.5px;
	background-color: #ffffff;
	border-radius: 2px;
	transition: height 0.2s ease, background-color 0.3s ease;
	animation: audioWavePlay 1.2s infinite ease-in-out alternate;
	height: 100%;
}

.theme-it .audio-wave-bar {
	background-color: var(--color-green);
}

.theme-re .audio-wave-bar {
	background-color: var(--color-orange);
}

.audio-wave-bar.bar-1 { animation-duration: 0.8s; }
.audio-wave-bar.bar-2 { animation-duration: 1.1s; }
.audio-wave-bar.bar-3 { animation-duration: 0.9s; }
.audio-wave-bar.bar-4 { animation-duration: 1.3s; }

.audio-wave-bar.muted {
	animation: none !important;
	height: 3px !important;
	background-color: rgba(255, 255, 255, 0.3) !important;
}

@keyframes audioWavePlay {
	0% { height: 4px; }
	100% { height: 18px; }
}

/* Cinematic Loader Overlay */
.f99-loader-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background-color: #08090a;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
}

/* Page transition overlay (shares same bulkhead doors) */
.f99-transition-overlay {
	position: fixed;
	inset: 0;
	z-index: 99998;
	pointer-events: none;
	overflow: hidden;
}

/* Background grid & Scanline details for cinematic loader */
.loader-bg-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(0, 255, 136, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 255, 136, 0.02) 1px, transparent 1px);
	background-size: 40px 40px;
	background-position: center center;
	opacity: 0.8;
	pointer-events: none;
	z-index: 1;
}

.loader-bg-scanlines {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		rgba(18, 16, 16, 0) 50%, 
		rgba(0, 0, 0, 0.25) 50%
	);
	background-size: 100% 4px;
	pointer-events: none;
	z-index: 2;
	opacity: 0.35;
}

.loader-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	z-index: 10;
}

/* Concentric HUD Rings */
.loader-hud-container {
	position: relative;
	width: 170px;
	height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}

.hud-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid transparent;
	pointer-events: none;
}

.hud-ring.outer-ring {
	width: 160px;
	height: 160px;
	border: 2px dashed rgba(0, 255, 136, 0.2);
	animation: rotateCW 15s linear infinite;
}

.hud-ring.middle-ring {
	width: 130px;
	height: 130px;
	border: 1px double rgba(0, 255, 136, 0.08);
	border-left-color: rgba(0, 255, 136, 0.3);
	border-right-color: rgba(0, 255, 136, 0.3);
	animation: rotateCCW 10s linear infinite;
}

.hud-ring.inner-ring {
	width: 105px;
	height: 105px;
	border: 1px dotted rgba(255, 255, 255, 0.1);
	animation: rotateCW 25s linear infinite;
}

@keyframes rotateCW {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes rotateCCW {
	from { transform: rotate(0deg); }
	to { transform: rotate(-360deg); }
}

.loader-svg {
	position: absolute;
	width: 130px;
	height: 130px;
	transform: rotate(-90deg);
	z-index: 3;
}

.loader-svg circle {
	fill: none;
	stroke-width: 4px;
}

.loader-bg-circle {
	stroke: rgba(255, 255, 255, 0.02);
}

.loader-progress-circle {
	stroke: var(--color-green);
	stroke-linecap: round;
	transition: stroke-dashoffset 0.1s ease;
	filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.5));
}

.loader-percent-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 4;
}

.loader-percent {
	font-family: var(--font-headings);
	font-size: 30px;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.05em;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.loader-status-abbr {
	font-family: var(--font-headings);
	font-size: 8px;
	letter-spacing: 0.25em;
	color: rgba(0, 255, 136, 0.7);
	font-weight: 700;
	text-transform: uppercase;
	margin-top: -2px;
}

/* Branding */
.loader-brand {
	text-align: center;
	margin-top: 5px;
}

.brand-f {
	font-family: var(--font-headings);
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.15em;
	color: #ffffff;
}

.brand-99 {
	font-family: var(--font-headings);
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.15em;
	color: var(--color-green);
	text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.brand-sub {
	font-family: var(--font-headings);
	font-size: 8px;
	letter-spacing: 0.4em;
	color: rgba(255, 255, 255, 0.25);
	text-transform: uppercase;
	margin-top: 6px;
	font-weight: 500;
}

/* Terminal Log Console */
.loader-terminal {
	width: 320px;
	height: 62px;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.03);
	border-radius: 6px;
	padding: 10px 14px;
	margin-top: 10px;
	box-sizing: border-box;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	font-family: "Courier New", Courier, monospace;
	font-size: 9px;
	color: rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.6);
}

.terminal-line {
	line-height: 1.4;
	width: 100%;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

.terminal-line.active {
	color: var(--color-green);
	text-shadow: 0 0 5px rgba(0, 255, 136, 0.35);
}

.terminal-line.history {
	color: rgba(255, 255, 255, 0.3);
}

/* Bulkhead Doors (Sliding Panels) */
.bulkhead-door {
	position: absolute;
	left: 0;
	width: 100%;
	height: 50.5%;
	background-color: #0b0d10;
	z-index: 5;
	box-sizing: border-box;
	pointer-events: none;
}

.top-door {
	top: 0;
	border-bottom: 2px solid rgba(0, 255, 136, 0.2);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.bottom-door {
	bottom: 0;
	border-top: 2px solid rgba(0, 255, 136, 0.2);
	box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
}

/* Scroll Lock during transition */
body.f99-transitioning {
	overflow: hidden !important;
	height: 100vh !important;
}

/* Page Loader hide helpers */
body.f99-loading {
	overflow: hidden !important;
	height: 100vh !important;
}

body.f99-loading > *:not(.f99-loader-overlay) {
	opacity: 0 !important;
	pointer-events: none !important;
	filter: blur(20px) !important;
}

/* Custom Scroll Progress Bar */
.f99-scroll-progress {
	position: fixed;
	top: 0;
	right: 0;
	width: 3px;
	height: 100vh;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.02);
	pointer-events: none;
}

.f99-scroll-progress-bar {
	width: 100%;
	height: 0%;
	background: var(--color-green);
	box-shadow: 0 0 10px var(--color-green-glow);
}

.theme-re .f99-scroll-progress-bar {
	background: var(--color-orange);
	box-shadow: 0 0 10px var(--color-orange-glow);
}

/* Hide standard scrollbars to achieve console/game visual quality */
::-webkit-scrollbar {
	display: none !important;
}

html, body {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

/* Glitch typography dataset locks */
.f99-nav-item, .btn-primary, .btn-secondary, .footer-glass-pill, .it-filter-btn, .re-about-tab-btn {
	will-change: text-content;
}

/* Base resets for custom template pages - Lighter backgrounds */
.f99-lander-body, .f99-subpage-body {
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	background-color: #17191d;
	color: #ffffff;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headings);
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* ==========================================================================
   2. LANDER PAGE (front-page.php)
   ========================================================================== */
.f99-lander-wrapper {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #000;
}

/* Floating Logo */
.f99-lander-logo-container {
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	z-index: 10;
	pointer-events: none;
}

.logo-glass-wrapper {
	background: rgba(13, 14, 16, 0.4);
	backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	padding: 15px 40px;
	border-radius: 50px;
	box-shadow: var(--glass-shadow);
	pointer-events: auto;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo-glass-wrapper:hover {
	transform: scale(1.03);
	border-color: rgba(255, 255, 255, 0.15);
}

.f99-lander-logo {
	height: 60px;
	width: auto;
	display: block;
}

/* Split screen layout */
.f99-lander-split {
	display: flex;
	width: 100%;
	height: 100%;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lander-panel {
	position: relative;
	flex: 1;
	height: 100%;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #fff;
	overflow: hidden;
	transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.panel-it {
	justify-content: flex-end;
}

.panel-re {
	justify-content: flex-start;
}

/* Background image & overlays */
.panel-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: saturate(1.05) brightness(0.88);
	transition: transform 0.8s ease, filter 0.8s ease;
}

.panel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: opacity 0.6s ease;
}

/* IT Panel Background & Gradient */
.panel-it .panel-background {
	background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.48)), url('../images/it_procurement_bg.png');
}
.panel-it .panel-overlay {
	background: var(--it-overlay-grad);
	opacity: 0.4;
}

/* Real Estate Panel Background & Gradient */
.panel-re .panel-background {
	background-image: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.48)), url('../images/property_technical_bg.png');
}
.panel-re .panel-overlay {
	background: var(--re-overlay-grad);
	opacity: 0.4;
}

/* Decorative Overlays (Grid and Lines) */
.tech-grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: 1;
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.6s ease;
}

.arch-lines-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 100% 100%, transparent 40%, rgba(127,194,65,0.04) 41%, transparent 42%),
	                  radial-gradient(circle at 0% 0%, transparent 60%, rgba(127,194,65,0.04) 61%, transparent 62%);
	z-index: 1;
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.6s ease;
}

/* Panel Content */
.panel-content {
	position: relative;
	z-index: 3;
	width: 440px;
	max-width: 100%;
	text-align: left;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.panel-it .panel-content {
	padding-right: 80px;
	padding-left: 20px;
}

.panel-re .panel-content {
	padding-left: 80px;
	padding-right: 20px;
}

.panel-content .tagline {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-gray);
	margin-bottom: 15px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.panel-re .panel-content .tagline {
	color: rgba(127, 194, 65, 0.8);
}

.panel-content .title {
	font-size: 48px;
	line-height: 1.1;
	margin-bottom: 20px;
	font-weight: 800;
	color: var(--color-green) !important;
	transition: transform 0.3s ease;
}

.panel-content .description {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 30px;
	transition: color 0.3s ease;
}

.panel-content .btn-cta {
	display: inline-block;
	align-self: flex-start;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: var(--glass-blur);
	transition: all 0.3s ease;
}

/* Hover Effects on Split Screen */
.f99-lander-split:hover .lander-panel {
	flex: 0.8;
}

.f99-lander-split:hover .lander-panel:hover {
	flex: 1.2;
}

.lander-panel:hover .panel-background {
	transform: scale(1.05);
	filter: saturate(1.2) brightness(1.08);
}

.lander-panel:hover .panel-overlay {
	opacity: 0.38;
}

.panel-it:hover .btn-cta {
	background: #fff;
	color: #000;
	border-color: #fff;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.panel-re:hover .btn-cta {
	background: var(--color-green);
	color: #000;
	border-color: var(--color-green);
	box-shadow: 0 0 20px var(--color-green-glow);
}

.panel-it:hover .panel-content .tagline {
	color: #fff;
}

.panel-re:hover .panel-content .tagline {
	color: var(--color-green);
}

/* Lander Footer */
.f99-lander-footer {
	position: absolute;
	bottom: 50px;
	left: 5%;
	right: 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	pointer-events: none;
}

.f99-lander-footer .footer-links {
	flex: 1 !important;
	display: flex !important;
	justify-content: flex-start !important;
	align-items: center !important;
	pointer-events: auto;
}

.f99-lander-footer .copyright {
	flex: 1 !important;
	display: block !important;
	text-align: center !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	white-space: nowrap !important;
	pointer-events: auto;
}

.f99-lander-footer .footer-audio-container {
	flex: 1 !important;
	display: flex !important;
	justify-content: flex-end !important;
	align-items: center !important;
	gap: 12px !important;
	pointer-events: auto !important;
}

body.f99-lander-body .f99-lander-footer .footer-links a.footer-contact-btn,
body.f99-lander-body .f99-lander-footer .footer-links a.footer-contact-btn:visited {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	background: rgba(255, 255, 255, 0.03) !important;
	backdrop-filter: var(--glass-blur) !important;
	-webkit-backdrop-filter: var(--glass-blur) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	padding: 10px 24px !important;
	border-radius: 30px !important;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

body.f99-lander-body .f99-lander-footer .footer-links a.footer-contact-btn:hover,
body.f99-lander-body .f99-lander-footer .footer-links a.footer-contact-btn:focus,
body.f99-lander-body .f99-lander-footer .footer-links a.footer-contact-btn:active {
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.15), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

body.f99-lander-body .f99-lander-footer .footer-links a.footer-contact-btn svg.contact-icon {
	stroke: #ffffff !important;
	opacity: 0.9 !important;
	transition: transform 0.3s ease !important;
}

body.f99-lander-body .f99-lander-footer .footer-links a.footer-contact-btn:hover svg.contact-icon {
	transform: scale(1.1) rotate(5deg) !important;
}

.copyright {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

/* Lander Responsive */
@media (max-width: 900px) {
	.panel-content .title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.f99-lander-wrapper {
		height: auto !important;
		min-height: 100vh !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.f99-lander-split {
		flex-direction: column !important;
		height: auto !important;
		flex: 1 !important;
	}
	
	.f99-lander-split:hover .lander-panel, 
	.f99-lander-split:hover .lander-panel:hover {
		flex: none !important;
	}
	
	.lander-panel {
		height: auto !important;
		min-height: 50vh !important;
		padding: 120px 20px 80px 20px !important;
		box-sizing: border-box !important;
		justify-content: center !important;
		flex: none !important;
	}

	.logo-glass-wrapper {
		padding: 10px 25px;
	}
	
	.f99-lander-logo {
		height: 45px;
	}
	
	.panel-content {
		padding: 0 5% !important;
		width: 100%;
		max-width: 100%;
		text-align: center;
		align-items: center;
	}
	
	.panel-content .btn-cta {
		align-self: center;
	}
	
	.panel-content .title {
		font-size: 32px;
		margin-bottom: 12px;
	}
	
	.panel-content .description {
		font-size: 14px;
		margin-bottom: 20px;
	}
	
	.f99-lander-footer {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		flex-direction: column !important;
		gap: 15px !important;
		padding: 40px 20px 30px 20px !important;
		text-align: center !important;
		width: 100% !important;
		box-sizing: border-box !important;
		background: #000 !important;
		pointer-events: auto !important;
	}
	
	.f99-lander-footer .footer-links,
	.f99-lander-footer .copyright,
	.f99-lander-footer .footer-audio-container {
		flex: none !important;
		justify-content: center !important;
		text-align: center !important;
	}
}

/* ==========================================================================
   3. SUBPAGES COMMON (IT & Real Estate Pages)
   ========================================================================== */
.f99-subpage-body {
	background-color: #17191d;
}

/* Custom modern header for subpages */
.f99-subpage-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: rgba(11, 12, 14, 0.7);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: background 0.3s ease, padding 0.3s ease;
}

.f99-header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.f99-subpage-header.scrolled {
	background: rgba(11, 12, 14, 0.9);
}

.subpage-logo-link {
	display: block;
}

.subpage-logo {
	height: 42px;
	width: auto;
}

/* Navigation menu */
.f99-nav-menu {
	display: flex;
	gap: 30px;
	align-items: center;
}

.f99-nav-item {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s ease, transform 0.2s ease;
	position: relative;
	padding: 5px 0;
}

.f99-nav-item:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	transition: width 0.3s ease;
}

/* IT Theme Accents */
.theme-it .f99-nav-item:hover,
.theme-it .f99-nav-item.active {
	color: var(--color-green) !important;
}
.theme-it .f99-nav-item:hover:after,
.theme-it .f99-nav-item.active:after {
	width: 100%;
	background: var(--color-green) !important;
	box-shadow: 0 0 8px var(--color-green-glow);
}

/* Real Estate Theme Accents */
.theme-re .f99-nav-item:hover,
.theme-re .f99-nav-item.active {
	color: var(--color-orange) !important;
}
.theme-re .f99-nav-item:hover:after,
.theme-re .f99-nav-item.active:after {
	width: 100%;
	background: var(--color-orange) !important;
	box-shadow: 0 0 8px var(--color-orange-glow);
}

/* Back Button */
.back-btn-header {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 8px 16px;
	border-radius: 20px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.05);
	transition: all 0.3s ease;
}

.back-btn-header:hover {
	color: #fff;
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none !important;
	border: none !important;
	color: #ffffff !important;
	cursor: pointer;
	transition: color 0.3s ease;
	outline: none !important;
	box-shadow: none !important;
	-webkit-tap-highlight-color: transparent !important;
}

.mobile-menu-toggle svg {
	pointer-events: none;
}

html body.theme-it .mobile-menu-toggle:hover,
html body.theme-it .mobile-menu-toggle:focus,
html body.theme-it .mobile-menu-toggle:active {
	color: var(--color-green) !important;
	background: none !important;
	outline: none !important;
	box-shadow: none !important;
}

html body.theme-re .mobile-menu-toggle:hover,
html body.theme-re .mobile-menu-toggle:focus,
html body.theme-re .mobile-menu-toggle:active {
	color: var(--color-orange) !important;
	background: none !important;
	outline: none !important;
	box-shadow: none !important;
}

@media (max-width: 768px) {
	.f99-nav-active-line {
		display: none !important;
	}
}

/* Mobile Menu styling */
@media (max-width: 768px) {
	.f99-header-container {
		height: 70px !important;
		padding: 0 20px !important;
	}

	.subpage-logo-link {
		flex-shrink: 0 !important;
		display: flex !important;
		align-items: center !important;
		order: 1 !important;
	}
	
	.subpage-logo {
		height: 36px !important;
		width: auto !important;
		flex-shrink: 0 !important;
	}

	.f99-lang-selector {
		order: 2 !important;
		margin-left: auto !important;
		margin-right: 12px !important;
	}

	.f99-lang-trigger {
		padding: 8px 14px !important;
		font-size: 13px !important;
		gap: 6px !important;
	}

	.f99-audio-toggle {
		flex-shrink: 0 !important;
		width: 40px !important;
		height: 40px !important;
		order: 3 !important;
		margin-left: 0 !important;
		margin-right: 12px !important;
	}

	.mobile-menu-toggle {
		display: block;
		flex-shrink: 0 !important;
		order: 4 !important;
	}
	
	.f99-nav-menu {
		display: flex !important; /* Always flex but hidden via height/opacity */
		position: absolute !important;
		top: 100% !important;
		right: 20px !important;
		left: auto !important;
		width: 280px !important; /* Compact premium dropdown width */
		max-width: calc(100vw - 40px) !important; /* Keeps it on screen on very narrow viewports */
		flex-direction: column !important;
		align-items: flex-start !important;
		background: rgba(11, 12, 14, 0.96) !important;
		backdrop-filter: blur(20px) !important;
		border: 1px solid rgba(255, 255, 255, 0.08) !important;
		border-radius: 12px !important;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
		padding: 0 16px !important;
		max-height: 0 !important;
		overflow: hidden !important;
		opacity: 0 !important;
		transform: translateY(-10px) !important;
		gap: 10px !important;
		pointer-events: none !important;
		z-index: 99999 !important;
		transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
		            opacity 0.25s ease,
		            transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
		            padding 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
	}
	
	.f99-nav-menu.open {
		max-height: 480px !important; /* High enough to accommodate all items */
		opacity: 1 !important;
		transform: translateY(10px) !important; /* 10px gap below the header for floating effect */
		padding: 16px !important;
		pointer-events: auto !important;
	}

	.f99-nav-menu .f99-nav-item {
		width: 100%;
		padding: 8px 14px;
		border-radius: 8px;
		box-sizing: border-box;
		font-size: 14px;
		display: block;
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.f99-nav-menu .f99-nav-item:after {
		display: none !important;
	}

	.theme-it .f99-nav-menu .f99-nav-item:hover,
	.theme-it .f99-nav-menu .f99-nav-item.active {
		background: rgba(127, 194, 65, 0.1) !important;
		color: var(--color-green) !important;
	}

	.theme-re .f99-nav-menu .f99-nav-item:hover,
	.theme-re .f99-nav-menu .f99-nav-item.active {
		background: rgba(249, 115, 22, 0.1) !important;
		color: var(--color-orange) !important;
	}

	.f99-nav-menu .back-btn-header {
		width: 100%;
		justify-content: center;
		margin-top: 5px;
		box-sizing: border-box;
	}
}

/* Section styling */
.f99-section {
	padding: 100px 24px;
	position: relative;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section-header .tag {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 15px;
	display: inline-block;
}

.theme-it .section-header .tag {
	color: rgba(255, 255, 255, 0.4);
}

.theme-re .section-header .tag {
	color: var(--color-orange) !important;
	text-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

.section-header .title {
	font-size: 40px;
	margin-bottom: 20px;
	color: #fff;
}

.section-header .description {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
}

/* Glass Card design */
.f99-glass-card {
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	box-shadow: var(--glass-shadow);
	padding: 30px;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.f99-glass-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255,255,255,0.15);
	box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

/* Gradients for subpages */
.gradient-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 0;
}

.theme-it .grad-1 {
	background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.theme-re .grad-1 {
	background: radial-gradient(circle at 90% 10%, rgba(127, 194, 65, 0.05) 0%, transparent 60%);
}

/* ==========================================================================
   4. IT DIVISION PAGE (page-obsluga-procesow-zakupowych.php)
   ========================================================================== */
.theme-it {
	--subpage-accent: #ffffff;
}

/* IT Hero Section */
.it-hero-section {
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: radial-gradient(circle at 50% 50%, #202328 0%, #0a0b0d 100%);
	padding-top: 100px;
	position: relative;
	overflow: hidden;
}

.it-hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.it-hero-content {
	text-align: left;
}

.it-hero-content .tag {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-gray);
	margin-bottom: 20px;
	display: inline-block;
}

.it-hero-content .title {
	font-size: 56px;
	line-height: 1.1;
	margin-bottom: 25px;
	font-weight: 800;
	color: var(--color-green) !important;
}

.it-hero-content .title span {
	background: none !important;
	-webkit-background-clip: initial !important;
	-webkit-text-fill-color: initial !important;
	color: var(--color-green) !important;
}

.it-hero-content .description {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 40px;
}

.it-hero-buttons {
	display: flex;
	gap: 20px;
}

.btn-primary {
	padding: 14px 35px;
	border-radius: 30px;
	background: #fff;
	color: #1e2022 !important; /* Very dark gray */
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
	padding: 14px 35px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}

/* IT Hero Mock Terminal Component */
.it-hero-terminal {
	background: #090a0c;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 15px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	font-family: 'Courier New', Courier, monospace;
	padding: 0;
	overflow: hidden;
}

.terminal-header {
	background: #141519;
	padding: 12px 18px;
	display: flex;
	gap: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.terminal-body {
	padding: 24px;
	font-size: 13px;
	line-height: 1.8;
	color: #8c929a;
	text-align: left;
}

.terminal-line {
	margin-bottom: 8px;
	display: flex;
	flex-wrap: wrap;
	word-break: break-word;
	overflow-wrap: break-word;
}

.terminal-prompt {
	color: #ff79c6;
	margin-right: 10px;
	user-select: none;
	flex-shrink: 0;
}

.terminal-cmd, .terminal-out, .terminal-comment {
	flex-grow: 1;
	flex-shrink: 1;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: pre-wrap;
}

.terminal-comment {
	color: #6272a4;
	font-style: italic;
}

/* Sourcing introduction cards */
.it-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 50px;
}

.it-intro-card .icon-box {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.it-intro-card .title {
	font-size: 22px;
	margin-bottom: 15px;
	color: #fff;
}

.it-intro-card .text {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
	.it-hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.it-hero-content .title {
		font-size: 40px;
	}
	.it-intro-grid {
		grid-template-columns: 1fr;
	}
}

/* Product Dashboard/Tabs Grid */
.it-product-dashboard {
	margin-top: 40px;
}

.it-dashboard-filters {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.it-filter-btn {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.7);
	padding: 10px 24px;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s ease;
}

.it-filter-btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
}

.it-filter-btn.active {
	background: #fff;
	color: #000;
	border-color: #fff;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Products Grid Layout */
.it-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	min-height: 400px;
}

.it-product-card {
	display: none; /* Controlled by JS filters */
	flex-direction: column;
	justify-content: space-between;
}

.it-product-card.show {
	display: flex;
	animation: fadeInUp 0.5s ease forwards;
}

.product-card-top {
	margin-bottom: 20px;
}

.product-category-tag {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 12px;
	display: inline-block;
}

.it-product-card .title {
	font-size: 20px;
	margin-bottom: 15px;
	color: #fff;
}

.it-product-card .description {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
}

.product-features-list {
	margin-top: 20px;
	padding: 0;
}

.product-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 10px;
}

.product-feature-item svg {
	color: var(--color-green);
}

/* Store links section */
.it-store-bar {
	margin-top: 60px;
	padding: 30px;
	background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.store-bar-text {
	text-align: left;
}

.store-bar-text h4 {
	font-size: 20px;
	margin-bottom: 6px;
	color: #fff;
}

.store-bar-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.store-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-store-primary {
	padding: 12px 28px;
	border-radius: 30px;
	background: var(--color-green);
	color: #000;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.btn-store-primary:hover {
	background: var(--color-green-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px var(--color-green-glow);
}

.btn-store-secondary {
	padding: 12px 28px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.1);
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.btn-store-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* ==========================================================================
   5. REAL ESTATE DIVISION PAGE (page-techniczna-obsluga-nieruchomosci.php)
   ========================================================================== */
.theme-re {
	--subpage-accent: var(--color-green);
	--subpage-accent-hover: var(--color-green-hover);
	--color-orange: #f97316;
	--color-orange-glow: rgba(249, 115, 22, 0.4);
}

/* RE Hero Section */
.re-hero-section {
	min-height: 85vh;
	display: flex;
	align-items: center;
	background: radial-gradient(circle at 50% 50%, #162218 0%, #080c09 100%);
	padding-top: 100px;
	position: relative;
	overflow: hidden;
}

.re-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.re-hero-content .tag {
	color: var(--color-orange) !important;
	border-color: rgba(249, 115, 22, 0.3) !important;
	background: rgba(249, 115, 22, 0.1) !important;
}

.re-hero-content .title,
.re-hero-content .title span {
	color: var(--color-green) !important;
}

/* Real Estate Page: Building Schema Scroll Feature */
.re-hero-building-schema {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.building-schema-container {
	position: relative;
	width: 100%;
	max-width: 450px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(127, 194, 65, 0.15);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.building-schema-svg {
	width: 100%;
	height: auto;
}

/* SVG interactive paths and elements */
.svg-floor {
	fill: rgba(255, 255, 255, 0.02);
	stroke: rgba(127, 194, 65, 0.3);
	stroke-width: 1.5;
	transition: all 0.4s ease;
	cursor: pointer;
}

.svg-floor:hover, .svg-floor.active {
	fill: rgba(127, 194, 65, 0.15);
	stroke: var(--color-green);
	filter: drop-shadow(0 0 8px var(--color-green-glow));
}

.svg-label {
	font-family: var(--font-headings);
	font-size: 11px;
	fill: rgba(255, 255, 255, 0.6);
	font-weight: 600;
	letter-spacing: 0.05em;
	pointer-events: none;
	transition: fill 0.3s ease;
}

.svg-floor.active + .svg-label, .svg-floor:hover + .svg-label {
	fill: #ffffff;
}

/* Details card for interactive building */
.building-interactive-details {
	margin-top: 25px;
	background: rgba(127, 194, 65, 0.05);
	border: 1px solid rgba(127, 194, 65, 0.2);
	border-radius: 12px;
	padding: 20px;
	text-align: left;
}

.theme-re .building-schema-svg .glow-dot {
	fill: var(--color-orange) !important;
}

.building-interactive-details h5 {
	font-size: 18px;
	color: #fff;
	margin-top: 0;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.building-interactive-details h5 span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-orange);
	box-shadow: 0 0 10px var(--color-orange);
}

.building-interactive-details p {
	font-size: 13.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

/* Values Grid (Profesjonalizm, Szacunek, Innowacyjność) */
.re-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.re-value-card {
	text-align: center;
}

.re-value-card .value-num {
	font-family: var(--font-headings);
	font-size: 50px;
	font-weight: 800;
	color: rgba(249, 115, 22, 0.18) !important;
	line-height: 1;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.re-value-card:hover .value-num {
	color: rgba(249, 115, 22, 0.45) !important;
	transform: scale(1.05);
	transition: all 0.3s ease;
}

.re-value-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #fff;
}

.re-value-card p {
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
}

/* Standard/Team Cards -> Upgraded to Dynamic Interactive HeroScroll */
.re-standard-section {
	position: relative;
	height: 100vh; /* Occupies exactly full window height */
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0f1216 !important;
	padding: 0 !important;
	border-radius: 0px;
	margin: 0 !important; /* Removes gap bands around the section */
	width: 100%;
	max-width: 100%;
	border: none !important; /* Removes border bands */
	box-shadow: none;
}

.heroscroll-bg-wrapper {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.heroscroll-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
	background: transparent;
}

.heroscroll-gradient-overlay {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle, rgba(15, 18, 22, 0) 75%, rgba(15, 18, 22, 0.25) 90%, rgba(15, 18, 22, 0.6) 100%); /* Brighter, less dark edges, less gray */
	z-index: 2;
	pointer-events: none;
}

.heroscroll-section-container {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 20px; /* More spacious for 100vh height */
	box-sizing: border-box;
	max-width: 1300px;
	margin: 0 auto;
	gap: 30px;
}

.heroscroll-header {
	text-align: left;
	width: 40%;
	max-width: 500px;
	margin: 0;
	position: relative;
	box-sizing: border-box;
	
	/* Glass container styles matching active slides */
	background: rgba(255, 255, 255, 0.03) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(127, 194, 65, 0.25) !important;
	border-radius: 16px;
	padding: 30px 30px; /* Taller header container */
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(127, 194, 65, 0.06);
}

/* Glass reflection overlay matching slides */
.heroscroll-header::before {
	display: none;
}

.heroscroll-header .tag,
.heroscroll-header .title,
.heroscroll-header .description {
	position: relative;
	z-index: 2;
}

.heroscroll-header .tag {
	margin-bottom: 8px;
	color: var(--color-orange) !important;
	border: none !important; /* Removes border completely */
	background: transparent !important; /* Transparent background */
	box-shadow: none !important;
	padding: 0 !important;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	display: inline-block;
}

.heroscroll-header .title {
	font-size: 32px; /* Slightly larger on desktop now */
	margin: 0 0 10px 0;
	line-height: 1.25;
	background: linear-gradient(135deg, #a3e635 0%, #7fc241 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(127, 194, 65, 0.1);
}

.heroscroll-header .description {
	font-size: 14px;
	max-width: 100%;
	margin: 0;
	color: rgba(163, 230, 53, 0.75) !important; /* Soft green */
	line-height: 1.5;
}

.heroscroll-right-pane {
	width: 40%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	z-index: 5;
}

.heroscroll-slides-wrapper {
	position: relative;
	width: 100% !important;
	align-self: stretch;
	height: 200px; /* Taller to fit slide details nicely and prevent overflow */
	display: block !important; /* Changed from display: flex to prevent flex collapse of absolute children */
	margin: 0;
}

.heroscroll-slide {
	position: absolute;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	opacity: 0;
	pointer-events: none;
	transform: translateX(100px) scale(0.96); /* Inactive slides sit at the right */
	filter: blur(8px);
	transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
	            transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
	            filter 0.6s ease;

	/* Highly translucent glass container like Bento cards */
	background: rgba(255, 255, 255, 0.015) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.05) !important;
	border-radius: 16px;
	padding: 16px 24px;
	box-sizing: border-box;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.heroscroll-slide.active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0) scale(1); /* Slide into center */
	filter: blur(0);
	background: rgba(255, 255, 255, 0.03) !important; /* Slightly more visible active background */
	border-color: rgba(127, 194, 65, 0.25) !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(127, 194, 65, 0.06);
}

.slide-meta {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 100px;
	will-change: transform;
}

.slide-num {
	font-size: 40px; /* Slightly more compact */
	font-weight: 800;
	color: rgba(249, 115, 22, 0.25) !important;
	line-height: 1;
	font-family: var(--font-header);
	transition: color 0.4s ease, text-shadow 0.4s ease;
}

.heroscroll-slide.active .slide-num {
	color: var(--color-orange) !important;
	text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.slide-icon {
	width: 44px; /* Matches Bento card icon size */
	height: 44px;
	border-radius: 12px;
	background: rgba(127, 194, 65, 0.1);
	border: 1px solid rgba(127, 194, 65, 0.2);
	color: #7FC241;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 15px rgba(127, 194, 65, 0.1);
}

.slide-info {
	position: relative;
	z-index: 2;
	flex: 1;
	max-width: 600px;
	text-align: left;
	will-change: transform, filter;
}

.slide-title {
	font-size: 24px; /* More compact */
	font-weight: 700;
	color: #a3e635 !important;
	margin: 0 0 8px 0;
	letter-spacing: -0.5px;
}

.slide-desc {
	font-size: 14.5px; /* More compact */
	line-height: 1.6;
	color: rgba(200, 240, 150, 0.85) !important;
	margin: 0;
}

.heroscroll-nav-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	width: 100%;
	max-width: 320px;
}

.heroscroll-nav-line {
	width: 100%;
	height: 2px;
	background: rgba(127, 194, 65, 0.15) !important;
	position: relative;
	border-radius: 2px;
}

.heroscroll-nav-progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: #7FC241;
	box-shadow: 0 0 10px rgba(127, 194, 65, 0.4);
	transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.heroscroll-nav-dots {
	display: flex;
	gap: 18px;
}

.heroscroll-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(127, 194, 65, 0.25) !important; /* Translucent green inactive dots */
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	border: 1px solid transparent;
}

.heroscroll-dot:hover {
	background: rgba(127, 194, 65, 0.6) !important;
}

.heroscroll-dot.active {
	background: var(--color-orange) !important; /* Minimal orange accent: orange active dot */
	transform: scale(1.25);
	box-shadow: 0 0 12px var(--color-orange-glow) !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 1024px) {
	.heroscroll-bg-wrapper {
		display: none !important;
	}
}

/* Responsive styles for HeroScroll */
@media (max-width: 1200px) {
	.re-standard-section {
		height: auto;
		min-height: 550px;
		width: 100%;
		margin: 40px 0 80px 0;
		border-radius: 0;
	}
	
	.heroscroll-section-container {
		flex-direction: column !important;
		justify-content: flex-start !important;
		gap: 20px !important;
		padding: 30px 20px !important;
	}
	
	.heroscroll-header {
		width: 100% !important;
		max-width: 850px !important;
		text-align: center !important;
		margin: 0 auto 10px auto !important;
	}
	
	.heroscroll-header .title {
		font-size: 28px;
	}
	
	.heroscroll-header .description {
		font-size: 14px;
		margin: 0 auto;
		max-width: 100% !important;
	}
	
	.heroscroll-right-pane {
		width: 100% !important;
		max-width: 850px !important;
		margin: 0 auto !important;
		gap: 15px !important;
	}
	
	.heroscroll-slides-wrapper {
		height: auto;
		min-height: 160px;
		margin: 20px 0;
		width: 100% !important;
		align-self: stretch !important;
		display: block !important;
	}
	
	.heroscroll-slide {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		transform: translateY(20px) scale(0.96) !important; /* Fade up on mobile/tablet instead of sliding from right */
		flex-direction: row !important;
		text-align: left !important;
		padding: 16px 24px !important;
		gap: 24px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}
	
	.heroscroll-slide.active {
		transform: translateY(0) scale(1) !important;
	}
	
	.slide-meta {
		flex-direction: column !important;
		gap: 10px !important;
		min-width: 100px !important;
	}
	
	.slide-num {
		font-size: 40px !important;
	}
	
	.slide-icon {
		width: 44px !important;
		height: 44px !important;
	}
	
	.slide-icon svg {
		width: 24px !important;
		height: 24px !important;
	}
	
	.slide-info {
		text-align: left !important;
	}
	
	.slide-title {
		font-size: 24px !important;
		margin-bottom: 8px !important;
	}
	
	.slide-desc {
		font-size: 14.5px !important;
		line-height: 1.6 !important;
	}
}

@media (max-width: 576px) {
	.heroscroll-slides-wrapper {
		min-height: 260px !important;
	}
	
	.heroscroll-slide {
		flex-direction: column !important;
		text-align: center !important;
		padding: 15px 20px !important;
		gap: 15px !important;
	}
	
	.slide-meta {
		flex-direction: row !important;
		gap: 15px !important;
		min-width: auto !important;
	}
	
	.slide-num {
		font-size: 32px !important;
		text-shadow: 0 0 10px rgba(249, 115, 22, 0.3) !important;
	}
	
	.slide-icon {
		width: 38px !important;
		height: 38px !important;
	}
	
	.slide-icon svg {
		width: 18px !important;
		height: 18px !important;
	}
	
	.slide-info {
		text-align: center !important;
	}
	
	.slide-title {
		font-size: 22px !important;
		margin-bottom: 8px !important;
	}
	
	.slide-desc {
		font-size: 14px !important;
		line-height: 1.5 !important;
	}
}

/* Facility Management Rules List */
.re-rules-section {
	background: radial-gradient(circle at 10% 30%, rgba(127,194,65,0.02) 0%, transparent 60%);
}

.re-rules-columns {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 50px;
	align-items: center;
}

.re-rules-list {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.re-rule-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	text-align: left;
	padding: 15px 20px;
	background: rgba(255,255,255,0.01);
	border-radius: 12px;
	border-left: 3px solid var(--color-green);
	transition: all 0.3s ease;
}

.theme-re .re-rule-item:nth-child(even) {
	border-left: 3px solid var(--color-orange);
}

.re-rule-item:hover {
	background: rgba(127,194,65,0.04);
	transform: translateX(5px);
}

.theme-re .re-rule-item:nth-child(even):hover {
	background: rgba(249, 115, 22, 0.04);
}

.re-rule-item svg {
	color: var(--color-green);
	flex-shrink: 0;
	margin-top: 2px;
}

.theme-re .re-rule-item:nth-child(even) svg {
	color: var(--color-orange);
}

.re-rule-item span {
	font-size: 14.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
}

.re-rules-illustration {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.06);
	box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.re-rules-illustration img {
	width: 100%;
	height: auto;
	display: block;
	filter: saturate(0.8) contrast(1.1);
}

/* Implementation Timeline Section */
.re-timeline {
	position: relative;
	margin-top: 50px;
	padding: 40px 0;
}

/* Horizontal process timeline line */
.re-timeline:before {
	content: '';
	position: absolute;
	top: 50px;
	left: 10%;
	right: 10%;
	height: 4px;
	background: rgba(255, 255, 255, 0.05);
	z-index: 1;
}

.re-timeline-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	position: relative;
	z-index: 2;
}

.timeline-phase {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.timeline-header-node {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #0b0c0e;
	border: 4px solid rgba(255,255,255,0.1);
	margin-bottom: 25px;
	position: relative;
	z-index: 3;
	transition: all 0.3s ease;
}

.theme-re .timeline-phase.phase-1:hover .timeline-header-node {
	border-color: #a3e635;
	box-shadow: 0 0 15px rgba(163, 230, 53, 0.6);
}

.theme-re .timeline-phase.phase-2:hover .timeline-header-node {
	border-color: var(--color-orange);
	box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

.theme-re .timeline-phase.phase-3:hover .timeline-header-node {
	border-color: #7fc241;
	box-shadow: 0 0 15px rgba(127, 194, 65, 0.6);
}

.timeline-phase h4 {
	font-size: 20px;
	color: #fff;
	margin-top: 0;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.theme-re .timeline-phase.phase-1 h4 { color: #a3e635 !important; }
.theme-re .timeline-phase.phase-2 h4 { color: var(--color-orange) !important; }
.theme-re .timeline-phase.phase-3 h4 { color: #7fc241 !important; }

.timeline-steps-box {
	width: 100%;
	padding: 20px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	backdrop-filter: var(--glass-blur);
	box-shadow: var(--glass-shadow);
	transition: border-color 0.3s ease;
}

.theme-re .timeline-phase.phase-1:hover .timeline-steps-box {
	border-color: rgba(163, 230, 53, 0.3) !important;
}

.theme-re .timeline-phase.phase-2:hover .timeline-steps-box {
	border-color: rgba(249, 115, 22, 0.3) !important;
}

.theme-re .timeline-phase.phase-3:hover .timeline-steps-box {
	border-color: rgba(127, 194, 65, 0.3) !important;
}

.timeline-step-bullet {
	font-size: 13.5px;
	line-height: 1.6;
	color: rgba(255,255,255,0.7);
	padding: 8px 0;
	border-bottom: 1px solid rgba(255,255,255,0.04);
	text-align: left;
}

.timeline-step-bullet:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.timeline-step-bullet strong {
	color: #fff;
}

@media (max-width: 900px) {
	.re-hero-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.re-rules-columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.re-values-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.re-timeline:before {
		display: none; /* Hide timeline line on mobile stack */
	}
	
	.re-timeline-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.timeline-header-node {
		margin-bottom: 10px;
	}
}

/* ==========================================================================
   6. ABOUT US & MISSION (Shared Sections)
   ========================================================================== */
.re-about-tabs-container {
	margin-top: 30px;
}

.re-about-tab-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.re-about-tab-btn {
	background: rgba(255,255,255,0.02) !important;
	border: 1px solid rgba(255,255,255,0.06);
	color: rgba(255, 255, 255, 0.6);
	padding: 12px 28px;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.re-about-tab-btn:not(.active):hover {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.2) !important;
}

.theme-it .re-about-tab-buttons .re-about-tab-btn.active,
.theme-it .re-about-tab-buttons .re-about-tab-btn.active:focus,
.theme-it .re-about-tab-buttons .re-about-tab-btn.active:active,
.theme-re .re-about-tab-buttons .re-about-tab-btn.active,
.theme-re .re-about-tab-buttons .re-about-tab-btn.active:focus,
.theme-re .re-about-tab-buttons .re-about-tab-btn.active:active,
.re-about-tab-btn.active,
.re-about-tab-btn.active:focus,
.re-about-tab-btn.active:active {
	background: var(--color-green) !important;
	color: #ffffff !important;
	border-color: var(--color-green) !important;
	box-shadow: 0 4px 15px var(--color-green-glow) !important;
}

.theme-it .re-about-tab-buttons .re-about-tab-btn[data-tab="tab-ludzie"].active,
.theme-it .re-about-tab-buttons .re-about-tab-btn[data-tab="tab-ludzie"].active:focus,
.theme-it .re-about-tab-buttons .re-about-tab-btn[data-tab="tab-ludzie"].active:active {
	background: var(--color-green) !important;
	border-color: var(--color-green) !important;
	box-shadow: 0 4px 15px var(--color-green-glow) !important;
	color: #ffffff !important;
}

.theme-re .re-about-tab-buttons .re-about-tab-btn[data-tab="tab-ludzie"].active,
.theme-re .re-about-tab-buttons .re-about-tab-btn[data-tab="tab-ludzie"].active:focus,
.theme-re .re-about-tab-buttons .re-about-tab-btn[data-tab="tab-ludzie"].active:active,
.re-about-tab-btn[data-tab="tab-ludzie"].active,
.re-about-tab-btn[data-tab="tab-ludzie"].active:focus,
.re-about-tab-btn[data-tab="tab-ludzie"].active:active {
	background: var(--color-orange) !important;
	border-color: var(--color-orange) !important;
	box-shadow: 0 4px 15px var(--color-orange-glow) !important;
	color: #ffffff !important;
}


/* About Tabs Content */
.re-about-tab-content {
	display: none;
	animation: fadeIn 0.5s ease forwards;
}

.re-about-tab-content.active {
	display: block;
}

.about-tab-card {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
	padding: 40px;
}

.about-tab-text {
	text-align: left;
}

.about-tab-text h3 {
	font-size: 26px;
	margin-bottom: 20px;
	color: #fff;
}

.about-tab-text p {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}

.about-tab-text p:last-child {
	margin-bottom: 0;
}

.about-tab-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-brand-logo {
	max-width: 85%;
	height: auto;
	opacity: 0.95;
	filter: drop-shadow(0 4px 15px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
	.about-tab-card {
		grid-template-columns: 1fr;
		padding: 24px;
		gap: 30px;
	}
	.about-brand-logo {
		max-width: 60%;
	}
}

/* ==========================================================================
   7. CLIENT REFERENCES (Carousel / Grid)
   ========================================================================== */
.references-slider-container {
	margin-top: 45px;
	overflow: hidden;
	position: relative;
	padding: 10px 0;
}

/* Fade gradients on edges */
.references-slider-container:before,
.references-slider-container:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 10%;
	z-index: 2;
	pointer-events: none;
}

.references-slider-container:before,
.references-slider-container:after {
	display: none !important;
}

.references-logo-grid {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.ref-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	width: 160px;
	background: rgba(255, 255, 255, 0.01);
	border: 1px solid rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	padding: 15px;
	transition: all 0.3s ease;
}

.ref-logo-item img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	filter: none; /* Colorful by default */
	opacity: 0.9;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.ref-logo-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.16);
	transform: translateY(-3px);
}

.ref-logo-item:hover img {
	transform: scale(1.35) !important;
	opacity: 1;
}

.theme-re .ref-logo-item:hover {
	box-shadow: 0 0 15px var(--color-green-glow);
}

/* ==========================================================================
   8. CONTACT FORM (Glassmorphic Forms)
   ========================================================================== */
.contact-section {
	background: radial-gradient(circle at 50% 90%, rgba(255,255,255,0.02) 0%, transparent 70%);
}

.theme-re .contact-section {
	background: radial-gradient(circle at 50% 90%, rgba(127,194,65,0.03) 0%, transparent 70%);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: flex-start;
}

.contact-info-panel {
	text-align: left;
}

.contact-info-panel h3 {
	font-size: 32px;
	margin-bottom: 25px;
	color: #fff;
}

.contact-info-panel p {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255,255,255,0.6);
	margin-bottom: 40px;
}

.contact-details-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

.contact-detail-card {
	display: flex;
	align-items: center;
	gap: 20px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	padding: 18px 24px;
}

.contact-detail-card .icon-box {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.theme-it .contact-detail-card .icon-box {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.theme-re .contact-detail-card .icon-box {
	background: rgba(127, 194, 65, 0.1);
	color: var(--color-green);
}

.contact-detail-card .label {
	font-size: 12px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 3px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.contact-detail-card .value {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

/* Glassmorphic Contact Form Layout */
.contact-form-wrapper {
	position: relative;
}

.contact-form-glass {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	box-shadow: var(--glass-shadow);
	padding: 40px;
}

/* Override Forminator/wp-form inputs for standard 2026 feel */
.f99-form-group {
	position: relative;
	margin-bottom: 24px;
	text-align: left;
}

.f99-form-input,
.f99-custom-contact-form input[type="text"],
.f99-custom-contact-form input[type="email"],
.f99-custom-contact-form input[type="tel"],
.f99-custom-contact-form textarea {
	width: 100% !important;
	padding: 16px 20px !important;
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 12px !important;
	color: #ffffff !important;
	font-family: var(--font-body) !important;
	font-size: 14.5px !important;
	box-sizing: border-box !important;
	transition: all 0.3s ease !important;
}

.f99-form-input:focus,
.f99-custom-contact-form input[type="text"]:focus,
.f99-custom-contact-form input[type="email"]:focus,
.f99-custom-contact-form input[type="tel"]:focus,
.f99-custom-contact-form textarea:focus {
	background: rgba(255, 255, 255, 0.06) !important;
	outline: none !important;
}

.theme-it .f99-form-input:focus,
.theme-it .f99-custom-contact-form input[type="text"]:focus,
.theme-it .f99-custom-contact-form input[type="email"]:focus,
.theme-it .f99-custom-contact-form input[type="tel"]:focus,
.theme-it .f99-custom-contact-form textarea:focus {
	border-color: var(--color-green) !important;
	box-shadow: 0 0 10px var(--color-green-glow) !important;
}

.theme-re .f99-form-input:focus,
.theme-re .f99-custom-contact-form input[type="text"]:focus,
.theme-re .f99-custom-contact-form input[type="email"]:focus,
.theme-re .f99-custom-contact-form input[type="tel"]:focus,
.theme-re .f99-custom-contact-form textarea:focus {
	border-color: var(--color-orange) !important;
	box-shadow: 0 0 10px var(--color-orange-glow) !important;
}

.f99-form-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 8px;
}

.btn-form-submit,
.f99-custom-contact-form .btn-form-submit {
	width: 100% !important;
	padding: 16px !important;
	border-radius: 12px !important;
	border: none !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	display: block !important;
}

.theme-it .btn-form-submit,
.theme-it .f99-custom-contact-form .btn-form-submit {
	background: var(--color-green) !important;
	color: #000000 !important;
	box-shadow: 0 4px 15px var(--color-green-glow) !important;
}

.theme-it .btn-form-submit:hover,
.theme-it .f99-custom-contact-form .btn-form-submit:hover {
	background: var(--color-green-hover) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px var(--color-green-glow) !important;
}

.theme-re .btn-form-submit,
.theme-re .f99-custom-contact-form .btn-form-submit {
	background: var(--color-orange) !important;
	color: #000000 !important;
	box-shadow: 0 4px 15px var(--color-orange-glow) !important;
}

.theme-re .btn-form-submit:hover,
.theme-re .f99-custom-contact-form .btn-form-submit:hover {
	background: #e25e03 !important; /* Slightly darker orange for hover */
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px var(--color-orange-glow) !important;
}

/* Custom Slide-to-Unlock CAPTCHA */
.f99-captcha-container {
	position: relative;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 24px;
}

.f99-captcha-track {
	position: relative;
	height: 50px;
	background: rgba(255, 255, 255, 0.02) !important;
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	user-select: none;
}

.f99-captcha-handle {
	position: absolute;
	left: 4px;
	top: 4px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	cursor: grab;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.f99-captcha-handle:active {
	cursor: grabbing;
	background: rgba(255, 255, 255, 0.15);
}

.f99-captcha-text {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.4);
	pointer-events: none;
	user-select: none;
	z-index: 1;
	transition: all 0.3s ease;
}

/* Verified styles - IT Page (Green theme) */
.theme-it .f99-captcha-container.verified .f99-captcha-track,
.it-hero-section ~ * .f99-captcha-container.verified .f99-captcha-track {
	border-color: var(--color-green) !important;
	box-shadow: 0 0 15px var(--color-green-glow) !important;
	background: rgba(127, 194, 65, 0.05) !important;
}

.theme-it .f99-captcha-container.verified .f99-captcha-handle,
.it-hero-section ~ * .f99-captcha-container.verified .f99-captcha-handle {
	background: var(--color-green) !important;
	border-color: var(--color-green) !important;
	color: #000000 !important;
	cursor: default !important;
	box-shadow: 0 0 8px var(--color-green-glow);
}

.theme-it .f99-captcha-container.verified .f99-captcha-text,
.it-hero-section ~ * .f99-captcha-container.verified .f99-captcha-text {
	color: var(--color-green) !important;
	font-weight: 700;
	text-shadow: 0 0 8px var(--color-green-glow);
}

/* Verified styles - RE Page (Orange theme) */
.theme-re .f99-captcha-container.verified .f99-captcha-track,
.re-hero-section ~ * .f99-captcha-container.verified .f99-captcha-track,
.re-standard-section ~ * .f99-captcha-container.verified .f99-captcha-track {
	border-color: var(--color-orange) !important;
	box-shadow: 0 0 15px var(--color-orange-glow) !important;
	background: rgba(249, 115, 22, 0.05) !important;
}

.theme-re .f99-captcha-container.verified .f99-captcha-handle,
.re-hero-section ~ * .f99-captcha-container.verified .f99-captcha-handle,
.re-standard-section ~ * .f99-captcha-container.verified .f99-captcha-handle {
	background: var(--color-orange) !important;
	border-color: var(--color-orange) !important;
	color: #000000 !important;
	cursor: default !important;
	box-shadow: 0 0 8px var(--color-orange-glow);
}

.theme-re .f99-captcha-container.verified .f99-captcha-text,
.re-hero-section ~ * .f99-captcha-container.verified .f99-captcha-text,
.re-standard-section ~ * .f99-captcha-container.verified .f99-captcha-text {
	color: var(--color-orange) !important;
	font-weight: 700;
	text-shadow: 0 0 8px var(--color-orange-glow);
}

/* Locked / Disabled Submit Button */
.btn-form-submit:disabled,
.f99-custom-contact-form .btn-form-submit:disabled {
	opacity: 0.35 !important;
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	color: rgba(255, 255, 255, 0.25) !important;
	box-shadow: none !important;
	transform: none !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}

@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.contact-form-glass {
		padding: 24px;
	}
}

/* ==========================================================================
   9. SUBPAGES FOOTERS
   ========================================================================== */
.f99-cinematic-footer-wrapper {
	position: relative;
	height: 100vh;
	width: 100%;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	z-index: 4;
}

.f99-cinematic-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #030304;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 1;
	padding-top: 140px;
	padding-bottom: 40px;
	font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* Ambient lights and grids */
.f99-cinematic-footer .footer-aurora {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80vw;
	height: 60vh;
	transform: translate(-50%, -50%);
	background: radial-gradient(
		circle, 
		rgba(127, 194, 65, 0.12) 0%, 
		rgba(249, 115, 22, 0.08) 40%, 
		transparent 75%
	);
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
	animation: footerBreathe 8s ease-in-out infinite alternate;
}

/* Adaptive color for IT page */
.theme-it .f99-cinematic-footer .footer-aurora {
	background: radial-gradient(
		circle, 
		rgba(99, 102, 241, 0.12) 0%, 
		rgba(244, 63, 94, 0.08) 40%, 
		transparent 75%
	);
}

.f99-cinematic-footer .footer-bg-grid {
	position: absolute;
	inset: 0;
	background-size: 60px 60px;
	background-image: 
		linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
	pointer-events: none;
	z-index: 0;
}

/* Giant background text */
.f99-cinematic-footer .footer-giant-bg-text {
	position: absolute;
	bottom: -4vh;
	left: 50%;
	transform: translate(-50%, 0);
	font-size: 24vw;
	line-height: 0.75;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
	-webkit-background-clip: text;
	background-clip: text;
	white-space: nowrap;
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

/* Diagonal Marquee */
.f99-cinematic-footer .footer-marquee-container {
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	overflow: hidden;
	border-y: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(3, 3, 4, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 15px 0;
	z-index: 10;
	transform: rotate(-1.5deg) scale(1.05);
	box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.f99-cinematic-footer .footer-marquee-inner {
	display: flex;
	width: max-content;
	animation: footerMarquee 35s linear infinite;
}

.f99-cinematic-footer .footer-marquee-item {
	display: flex;
	align-items: center;
	gap: 40px;
	padding-right: 40px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
}

.f99-cinematic-footer .footer-marquee-item .accent-dot {
	color: var(--subpage-accent, var(--color-green));
}

/* Center Content */
.f99-cinematic-footer .footer-center-content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 0 24px;
	margin-top: 140px;
	margin-bottom: 20px;
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.f99-cinematic-footer .footer-main-heading {
	font-size: 4.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	margin-bottom: 40px;
	text-align: center;
	background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

@media (max-width: 768px) {
	.f99-cinematic-footer .footer-main-heading {
		font-size: 2.8rem;
		margin-bottom: 30px;
	}
}

.f99-cinematic-footer .footer-pills-layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	width: 100%;
}

.f99-cinematic-footer .footer-primary-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.f99-cinematic-footer .footer-secondary-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	width: 100%;
}

/* Glass Pill Buttons */
.f99-cinematic-footer .footer-glass-pill {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	box-shadow: 
		0 10px 30px -10px rgba(0,0,0,0.5), 
		inset 0 1px 1px rgba(255, 255, 255, 0.08), 
		inset 0 -1px 2px rgba(0,0,0,0.8);
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: 30px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}

.f99-cinematic-footer .footer-primary-buttons .footer-glass-pill {
	padding: 16px 36px;
	font-size: 15px;
	color: #ffffff;
}

.f99-cinematic-footer .footer-secondary-links .footer-glass-pill {
	padding: 10px 24px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

.f99-cinematic-footer .footer-glass-pill:hover {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 
		0 20px 40px -10px rgba(0,0,0,0.7), 
		inset 0 1px 1px rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

.f99-cinematic-footer .footer-primary-buttons .footer-glass-pill:hover {
	border-color: var(--subpage-accent, var(--color-green));
	box-shadow: 
		0 15px 30px -5px var(--subpage-accent-glow, var(--color-green-glow)), 
		inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Bottom bar */
.f99-cinematic-footer .footer-bottom-bar {
	position: relative;
	z-index: 20;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.f99-cinematic-footer .footer-bottom-bar {
		flex-direction: column;
		padding: 0 20px;
		gap: 15px;
	}
}

.f99-cinematic-footer .footer-copy {
	color: rgba(255, 255, 255, 0.3);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.f99-cinematic-footer .footer-love-badge {
	padding: 8px 20px;
	font-size: 11px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 6px;
}

.f99-cinematic-footer .footer-love-badge .pulse-heart {
	color: #ff3366;
	display: inline-block;
	animation: footerHeartbeat 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.f99-cinematic-footer .footer-back-to-top {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	padding: 0;
}

.f99-cinematic-footer .footer-back-to-top:hover svg {
	transform: translateY(-3px);
}

.f99-cinematic-footer .footer-back-to-top svg {
	transition: transform 0.3s ease;
}

/* Animations */
@keyframes footerBreathe {
	0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
	100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes footerMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes footerHeartbeat {
	0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255, 51, 102, 0.3)); }
	15%, 45% { transform: scale(1.2); filter: drop-shadow(0 0 6px rgba(255, 51, 102, 0.6)); }
	30% { transform: scale(1); }
}

/* Responsive Mobile overrides for Cinematic Footer (prevent cut-off) */
@media (max-width: 768px) {
	.f99-cinematic-footer-wrapper {
		height: auto !important;
		clip-path: none !important;
	}
	.f99-cinematic-footer {
		position: relative !important;
		height: auto !important;
		min-height: 100vh;
		padding-top: 180px;
		padding-bottom: 40px;
		z-index: 4 !important;
	}
	.f99-cinematic-footer .footer-giant-bg-text {
		font-size: 20vw;
		bottom: 10vh;
	}
	.f99-cinematic-footer .footer-marquee-container {
		top: 80px;
	}
}

/* ==========================================================================
   10. ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ==========================================================================
   11. FORMINATOR FORM OVERRIDES (Glassmorphism UI)
   ========================================================================== */
.forminator-custom-form {
	font-family: var(--font-body) !important;
	color: #fff !important;
	text-align: left !important;
}

.forminator-label {
	font-family: var(--font-body) !important;
	font-size: 12px !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
	letter-spacing: 0.05em !important;
	color: rgba(255, 255, 255, 0.5) !important;
	margin-bottom: 8px !important;
}

.forminator-input, .forminator-textarea {
	width: 100% !important;
	padding: 16px 20px !important;
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 12px !important;
	color: #fff !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	transition: all 0.3s ease !important;
	box-shadow: none !important;
}

.forminator-input:focus, .forminator-textarea:focus {
	background: rgba(255, 255, 255, 0.06) !important;
	outline: none !important;
	box-shadow: none !important;
}

/* IT Page Focus States */
.theme-it .forminator-input:focus, .theme-it .forminator-textarea:focus {
	border-color: #fff !important;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.1) !important;
}

/* Property Page Focus States */
.theme-re .forminator-input:focus, .theme-re .forminator-textarea:focus {
	border-color: var(--color-green) !important;
	box-shadow: 0 0 10px var(--color-green-glow) !important;
}

/* Submit Button overrides */
.forminator-button-submit {
	width: 100% !important;
	padding: 16px !important;
	border-radius: 12px !important;
	border: none !important;
	font-family: var(--font-body) !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
}

.theme-it .forminator-button-submit {
	background: #fff !important;
	color: #000 !important;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
}

.theme-it .forminator-button-submit:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25) !important;
}

.theme-re .forminator-button-submit {
	background: var(--color-green) !important;
	color: #000 !important;
	box-shadow: 0 4px 15px var(--color-green-glow) !important;
}

.theme-re .forminator-button-submit:hover {
	background: var(--color-green-hover) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px var(--color-green-glow) !important;
}

/* Forminator success messages */
.forminator-response-message.forminator-show {
	background: rgba(127, 194, 65, 0.1) !important;
	border: 1px solid var(--color-green) !important;
	border-radius: 12px !important;
	color: #fff !important;
	font-weight: 600 !important;
	padding: 15px !important;
	text-align: center !important;
	font-family: var(--font-body) !important;
}

/* Disable generic Forminator card wrapper styles */
.forminator-ui.forminator-custom-form {
	box-shadow: none !important;
	border: none !important;
	background: transparent !important;
	padding: 0 !important;
}

/* ==========================================================================
   9. CUSTOM BACKGROUND IMAGES & PARALLAX OVERLAYS
   ========================================================================== */
.it-oferta-section {
	position: relative;
	background: radial-gradient(circle at 50% 90%, rgba(255,255,255,0.02) 0%, transparent 70%) !important;
	overflow: hidden;
	z-index: 2;
}

.it-oferta-section .section-container {
	position: relative;
	z-index: 5;
}

/* shadcn/21st.dev Geometric Background (React component port) */
.geometric-bg-wrapper {
	position: absolute;
	inset: 0;
	background: #030303;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
}

.geometric-ambient-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
	            radial-gradient(circle at 80% 80%, rgba(244, 63, 94, 0.1) 0%, transparent 50%);
	filter: blur(80px);
	pointer-events: none;
	z-index: 2;
}

.geometric-fade-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #030303 0%, transparent 40%, rgba(3, 3, 3, 0.8) 100%);
	pointer-events: none;
	z-index: 4;
}

@keyframes elegantShapeEnter {
	0% {
		opacity: 0;
		transform: translateY(-150px) rotate(var(--rotate-start));
	}
	100% {
		opacity: 1;
		transform: translateY(0) rotate(var(--rotate-end));
	}
}

@keyframes elegantShapeFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(15px);
	}
}

.elegant-shape-container {
	position: absolute;
	opacity: 0;
	animation: elegantShapeEnter 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) forwards;
	z-index: 3;
	pointer-events: none;
}

.elegant-shape-inner {
	position: relative;
	border-radius: 9999px;
	border: 2px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
	animation: elegantShapeFloat 12s ease-in-out infinite;
	box-sizing: border-box;
}

.elegant-shape-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	background: linear-gradient(90deg, var(--gradient-from) 0%, transparent 100%);
	z-index: 1;
}

.elegant-shape-inner::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
	z-index: 2;
	pointer-events: none;
}

.elegant-shape-container.shape-1 {
	--rotate-start: -3deg;
	--rotate-end: 12deg;
	animation-delay: 0.3s;
	left: -5%;
	top: 15%;
}

.elegant-shape-container.shape-1 .elegant-shape-inner {
	width: 600px;
	height: 140px;
	--gradient-from: rgba(99, 102, 241, 0.15);
	animation-delay: 0.3s;
}

.elegant-shape-container.shape-2 {
	--rotate-start: -30deg;
	--rotate-end: -15deg;
	animation-delay: 0.5s;
	right: -5%;
	top: 65%;
}

.elegant-shape-container.shape-2 .elegant-shape-inner {
	width: 500px;
	height: 120px;
	--gradient-from: rgba(244, 63, 94, 0.15);
	animation-delay: 0.5s;
}

.elegant-shape-container.shape-3 {
	--rotate-start: -23deg;
	--rotate-end: -8deg;
	animation-delay: 0.4s;
	left: 5%;
	bottom: 5%;
}

.elegant-shape-container.shape-3 .elegant-shape-inner {
	width: 300px;
	height: 80px;
	--gradient-from: rgba(139, 92, 246, 0.15);
	animation-delay: 0.4s;
}

.elegant-shape-container.shape-4 {
	--rotate-start: 5deg;
	--rotate-end: 20deg;
	animation-delay: 0.6s;
	right: 15%;
	top: 10%;
}

.elegant-shape-container.shape-4 .elegant-shape-inner {
	width: 200px;
	height: 60px;
	--gradient-from: rgba(245, 158, 11, 0.15);
	animation-delay: 0.6s;
}

.elegant-shape-container.shape-5 {
	--rotate-start: -40deg;
	--rotate-end: -25deg;
	animation-delay: 0.7s;
	left: 20%;
	top: 5%;
}

.elegant-shape-container.shape-5 .elegant-shape-inner {
	width: 150px;
	height: 40px;
	--gradient-from: rgba(6, 182, 212, 0.15);
	animation-delay: 0.7s;
}

@media (max-width: 768px) {
	.elegant-shape-container.shape-1 .elegant-shape-inner {
		width: 300px;
		height: 70px;
	}
	.elegant-shape-container.shape-2 .elegant-shape-inner {
		width: 250px;
		height: 60px;
	}
	.elegant-shape-container.shape-3 .elegant-shape-inner {
		width: 150px;
		height: 40px;
	}
}

.re-rules-section {
	position: relative;
	background-color: #17191d;
	overflow: hidden;
	z-index: 2;
}

/* Aceternity Background Boxes Grid Styles */
.background-boxes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: grid;
	pointer-events: none; /* Let pointer events fall through so JS math can track it or CSS links work */
	z-index: 1;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-box-item {
	width: 100%;
	height: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	transition: background-color 1.2s ease, border-color 1.2s ease, box-shadow 1.2s ease !important;
	box-sizing: border-box;
}

.bg-box-item:hover,
.bg-box-item.active-hover {
	background-color: rgba(127, 194, 65, 0.16) !important;
	border-color: rgba(127, 194, 65, 0.4) !important;
	transition: background-color 0s, border-color 0s, box-shadow 0s !important;
	box-shadow: 0 0 12px rgba(127, 194, 65, 0.25) !important;
}

/* Bento Grid Layout (Standard 2026) */
.f99-bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 50px;
	position: relative;
	z-index: 3;
}

.bento-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 30px;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	overflow: hidden;
	will-change: transform, border-color, background-color, box-shadow;
}

/* Glass gradient reflection for bento card */
.bento-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
	pointer-events: none;
	transition: opacity 0.4s;
}

.bento-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(127, 194, 65, 0.3);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(127, 194, 65, 0.04);
}

.theme-re .bento-card.accent-orange:hover {
	border-color: rgba(249, 115, 22, 0.45) !important;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(249, 115, 22, 0.08) !important;
}

.bento-badge {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #7FC241;
	background: rgba(127, 194, 65, 0.1);
	border: 1px solid rgba(127, 194, 65, 0.2);
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.theme-re .bento-card.accent-orange .bento-badge {
	color: var(--color-orange) !important;
	background: rgba(249, 115, 22, 0.1) !important;
	border-color: rgba(249, 115, 22, 0.2) !important;
}

.bento-card:hover .bento-badge {
	background: rgba(127, 194, 65, 0.18);
	border-color: rgba(127, 194, 65, 0.3);
}

.theme-re .bento-card.accent-orange:hover .bento-badge {
	background: rgba(249, 115, 22, 0.18) !important;
	border-color: rgba(249, 115, 22, 0.3) !important;
}

.bento-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	color: #7FC241;
	margin-bottom: 20px;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.theme-re .bento-card.accent-orange .bento-icon {
	color: var(--color-orange) !important;
}

.bento-card:hover .bento-icon {
	background: #7FC241;
	color: #17191d;
	transform: scale(1.08) rotate(2deg);
}

.theme-re .bento-card.accent-orange:hover .bento-icon {
	background: var(--color-orange) !important;
	color: #17191d !important;
	transform: scale(1.08) rotate(2deg);
}

.bento-title {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff !important;
	margin: 0 0 10px 0;
	letter-spacing: -0.3px;
}

.bento-text {
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

/* Bento card grid spans */
.card-span-1 {
	grid-column: span 1;
}

.card-span-2 {
	grid-column: span 2;
}

.card-span-3 {
	grid-column: span 3;
}

/* Mobile responsive bento grid */
@media (max-width: 991px) {
	.f99-bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.card-span-3 {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.f99-bento-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.card-span-1, .card-span-2, .card-span-3 {
		grid-column: span 1;
	}
	.bento-card {
		padding: 24px;
	}
}

@media (max-width: 768px) {
	.it-oferta-section, 
	.it-onas-section, 
	.re-onas-section, 
	.re-values-section, 
	.re-rules-section {
		background-attachment: scroll !important;
	}
}

/* ==========================================================================
   10. ANIMATED BACKGROUND EFFECTS (21st.dev)
   ========================================================================== */

/* A. Aurora Background (Floating blurred blobs) */
.aurora-bg-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
	filter: blur(80px);
	mix-blend-mode: screen;
}

/* Subpage About sections Aurora */
.it-onas-section {
	position: relative;
	background: radial-gradient(circle at 50% 90%, rgba(255,255,255,0.02) 0%, transparent 70%) !important;
	z-index: 2;
	overflow: hidden;
}

.re-onas-section {
	position: relative;
	background: radial-gradient(circle at 50% 90%, rgba(127,194,65,0.03) 0%, transparent 70%) !important;
	z-index: 2;
	overflow: hidden;
}

.it-onas-section .aurora-bg-container,
.re-onas-section .aurora-bg-container {
	opacity: 0.55; /* Increased for better brightness */
	filter: blur(80px);
}

/* Landing page panel Aurora hove-in */
.lander-panel .aurora-bg-container {
	opacity: 0;
	filter: blur(60px);
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.lander-panel:hover .aurora-bg-container {
	opacity: 0.65;
}

.aurora-blob {
	position: absolute;
	border-radius: 50%;
	mix-blend-mode: screen;
	animation: floatAurora 22s ease-in-out infinite alternate;
}

/* IT Page Blobs: white, soft silver-gray, soft purple (NO BLUE) */
.blob-it-1 {
	top: -15%;
	left: 10%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
	animation-duration: 20s;
}

.blob-it-2 {
	bottom: -15%;
	right: 15%;
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
	animation-duration: 26s;
	animation-delay: -5s;
}

.blob-it-3 {
	top: 35%;
	left: 45%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(160, 100, 255, 0.15) 0%, transparent 70%);
	animation-duration: 22s;
	animation-delay: -10s;
}

/* Real Estate Blobs: clean light green (#7FC241) and bright glow */
.blob-re-1 {
	top: -10%;
	left: 15%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(127, 194, 65, 0.26) 0%, transparent 70%);
	animation-duration: 24s;
}

.blob-re-2 {
	bottom: -10%;
	right: 10%;
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(127, 194, 65, 0.18) 0%, transparent 70%);
	animation-duration: 28s;
	animation-delay: -7s;
}

.blob-re-3 {
	top: 40%;
	left: 35%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
	animation-duration: 18s;
	animation-delay: -12s;
}

@keyframes floatAurora {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(60px, 50px, 0) scale(1.15);
	}
	100% {
		transform: translate3d(-30px, -40px, 0) scale(0.95);
	}
}

/* B. Retro Grid (3D perspective grid scroll for IT Hero) */
.retro-grid-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
	perspective: 250px;
	opacity: 0.16;
}

.retro-grid-floor {
	position: absolute;
	top: -50%;
	left: -50%;
	right: -50%;
	bottom: -50%;
	width: 200%;
	height: 200%;
	background-image: 
		linear-gradient(to right, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
	background-size: 50px 50px;
	transform: rotateX(68deg);
	transform-origin: center center;
	animation: gridScroll 15s linear infinite;
}

@keyframes gridScroll {
	0% {
		transform: rotateX(68deg) translateY(0);
	}
	100% {
		transform: rotateX(68deg) translateY(50px);
	}
}

/* C. Interactive Dot Grid & Spotlight (Real Estate Hero) */
.interactive-dot-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.dot-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(127, 194, 65, 0.12) 1.5px, transparent 1.5px);
	background-size: 34px 34px;
	opacity: 0.8;
}

.dot-grid-spotlight {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 40%), rgba(127, 194, 65, 0.1), transparent 80%);
	transition: background 0.1s ease;
}

/* Ensure subpage sections maintain content separation and high z-index */
.section-container {
	position: relative;
	z-index: 3;
}

/* ==========================================================================
   11. TEXT & PAGE ALIGNMENT POLISHING (Standard 2026)
   ========================================================================= */

/* Hero Text Adjustments */
.it-hero-content, .re-hero-content {
	text-align: left;
}

/* Align buttons nicely */
.it-hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

/* Form block adjustments */
.contact-grid {
	align-items: stretch;
}

/* Center elements on smaller screens */
@media (max-width: 768px) {
	.panel-content {
		padding: 0 8% !important;
		width: 100% !important;
		max-width: 100% !important;
		text-align: center !important;
		align-items: center !important;
	}
	.lander-panel {
		justify-content: center !important;
	}
	.panel-content .btn-cta {
		align-self: center !important;
	}
	.it-hero-content, .re-hero-content {
		text-align: center;
	}
	.it-hero-buttons {
		justify-content: center;
	}
	.contact-info-panel {
		text-align: center;
	}
	.contact-details-list {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.contact-detail-card {
		width: 100%;
		max-width: 400px;
		justify-content: center;
	}
	.it-store-bar {
		flex-direction: column;
		text-align: center;
		padding: 24px;
	}
	.store-bar-text {
		text-align: center;
	}
	.store-buttons {
		justify-content: center;
	}
	.about-tab-text {
		text-align: center;
	}
}

/* ==========================================================================
   12. LIGHTER SECTION BACKGROUNDS & GLOBAL RESET FOR BLUE LINKS/TEXTS
   ========================================================================= */
.it-products-section, 
.it-references-section, 
.re-references-section {
	background-color: #1f2229;
}

.re-values-section {
	position: relative;
	background: radial-gradient(circle at 50% 90%, rgba(127,194,65,0.03) 0%, transparent 70%) !important;
	z-index: 2;
	overflow: hidden;
}

.it-hero-terminal {
	background: #14161a !important;
}

/* Strict reset to prevent default blue links from leaking from parent theme */
a, a:hover, a:focus, a:active,
.entry-title a, .entry-content a,
.site-title a, .widget a {
	color: inherit;
	text-decoration: none;
}

.theme-it a {
	color: #ffffff;
}

.theme-it a:hover {
	color: var(--color-gray-light);
}

.theme-re a {
	color: var(--color-green);
}

.theme-re a:hover {
	color: var(--color-green-hover);
}

/* Ensure no blue text or accent color exists */
.theme-it .terminal-cmd {
	color: #f1fa8c; /* Yellow */
}
.theme-it .terminal-out {
	color: #50fa7b; /* Light Green */
}
.theme-it .terminal-comment {
	color: #8fa0b5; /* Light gray-slate instead of Dracula slate-blue */
}

/* B. Retro Grid (3D perspective grid scroll for IT Hero) */
.retro-grid-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
	perspective: 250px;
	opacity: 0.16;
}

.retro-grid-floor {
	position: absolute;
	top: -50%;
	left: -50%;
	right: -50%;
	bottom: -50%;
	width: 200%;
	height: 200%;
	background-image: 
		linear-gradient(to right, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
	background-size: 50px 50px;
	transform: rotateX(68deg);
	transform-origin: center center;
	animation: gridScroll 15s linear infinite;
}

@keyframes gridScroll {
	0% {
		transform: rotateX(68deg) translateY(0);
	}
	100% {
		transform: rotateX(68deg) translateY(50px);
	}
}

/* C. Interactive Dot Grid & Spotlight (Real Estate Hero) */
.interactive-dot-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.dot-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(127, 194, 65, 0.12) 1.5px, transparent 1.5px);
	background-size: 34px 34px;
	opacity: 0.8;
}

.dot-grid-spotlight {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 40%), rgba(127, 194, 65, 0.1), transparent 80%);
	transition: background 0.1s ease;
}

/* Ensure subpage sections maintain content separation and high z-index */
.section-container {
	position: relative;
	z-index: 3;
}

/* ==========================================================================
   11. TEXT & PAGE ALIGNMENT POLISHING (Standard 2026)
   ========================================================================= */

/* Hero Text Adjustments */
.it-hero-content, .re-hero-content {
	text-align: left;
}

/* Align buttons nicely */
.it-hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

/* Form block adjustments */
.contact-grid {
	align-items: stretch;
}

/* Center elements on smaller screens */
@media (max-width: 768px) {
	.it-hero-content, .re-hero-content {
		text-align: center;
	}
	.it-hero-buttons {
		justify-content: center;
	}
	.contact-info-panel {
		text-align: center;
	}
	.contact-details-list {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.contact-detail-card {
		width: 100%;
		max-width: 400px;
		justify-content: center;
	}
	.it-store-bar {
		flex-direction: column;
		text-align: center;
		padding: 24px;
	}
	.store-bar-text {
		text-align: center;
	}
	.store-buttons {
		justify-content: center;
	}
	.about-tab-text {
		text-align: center;
	}
}

/* ==========================================================================
   13. ADDITIONAL CUSTOM GREEN & ORANGE ACCENTS (REAL ESTATE subpage)
   ========================================================================= */

/* Alternating Aceternity hover cells: 3rd hover cells glow orange */
.theme-re .bg-box-item:nth-child(3n).active-hover {
	background-color: rgba(249, 115, 22, 0.16) !important;
	border-color: rgba(249, 115, 22, 0.4) !important;
	box-shadow: 0 0 12px rgba(249, 115, 22, 0.25) !important;
	transition: background-color 0s, border-color 0s, box-shadow 0s !important;
}

/* Contact detail card orange accent */
.theme-re .contact-detail-card.accent-orange .icon-box {
	background: rgba(249, 115, 22, 0.1) !important;
	color: var(--color-orange) !important;
}

/* ==========================================================================
   14. 2026 WEBGL BACKGROUNDS & SMOOTH SCROLL OVERRIDES
   ========================================================================== */



.f99-bg-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	pointer-events: none;
	display: block;
	background-color: #0c0d10;
}

html.lenis {
	height: auto;
}

.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis-stopped {
	overflow: hidden;
}

.lenis-scrolling iframe {
	pointer-events: none;
}

/* Glassmorphic Cookie Banner */
.f99-cookie-banner {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(120px);
	width: calc(100% - 60px);
	max-width: 760px;
	background: rgba(11, 13, 16, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 20px 24px;
	z-index: 99990;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
	opacity: 0;
	pointer-events: none;
}

.f99-cookie-banner.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.cookie-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cookie-content {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex: 1;
}

.cookie-icon {
	background: rgba(0, 255, 136, 0.05);
	border: 1px solid rgba(0, 255, 136, 0.15);
	border-radius: 10px;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.05);
}

.cookie-text h4 {
	font-family: var(--font-headings);
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 4px 0;
	letter-spacing: 0.05em;
}

.cookie-text p {
	font-family: var(--font-body);
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

.cookie-text a {
	color: var(--color-green);
	text-decoration: none;
	border-bottom: 1px dashed rgba(0, 255, 136, 0.4);
	transition: all 0.3s ease;
}

.cookie-text a:hover {
	color: #ffffff;
	border-bottom-color: #ffffff;
}

.cookie-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-btn {
	font-family: var(--font-headings);
	font-size: 13px;
	font-weight: 700;
	padding: 10px 24px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
	letter-spacing: 0.05em;
}

.cookie-btn.btn-reject {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.8);
}

.cookie-btn.btn-reject:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

.cookie-btn.btn-accept {
	background: var(--color-green);
	border: 1px solid var(--color-green);
	color: #0b0d10;
	box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.cookie-btn.btn-accept:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #0b0d10;
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* Theme RE (Real Estate / Property) color overrides */
.theme-re .cookie-icon svg {
	stroke: var(--color-orange);
}

.theme-re .cookie-icon {
	background: rgba(255, 127, 0, 0.05);
	border-color: rgba(255, 127, 0, 0.15);
	box-shadow: 0 0 10px rgba(255, 127, 0, 0.05);
}

.theme-re .cookie-text a {
	color: var(--color-orange);
	border-bottom-color: rgba(255, 127, 0, 0.4);
}

.theme-re .cookie-btn.btn-accept {
	background: var(--color-orange);
	border-color: var(--color-orange);
	box-shadow: 0 4px 15px rgba(255, 127, 0, 0.2);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
	.f99-cookie-banner {
		bottom: 15px;
		width: calc(100% - 30px);
		padding: 16px;
	}
	.cookie-container {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	.cookie-actions {
		justify-content: flex-end;
	}
	.cookie-btn {
		flex: 1;
		text-align: center;
		padding: 12px 16px;
	}
}

/* Custom Form Spinner & Counter Styles */
.form-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: f99-spin 0.8s linear infinite;
	margin-right: 8px;
	vertical-align: middle;
}

@keyframes f99-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
	.re-standard-section {
		height: auto !important;
		min-height: auto !important;
		padding: 60px 20px !important;
		margin: 20px 0 !important;
	}
}

/* Mobile Optimizations for HeroScroll and Buttons */
@media (max-width: 1024px) {
	.heroscroll-nav-container {
		display: none !important;
	}

	.heroscroll-slides-wrapper {
		display: flex !important;
		flex-direction: column !important;
		gap: 20px !important;
		height: auto !important;
		min-height: auto !important;
		margin: 20px 0 !important;
		width: 100% !important;
		align-self: stretch !important;
	}

	.heroscroll-slide {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		width: 100% !important;
		height: auto !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: flex-start !important;
		padding: 24px 30px !important;
		gap: 30px !important;
		margin: 0 !important;
		border-radius: 16px !important;
		background: rgba(255, 255, 255, 0.02) !important;
		border: 1px solid rgba(255, 255, 255, 0.05) !important;
		backdrop-filter: blur(12px) !important;
		-webkit-backdrop-filter: blur(12px) !important;
	}

	.heroscroll-slide .slide-num {
		color: var(--color-orange) !important;
		text-shadow: 0 0 10px rgba(249, 115, 22, 0.3) !important;
	}

	.heroscroll-slide .slide-icon {
		color: var(--color-orange) !important;
	}
}

@media (max-width: 576px) {
	/* Stacking Hero / Header buttons vertically on mobile to prevent overlapping */
	.it-hero-buttons {
		flex-direction: column !important;
		align-items: stretch !important;
		width: 100% !important;
		gap: 12px !important;
	}
	.it-hero-buttons .btn-primary,
	.it-hero-buttons .btn-secondary {
		text-align: center !important;
		width: 100% !important;
		box-sizing: border-box !important;
		padding: 12px 24px !important;
		margin: 0 !important;
	}

	/* Stacking About/CSR tab buttons vertically on mobile */
	.re-about-tab-buttons {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 10px !important;
		width: 100% !important;
	}
	.re-about-tab-btn {
		width: 100% !important;
		text-align: center !important;
		padding: 10px 20px !important;
		margin: 0 !important;
	}

	/* Scaling and spacing dashboard filters on mobile */
	.it-dashboard-filters {
		gap: 8px !important;
		margin-bottom: 30px !important;
		width: 100% !important;
	}
	.it-filter-btn {
		padding: 8px 16px !important;
		font-size: 12.5px !important;
		margin-bottom: 2px !important;
	}

	/* HeroScroll mobile slide card layout */
	.heroscroll-slide {
		flex-direction: column !important;
		text-align: center !important;
		align-items: center !important;
		padding: 20px 16px !important;
		gap: 15px !important;
	}

	.slide-meta {
		flex-direction: row !important;
		gap: 15px !important;
		min-width: auto !important;
		justify-content: center !important;
		align-items: center !important;
	}

	.slide-num {
		font-size: 32px !important;
	}

	.slide-info {
		text-align: center !important;
	}

	.slide-title {
		font-size: 20px !important;
		margin-bottom: 8px !important;
	}

	.slide-desc {
		font-size: 13.5px !important;
		line-height: 1.5 !important;
	}
}

/* Elegant Welcome Intro Overlay */
.f99-welcome-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.welcome-door {
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
	background: rgba(10, 11, 14, 0.65) !important;
	backdrop-filter: blur(25px) !important;
	-webkit-backdrop-filter: blur(25px) !important;
	transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
	will-change: transform;
}

.welcome-door-top {
	top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.welcome-door-bottom {
	bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.welcome-content {
	position: relative;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 30px;
	margin-top: -30px !important; /* Center the overall container visual baseline */
	gap: 40px !important; /* Visual gap between logo and button wrappers */
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: opacity, transform;
}

.welcome-logo-wrapper {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0 !important;
	filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
	animation: welcomeLogoPulse 3s infinite ease-in-out;
}

.welcome-btn-wrapper {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.welcome-logo {
	height: 90px !important;
	width: auto !important;
	display: block !important;
}

.welcome-title {
	font-family: var(--font-headings) !important;
	font-size: 38px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	margin: 0 0 12px 0 !important;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important;
}

.welcome-subtitle {
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	color: rgba(255, 255, 255, 0.55) !important;
	max-width: 450px !important;
	margin: 0 0 45px 0 !important;
	line-height: 1.6 !important;
	letter-spacing: 0.06em !important;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
}

.welcome-enter-btn {
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
	padding: 16px 42px !important;
	border-radius: 35px !important;
	font-family: var(--font-body) !important;
	font-size: 14.5px !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 12px !important;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
	backdrop-filter: var(--glass-blur) !important;
	-webkit-backdrop-filter: var(--glass-blur) !important;
}

.welcome-enter-btn:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
	transform: translateY(-3px) !important;
	box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.welcome-enter-btn svg.enter-icon {
	stroke: #ffffff !important;
	transition: transform 0.4s ease !important;
	animation: welcomeArrowBounce 2s infinite ease-in-out;
}

.welcome-enter-btn:hover svg.enter-icon {
	transform: translateY(2px) !important;
}

@keyframes welcomeLogoPulse {
	0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1)); }
	50% { transform: scale(1.02); filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.25)); }
}

@keyframes welcomeArrowBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(4px); }
}

/* Welcome overlay exit states */
.f99-welcome-overlay.closing .welcome-content {
	opacity: 0;
	transform: scale(0.96);
	pointer-events: none;
}

.f99-welcome-overlay.closing .welcome-door-top {
	transform: translateY(-100%);
}

.f99-welcome-overlay.closing .welcome-door-bottom {
	transform: translateY(100%);
}

/* ScrollSpy Navigation Active Link Sliding Accent */
.f99-nav-menu {
	position: relative;
}

.f99-nav-active-line {
	position: absolute;
	bottom: -4px; /* Align with bottom of link padding */
	height: 2px;
	left: 0;
	width: 0;
	transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
	pointer-events: none;
	z-index: 10;
	border-radius: 2px;
}

.theme-it .f99-nav-active-line {
	background: var(--color-green) !important;
	box-shadow: 0 0 10px var(--color-green-glow) !important;
}

.theme-re .f99-nav-active-line {
	background: var(--color-orange) !important;
	box-shadow: 0 0 10px var(--color-orange-glow) !important;
}

/* Disable the default static hover/active after underlines */
.theme-it .f99-nav-item:hover:after,
.theme-it .f99-nav-item.active:after,
.theme-re .f99-nav-item:hover:after,
.theme-re .f99-nav-item.active:after {
	display: none !important;
}

/* Lander Page Audio Toggle Button */
.f99-lander-audio-toggle {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: #ffffff !important;
	padding: 10px 24px !important;
	border-radius: 30px !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
	outline: none !important;
	pointer-events: auto !important;
}

.f99-lander-audio-toggle:hover {
	border-color: var(--color-green) !important;
	box-shadow: 0 0 15px var(--color-green-glow), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
	transform: translateY(-2px) !important;
}

.f99-lander-audio-toggle .audio-wave-bar {
	background-color: var(--color-green) !important;
}

.f99-lander-audio-toggle .audio-wave-bar.muted {
	background-color: rgba(255, 255, 255, 0.3) !important;
}

.f99-lander-audio-toggle .toggle-text {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #ffffff;
}

.footer-audio-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media (max-width: 900px) {
	.footer-audio-container {
		justify-content: center !important;
		width: 100% !important;
	}
}

/* ==========================================================================
   IT Sourcing Page HeroScroll (Green Accent) & Real Estate HeroScroll Colors
   ========================================================================== */

/* IT Sourcing Section Layout */
.it-products-section {
	position: relative;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0b0c0e !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100%;
	max-width: 100%;
	border: none !important;
}

@media (max-width: 1200px) {
	.it-products-section {
		height: auto;
		min-height: 550px;
		width: 100%;
		margin: 40px 0 80px 0;
	}
}

/* IT Theme Specific overrides for Sourcing HeroScroll */
.it-products-section .slide-num {
	color: rgba(127, 194, 65, 0.25) !important;
}

.it-products-section .heroscroll-slide.active .slide-num {
	color: var(--color-green) !important;
	text-shadow: 0 0 15px rgba(127, 194, 65, 0.4);
}

.it-products-section .heroscroll-dot.active {
	background: var(--color-green) !important;
	box-shadow: 0 0 12px var(--color-green-glow) !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
}

.it-products-section .heroscroll-header .tag {
	color: var(--color-green) !important;
}

.it-products-section .heroscroll-header {
	border: 1px solid rgba(127, 194, 65, 0.25) !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(127, 194, 65, 0.06);
}

.it-products-section .heroscroll-slide.active {
	border-color: rgba(127, 194, 65, 0.25) !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(127, 194, 65, 0.06);
}

/* Real Estate Theme Specific overrides for Property HeroScroll */
.re-standard-section .slide-num {
	color: rgba(249, 115, 22, 0.25) !important;
}

.re-standard-section .heroscroll-slide.active .slide-num {
	color: var(--color-orange) !important;
	text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.re-standard-section .heroscroll-dot.active {
	background: var(--color-orange) !important;
	box-shadow: 0 0 12px var(--color-orange-glow) !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
}

.re-standard-section .heroscroll-header .tag {
	color: var(--color-orange) !important;
}

.re-standard-section .heroscroll-header {
	border: 1px solid rgba(249, 115, 22, 0.25) !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(249, 115, 22, 0.06);
}

.re-standard-section .heroscroll-slide.active {
	border-color: rgba(249, 115, 22, 0.25) !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(249, 115, 22, 0.06);
}

.re-standard-section .slide-icon {
	background: rgba(249, 115, 22, 0.1) !important;
	border: 1px solid rgba(249, 115, 22, 0.2) !important;
	color: var(--color-orange) !important;
	box-shadow: 0 0 15px rgba(249, 115, 22, 0.1) !important;
}

.re-standard-section .heroscroll-nav-line {
	background: rgba(249, 115, 22, 0.15) !important;
}

.re-standard-section .heroscroll-nav-progress {
	background: var(--color-orange) !important;
	box-shadow: 0 0 10px rgba(249, 115, 22, 0.4) !important;
}

.re-standard-section .heroscroll-dot {
	background: rgba(249, 115, 22, 0.25) !important;
}

.re-standard-section .heroscroll-dot:hover {
	background: rgba(249, 115, 22, 0.6) !important;
}

.re-standard-section .slide-title {
	color: var(--color-orange) !important;
}

.re-standard-section .slide-desc {
	color: rgba(254, 215, 170, 0.85) !important;
}

/* Custom layout for store bar inside HeroScroll */
.it-products-section .heroscroll-store-bar {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1300px;
	margin: 0;
	z-index: 10;
	background: rgba(11, 12, 14, 0.45);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(127, 194, 65, 0.15);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(127, 194, 65, 0.03);
	box-sizing: border-box;
}

@media (max-width: 1200px) {
	.it-products-section .heroscroll-store-bar {
		position: relative;
		bottom: auto;
		left: auto;
		transform: none;
		width: 100%;
		max-width: 100%;
		margin: 40px auto 0 auto;
		background: rgba(255, 255, 255, 0.02);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border: 1px solid rgba(255, 255, 255, 0.06);
	}
}

/* ==========================================================================
   2026 IMMERSIVE LANGUAGE SELECTOR STYLES
   ========================================================================== */

/* Waving Flag Animation */
@keyframes flag-wave {
	0% { transform: rotate(0deg) translateY(0); }
	25% { transform: rotate(4deg) translateY(-1px) scaleX(1.05); }
	50% { transform: rotate(0deg) translateY(0); }
	75% { transform: rotate(-4deg) translateY(1px) scaleX(0.95); }
	100% { transform: rotate(0deg) translateY(0); }
}

.waving-flag {
	display: inline-block;
	animation: flag-wave 3.5s infinite ease-in-out;
	transform-origin: bottom left;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.f99-lang-selector {
	position: relative;
	display: inline-block;
	z-index: 1001;
	margin-right: 15px;
}

/* Subpage trigger button style */
.f99-lang-trigger {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #ffffff !important;
	border-radius: 30px !important;
	padding: 10px 20px !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
	outline: none !important;
}

.f99-lang-trigger:hover {
	background: rgba(255, 255, 255, 0.08) !important;
}

.theme-it .f99-lang-trigger:hover {
	border-color: var(--color-green) !important;
	box-shadow: 0 0 15px var(--color-green-glow), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.theme-re .f99-lang-trigger:hover {
	border-color: var(--color-orange) !important;
	box-shadow: 0 0 15px var(--color-orange-glow), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Lander trigger button style */
.f99-lander-lang-trigger {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: #ffffff !important;
	padding: 10px 24px !important;
	border-radius: 30px !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
	outline: none !important;
}

.f99-lander-lang-trigger:hover {
	border-color: var(--color-green) !important;
	box-shadow: 0 0 15px var(--color-green-glow), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
	transform: translateY(-2px) !important;
}

.f99-lang-selector .chevron {
	width: 14px;
	height: 14px;
	opacity: 0.7;
	transition: transform 0.3s ease;
}

.f99-lang-selector.open .chevron {
	transform: rotate(180deg);
}

/* Dropdown Menu styling */
.f99-lang-dropdown {
	position: absolute;
	bottom: calc(100% + 10px);
	right: 0;
	width: 200px;
	background: rgba(18, 18, 18, 0.85) !important;
	backdrop-filter: blur(20px) !webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 16px !important;
	padding: 8px !important;
	display: flex;
	flex-direction: column;
	gap: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.2);
	pointer-events: none;
}

/* Dropdown position override for subpage header */
.f99-subpage-header .f99-lang-dropdown {
	bottom: auto;
	top: calc(100% + 10px);
	right: 0;
	transform: translateY(-10px);
}

.f99-lang-selector.open .f99-lang-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* Language option style */
.f99-lang-option {
	background: transparent !important;
	border: none !important;
	color: rgba(255, 255, 255, 0.7) !important;
	padding: 10px 14px !important;
	border-radius: 10px !important;
	font-family: var(--font-body) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	transition: all 0.2s ease !important;
	width: 100% !important;
	text-align: left !important;
}

.f99-lang-option:hover {
	background: rgba(255, 255, 255, 0.06) !important;
	color: #ffffff !important;
}

.f99-lang-option.selected {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #ffffff !important;
	font-weight: 600 !important;
}

.theme-it .f99-lang-option.selected {
	color: var(--color-green) !important;
}

.theme-re .f99-lang-option.selected {
	color: var(--color-orange) !important;
}

.f99-lang-option .check-mark {
	width: 14px;
	height: 14px;
	margin-left: auto;
	opacity: 0;
	transition: opacity 0.2s ease;
	color: currentColor;
}

.f99-lang-option.selected .check-mark {
	opacity: 1;
}

/* Adjustments to make elements sit side-by-side nicely */
.footer-audio-container {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	pointer-events: auto !important;
}

.f99-header-container {
	display: flex !important;
	align-items: center !important;
}

/* Media query fixes for mobile */
@media (max-width: 900px) {
	.footer-audio-container {
		justify-content: center !important;
		gap: 15px !important;
	}
	
	.f99-lang-dropdown {
		right: 50%;
		transform: translateX(50%) translateY(10px);
	}
	
	.f99-lang-selector.open .f99-lang-dropdown {
		transform: translateX(50%) translateY(0);
	}
	
	.f99-subpage-header .f99-lang-dropdown {
		right: 0;
		transform: translateY(-10px);
	}
	
	.f99-subpage-header .f99-lang-selector.open .f99-lang-dropdown {
		transform: translateY(0);
	}
}


