/* ===== EXPLORE SECTION - IMMERSIVE SCROLL EXPERIENCE ===== */
/* ===== VIEWPORT ===== */
.explore-wrapper {
	position: relative;
	width: 100%;
	overflow-x: clip; /* Use clip instead of hidden - doesn't block scroll events */
	overflow-y: visible;
	display: flex;
	flex-direction: column;
	background: var(--full-grad);
	justify-content: center;
	align-items: center;
}



/* ===== INDIVIDUAL SECTIONS ===== */

.explore-section * {
	border: 0px solid red;
}
.explore-section {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 0;
}

/* Hide the gradient-bg elements - using section background instead */



/* Scroll spacer not needed */
.explore-scroll-spacer {
	display: none;
}


/* ===== GRADIENT BACKGROUND ===== */




/* ===== BACKGROUND ORBS ===== */
.explore-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	pointer-events: none;
	z-index: 1;
}

.explore-orb-1 {
	width: 500px;
	height: 500px;

	top: -150px;
	right: -150px;
	animation: orbFloat1 20s ease-in-out infinite;
}

.explore-orb-2 {
	width: 400px;
	height: 400px;

	bottom: -100px;
	left: -100px;
	animation: orbFloat2 25s ease-in-out infinite;
}

@keyframes orbFloat1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes orbFloat2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(50px, -30px) scale(0.9); }
}




/* ===== HEADER ===== */
.explore-header {
	text-align: center;
	z-index: 10;
	opacity: 1;
}

.explore-header.visible {
	opacity: 1;
}

.explore-main-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	color: var(--white);
	margin: 0 0 8px;
	line-height: 1;
	font-weight: 700;
}

.explore-subtitle {
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	font-weight: 400;
}


/* ===== PANELS ===== */
.explore-panel {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(80px);
	transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.explore-panel.visible {
	opacity: 1;
	transform: translateY(0);
}



.explore-panel-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	width: 100%;
	max-width: 1200px;
}

/* ===== PANEL TEXT ===== */
.explore-panel-text {
	color: var(--white);
}

.explore-panel-number {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 16px;
}

.explore-panel-title {
	font-family: var(--font-brand);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin: 0 0 20px;
	line-height: 1.1;
}

.explore-panel-desc {
	font-family: var(--font-sans);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 28px;
	max-width: 480px;
}

/* ===== PANEL FEATURES ===== */
.explore-panel-features {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.explore-feature-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;

	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.explore-feature-pill:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.explore-feature-pill svg {
	width: 18px;
	height: 18px;
	stroke: var(--white);
	flex-shrink: 0;
}

/* ===== PANEL STATS ===== */
.explore-panel-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 28px;
}

