@tailwind base;
@tailwind components;
@tailwind utilities;

*,
::before,
::after {
	box-sizing: border-box;
}

body {
	letter-spacing: 1.5px;
	line-height: 1;
	font-family: sans-serif;
}

@font-face {
	font-family: "Lato";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/Lato.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/Montserrat.woff2") format("woff");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Work Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/Work-Sans.woff2") format("woff");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

input {
	@apply text-black;
}

.nav-menu {
	@apply lg:items-center lg:z-auto lg:static absolute lg:w-auto md:text-center py-4 lg:py-0 lg:opacity-100 md:top-[-400px] bg-white w-full left-0 transition-all ease-in duration-500 font-semibold font-[montserrat] sm:text-left;
}

.nav-item {
	@apply block w-full p-4 opacity-100 hover:text-primary;
}

.nav-dropdown {
	@apply flex items-center gap-4 cursor-pointer w-full;
}

.nav-dropdown-menu {
	@apply absolute bg-white transform scale-0 transition duration-150 ease-in-out min-w-[8rem] shadow-lg;
}

.nav-dropdown-menu--bottom {
	@apply group-hover:scale-100 origin-top top-16;
}

.nav-dropdown-menu--right {
	@apply top-0 right-0 origin-top-left;
}

.nav-dropdown-item {
	@apply block p-4 text-left hover:bg-gray-100;
}

.btn {
	@apply bg-primary md:px-6 p-4 text-center rounded font-bold text-white hover:bg-primaryHover duration-500 shadow-lg text-sm sm:text-base;
}

.btn+.btn {
	@apply mt-6 lg:ml-4 lg:mt-0;
}

.btn--small {
	@apply p-4;
}

.btn--rounded {
	@apply rounded-full;
}

.btn--form {
	@apply bg-black text-white w-1/3 px-4 py-2 rounded-full mx-auto;
}

.container {
	@apply px-4 md:px-0;
}

.primaryAlternate {
	background-color: rgba(60, 101, 227, 1);
}

.prose :where(ul>li):not(:where([class~=not-prose], [class~=not-prose] *))::marker {
	color: #00050c !important;
}

/* Enhanced styles for more elegant design */
.font-sans {
	font-family: sans-serif;
}

.get-started-btn {
	padding: 16px 26px !important;
	border: 2px solid;
	border-radius: 3px;
	font-family: auto;
}

.mobile-menu-content .display {
	height: 69vh;
	justify-content: center;
	align-items: center;
}

.jumbotron {
	margin-top: 89px;
}

.video-container {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.video-container iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	/* 16:9 aspect ratio */
	min-height: 100vh;
	min-width: 177.78vh;
	/* 16:9 aspect ratio */
	transform: translate(-50%, -50%);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(59, 101, 227, 0.3));
	z-index: 1;
}

.text-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	z-index: 2;
	padding: 2rem;
	/* Add safe area for mobile */
	padding-top: max(2rem, env(safe-area-inset-top));
	padding-bottom: max(2rem, env(safe-area-inset-bottom));
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 2rem;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin-top: 3rem;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

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

.cta-section {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Mobile Responsive Design - FIXED */
@media (max-width: 768px) {
	.video-container {
		min-height: 100vh;
		height: auto;
	}

	.text-content {
		padding: 1rem;
		text-align: center;
		/* Ensure content fits within viewport */
		min-height: 100vh;
		box-sizing: border-box;
		/* Add better spacing */
		justify-content: flex-start;
		padding-top: 10vh;
	}

	.text-content h1 {
		font-size: 1.75rem !important;
		line-height: 1.3;
		margin-bottom: 0.75rem !important;
		text-align: center;
		/* Ensure text is visible */
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 1.5rem;
		width: 100%;
		max-width: 100%;
	}

	.feature-list {
		gap: 1rem;
	}

	.feature-item {
		padding: 0.75rem;
		gap: 0.75rem;
		justify-content: flex-start;
		text-align: left;
		/* Make more visible on mobile */
		background: rgba(255, 255, 255, 0.15);
		border: 1px solid rgba(255, 255, 255, 0.3);
	}

	.feature-item h4 {
		font-size: 0.95rem;
		text-align: left;
		/* Add text shadow for better readability */
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	}

	.cta-section {
		order: -1;
		margin-bottom: 1.5rem;
	}

	button {
		padding: 0.875rem 2rem !important;
		font-size: 1rem !important;
		/* Ensure button is easily tappable */
		min-height: 48px;
	}

	/* Adjust overlay for better mobile visibility */
	.overlay {
		background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(59, 101, 227, 0.4));
	}
}

