/* ==========================================================================
   NEXORA BUSINESS DISTRICT - Kurumsal İş Merkezi & Business District Stilleri
   Renk Paleti:
   - Midnight Navy: #0E1621 (Ana Koyu Zemin)
   - Graphite: #202A33 (Koyu Kartlar & Yüzeyler)
   - Cold Gray: #8C99A5 (Metin & Çizgiler)
   - Crisp White: #F8FAFC (Açık Metin & Vurgu)
   - Primary Accent Blue: #3A78FF (Hassas Mavi Vurgu)
   - Auxiliary Light Blue: #A9C4FF (Yumuşak Mavi)
   ========================================================================== */

:root {
	--nexora-navy: #0E1621;
	--nexora-graphite: #202A33;
	--nexora-gray: #8C99A5;
	--nexora-white: #F8FAFC;
	--nexora-blue: #3A78FF;
	--nexora-blue-rgb: 58, 120, 255;
	--nexora-light-blue: #A9C4FF;
	--nexora-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body.page-template-page-demo-nexora-business-district {
	background-color: var(--nexora-navy) !important;
	color: var(--nexora-white) !important;
	font-family: var(--nexora-font) !important;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* Hide Main PXVERS Canvas on Nexora Page */
body.page-template-page-demo-nexora-business-district #pxvers-neural-canvas,
body.page-template-page-demo-nexora-business-district .bg-ambient-grid,
body.page-template-page-demo-nexora-business-district .bg-noise,
body.page-template-page-demo-nexora-business-district .custom-cursor-dot,
body.page-template-page-demo-nexora-business-district .custom-cursor-follower {
	display: none !important;
}

.nexora-wrapper {
	width: 100%;
	position: relative;
	background-color: var(--nexora-navy);
}

.nexora-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 28px;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.nexora-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 22px 0;
	transition: all 0.35s ease;
}

.nexora-header.scrolled {
	background: rgba(14, 22, 33, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(58, 120, 255, 0.25);
	padding: 12px 0;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.nexora-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nexora-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.nexora-logo-mark {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nexora-logo-text {
	display: flex;
	flex-direction: column;
}

.nexora-logo-main {
	font-family: var(--nexora-font);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 3px;
	color: #FFFFFF;
	line-height: 1;
}

.nexora-logo-sub {
	font-family: var(--nexora-font);
	font-size: 8.5px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--nexora-blue);
	margin-top: 3px;
	text-transform: uppercase;
}

.nexora-nav {
	display: flex;
	align-items: center;
	gap: 36px;
}

.nexora-nav-link {
	font-size: 13.5px;
	font-weight: 600;
	color: #CBD5E1;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nexora-nav-link:hover {
	color: var(--nexora-blue);
}

.btn-nexora-cta {
	background: var(--nexora-blue);
	color: #FFFFFF;
	font-size: 13.5px;
	font-weight: 800;
	padding: 11px 24px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 20px rgba(58, 120, 255, 0.35);
}

.btn-nexora-cta:hover {
	background: #528BFF;
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(58, 120, 255, 0.5);
}

/* --------------------------------------------------------------------------
   HERO — FULLSCREEN 1920x1080 CINEMATIC SLIDER
   -------------------------------------------------------------------------- */
.nexora-hero-slider-section {
	position: relative;
	width: 100%;
	height: 90vh;
	min-height: 640px;
	background: var(--nexora-navy);
	overflow: hidden;
}

.nexora-slide-item {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.75s ease, visibility 0.75s ease;
	display: flex;
	align-items: center;
	z-index: 1;
}

.nexora-slide-item.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.nexora-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.05);
	transition: transform 7s ease-out;
}

.nexora-slide-item.active .nexora-slide-bg {
	transform: scale(1);
}

.nexora-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(14, 22, 33, 0.92) 0%, rgba(14, 22, 33, 0.6) 50%, rgba(14, 22, 33, 0.4) 100%);
}

.nexora-slide-content {
	position: relative;
	z-index: 5;
	max-width: 680px;
}

