:root {
    --primary-blue: #1565C0;
    --light-blue: #1E88E5;
    --dark-navy: #0D1B3E;
    --white: #FFFFFF;
    --light-gray-bg: #EEF4FB;
    --text-dark: #0D1B3E;
    --text-muted: #607D8B;
    --border: #DDEAF7;
    --font-family: 'Inter', sans-serif;
}

@font-face {
    font-family: 'Eurostile';
    src: url('EurostileRoundExtended-Black.woff2') format('woff2'),
         url('EurostileRoundExtended-Black.woff') format('woff'),
         url('EurostileExtendedBlack.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

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

/* TOP NAVBAR */
.navbar {
    background-color: #0d496e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 90px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 120px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 2px;
    font-family: 'Eurostile', 'Inter', sans-serif;
}

.logo-text img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-o {
    color: var(--primary-blue);
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.language-selector:hover {
    border-color: var(--white);
}

.globe-icon {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.chevron-down {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    z-index: 1000;
    overflow: hidden;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-option {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: var(--light-gray-bg);
}

.language-option.active {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 40px 60px 60px 40px;
    min-height: 580px;
    overflow: hidden;
    background-image: url('space%20bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-bg {
    display: none;
}

.hero-plane-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    margin-bottom: 10px;
}

/* HERO TEXT SECTION */
.hero-text-section {
    width: 100%;

    display: flex;
    justify-content: center;
}

.glass-container {
    max-width: 800px;
    text-align: center;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    min-height: 400px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 2;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    min-height: 480px;
    flex-shrink: 0;
    padding-top: 10px;
}

.hero-airplane {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.hero-text {
    position: relative;
    z-index: 3;
}

.welcome-badge {
    display: block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.hero-title {
    margin-top: 16px;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
}

.title-dark {
    color: var(--white);
    font-weight: 900;
    font-family: 'Eurostile' !important;
    letter-spacing: 1px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.title-blue {
    color: var(--white);
    font-family: 'Eurostile' !important;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}

.hero-subtitle span {
    font-size: 17px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    color: var(--white) !important;
    font-weight: 700 !important;
}

/* LOGIN CARD */
.login-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    width: 340px;
    flex-shrink: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.login-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.login-icon svg {
    width: 70px;
    height: 70px;
}

.login-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.login-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tab-switcher {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.tab {
    background: none;
    border: none;
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: 0.2s ease;
}

.tab.active {
    color: var(--primary-blue);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
}

.tab:hover {
    color: var(--primary-blue);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.input-icon svg {
    width: 100%;
    height: 100%;
}

.form-input {
    width: 100%;
    height: 44px;
    padding: 0 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    color: var(--text-dark);
    transition: 0.2s ease;
    background: #fafbfc;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
    background: var(--white);
}

.eye-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.2s ease;
}

.eye-toggle:hover {
    color: var(--primary-blue);
}

.eye-toggle svg {
    width: 100%;
    height: 100%;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox {
    width: 14px;
    height: 14px;
    accent-color: var(--primary-blue);
}

.forgot-password {
    font-size: 13px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s ease;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    height: 46px;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.login-button:hover {
    background: linear-gradient(135deg, #0D47A1 0%, #0a1628 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border);
}

.divider-text {
    padding: 0 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.secure-badge svg {
    width: 16px;
    height: 16px;
}

/* MAIN CONTENT SECTION */
.main-content-section {
    position: relative;
    padding: 40px 80px 50px;
    overflow: hidden;
}

.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #E8F4FD 0%, #D6E8F7 50%, #E3F0FC 100%);
    z-index: -1;
}



/* Trust Badge Bar */
.trust-bar {
    background-color: var(--white);
    border-radius: 16px;
    padding: 18px 32px;
    margin-bottom: 0px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.trust-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 13px;
}

.trust-bar-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.trust-bar-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

/* Center Grid */
.center-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    margin-bottom: 28px;
}

.left-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Services Card */
.services-card {
    background: linear-gradient(135deg, #0D1B3E 0%, #1565C0 100%);
    border-radius: 20px;
    padding: 36px 32px;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.services-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.services-columns {
    display: flex;
    align-items: flex-start;
}

.service-col {
    flex: 1;
    text-align: center;
    padding: 0 12px;
}

.service-col-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: background 0.3s ease;
}

.service-col:hover .service-col-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-col-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-col h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.service-col p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.service-divider {
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
    align-self: center;
}

/* Feature Panel */
.feature-panel {
    background-color: var(--white);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    align-self: stretch;
}

.feature-panel-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.feature-panel-item:hover {
    background: var(--light-gray-bg);
}

.feature-panel-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-panel-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.blue-gradient {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
}

.dark-gradient {
    background: linear-gradient(135deg, #1565C0 0%, #0D1B3E 100%);
}

.light-gradient {
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
}

.navy-gradient {
    background: linear-gradient(135deg, #0D1B3E 0%, #1565C0 100%);
}

.feature-panel-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-panel-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Benefits Bar */
.benefits-bar {
    background-color: var(--white);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.benefits-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.benefits-item:hover .benefits-icon {
    background: var(--primary-blue);
}

.benefits-item:hover .benefits-icon svg {
    color: var(--white);
}

.benefits-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
}

.benefits-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.benefits-sublabel {
    font-size: 11px;
    color: var(--text-muted);
}

.benefits-item {
    flex-direction: row;
    gap: 12px;
}

.benefits-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border);
}

/* FOOTER */
.footer {
    background-color: var(--white);
    padding: 18px 40px;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.follow-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray-bg);
    border-radius: 50%;
    color: var(--text-dark);
    transition: 0.2s ease;
}

.social-icon:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

/* RESPONSIVE DESIGN */
/* Large tablets and small laptops */
@media (max-width: 1200px) {
    .hero-container {
        gap: 20px;
    }

    .hero-bg {
        right: 340px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-airplane {
        max-width: 480px;
    }

    .main-content-section {
        padding: 40px 40px 60px;
    }

    .center-grid {
        grid-template-columns: 1fr 280px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 30px 24px 40px;
        background-attachment: scroll;
    }

    .hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .hero-bg {
        display: none;
    }

    .hero-plane-image {
        max-width: 350px;
        margin-bottom: 20px;
    }

    .hero-right {
        min-height: auto;
        width: 100%;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .login-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .main-content-section {
        padding: 30px 20px 50px;
    }

    .trust-bar-container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .trust-bar-item {
        width: calc(50% - 10px);
        justify-content: center;
    }

    .center-grid {
        grid-template-columns: 1fr;
    }

    .feature-panel {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .feature-panel-item {
        width: calc(50% - 10px);
    }

    .services-columns {
        flex-wrap: wrap;
    }

    .service-col {
        width: calc(50% - 20px);
        margin-bottom: 24px;
    }

    .service-divider {
        display: none;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo-text img {
        height: 30px;
    }

    .logo-tagline {
        display: none;
    }

    .language-selector span {
        display: none;
    }

    .language-selector {
        padding: 8px 12px;
    }

    .hero {
        padding: 30px 24px 40px;
    }

    .hero-plane-image {
        max-width: 280px;
    }

    .hero-container {
        padding: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle span {
        font-size: 15px;
    }

    .login-card {
        width: 100%;
        max-width: 100%;
        padding: 28px 24px;
        border-radius: 14px;
    }

    .main-content-section {
        padding: 20px 16px 40px;
    }

    .trust-bar {
        padding: 16px 20px;
    }

    .trust-bar-item {
        width: 100%;
        justify-content: flex-start;
    }

    .services-card {
        padding: 24px 16px;
    }

    .service-col {
        width: 100%;
    }

    .feature-panel {
        flex-direction: column;
    }

    .feature-panel-item {
        width: 100%;
    }

    .benefits-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
        justify-content: center;
    }

    .benefits-item {
        width: calc(50% - 10px);
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .benefits-divider {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    .nav-container {
        padding: 0 16px;
    }

    .logo-text img {
        height: 20px;
    }

    .hero {
        padding: 24px 16px 32px;
    }

    .hero-plane-image {
        max-width: 220px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle span {
        font-size: 14px;
    }

    .welcome-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .login-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .login-title {
        font-size: 18px;
    }

    .login-subtitle {
        font-size: 12px;
    }

    .form-input {
        height: 42px;
        font-size: 13px;
    }

    .login-button {
        height: 42px;
        font-size: 14px;
    }

    .main-content-section {
        padding: 12px 10px 28px;
    }

    .trust-bar {
        border-radius: 12px;
        padding: 12px 12px;
    }

    .trust-bar-item {
        font-size: 11px;
    }

    .trust-bar-item strong {
        font-size: 12px;
    }

    .trust-bar-item svg {
        width: 18px;
        height: 18px;
    }

    .services-card {
        border-radius: 14px;
        padding: 20px 12px;
    }

    .services-header h2 {
        font-size: 15px;
    }

    .service-col-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-col h3 {
        font-size: 12px;
    }

    .service-col p {
        font-size: 10px;
    }

    .feature-panel {
        border-radius: 14px;
        padding: 16px;
    }

    .feature-panel-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .feature-panel-icon svg {
        width: 16px;
        height: 16px;
    }

    .feature-panel-text h4 {
        font-size: 13px;
    }

    .feature-panel-text p {
        font-size: 11px;
    }

    .benefits-bar {
        border-radius: 14px;
        padding: 14px;
    }

    .benefits-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .benefits-icon svg {
        width: 16px;
        height: 16px;
    }

    .benefits-label {
        font-size: 12px;
    }

    .benefits-sublabel {
        font-size: 10px;
    }

    .footer {
        padding: 14px;
    }

    .footer-left p {
        font-size: 11px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
    }

    .social-icon svg {
        width: 13px;
        height: 13px;
    }
}

/* ACCESSIBILITY - Focus visible for keyboard/touch navigation */
*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Image quality - crisp rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Smooth transitions for premium feel */
.login-button,
.tab,
.social-icon,
.service-col,
.feature-panel-item {
    transition: all 0.25s ease;
}

/* Ultra-wide screens (2560px+) */
@media (min-width: 2560px) {
    .hero {
        padding: 40px 120px 60px;
    }

    .hero-container {
        max-width: 1800px;
    }

    .hero-airplane {
        max-width: 700px;
    }

    .main-content-section {
        padding: 40px 120px 60px;
    }

    .nav-container {
        max-width: 1600px;
    }
}