@media (max-width: 480px) {
	.feature-list-mobile {
		margin-top: -12px;
	}
	
	.text-content {
		padding: 0.75rem;
		padding-top: 8vh;
	}

	.text-content h1 {
		font-size: 1.5rem !important;
		margin-bottom: 0.5rem !important;
		line-height: 1.2;
	}

	.features-grid {
		margin-top: 1rem;
		gap: 0.75rem;
	}

	.feature-item {
		padding: 0.625rem;
		gap: 0.625rem;
	}

	.feature-item h4 {
		font-size: 0.875rem;
	}

	.feature-item i {
		font-size: 0.9rem !important;
		flex-shrink: 0;
	}

	button {
		padding: 0.75rem 1.5rem !important;
		font-size: 0.9rem !important;
	}
}

/* Very small screens */
@media (max-width: 360px) {
	.text-content h1 {
		font-size: 1.25rem !important;
	}

	.feature-item h4 {
		font-size: 0.8rem;
	}
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
	.text-content {
		padding-top: 2vh;
		justify-content: center;
	}

	.text-content h1 {
		font-size: 1.25rem !important;
		margin-bottom: 0.5rem !important;
	}

	.features-grid {
		margin-top: 0.5rem;
		gap: 0.5rem;
	}

	.feature-item {
		padding: 0.5rem;
	}
}

@media (max-width: 1023px) {
	.features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}

	.feature-item {
		justify-content: center;
		text-align: center;
	}

	.cta-section {
		order: -1;
		margin-bottom: 1rem;
		padding-top: 0;
	}
}

.card {
	border: 1px solid lightgray;
	border-radius: 10px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	flex-direction: column;
	justify-content: space-between;
}

.justify-space-around {
	justify-content: space-around;
}

.icon-card i {
	font-size: 100px;
	color: rgb(6 147 227);
}

.accordion .accordion-item {
	border-bottom: 1px solid lightgray;
}

.accordion .accordion-item button[aria-expanded='true'] {
	border-bottom: 1px solid lightblue;
}

.accordion button {
	position: relative;
	border: 1px solid lightgray;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	text-align: left;
	width: 100%;
	padding: 1em 0;
	font-size: 1.15rem;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
}

.accordion button:hover,
.accordion button:focus {
	cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
	cursor: pointer;
}

.accordion button .accordion-title {
	padding-right: 70px;
	padding-left: 10px;
}

.accordion button .icon {
	display: inline-block;
	position: absolute;
	right: 0;
	top: 47px;
	width: 22px;
	height: 22px;
	border-radius: 22px;
}

.accordion button .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: -6px;
	left: 0px;
	width: 19px;
	height: 2px;
	background: currentColor;
}

.accordion button .icon::after {
	display: block;
	position: absolute;
	content: '';
	top: -15px;
	left: 9px;
	width: 2px;
	height: 21px;
	background: currentColor;
}

.accordion button[aria-expanded='true'] .icon::after {
	width: 0;
}

.accordion button[aria-expanded='true'] + .accordion-content {
	opacity: 1;
	max-height: 109em;
	transition: all 200ms linear;
	will-change: opacity, max-height;
}

.accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}