.explore-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.explore-stat-value {
	font-family: var(--font-brand);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.explore-stat-label {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ===== PANEL CTA ===== */
.explore-panel-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-full);
	color: var(--white);
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.explore-panel-cta:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.explore-panel-cta svg {
	width: 20px;
	height: 20px;
}

/* ===== PANEL VISUAL ===== */
.explore-panel-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ===== FLIGHT STRIP VISUAL ===== */
.strip-stack {
	display: flex;
	flex-direction: column;
	gap: 14px;
	perspective: 1000px;
}

.demo-strip {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 14px 18px;
	min-width: 300px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	transform: rotateX(5deg);
	transition: all 0.4s ease;
	opacity: 0;
	animation: stripSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.demo-strip-1 { animation-delay: 0s; }
.demo-strip-2 { animation-delay: 0.15s; }
.demo-strip-3 { animation-delay: 0.3s; }

@keyframes stripSlideIn {
	from {
		opacity: 0;
		transform: rotateX(15deg) translateY(20px);
	}
	to {
		opacity: 1;
		transform: rotateX(5deg) translateY(0);
	}
}

.demo-strip:hover {
	transform: rotateX(0deg) translateY(-5px) scale(1.02);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.demo-strip-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.demo-strip-callsign {
	font-family: var(--font-mono);
	font-size: 1rem;
	font-weight: 700;
	color: var(--dark);
}

.demo-strip-type {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: #666;
	background: #f0f0f0;
	padding: 3px 8px;
	border-radius: 4px;
}

.demo-strip-body {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.demo-strip-route {
	font-family: var(--font-sans);
	font-size: 0.9rem;
	color: #444;
}

.demo-strip-status {
	font-family: var(--font-sans);
	font-size: 0.7rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status-taxi {
	background: linear-gradient(135deg, #ffd700, #ffb700);
	color: #333;
}

.status-ready {
	background: linear-gradient(135deg, #4CAF50, #45a049);
	color: white;
}

.status-air {
	background: linear-gradient(135deg, #2196F3, #1976D2);
	color: white;
}

/* ===== NETWORK VISUAL ===== */
.network-visual {
	position: relative;
	width: 100%;
	max-width: 350px;
}

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

.network-line {
	stroke: rgba(255, 255, 255, 0.3);
	stroke-width: 2;
	stroke-dasharray: 6 4;
	animation: linePulse 3s ease-in-out infinite;
}

.network-line-outer {
	stroke-dasharray: 4 6;
	opacity: 0.5;
}

@keyframes linePulse {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 0.7; }
}

.network-node {
	fill: rgba(255, 255, 255, 0.9);
	stroke: rgba(255, 255, 255, 0.5);
	stroke-width: 2;
}

.network-node-center {
	fill: var(--white);
	filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.network-label {
	font-family: var(--font-mono);
	font-size: 10px;
	fill: var(--dark);
	text-anchor: middle;
	font-weight: 700;
}

.network-pulse {
	fill: var(--white);
	animation: pulseSend 3s ease-in-out infinite;
}

@keyframes pulseSend {
	0% { opacity: 1; transform: translate(0, 0); }
	25% { opacity: 1; transform: translate(-90px, -90px); }
	50%, 100% { opacity: 0; transform: translate(-90px, -90px); }
}

.network-labels {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.network-airport-label {
	position: absolute;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--white);
	background: rgba(255, 255, 255, 0.15);
	padding: 3px 8px;
	border-radius: 4px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

/* ===== AUTOMATION VISUAL ===== */
.automation-visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.auto-flow-container {
	display: flex;
	align-items: center;
	gap: 16px;
}

.auto-flow-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.auto-flow-node:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-4px);
}

.auto-flow-node svg {
	width: 28px;
	height: 28px;
	stroke: var(--white);
}

.auto-flow-node span {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.auto-flow-center {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.auto-flow-center svg {
	animation: gearRotate 10s linear infinite;
}

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

.auto-flow-arrow {
	display: flex;
	align-items: center;
	width: 35px;
}

.auto-flow-arrow-line {
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6));
}

.auto-flow-arrow-head {
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid rgba(255, 255, 255, 0.6);
}

.auto-badges-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.auto-badge-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.85);
}

.auto-badge-item svg {
	width: 16px;
	height: 16px;
	stroke: var(--white);
}

/* ===== STAGGERED CONTENT ANIMATIONS ===== */
/* Apple-style elegant reveal animations */

.explore-panel .explore-panel-number,
.explore-panel .explore-panel-title,
.explore-panel .explore-panel-desc,
.explore-panel .explore-panel-features,
.explore-panel .explore-panel-stats,
.explore-panel .explore-panel-cta,
.explore-panel .explore-panel-visual {
	opacity: 0;
	transform: translateY(30px);
}

.explore-panel.visible .explore-panel-number {
	animation: exploreReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.explore-panel.visible .explore-panel-title {
	animation: exploreReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.explore-panel.visible .explore-panel-desc {
	animation: exploreReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.explore-panel.visible .explore-panel-features {
	animation: exploreReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.explore-panel.visible .explore-panel-stats {
	animation: exploreReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.explore-panel.visible .explore-panel-cta {
	animation: exploreReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.explore-panel.visible .explore-panel-visual {
	animation: visualReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes exploreReveal {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes visualReveal {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* ===== RESPONSIVE: LARGE DESKTOP ===== */
@media (min-width: 1400px) {
	.explore-panel-inner {
		gap: 100px;
	}

	.demo-strip {
		min-width: 340px;
	}
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {

	.explore-intro {
		padding: 100px 5% 60px;
	}

	.explore-section {
		min-height: auto;
		padding: 80px 0;
		
	}

	.explore-panel-inner {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.explore-panel-text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.explore-panel-desc {
		max-width: 550px;
	}

	.explore-panel-features,
	.explore-panel-stats {
		justify-content: center;
	}

	.explore-panel-visual {
		order: -1;
	}

	.strip-stack {
		align-items: center;
	}

	.demo-strip {
		min-width: 280px;
	}

	.network-visual {
		max-width: 280px;
	}

	.explore-orb {
		opacity: 0.1;
	}
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
	.explore-intro {
		padding: 80px 5% 50px;
	}

	.explore-main-title {
		font-size: 2rem;
	}

	.explore-section {
		padding: 60px 0;
	}

	.explore-panel {
		padding: 0 4%;
	}

	.explore-panel-inner {
		gap: 30px;
	}

	.explore-panel-title {
		font-size: 1.75rem;
	}

	.explore-panel-desc {
		font-size: 0.95rem;
	}

	.explore-feature-pill {
		font-size: 0.8rem;
		padding: 8px 14px;
	}

	.explore-panel-stats {
		flex-wrap: wrap;
		gap: 20px;
	}

	.explore-stat-value {
		font-size: 1.5rem;
	}

	.demo-strip {
		min-width: 250px;
		padding: 12px 14px;
	}

	.demo-strip-callsign {
		font-size: 0.9rem;
	}

	.network-visual {
		max-width: 240px;
	}

	.auto-flow-container {
		flex-direction: column;
		gap: 12px;
	}

	.auto-flow-arrow {
		width: auto;
		height: 25px;
		flex-direction: column;
	}

	.auto-flow-arrow-line {
		width: 2px;
		height: 100%;
		background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6));
	}

	.auto-flow-arrow-head {
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 8px solid rgba(255, 255, 255, 0.6);
		border-bottom: none;
	}

	.explore-orb {
		display: none;
	}
	

	.explore-section-2 .explore-fullscreen-text{
		margin-bottom:0px !important;
	}

	.explore-section-2 .explore-fullscreen-badges{
		margin-bottom: 40px !important;
	}

	.explore-setup-box .setup-box-content{
		flex-direction: column;
		gap:25px;
		padding:20px 0;
		
	}

	.explore-setup-box{
		margin-bottom:0px !important;
	}

	.explore-setup-box .badge-text-exp{
		text-align: center !important;
	}

	.explore-setup-box .setup-box-img{
		max-width:60px !important;
	}
}

/* ===== RESPONSIVE: SMALL MOBILE ===== */
@media (max-width: 480px) {
	.explore-main-title {
		font-size: 1.75rem;
	}

	.explore-subtitle {
		font-size: 0.85rem;
	}

	.explore-panel-title {
		font-size: 1.5rem;
	}

	.explore-panel-features {
		flex-direction: column;
		align-items: center;
	}

	.explore-panel-cta {
		width: 100%;
		justify-content: center;
		max-width: 260px;
	}

	.demo-strip {
		min-width: 100%;
		max-width: 280px;
	}

	.auto-flow-node {
		padding: 16px;
	}

	.auto-flow-node svg {
		width: 24px;
		height: 24px;
	}
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

	

	.explore-panel {
		transition: opacity 0.3s;
		transform: none !important;
	}

	.explore-orb,
	.network-line,
	.network-pulse,
	.auto-flow-center svg,
	.explore-scroll-arrow {
		animation: none;
	}

	.demo-strip {
		animation: none;
		opacity: 1;
		transform: none;
	}
}




.explore-fullscreen-content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 5%;
	max-width: 1200px;
	width: 100%;
	
}

.explore-fullscreen-text{
		display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap:70px;
	margin-bottom: 150px;;
}

.explore-section-2 .explore-fullscreen-text{
	margin-bottom: 100px;;
}

/* Category Label (like Apple's orange "Prestazioni") */
.explore-category-label {
	font-family: var(--font-sans);
	font-size: clamp(0.85rem, 1.5vw, 1rem);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: -20px;
}

/* Main Title */
.explore-fullscreen-title {
	font-family: var(--font-brand);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

/* Description */
.explore-fullscreen-desc {
	font-family: var(--font-sans);
	font-size: clamp(0.95rem, 1.8vw, 1.2rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	max-width: 680px;
	margin: 0;
	position: relative;
	bottom:50px;
}

/* ==========================================================================
   STRIP SHOWCASE - Container for strip component
   ========================================================================== */

.explore-strip-img{
	width:90%;
	max-width: 1000px;
	box-shadow: 15px 15px 22px rgba(0, 0, 0, 0.2);
	margin-bottom:150px;
	border-radius:20px;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.explore-strip-img:hover{

	box-shadow: 20px 22px 22px rgba(0, 0, 0, 0.3);
	transform: scale(1.01);

}

.explore-section-1 .explore-fullscreen-cta{
	display:none; /*NOT FOR THE MOMENT */
}

/* ==========================================================================
   BADGES
   ========================================================================== */

.explore-fullscreen-badges {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	margin-bottom:100px;
	width:80%;
	 max-width: 1200px;
}

.badge-container{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: var(--spacing-md);
	max-width: 30%;
}

.separator{
	background:#f3f3f3;
	width:100%;
	height:1px;
	display: none;

}

.badge-text-exp{
	font-family: var(--font-sans);
	font-size: 1.1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	text-align: left;
	max-width:90%;

}



.explore-badge {
	left: -5px;
	position: relative;
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	padding: var(--spacing-xs) var(--spacing-md);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all var(--transition-normal);
}

.explore-badge:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.explore-badge svg {
	width: 18px;
	height: 18px;
	stroke: rgba(255, 255, 255, 0.9);
	flex-shrink: 0;
}

.explore-setup-box{
	width:70%;
	max-width:900px;
	display: flex;
	justify-content: center;
	align-items: center;

	margin-bottom:120px;
}

.explore-setup-box .badge-text-exp{
	max-width:unset;
	font-size: 1rem;
}

.setup-box-content{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.setup-box-img{
	width: 100%;
	max-width: 90px;
}


.explore-section-3{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.explore-section-3 .explore-fullscreen-content{
	margin-bottom:0px;
	padding: 0px;
	 
}

.explore-section-3 .explore-fullscreen-text{
	margin-bottom:0px;
	padding: 0px;
	 
}

.explore-section-3 .explore-fullscreen-badges{
	width:80%;
	max-width:1200px;
	margin-bottom:20px;
}

/* ==========================================================================
   CTA BUTTON
   ========================================================================== */

.explore-fullscreen-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 100px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
}

.explore-fullscreen-cta:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.explore-fullscreen-cta svg {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   RESPONSIVE: FULLSCREEN SECTION
   ========================================================================== */

@media (max-width: 1024px) {
	.explore-fullscreen {
		min-height: auto;
		height: auto;
		padding: var(--spacing-2xl) 0;
	}

	.explore-fullscreen-content {
		gap: var(--spacing-xl);
		padding: 30px 5%;
	}

	.explore-fullscreen .strip {
		transform: none;
	}

	.explore-fullscreen-badges{
		gap: var(--spacing-2xl);
		flex-direction: column;
		align-items: center;
	}

	.badge-container{
		max-width: 80%;
		align-items: center;
		text-align: center;
	}

	.badge-text-exp{
		font-family: var(--font-sans);
		font-size: 1rem;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.85);
		text-align: center;
		max-width: 90%;
	}
}

@media (max-width: 768px) {
	.explore-fullscreen {
		padding: 80px 0;
	}

	.explore-section-1{
		padding-bottom:0px;
	}

	.explore-section-2{
		padding-top:0px;
		padding-bottom:0px;
	}

	.explore-fullscreen-desc{
		max-width:75%;
	}

	.EFT-1{
		margin-bottom:0px !important;

	}

	.explore-fullscreen-content {
		gap: 35px;
	}

	.EFS-1{
		padding-top:0px;
	}

	.explore-fullscreen-title {
		font-size: 2.2rem;
	}

	.explore-fullscreen-desc {
		font-size: 0.95rem;
	}

	.explore-fullscreen-badges {
		flex-direction: column;
		align-items: center;
		
	}

	.EFB-1{
		margin-bottom:70px;
	}

	/* Hide strip on smaller screens - too complex */
	.explore-strip-showcase {
		max-width:100%;
		border-radius: 0px;;
	}

	.explore-section .explore-fullscreen-text{
		margin-bottom:20px;
	}

	.explore-strip-img{
		border-radius: 0px;;
		margin-bottom: 50px;;;

	}
}

@media (max-width: 480px) {
	.explore-fullscreen-title {
		font-size: 1.8rem;
	}

	.explore-category-label {
		font-size: 0.75rem;
	}

	.explore-badge {
		font-size: 0.8rem;
		padding: 8px 14px;
	}

	.explore-fullscreen-cta {
		width: 60%;
		max-width: 280px;
		justify-content: center;
	}
}

/* ==========================================================================
   SCROLL-TRIGGERED REVEAL ANIMATIONS
   ========================================================================== */

/* Initial hidden state for animated elements */


.explore-fullscreen-text,
.explore-strip-showcase,
.explore-fullscreen-badges,
.explore-fullscreen-cta {
	opacity: 0;
	transform: translateY(0px);
}

/* Visible state when scrolled into view */
.explore-fullscreen.in-view .explore-fullscreen-text {
	animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.1s;
}

.explore-fullscreen.in-view .explore-strip-showcase {
	animation: revealUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.4s;
}

.explore-fullscreen.in-view .explore-fullscreen-badges {
	animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.8s;
}

.explore-fullscreen.in-view .explore-fullscreen-cta {
	animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 1s;
}

@keyframes revealUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Reduced motion: instant reveal */
@media (prefers-reduced-motion: reduce) {
	.explore-fullscreen-text,
	.explore-strip-showcase,
	.explore-fullscreen-badges,
	.explore-fullscreen-cta {
		opacity: 1;
		transform: none;
		animation: none !important;
	}
}


/*AUTOMATION FLOW DIAGRAM CSS*/
.flow-diagram-wrapper {
    max-width: 1200px;
    width: 80%;
    padding: 0 20px;
	margin-bottom:150px;
}



.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.flow-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.flow-step:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flow-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flow-icon svg {
    width: 32px;
    height: 32px;
    stroke: #8b5cf6;
}

.flow-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.flow-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
}

.flow-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    position: relative;
}

.flow-arrow svg {
    width: 100%;
    height: 100%;
    stroke: white;
    opacity: 0.6;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Pulse animation for icons on hover */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
}



/* Responsive Design */
@media (max-width: 1024px) {

	.explore-section-2 .explore-fullscreen-text{
	margin-bottom: 40px;;
}
    .flow-diagram {
        flex-direction: column;
        gap: 20px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-step {
        width: 100%;
    }
}


@media(max-width: 768px){

	.flow-diagram-wrapper {
    max-width: 1200px;
    width: 65%;
    padding: 0 20px;
	margin-bottom:50px;
	}

	.flow-step{
		padding: 25px 15px;
	}

	.flow-diagram-wrapper .flow-icon{
		transform: scale(0.7);
	}
}




/*NETWORK VIZ*/
/* Network Visualization Container */
        .airlink-diagram-wrapper {
            width: 100%;
            margin: 60px auto 40px;
			margin-bottom: 100px;
			touch-action: pan-y; /* Allow vertical scroll to pass through */
        }

        .airlink-network {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            margin: 0 auto 60px;
            touch-action: pan-y; /* Allow vertical scroll to pass through */
        }

        /* Connection Lines SVG */
        .connection-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .connection-line {
            stroke: rgba(255, 255, 255, 0.3);
            stroke-width: 2;
            stroke-dasharray: 5, 5;
            animation: dashFlow 1s linear infinite;
        }

        .line-2 { animation-delay: 0.5s; }
        .line-3 { animation-delay: 1s; }
        .line-4 { animation-delay: 1.5s; }

        @keyframes dashFlow {
            to {
                stroke-dashoffset: -10;
            }
        }

        /* Central Hub */
        .airlink-hub {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            z-index: 10;
        }

        .hub-icon {
            position: relative;
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .airlink-logo {
            width: 70%;
            height: 70%;
            object-fit: contain;
        }

        /* Pulsing Effect */
        .hub-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border: 3px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: pulse 6s ease-out infinite;
        }

        .pulse-delay-1 { animation-delay: 1s; }
        .pulse-delay-2 { animation-delay: 2s; }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* Airport Nodes */
        .airport-node {
            position: absolute;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-normal);
            cursor: pointer;
        }

        .airport-node svg {
            width: 35px;
            height: 35px;
            stroke: white;
        }

        .airport-node:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .node-label {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0.9;
        }

        /* Position nodes in a circle around center */
        .node-1 {
            top: 10%;
            left: 15%;
        }

        .node-2 {
            top: 10%;
            right: 15%;
        }

        .node-3 {
            bottom: 10%;
            left: 15%;
        }

        .node-4 {
            bottom: 10%;
            right: 15%;
        }

        /* Feature Cards */
        .airlink-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .airlink-feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-xl);
            padding: var(--spacing-lg);
            text-align: center;
            transition: all var(--transition-normal);
        }

        .airlink-feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            stroke: #8b5cf6;
        }

        .feature-title {
            color: white;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .feature-desc {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-title {
                font-size: 36px;
            }

            .main-desc {
                font-size: 16px;
            }

            .airlink-network {
                height: 400px;
                max-width: 400px;
            }

            .airlink-hub {
                width: 90px;
                height: 90px;
            }

            .airport-node {
                width: 55px;
                height: 55px;
            }

            .airport-node svg {
                width: 28px;
                height: 28px;
            }
		}


.flying-strips-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.flying-strip {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.flying-strip img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform-origin: center;
}

/* Animation from Airport A (top-left) to C (bottom-left) */
.strip-a-to-c {
    top: 10%;
    left: 15%;
    animation: flyAtoC 5s ease-in-out infinite;
}

@keyframes flyAtoC {
    0% {
        top: 10%;
        left: 0;
        opacity: 0;
        transform: scale(0.1) rotate(-5deg);
    }
    10% {
        opacity: 1;
    }
	50%{
		transform: scale(0.5);
	}

    90% {
        opacity: 1;
    }
    100% {
        top: calc(90% - 70px);
        left: 0;
        opacity: 0;
        transform: scale(0.1) rotate(5deg);
    }
}

/* Animation from Airport B (top-right) to D (bottom-right) */
.strip-b-to-d {
    top: 10%;
    right: 5%;
    animation: flyBtoD 5s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes flyBtoD {
    0% {
        top: 10%;
        right: 0;
        left: auto;
        opacity: 0;
        transform: scale(0.3) rotate(5deg);
    }
    10% {
        opacity: 1;
    }
	50%{
		transform: scale(0.5);
	}

    90% {
        opacity: 1;
    }
    100% {
        top: calc(90% - 70px);
        right: 0;
        left: auto;
        opacity: 0;
        transform: scale(0.3) rotate(-5deg);
    }
}

.strip-a-to-b {
    top: 10%;
    right: 5%;
    animation: flyAtoB 5s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes flyAtoB {
    0% {
        top: 10%;
        right: 60%;
        left: 0;
        opacity: 0;
        transform: scale(0.3) rotate(5deg);
    }
    10% {
        opacity: 1;
    }
	50%{
		transform: scale(0.5);
	}

    90% {
        opacity: 1;
    }
    100% {
        top: 10%;
        right: 0;
        left: 60%;
        opacity: 0;
        transform: scale(0.3) rotate(-5deg);
    }
}

/* Delayed versions for continuous effect */
.strip-delay-1 {
    animation-delay: 3s !important;
}

.strip-delay-2 {
    animation-delay: 5s !important;
}

/* Add slight randomness with different timing */
.strip-a-to-c.strip-delay-1 {
    animation-duration: 3.5s;
}

.strip-b-to-d.strip-delay-2 {
    animation-duration: 2.8s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flying-strip img {
        width: 150px;
    }
}		

@media(max-width:768px){
	.airlink-diagram-wrapper{
		margin:0px auto 40px;
	}
}


