/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: url('flight-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background overlay for better text readability */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 48, 135, 0.85) 0%,
        rgba(0, 32, 96, 0.9) 30%,
        rgba(0, 16, 64, 0.92) 70%,
        rgba(0, 8, 32, 0.95) 100%
    );
    z-index: -1;
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 30% 20%,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 70% 80%,
        rgba(0, 150, 255, 0.1) 0%,
        transparent 50%
    );
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
.header {
    text-align: center;
    padding: 60px 0 80px;
    animation: fadeInDown 1s ease-out;
    position: relative;
    overflow: hidden;
}

.header-background-effect {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 215, 0, 0.05) 30%,
        transparent 70%
    );
    animation: pulse 4s ease-in-out infinite;
}

.logo-section {
    position: relative;
    z-index: 2;
}

.brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.brand-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.4));
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.5);
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: glow 2s ease-in-out infinite alternate;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 300;
    color: #e8e8e8;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.header-decorative-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 20px auto;
    animation: expand 2s ease-in-out infinite alternate;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #ffd700;
    margin-top: 10px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-section {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.description {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure 2x2 layout on larger screens */
@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        max-width: 700px;
        gap: 35px;
    }
}

/* Single column on mobile */
@media (max-width: 767px) {
    .features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 200px;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffd700;
}

.feature-item p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Contact info */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.contact-item {
    background: rgba(255, 215, 0, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 50px 0 30px;
    text-align: center;
    animation: fadeIn 1s ease-out 1.2s both;
}

.powered-by-container {
    margin-bottom: 30px;
}

.powered-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.powered-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.powered-by:hover::before {
    opacity: 1;
}

.powered-by:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.powered-text {
    font-size: 1.1rem;
    color: #e8e8e8;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.orbit-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.orbit-link:hover {
    transform: scale(1.05);
}

.orbit-logo {
    height: 120px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.orbit-link:hover .orbit-logo {
    filter: brightness(1.4) drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.orbit-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.orbit-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
    margin-bottom: 2px;
}

.orbit-tagline {
    font-size: 0.9rem;
    color: #b8b8b8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.copyright {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 300;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes glow {
    from {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes expand {
    from {
        width: 80px;
        opacity: 0.7;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 40px 0 50px;
    }
    
    .brand-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand-icon {
        font-size: 3rem;
    }
    
    .brand-name {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .location-badge {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    
    .powered-by {
        padding: 25px 30px;
        max-width: 350px;
        gap: 15px;
    }
    
    .orbit-link {
        flex-direction: column;
        gap: 12px;
    }
    
    .orbit-logo {
        height: 100px;
    }
    
    .orbit-name {
        font-size: 1.2rem;
    }
    
    .orbit-info {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-container {
        gap: 10px;
    }
    
    .brand-icon {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .powered-by {
        padding: 20px 25px;
        max-width: 300px;
    }
    
    .orbit-logo {
        height: 100px;
    }
    
    .orbit-name {
        font-size: 1.1rem;
    }
    
    .orbit-tagline {
        font-size: 0.8rem;
    }
}