.nexora-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(58, 120, 255, 0.15);
	border: 1px solid rgba(58, 120, 255, 0.35);
	color: var(--nexora-light-blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	padding: 6px 14px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.nexora-hero-title {
	font-size: 50px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.12;
	margin-bottom: 20px;
	letter-spacing: -1.5px;
}

.nexora-hero-title span {
	color: var(--nexora-blue);
}

.nexora-hero-desc {
	font-size: 16px;
	color: #CBD5E1;
	line-height: 1.65;
	margin-bottom: 32px;
}

/* Slider Controls & Counter */
.nexora-slider-controls {
	position: absolute;
	bottom: 40px;
	right: 40px;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 20px;
}

.nexora-slide-counter {
	font-size: 14px;
	font-weight: 800;
	color: var(--nexora-blue);
	letter-spacing: 2px;
}

.btn-nexora-slide-nav {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(32, 42, 51, 0.75);
	backdrop-filter: blur(10px);
	border: 1.5px solid rgba(58, 120, 255, 0.4);
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-nexora-slide-nav:hover {
	background: var(--nexora-blue);
	color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   NEXORA MASTERPLAN EXPERIENCE
   -------------------------------------------------------------------------- */
.nexora-masterplan-section {
	padding: 90px 0;
	background: #0B111A;
	border-top: 1px solid rgba(58, 120, 255, 0.15);
	border-bottom: 1px solid rgba(58, 120, 255, 0.15);
}

.nexora-masterplan-card {
	background: var(--nexora-graphite);
	border: 1.5px solid rgba(58, 120, 255, 0.3);
	border-radius: 26px;
	padding: 32px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nexora-mp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 24px;
}

.nexora-mp-btn {
	background: rgba(255, 255, 255, 0.04);
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 14px 10px;
	text-align: center;
	color: #CBD5E1;
	font-family: var(--nexora-font);
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s ease;
}

.nexora-mp-btn:hover,
.nexora-mp-btn.active {
	background: rgba(58, 120, 255, 0.18);
	border-color: var(--nexora-blue);
	color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   PARALLEL FLOWING INFORMATION TICKER STRIPS
   -------------------------------------------------------------------------- */
.nexora-ticker-section {
	padding: 80px 0;
	background: var(--nexora-navy);
	overflow: hidden;
}

.nexora-ticker-row {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.nexora-ticker-card {
	background: var(--nexora-graphite);
	border: 1.5px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 16px 24px;
	font-size: 13.5px;
	font-weight: 800;
	color: #FFFFFF;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* --------------------------------------------------------------------------
   SCROLL-DRIVEN BUSINESS DAY TIMELINE
   -------------------------------------------------------------------------- */
.nexora-day-section {
	padding: 90px 0;
	background: #090E16;
}

.nexora-timeline-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-top: 40px;
}

.nexora-timeline-card {
	background: var(--nexora-graphite);
	border: 1.5px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 20px 16px;
	transition: all 0.3s ease;
}

.nexora-timeline-card:hover,
.nexora-timeline-card.active {
	border-color: var(--nexora-blue);
	background: rgba(58, 120, 255, 0.12);
	transform: translateY(-4px);
}

.nexora-time-num {
	font-size: 22px;
	font-weight: 800;
	color: var(--nexora-blue);
	margin-bottom: 4px;
}

.nexora-time-label {
	font-size: 13.5px;
	font-weight: 800;
	color: #FFFFFF;
	margin-bottom: 6px;
}

.nexora-time-desc {
	font-size: 12px;
	color: #94A3B8;
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   FOOTER & DEMO BADGE
   -------------------------------------------------------------------------- */
.nexora-footer {
	background: #060A10;
	color: #64748B;
	padding: 44px 0 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nexora-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.nexora-demo-badge {
	text-align: center;
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.4);
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nexora-demo-badge a {
	color: var(--nexora-blue);
	text-decoration: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
	.nexora-mp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.nexora-timeline-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.nexora-hero-title {
		font-size: 36px;
	}
}

@media (max-width: 576px) {
	.nexora-nav {
		display: none;
	}
	.nexora-mp-grid {
		grid-template-columns: 1fr;
	}
	.nexora-timeline-grid {
		grid-template-columns: 1fr;
	}
	.nexora-hero-title {
		font-size: 28px;
	}
}
