/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

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

.text-center { text-align: center; }
.bg-light { background-color: #fcfcfc; }
.bg-dark { background-color: #0b1320; }
.text-white { color: #fff; }
.text-orange { color: #ff7a00 !important; }

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.05rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -0.5px;
}
.text-white h2 { color: #fff; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ff7a00;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
    border: 2px solid #ff7a00;
}

.btn-primary:hover {
    background-color: #e66d00;
    border-color: #e66d00;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.btn-link {
    color: #ff7a00;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-link i {
    margin-left: 5px;
    font-size: 0.85rem;
    transition: transform 0.3s;
}
.btn-link:hover i {
    transform: translateX(5px);
}

/* Top Bar */
.top-bar {
    background-color: #0b1320;
    color: #aaa;
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-content {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info span {
    margin-right: 20px;
}
.contact-info i {
    margin-right: 8px;
    color: #ff7a00;
}
.social-icons a {
    margin-left: 15px;
    color: #aaa;
}
.social-icons a:hover {
    color: #fff;
}

/* Header & Hero */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background-image: url('assets/hero_bg.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.nav-links li a:hover {
    color: #ff7a00;
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text-center {
    max-width: 800px;
    padding: 0 20px;
}

.glow-text {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: radial-gradient(circle, #ffe259 0%, #ffa751 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 167, 81, 0.6);
}

.hero-text-center p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* 4 Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: -100px;
    position: relative;
    z-index: 20;
    padding-top: 0;
}

.card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    font-size: 2rem;
    color: #8b9bb4;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #111;
}

.card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Split Sections */
.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-us {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text, .payload-text, .mc-text {
    flex: 1;
}

.about-text p, .payload-text p, .mc-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}
.about-text strong, .payload-text strong, .mc-text strong {
    color: #222;
    font-weight: 600;
}

.mc-text p { color: #bbb; }
.mc-text strong { color: #fff; }

.about-image, .payload-image, .mc-image {
    flex: 1;
}

.about-image img, .payload-image img, .mc-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: block;
}

/* Capabilities */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cap-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: left;
    padding-bottom: 30px;
    transition: transform 0.3s;
}
.cap-card:hover { transform: translateY(-5px); }

.cap-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cap-card h3 {
    padding: 25px 25px 10px;
    font-size: 1.25rem;
}

.cap-card p {
    padding: 0 25px;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.cap-card .btn-link {
    padding: 0 25px;
}

/* Services Grid */
.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.service-item {
    padding: 20px;
}

.service-icon {
    font-size: 2rem;
    color: #ff7a00;
    margin-bottom: 20px;
}

.service-item h3 { 
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.service-item p { 
    color: #666; 
    font-size: 0.95rem; 
}

/* Flight Crew */
.crew-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.crew-member {
    text-align: center;
}

.crew-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.crew-member h3 { font-size: 1.2rem; margin-bottom: 5px; }
.crew-member p { color: #ff7a00; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.crew-socials { color: #999; font-size: 1.1rem; }
.crew-socials i { margin: 0 5px; cursor: pointer; transition: color 0.3s; }
.crew-socials i:hover { color: #ff7a00; }

/* CTA Banner */
.cta-banner {
    background-image: url('assets/earth_banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 150px 20px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #eee;
}

/* Gallery */
.gallery-wrapper {
    margin-top: 40px;
}
.main-gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Crew Debriefs */
.debrief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.debrief-card {
    background: #fff;
    padding: 50px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}
.debrief-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}
.debrief-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.debrief-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.debrief-role {
    color: #ff7a00;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Strategic Alliances */
.alliances {
    background-image: url('assets/hero_bg.webp'); /* Reusing space bg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    position: relative;
}
.alliances::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
}
.alliance-box {
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.alliance-list {
    list-style: none;
    margin-top: 30px;
}
.alliance-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #555;
}
.alliance-list li::before {
    content: '■';
    color: #ff7a00;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}
.alliance-list strong {
    color: #222;
}

/* Footer */
footer {
    background: #0b1320;
    color: #fff;
    padding-top: 60px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 40px;
}
.footer-links li a {
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links li a:hover { color: #fff; }

.footer-socials a { font-size: 1.2rem; }

.copyright {
    padding: 25px 0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .info-cards { grid-template-columns: repeat(2, 1fr); margin-top: -50px; padding: 20px; }
    .split-section, .about-us { flex-direction: column; }
    .cap-grid { grid-template-columns: 1fr; }
    .services-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .crew-grid, .debrief-grid { flex-direction: column; gap: 60px; }
    .hero-text-center h1 { font-size: 3.5rem; }
    .glow-text { font-size: 3.5rem; }
    .alliance-box { padding: 40px 20px; }
    .footer-content { flex-direction: column; gap: 30px; }
}
@media (max-width: 768px) {
    h2 { font-size: 1.8rem; }
    .glow-text { font-size: 2.5rem; line-height: 1.2; }
    .hero-text-center p { font-size: 1rem; }
    
    .info-cards { grid-template-columns: 1fr; }
    .services-grid-6 { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    
    .mobile-menu-btn { display: block !important; margin-top: 0; }
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0; right: -100%;
        width: 250px; height: 100vh;
        background: #0b1320;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 100;
        gap: 20px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 30px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .mobile-menu-btn { z-index: 101; position: relative; }
    
    .top-bar-content { flex-direction: column; gap: 10px; padding: 10px; text-align: center; }
    .contact-info { display: flex; flex-direction: column; align-items: center; gap: 5px; }
    .contact-info span { margin-right: 0; }
    .social-icons { margin-top: 5px; }
    .social-icons a { margin: 0 10px; }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    font-size: 24px;
    color: #ff7a00;
    background: rgba(255, 122, 0, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}
.logo:hover .logo-icon {
    background: #ff7a00;
    color: #fff;
    transform: rotate(15deg) scale(1.1);
}
.logo-text {
    color: white;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.logo-dot {
    color: #ff7a00;
}

/* --- NEW COLORFUL PAGES CSS --- */

/* Shared vibrant background */
.colorful-bg {
    background: linear-gradient(-45deg, #0b1320, #3a005c, #001242, #ff7a00);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* Ignite Mission Page */
.mission-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}
.mission-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.input-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffca99;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.input-group input, .input-group select, .input-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    outline: none;
    border-color: #ff7a00;
}
.input-group select option {
    background: #111;
}
.btn-glow {
    background: #ff7a00;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}
.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 122, 0, 0.8);
}

/* Contact Page Layout */
.contact-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    min-height: 600px;
}
.contact-info-panel {
    flex: 1;
    background: linear-gradient(135deg, #ff7a00, #ff0055);
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-form-panel {
    flex: 1.5;
    background: #111;
    padding: 60px;
    color: #fff;
}
.contact-info-panel h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.contact-info-panel p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.contact-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    background: rgba(255,255,255,0.2);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.contact-form-panel h2 {
    color: #fff;
    margin-bottom: 10px;
}
.contact-form-panel p {
    color: #aaa;
    margin-bottom: 30px;
}

@media (max-width: 800px) {
    .contact-wrapper { flex-direction: column; margin: 40px 20px; }
    .mission-form-grid { grid-template-columns: 1fr; }
}