.accordion .accordion-content p {
	font-size: 1.3rem;
	font-weight: 300;
	margin: 1em 37px;
	line-height: 2.2rem;
}

.accordion .accordion-content .parent li {
	list-style: auto;
}

.accordion .accordion-content .child li {
	list-style: disc;
}

.testimonial {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
}

.testimonial.active {
	display: block;
}

.testimonial img {
	width: 100%;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blueprint .arrow-button {
	background-color: #495369 !important;
}

.blueprint .arrow-button svg {
	fill: #495369 !important;
}

.image-wurthy {
	flex: 0 0 90px;
	width: 90px;
	height: 90px;
	background-color: #fff;
	border-radius: 50%;
	border: 2px solid #3b65e3;
	box-shadow: 0px 4px 4px 0px #0000001A;
	padding: 10px;
}

.image-wurth img {
	padding-top: 20px;
}

.timeline-line {
	position: relative;
}

.timeline-line::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #ef4444, #10b981);
	transform: translateX(-50%);
}

.timeline-dot {
	position: relative;
	z-index: 10;
}

.hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.morphing-blob {
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	animation: morph 8s ease-in-out infinite;
}

.text-shadow-glow {
	text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.scroll-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.stats-counter {
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.booking-form {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
	backdrop-filter: blur(10px);
}

.aircraft-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(59, 130, 246, 0.1);
	transition: all 0.4s ease;
}

.aircraft-card:hover {
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.tab-button {
	position: relative;
	overflow: hidden;
}

.tab-button::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	transition: width 0.3s ease;
}

.tab-button.active::after {
	width: 100%;
}

.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

.floating-plane {
	position: absolute;
	font-size: 2rem;
	opacity: 0.1;
	animation: float 10s ease-in-out infinite;
}

.floating-plane:nth-child(1) {
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.floating-plane:nth-child(2) {
	top: 20%;
	right: 15%;
	animation-delay: 2s;
}

.floating-plane:nth-child(3) {
	bottom: 30%;
	left: 20%;
	animation-delay: 4s;
}

.floating-plane:nth-child(4) {
	bottom: 10%;
	right: 10%;
	animation-delay: 6s;
}

.mission-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(59, 130, 246, 0.1);
	transition: all 0.4s ease;
}

.mission-card:hover {
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.timeline-item {
	position: relative;
	padding-left: 2rem;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 1rem;
	height: 1rem;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 50%;
}

.timeline-item::after {
	content: '';
	position: absolute;
	left: 0.375rem;
	top: 1.5rem;
	width: 0.25rem;
	height: calc(100% - 1rem);
	background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
}

.timeline-item:last-child::after {
	display: none;
}

.award-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	transition: all 0.3s ease;
}

.award-card:hover {
	transform: translateY(-5px) rotate(1deg);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.facility-item {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 1rem;
	padding: 2rem;
	transition: all 0.3s ease;
}

.facility-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(59, 130, 246, 0.1);
	transition: all 0.4s ease;
}

.location-card:hover {
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.map-container {
	position: relative;
	height: 400px;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-overlay {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 0.5rem;
	padding: 1rem;
	z-index: 10;
}

.contact-info-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
	backdrop-filter: blur(10px);
	border-radius: 1.5rem;
	padding: 2rem;
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.weather-widget {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	border-radius: 1rem;
	padding: 1.5rem;
	text-align: center;
}

.runway-info {
	background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
	border-radius: 1rem;
	padding: 1.5rem;
}

.amenity-icon {
	width: 3rem;
	height: 3rem;
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	/* Blue-500 to Blue-700 */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.directions-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 1rem;
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.directions-card:hover {
	transform: translateX(5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.instructor-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(59, 130, 246, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.instructor-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
	transition: left 0.5s;
}

.instructor-card:hover::before {
	left: 100%;
}

.instructor-card:hover {
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.hexagon {
	width: 220px;
	height: 180px;
	position: relative;
	margin: 0 auto 20px;
}

.hexagon::before,
.hexagon::after {
	content: '';
	position: absolute;
	width: 0;
	border-left: 99px solid transparent;
	border-right: 82px solid transparent;
}

.hexagon::before {
	bottom: 100%;
	border-bottom: 30px solid #3b82f6;
}

.hexagon::after {
	top: 100%;
	border-top: 30px solid #3b82f6;
}

.hexagon-inner {
	width: 180px;
	height: 180px;
	background: #3b82f6;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hexagon img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
}

.skill-badge {
	display: inline-block;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	margin: 2px;
	position: relative;
	overflow: hidden;
}

.skill-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.skill-badge:hover::before {
	left: 100%;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	perspective: 1000px;
}

.leadership-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.leadership-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
	animation: rotate 10s linear infinite;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 1.5rem;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: rgba(59, 130, 246, 0.2);
	font-family: serif;
}

.footer-shimmer {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	background-size: 200% 100%;
	animation: shimmer 2s infinite;
}

.footer-fade-in {
	animation: fadeInUp 0.8s ease-out forwards;
}

.footer-gradient-bg {
	background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
	position: relative;
	overflow: hidden;
}

.footer-gradient-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.footer-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}


.footer-card:hover::before {
	opacity: 1;
	animation: shimmer 0.6s ease-in-out;
}

.footer-card:hover {
	transform: translateY(-5px);
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.footer-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.footer-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.footer-icon:hover::before {
	left: 100%;
}

.footer-icon:hover {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.footer-link {
	color: #e5e7eb;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

.footer-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	transition: width 0.3s ease;
}

.footer-link:hover::after {
	width: 100%;
}

.footer-link:hover {
	color: #3b82f6;
	transform: translateX(5px);
}

.footer-social {
	transition: all 0.3s ease;
	position: relative;
}

.footer-social:hover {
	transform: translateY(-5px) scale(1.1);
}

.footer-title {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	position: relative;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #1d4ed8);
	border-radius: 2px;
}

.footer-map {
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-map:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.footer-contact-item {
	display: flex;
	align-items: center;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	margin-bottom: 0.75rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item:hover {
	background: rgba(59, 130, 246, 0.1);
	border-color: rgba(59, 130, 246, 0.3);
	transform: translateX(5px);
}

.footer-logo {
	transition: all 0.3s ease;
	filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.footer-logo:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
}

/* Training specific styles */
.training-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(59, 130, 246, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border-radius: 24px;
}

.training-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
	transition: left 0.5s;
}

.image-container {
	position: relative;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	height: 280px;
}

.image-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.training-card:hover .image-container::after {
	opacity: 1;
}

.training-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.training-card:hover img {
	transform: scale(1.1);
}

.small-card {
	border-radius: 25px;
	border: 1px solid rgb(125, 125, 207);
}

.course-title {
	background: linear-gradient(135deg, #1e40af, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.expandable-section {
	border: 1px solid rgba(59, 130, 246, 0.1);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.expandable-section:hover {
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.section-header {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section-header:hover {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.section-content {
	padding: 0 1rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.section-content.expanded {
	max-height: 500px;
	padding: 1rem;
}

.info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.info-item:last-child {
	border-bottom: none;
}

.requirement-item {
	display: flex;
	align-items: center;
	padding: 0.5rem 0;
}

.requirement-icon {
	width: 20px;
	height: 20px;
	margin-right: 0.75rem;
	color: #10b981;
}

.cta-button {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
	width: 100%;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.price-highlight {
	color: #3b82f6;
	font-weight: 700;
	font-size: 1.1rem;
}

.contact-section {
	background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
	position: relative;
	overflow: hidden;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: float 15s ease-in-out infinite;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.hero-section {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.7) 0%, rgba(11, 62, 202, 0.9) 100%), url('../../images/flight-training-banner.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.rusty_pilot_header {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.7) 0%, rgba(11, 62, 202, 0.9) 100%), url('../../images/rusty_pilot_refresher_header.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero-content {
	text-align: center;
	color: white;
	z-index: 10;
	position: relative;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1rem;
	text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.grid-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* Gradient effects */
.glass-effect {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-effect-1 {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(148, 163, 184, 0.08) 50%, rgba(226, 232, 240, 0.1) 100%);
	backdrop-filter: blur(15px);
	border: 4px solid rgb(226, 232, 240);
	border-radius: 30px;
}

.glass-effect-2 {
	background: linear-gradient(225deg, rgba(59, 130, 246, 0.3) 0%, rgba(148, 163, 184, 0.08) 50%, rgba(226, 232, 240, 0.1) 100%);
	backdrop-filter: blur(15px);
	border: 4px solid rgb(226, 232, 240);
	border-radius: 30px;
}

.glass-effect-3 {
	background: linear-gradient(180deg, rgba(59, 130, 246, 0.3) 0%, rgba(148, 163, 184, 0.08) 50%, rgba(226, 232, 240, 0.1) 100%);
	backdrop-filter: blur(15px);
	border: 4px solid rgb(226, 232, 240);
	border-radius: 30px;
}

.glass-effect-4 {
	background: linear-gradient(45deg, rgba(59, 130, 246, 0.3) 0%, rgba(148, 163, 184, 0.08) 50%, rgba(226, 232, 240, 0.1) 100%);
	backdrop-filter: blur(15px);
	border: 4px solid rgb(226, 232, 240);
	border-radius: 30px;
}

.glass-effect-5 {
	background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, rgba(148, 163, 184, 0.08) 50%, rgba(226, 232, 240, 0.1) 100%);
	backdrop-filter: blur(15px);
	border: 4px solid rgb(226, 232, 240);
	border-radius: 30px;
}

.glass-effect-6 {
	background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(148, 163, 184, 0.08) 50%, rgba(226, 232, 240, 0.1) 100%);
	backdrop-filter: blur(15px);
	border: 4px solid rgb(226, 232, 240);
	border-radius: 30px;
}

.gradient-text {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.morphing-shape {
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	animation: morph 8s ease-in-out infinite;
}

.parallax-bg {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.creative-card {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	position: relative;
	overflow: hidden;
}

.creative-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	transition: all 0.6s;
}

.creative-card:hover::before {
	animation: shimmer 0.6s ease-in-out;
}

/* Background patterns */
.bg-hero-pilot {
	background:
		linear-gradient(135deg, #1e3a8a 0%, #3730a3 25%, #7c3aed 50%, #7c3aed 75%, #7c3aed 100%),
		radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
		linear-gradient(45deg, #1e40af 25%, transparent 25%),
		linear-gradient(-45deg, #1e40af 25%, transparent 25%),
		linear-gradient(45deg, transparent 75%, #3b82f6 75%),
		linear-gradient(-45deg, transparent 75%, #3b82f6 75%);
	background-size: 100% 100%, 800px 800px, 600px 600px, 60px 60px, 60px 60px, 60px 60px, 60px 60px;
	background-position: 0 0, 0 0, 100% 100%, 0 0, 30px 30px, 30px 30px, 0 0;
	min-height: 100vh;
}

.bg-cockpit-view {
	background:
		linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 50%, #94a3b8 75%, #64748b 100%),
		radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
	background-size: 100% 100%, 400px 400px, 300px 300px;
}

.bg-aircraft-hangar {
	background:
		linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 25%, #cbd5e1 50%, #94a3b8 75%, #64748b 100%),
		repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(59, 130, 246, 0.1) 10px, rgba(59, 130, 246, 0.1) 20px),
		repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(139, 92, 246, 0.1) 15px, rgba(139, 92, 246, 0.1) 30px);
	background-size: 100% 100%, 40px 40px, 60px 60px;
}

.bg-sunset-flight {
	background:
		linear-gradient(135deg, #fef3c7 0%, #fed7aa 25%, #fdba74 50%, #fb923c 75%, #f97316 100%),
		radial-gradient(ellipse at top, rgba(251, 191, 36, 0.4), transparent),
		radial-gradient(ellipse at bottom, rgba(249, 115, 22, 0.3), transparent);
	background-size: 100% 100%, 800px 400px, 600px 300px;
}

.bg-clouds-above {
	background:
		linear-gradient(135deg, #87ceeb 0%, #4682b4 25%, #4169e1 50%, #0000cd 75%, #1e40af 100%),
		radial-gradient(ellipse 800px 400px at 400px 200px, rgba(255, 255, 255, 0.4), transparent),
		radial-gradient(ellipse 1200px 600px at 1200px 400px, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(ellipse 1000px 500px at 1600px 600px, rgba(255, 255, 255, 0.2), transparent);
	background-size: 100% 100%, 800px 400px, 1200px 600px, 1000px 500px;
}

.bg-hero-pilot::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

/* FAQ specific styles */
.faq-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}

.faq-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
	animation: float 20s ease-in-out infinite;
}

.accordion-button:hover {
	background: #f9fafb;
}

.accordion-icon {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
	color: #6366f1;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #f8fafc;
	color: black;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
}

.accordion-content-inner {
	padding: 0 24px 24px 24px;
	color: #6b7280;
	line-height: 1.6;
}

.faq-category {
	background: white;
	border-radius: 16px;
	padding: 32px;
	margin-bottom: 32px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #e5e7eb;
}

.category-title {
	font-size: 24px;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.category-icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.search-box {
	background: white;
	border-radius: 12px;
	padding: 16px 20px;
	border: 2px solid #e5e7eb;
	font-size: 16px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto 48px auto;
	display: block;
	transition: all 0.3s ease;
}

.search-box:focus {
	outline: none;
	border-color: #6366f1;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin: 48px 0;
}

.stat-card {
	background: white;
	padding: 24px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	border: 1px solid #e5e7eb;
}

.stat-number {
	font-size: 32px;
	font-weight: 700;
	color: #6366f1;
	display: block;
}

.stat-label {
	color: #6b7280;
	font-size: 14px;
	margin-top: 8px;
}

.hero-pattern {
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
}

.legal-pattern {
	background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M20 20c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20zm20-16c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.policy-pattern {
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Step and form styles */
.step-card {
	transition: all 0.3s ease;
	transform: translateY(0);
}

.step-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.step-icon {
	transition: all 0.4s ease;
}

.step-card:hover .step-icon {
	transform: scale(1.1);
}

.step-number {
	background: linear-gradient(135deg, #3b65e3 0%, #4f46e5 100%);
	color: white;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	border: 3px solid white;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-icon-wrapper {
	position: relative;
	display: inline-block;
}

.text-shadow-strong {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.bg-overlay {
	background: linear-gradient(135deg, rgba(59, 101, 227, 0.7) 0%, rgba(30, 64, 175, 0.8) 100%);
}

.card-hover {
	transition: all 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-step {
	position: relative;
}

.process-step::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 100%;
	width: 2px;
	height: 60px;
	background: linear-gradient(to bottom, #3b82f6, transparent);
	transform: translateX(-50%);
}

.process-step:last-child::before {
	display: none;
}

.tip-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
	background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.form-input {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.form-input:focus {
	background: rgba(255, 255, 255, 1);
	border-color: #3b82f6;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
	outline: none;
}

.form-label {
	transition: all 0.3s ease;
}

.floating-label {
	transform: translateY(-1.5rem) scale(0.875);
	color: #3b82f6;
}

.gradient-button {
	background: linear-gradient(135deg, #3b82f6, #1e40af);
	position: relative;
	overflow: hidden;
}

.gradient-button::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #1e40af, #3b82f6);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gradient-button:hover::before {
	opacity: 1;
}

.gradient-button span {
	position: relative;
	z-index: 10;
}

.form-container {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.connecting-line {
    position: relative;
}

.connecting-line::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -35px;
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA, #93C5FD);
    transform: translateY(-50%);
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.4);
    animation: flowPulse 2s ease-in-out infinite;
}

.connecting-line .flow-dots::before {
    left: 0;
    animation-delay: 0s;
}

.connecting-line .flow-dots::after {
    left: 0;
    animation-delay: 1s;
}

.feature-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s ease-out forwards;
}

.private_pilot_line {
	margin-top: -60px;
}

@media (max-width: 768px) {
    .connecting-line::before,
    .connecting-line::after {
        display: none;
    }
    
	.private_pilot_line {
		display: none;
	}
}

/* Intersection Observer Animation Classes */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.scale-in {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

.slide-in-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* Embedded Icons */
.icon-aircraft::before {
	content: "✈️";
	font-size: 2rem;
}

.icon-compass::before {
	content: "🧭";
	font-size: 1.5rem;
}

.icon-target::before {
	content: "🎯";
	font-size: 1.5rem;
}

.icon-star::before {
	content: "⭐";
	font-size: 1.5rem;
}

.icon-cloud::before {
	content: "☁️";
	font-size: 2rem;
}

/* Performance Optimizations */
.will-change-transform {
	will-change: transform;
}

.will-change-opacity {
	will-change: opacity;
}

/* Custom Gradient Overlays - Reduced opacity for better visibility */
.gradient-overlay-blue {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.3));
}

.gradient-overlay-white {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(239, 246, 255, 0.6), rgba(224, 231, 255, 0.7));
}

.gradient-overlay-dark {
	background: linear-gradient(135deg, rgba(17, 24, 39, 0.4), rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.4));
}

/* CONSOLIDATED ANIMATIONS - All in one place */
@keyframes float {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(2deg);
	}
}

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

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

@keyframes morph {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}
	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes propeller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes flyAcross {
	0% {
		transform: translateX(-100px) translateY(0px);
	}
	25% {
		transform: translateX(25vw) translateY(-20px);
	}
	50% {
		transform: translateX(50vw) translateY(10px);
	}
	75% {
		transform: translateX(75vw) translateY(-15px);
	}
	100% {
		transform: translateX(calc(100vw + 100px)) translateY(0px);
	}
}

@keyframes cloudDrift {
	0% {
		transform: translateX(-200px);
	}
	100% {
		transform: translateX(calc(100vw + 200px));
	}
}

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

@keyframes flowPulse {
	0%, 100% {
		opacity: 0.6;
		transform: translateY(-50%) scale(1);
	}
	50% {
		opacity: 1;
		transform: translateY(-50%) scale(1.05);
	}
}

/* CONSOLIDATED ANIMATION CLASSES */
.animate-float {
	animation: float 6s ease-in-out infinite;
}

.animate-fade-in-up {
	animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
	animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
	animation: slideInRight 0.8s ease-out forwards;
}

.animate-slide-in {
	animation: slideIn 0.8s ease-out;
}

.animate-pulse {
	animation: pulse 2s ease-in-out infinite;
}

.animate-propeller {
	animation: propeller 0.1s linear infinite;
}

.animate-fly-across {
	animation: flyAcross 15s linear infinite;
}

.animate-cloud-drift {
	animation: cloudDrift 20s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
	.animate-fly-across {
		animation-duration: 10s;
	}

	.bg-hero-pilot,
	.bg-cockpit-view,
	.bg-aircraft-hangar,
	.bg-sunset-flight,
	.bg-clouds-above {
		background-attachment: scroll;
	}
}
.place-center {
	place-items: center!important;
}

.description-text {
    transition: max-height 0.5s ease-in-out;
}

.description-text.description-collapsed {
    max-height: 7.5rem;
    overflow: hidden;
}
.width-fit {
	width: fit-content;
}