:root {
    /* Bright Modern Daytime Palette */
    --color-bg-light: #FFFFFF;
    --color-bg-slate: #F8FAFC;
    --color-aviation-blue: #0A2342;
    --color-aviation-blue-light: #154580;
    --color-safety-orange: #FF5A00;
    --color-safety-orange-hover: #E04E00;
    --color-text-main: #0F172A;
    --color-text-muted: #475569;
    
    /* Variables */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-aviation-blue);
    line-height: 1.2;
}

.text-accent {
    color: var(--color-safety-orange);
}

.text-white {
    color: #fff !important;
}
.text-center {
    text-align: center;
}

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

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-lg { padding: 14px 28px; font-size: 1.1rem; }

.btn-primary {
    background-color: var(--color-safety-orange);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 90, 0, 0.3);
}
.btn-primary:hover {
    background-color: var(--color-safety-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 0, 0.4);
    color: #fff;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
    background-color: #fff;
    color: var(--color-aviation-blue);
}
.btn-secondary .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.btn-secondary:hover .arrow {
    transform: translateX(4px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-text-muted);
    color: var(--color-text-main);
}
.btn-outline:hover {
    background-color: var(--color-aviation-blue);
    border-color: var(--color-aviation-blue);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}
.navbar.scrolled .logo-img {
    height: 140px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a:not(.btn) {
    color: var(--color-aviation-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}
.nav-links a:not(.btn):hover {
    color: var(--color-safety-orange);
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-safety-orange);
    transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-aviation-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    color: #fff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.7) 0%, rgba(10, 35, 66, 0.3) 100%);
    z-index: -1;
}

/* COMING SOON BANNER - PRO RIBBON */
.coming-soon-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.frosted-ribbon {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transform: rotate(-2deg) scale(1.05); /* organic dynamic rotation spanning screen */
}
.coming-soon-text {
    font-size: 8vw;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-content {
    max-width: 800px;
    z-index: 5;
    position: relative;
}
.hero-content h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Fleet Highlights */
.fleet-section {
    background-color: var(--color-bg-light);
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.fleet-card {
    background-color: var(--color-bg-light);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
}
.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-aviation-blue), var(--color-aviation-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fleet-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-aviation-blue);
}
.fleet-card p {
    color: var(--color-text-muted);
}
.fleet-card .stat {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-safety-orange);
    margin-bottom: 16px;
}

/* Services */
.services-section {
    background-color: var(--color-aviation-blue);
    background-image: radial-gradient(circle at top right, rgba(21, 69, 128, 0.5) 0%, transparent 60%);
    color: #fff;
}
.services-section .section-header h2 {
    color: #fff;
}
.services-section .section-header p {
    color: rgba(255,255,255,0.8);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.service-card.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.service-card.glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.service-card p {
    color: rgba(255,255,255,0.8);
}
.hot-badge {
    position: absolute;
    top: 16px;
    right: -24px;
    background-color: #fff;
    color: var(--color-safety-orange);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 32px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-transform: uppercase;
}

/* Coverage Map */
.map-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}
.map-content {
    flex: 1;
}
.map-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}
.map-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--color-text-muted);
}
.route-list {
    list-style: none;
}
.route-list li {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: var(--color-text-main);
}
.route-list .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-safety-orange);
    margin-right: 16px;
}
.map-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}
.map-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.1);
}

/* Footer / Contact */
.footer {
    background-color: var(--color-bg-slate);
    padding-top: 80px;
}
.footer-cta {
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 60px;
    margin-bottom: 40px;
}
.footer-cta h2 {
    color: var(--color-aviation-blue);
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.footer-cta p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}
.footer-img {
    height: 200px;
    width: auto;
    object-fit: contain;
}
.copyright {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.social-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
    font-size: 1.5rem;
}
.social-links a:hover {
    color: var(--color-aviation-blue);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}
.bounce-in {
    animation: bounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulseMap {
    0% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 90, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0); }
}
.pulse-anim {
    animation: pulseMap 3s infinite;
}

/* Responsive */
@media (max-width: 900px) {
    .coming-soon-text { font-size: 12vw; }
    .hero-content h1 { font-size: 3rem; }
    .map-layout { flex-direction: column; }
    .map-content { order: 2; }
    .map-image-wrapper { order: 1; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; }
    .cta-buttons { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Interactive Map & Tracker Dashboard */
.tracker-dash {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 280px;
    z-index: 1000;
    pointer-events: auto;
}
.tracker-dash h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.tracking-input-group {
    display: flex;
    gap: 8px;
}
.tracking-input-group input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--font-body);
    outline: none;
}
.tracking-input-group input:focus {
    border-color: var(--color-aviation-blue);
}
.tracker-dash .status-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--color-safety-orange);
    font-weight: 600;
}
.hidden { display: none !important; }

/* Glowing Custom Map Pins */
.pulse-marker {
    width: 14px;
    height: 14px;
    background: var(--color-safety-orange);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.8);
}
.pulse-marker::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-safety-orange);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}
@keyframes ping {
    75%, 100% {
        transform: scale(3.5);
        opacity: 0;
    }
}
.plane-marker {
    color: var(--color-aviation-blue);
    font-size: 24px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transform-origin: center;
}
