/**
 * NGS Virtual Custom Theme
 * Based on the original vaBase design
 */

/* ==========================================================================
   Typography & Base Styles
   ========================================================================== */
body {
    font-family: "Lato", "Segoe UI", -apple-system, BlinkMacSystemFont, arial, sans-serif;
    color: #333;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #333;
}

/* ==========================================================================
   NGS Virtual Brand Colors
   ========================================================================== */
:root {
    --ngs-primary: #0e9ac9;
    --ngs-primary-hover: #17baef;
    --ngs-primary-light: #0fa2d2;
    --ngs-primary-dark: #067ec1;
}

[data-bs-theme=light] {
    --bs-primary: #0e9ac9;
    --bs-primary-rgb: 14, 154, 201;
}

[data-bs-theme=dark] {
    --bs-primary: #17baef;
    --bs-primary-rgb: 23, 186, 239;
}

.bg-primary {
    background-color: var(--ngs-primary) !important;
}

.btn-primary {
    background-color: var(--ngs-primary) !important;
    border-color: var(--ngs-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--ngs-primary-hover) !important;
    border-color: var(--ngs-primary-hover) !important;
}

.text-primary {
    color: var(--ngs-primary) !important;
}

/* ==========================================================================
   Links
   ========================================================================== */
a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--ngs-primary);
    text-decoration: none;
}

.table a {
    color: #333;
    font-weight: 700;
}

.table a:hover {
    color: var(--ngs-primary-hover);
}

.table i {
    color: var(--ngs-primary-light);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
    padding: 10px 6px;
    position: relative;
    z-index: 1030;
}

.navbar-brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.navbar-brand i {
    color: var(--ngs-primary);
    margin-right: 8px;
}

.nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 52px;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-dark .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transform: translateY(-1px);
}

.navbar-dark .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* Make nav items fill full height for better click area */
.navbar-nav .nav-item {
    display: flex;
    align-items: stretch;
}

.navbar-nav .nav-item .nav-link {
    width: 100%;
}

.dropdown-menu {
    z-index: 20000;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown-menu > li > a,
.dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--ngs-primary);
}

/* ==========================================================================
   Hero Section - Airline Style
   ========================================================================== */
.hero-section {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-section .carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 122, 158, 0.85) 0%, rgba(14, 154, 201, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-text {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Stats */
.hero-stats .stat-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-stats .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.hero-stats .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Booking Widget */
.booking-widget {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-widget h3 {
    color: var(--ngs-primary);
    font-size: 22px;
}

.booking-widget .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* ==========================================================================
   Cards & Panels - Modern 2025 Design
   ========================================================================== */
.card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 8px 30px rgba(14, 154, 201, 0.15);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, var(--ngs-primary) 0%, var(--ngs-primary-hover) 100%);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    border-radius: 12px 12px 0 0 !important;
    padding: 20px 25px;
    border-bottom: none;
}

.card-body {
    padding: 25px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ngs-primary) 0%, var(--ngs-primary-hover) 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Feature Boxes - Unique Split Layout */
.feature-welcome {
    padding: 40px;
    background: linear-gradient(135deg, rgba(14, 154, 201, 0.05) 0%, rgba(23, 186, 239, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--ngs-primary);
}

.feature-welcome h2 {
    color: var(--ngs-primary);
}

.feature-box {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ngs-primary) 0%, var(--ngs-primary-hover) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(14, 154, 201, 0.2);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box i {
    font-size: 36px;
    color: var(--ngs-primary);
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.1);
}

.feature-box h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.feature-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   Stats Bar & Widgets - Modern 2025 Design
   ========================================================================== */
.mini-stats-bar {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 40px 0;
    border-radius: 16px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ngs-primary) 0%, var(--ngs-primary-hover) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(14, 154, 201, 0.2);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item i {
    font-size: 48px;
    color: var(--ngs-primary);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--ngs-primary) 0%, var(--ngs-primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Tables
   ========================================================================== */
.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: var(--ngs-primary);
    color: #fff;
    font-weight: 600;
    border: none;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(14, 154, 201, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(14, 154, 201, 0.1);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-success,
.btn-info,
.btn-danger {
    color: white !important;
}

.btn i {
    margin-right: 5px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
}

.footer a {
    color: #4dd2ff;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}

/* ==========================================================================
   Map Container
   ========================================================================== */
#map-container,
#map {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.strip {
    height: 10px;
    background: linear-gradient(to right, var(--ngs-primary), var(--ngs-primary-hover));
}

.offset-header-banner {
    padding-top: 70px;
}

.section {
    padding: 40px 0;
}

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

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   Profile Container
   ========================================================================== */
.profile-container i {
    font-size: 35px;
    color: var(--ngs-primary);
    margin-right: 6px;
}

.profile-container .card-header {
    background-color: var(--ngs-primary);
    color: #fff;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption h3 {
        font-size: 24px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .navbar-brand {
        font-size: 20px;
    }
}

/* ==========================================================================
   Loading Spinner
   ========================================================================== */
.loading-spinner {
    text-align: center;
    padding: 40px;
}

.loading-spinner img {
    width: 50px;
    height: 50px;
}

/* ==========================================================================
   Alert Styles
   ========================================================================== */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-info {
    background-color: rgba(14, 154, 201, 0.1);
    color: var(--ngs-primary-dark);
}

/* ==========================================================================
   Dark Mode Adjustments
   ========================================================================== */
[data-bs-theme=dark] {
    --bs-body-bg: #1a1a1a;
    --bs-body-color: #e0e0e0;
}

[data-bs-theme=dark] .card {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

[data-bs-theme=dark] .card-header {
    background-color: var(--ngs-primary);
}

[data-bs-theme=dark] .table {
    color: #e0e0e0;
}

[data-bs-theme=dark] .header {
    background: #2a2a2a;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ==========================================================================
   Feature Cards - Why Fly With Us
   ========================================================================== */
.why-section {
    background: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(14, 154, 201, 0.15);
    border-top-color: var(--ngs-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 154, 201, 0.1) 0%, rgba(23, 186, 239, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--ngs-primary) 0%, var(--ngs-primary-hover) 100%);
}

.feature-icon i {
    font-size: 36px;
    color: var(--ngs-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
    background: white;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.map-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#map {
    border: none;
}

/* ==========================================================================
   Pilot Cards
   ========================================================================== */
.pilots-section {
    position: relative;
}

.pilot-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.pilot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(14, 154, 201, 0.15);
}

.pilot-avatar {
    margin-bottom: 15px;
}

.pilot-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--ngs-primary);
    object-fit: cover;
    object-position: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.pilot-card:hover .pilot-avatar img {
    border-color: var(--ngs-primary-hover);
    transform: scale(1.05);
}

.pilot-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.pilot-id {
    font-size: 14px;
    color: var(--ngs-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.pilot-base {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--ngs-primary) 0%, var(--ngs-primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Responsive Design - Airline Layout
   ========================================================================== */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 600px;
    }

    .hero-content {
        position: relative;
        background: linear-gradient(135deg, rgba(10, 122, 158, 0.95) 0%, rgba(14, 154, 201, 0.9) 100%);
    }

    .booking-widget {
        margin-top: 30px;
    }

    .hero-stats .col-3 {
        width: 50%;
        margin-bottom: 15px;
    }
}

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

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 28px;
    }

    .cta-section {
        padding: 60px 0;
        text-align: center;
    }

    .cta-section .col-lg-4 {
        margin-top: 20px;
    }
}

/* ==========================================================================
   FULL-WIDTH AIRLINE LAYOUT - Edge to Edge Design
   ========================================================================== */

/* Remove container padding for full-width */
.body.container {
    max-width: none !important;
    padding: 0 !important;
}

/* Hero Section - Full Width with Overlay */
.hero-section-fullwidth {
    position: relative;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
    margin: 0;
}

.hero-section-fullwidth .carousel,
.hero-section-fullwidth .carousel-inner,
.hero-section-fullwidth .carousel-item {
    height: 100%;
    width: 100%;
}

.hero-section-fullwidth .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 122, 158, 0.88) 0%, rgba(14, 154, 201, 0.80) 50%, rgba(23, 186, 239, 0.70) 100%);
    z-index: 1;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Inline Stats */
.hero-stats-inline {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item-inline {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary {
    background: white;
    color: var(--ngs-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    color: var(--ngs-primary-hover);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: white;
}

/* Booking Card */
.hero-booking-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-booking-card h3 {
    color: var(--ngs-primary);
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

.search-inputs {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

.search-field {
    flex: 1;
}

.search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--ngs-primary);
    box-shadow: 0 0 0 3px rgba(14, 154, 201, 0.1);
}

.search-swap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 56px;
    color: var(--ngs-primary);
    font-size: 20px;
}

.btn-search-flights {
    width: 100%;
    padding: 18px;
    background: var(--ngs-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search-flights:hover {
    background: var(--ngs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 154, 201, 0.3);
}

/* Features Full Width - Alternating Sections */
.features-fullwidth {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 80px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
    margin: 0 auto 60px;
    max-width: 1400px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(14, 154, 201, 0.1);
    transition: all 0.3s ease;
}

.feature-row:hover {
    box-shadow: 0 15px 50px rgba(14, 154, 201, 0.15);
    transform: translateY(-4px);
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    background: white;
}

.feature-text {
    max-width: 550px;
}

.feature-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(14, 154, 201, 0.1);
    color: var(--ngs-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.feature-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 16px;
    color: #333;
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--ngs-primary);
    margin-right: 12px;
    font-size: 18px;
}

.feature-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-stat-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 40px;
    background: rgba(14, 154, 201, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.big-stat {
    font-size: 92px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.big-stat-label {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 12px;
}

/* Live Map Full Width */
.live-map-fullwidth {
    background: #f8f9fa;
}

.map-header-bar {
    text-align: center;
    padding: 60px 40px 40px;
    background: white;
}

.map-header-bar h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.map-header-bar p {
    font-size: 18px;
    color: #666;
}

#map {
    height: 600px;
    width: 100%;
    border: none;
}

.map-footer-bar {
    text-align: center;
    padding: 40px;
    background: white;
}

.btn-view-fullmap {
    display: inline-block;
    padding: 16px 40px;
    background: var(--ngs-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-fullmap:hover {
    background: var(--ngs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 154, 201, 0.3);
    color: white;
}

/* Pilots Section - Full Width Dark */
.pilots-fullwidth {
    background: #1a1a1a;
    padding: 100px 0;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(14, 154, 201, 0.2);
    color: var(--ngs-primary-hover);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-header-centered h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.section-header-centered p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.pilots-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.pilots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.pilot-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pilot-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: var(--ngs-primary);
}

.pilot-avatar-large img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--ngs-primary);
    margin-bottom: 20px;
    object-fit: cover;
    object-position: center;
    background-color: #f8f9fa;
}

.pilot-card-modern h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pilot-callsign {
    color: var(--ngs-primary-hover);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pilot-base-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 20px;
}

.btn-pilot-profile {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(14, 154, 201, 0.15);
    color: var(--ngs-primary-hover);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--ngs-primary);
    transition: all 0.3s ease;
}

.btn-pilot-profile:hover {
    background: var(--ngs-primary);
    color: white;
}

.section-cta-centered {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all-pilots {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--ngs-primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-view-all-pilots:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
    color: var(--ngs-primary-hover);
}

/* Final CTA Banner */
.final-cta-banner {
    background: linear-gradient(135deg, var(--ngs-primary) 0%, var(--ngs-primary-dark) 100%);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-banner-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-block;
    padding: 22px 60px;
    background: white;
    color: var(--ngs-primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    color: var(--ngs-primary-hover);
}

/* Responsive Design - Full Width */
@media (max-width: 1200px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .hero-booking-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-row {
        grid-template-columns: 1fr;
        margin: 0 20px 40px;
        border-radius: 20px;
    }

    .feature-content {
        padding: 60px 40px;
    }

    .pilots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats-inline {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .pilots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row {
        margin: 0 15px 30px;
        border-radius: 16px;
        min-height: auto;
    }

    .feature-content {
        padding: 40px 30px;
    }

    .feature-text h2 {
        font-size: 32px;
    }

    .big-stat {
        font-size: 64px;
    }

    .big-stat-label {
        font-size: 16px;
    }

    .feature-stat-overlay {
        padding: 30px;
    }

    .cta-banner-content h2 {
        font-size: 36px;
    }
}

/* ============================================
   FLIGHT SCHEDULE PAGE - AIRLINE THEME
   ============================================ */

/* Page Hero - Compact version for internal pages */
.page-hero-airline {
    background: linear-gradient(135deg, var(--ngs-primary-dark) 0%, var(--ngs-primary) 50%, var(--ngs-primary-hover) 100%);
    padding: 80px 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-airline::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.page-hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Flights Search Section */
.flights-search-section {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.flights-search-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.flights-search-form-inline {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.search-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.form-select-airline,
.form-input-airline {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.form-select-airline:focus,
.form-input-airline:focus {
    outline: none;
    border-color: var(--ngs-primary);
    box-shadow: 0 0 0 3px rgba(14, 154, 201, 0.1);
}

.icao-input {
    text-transform: uppercase;
}

.search-actions {
    display: flex;
    gap: 10px;
    align-items: end;
}

.btn-search-airline,
.btn-reset-airline {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-search-airline {
    background: var(--ngs-primary);
    color: white;
}

.btn-search-airline:hover {
    background: var(--ngs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 154, 201, 0.3);
}

.btn-reset-airline {
    background: #6c757d;
    color: white;
}

.btn-reset-airline:hover {
    background: #5a6268;
    color: white;
    transform: translateY(-2px);
}

/* Results Section */
.flights-results-section {
    padding: 60px 0;
    margin: 0;
    background: white;
}

.flights-results-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.results-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.results-count {
    font-size: 20px;
    font-weight: 400;
    color: #666;
}

.results-view-toggle {
    display: flex;
    gap: 10px;
}

.view-mode {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-mode.active {
    background: var(--ngs-primary);
    color: white;
}

/* Flight Cards */
.flights-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flight-card-airline {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding: 30px;
}

.flight-card-airline:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--ngs-primary);
    transform: translateY(-2px);
}

.flight-card-main {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 30px;
    align-items: center;
}

/* Airline Badge */
.flight-airline-badge {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flight-airline-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.airline-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--ngs-primary);
    font-family: 'Montserrat', sans-serif;
}

/* Route Info */
.flight-route-info {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    flex: 1;
}

.route-airport {
    text-align: center;
}

.airport-code {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.airport-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.flight-time {
    font-size: 18px;
    font-weight: 600;
    color: var(--ngs-primary);
}

.route-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 150px;
}

.flight-number {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.route-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--ngs-primary), var(--ngs-primary-hover));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-line i {
    background: white;
    padding: 8px;
    color: var(--ngs-primary);
    font-size: 20px;
}

.flight-duration {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Flight Meta */
.flight-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.meta-item i {
    color: var(--ngs-primary);
    width: 16px;
}

.badge-flight-type {
    background: var(--ngs-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Flight Actions */
.flight-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    min-width: 180px;
}

.btn-flight-action {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-view {
    background: white;
    color: var(--ngs-primary);
    border: 2px solid var(--ngs-primary);
}

.btn-view:hover {
    background: var(--ngs-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-bid {
    background: var(--ngs-primary);
    color: white;
}

.btn-bid:hover {
    background: var(--ngs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 154, 201, 0.3);
}

.btn-bid.active {
    background: #dc3545;
}

.btn-bid.active:hover {
    background: #c82333;
}

.btn-file {
    background: #28a745;
    color: white;
}

.btn-file:hover {
    background: #218838;
    color: white;
    transform: translateY(-2px);
}

/* No Flights Message */
.no-flights-message {
    text-align: center;
    padding: 80px 40px;
    color: #666;
}

.no-flights-message i {
    color: #ccc;
    margin-bottom: 20px;
}

.no-flights-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.no-flights-message p {
    font-size: 16px;
    margin-bottom: 24px;
}

/* Pagination */
.flights-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.flights-pagination .pagination {
    display: flex;
    gap: 8px;
}

.flights-pagination .page-link {
    padding: 12px 18px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.flights-pagination .page-link:hover {
    border-color: var(--ngs-primary);
    color: var(--ngs-primary);
    background: rgba(14, 154, 201, 0.05);
}

.flights-pagination .page-item.active .page-link {
    background: var(--ngs-primary);
    border-color: var(--ngs-primary);
    color: white;
}

.flights-pagination .page-item.disabled .page-link {
    color: #ccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

/* Responsive - Flight Schedule */
@media (max-width: 1200px) {
    .search-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-actions {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .flight-card-airline {
        grid-template-columns: 1fr;
    }

    .flight-card-main {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .flight-airline-badge {
        width: 60px;
        height: 60px;
    }

    .flight-meta {
        align-items: flex-start;
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .flight-card-actions {
        flex-direction: row;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-hero-text h1 {
        font-size: 36px;
    }

    .page-hero-text p {
        font-size: 16px;
    }

    .flights-search-container,
    .flights-results-container {
        padding: 0 20px;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .flight-card-main {
        grid-template-columns: 1fr;
    }

    .flight-airline-badge {
        width: 100%;
        height: 60px;
    }

    .flight-route-info {
        gap: 15px;
    }

    .airport-code {
        font-size: 24px;
    }

    .route-visual {
        min-width: 100px;
    }

    .flight-card-actions {
        flex-direction: column;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ============================================
   FLIGHT DETAIL PAGE - AIRLINE THEME
   ============================================ */

/* Flight Detail Section */
.flight-detail-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 0;
}

.flight-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Flight Info Hero Card */
.flight-info-hero {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 50px;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.flight-info-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Airline Badge - Large */
.flight-detail-airline-badge {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 16px;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.flight-detail-airline-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.airline-text-large {
    font-size: 32px;
    font-weight: 800;
    color: var(--ngs-primary);
    font-family: 'Montserrat', sans-serif;
}

/* Flight Route Display - Large */
.flight-detail-route {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.route-endpoint {
    text-align: center;
}

.airport-code-large {
    font-size: 56px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.airport-name-large {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.flight-time-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--ngs-primary);
}

.route-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 250px;
}

.flight-ident-large {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.route-line-large {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.route-start-dot,
.route-end-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ngs-primary);
}

.route-path {
    height: 3px;
    background: linear-gradient(to right, var(--ngs-primary), var(--ngs-primary-hover));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-path i {
    background: white;
    padding: 12px;
    color: var(--ngs-primary);
    font-size: 24px;
    transform: rotate(45deg);
}

.flight-details-meta {
    display: flex;
    gap: 24px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.flight-details-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flight-details-meta i {
    color: var(--ngs-primary);
}

/* Flight Detail Tags */
.flight-detail-tags {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-tag {
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tag-flight-type {
    background: var(--ngs-primary);
    color: white;
}

.tag-aircraft {
    background: #f0f0f0;
    color: #333;
}

.tag-callsign {
    background: #e8f4f8;
    color: var(--ngs-primary);
}

/* Flight Detail Actions */
.flight-detail-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.btn-flight-detail {
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-book {
    background: var(--ngs-primary);
    color: white;
}

.btn-book:hover {
    background: var(--ngs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 154, 201, 0.3);
}

.btn-book.active {
    background: #dc3545;
}

.btn-book.active:hover {
    background: #c82333;
}

.btn-file-pirep {
    background: #28a745;
    color: white;
}

.btn-file-pirep:hover {
    background: #218838;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
}

.btn-simbrief {
    background: white;
    color: var(--ngs-primary);
    border: 2px solid var(--ngs-primary);
}

.btn-simbrief:hover {
    background: var(--ngs-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-login {
    background: var(--ngs-primary);
    color: white;
}

.btn-login:hover {
    background: var(--ngs-primary-hover);
    color: white;
    transform: translateY(-2px);
}

/* Flight Detail Grid */
.flight-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.flight-detail-left,
.flight-detail-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Flight Detail Cards */
.flight-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.card-header-airline {
    background: linear-gradient(135deg, var(--ngs-primary-dark) 0%, var(--ngs-primary) 100%);
    color: white;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-body-airline {
    padding: 30px;
}

/* Flight Notes */
.flight-notes-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.flight-notes-content p {
    margin-bottom: 16px;
}

.flight-notes-content ul,
.flight-notes-content ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

/* Weather Tabs */
.weather-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
}

.weather-tab-item {
    flex: 1;
}

.weather-tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.weather-tab-link:hover {
    color: var(--ngs-primary);
    background: rgba(14, 154, 201, 0.05);
}

.weather-tab-link.active {
    color: var(--ngs-primary);
    background: rgba(14, 154, 201, 0.1);
    border-bottom: 3px solid var(--ngs-primary);
}

.weather-tab-content {
    min-height: 200px;
}

.weather-tab-pane {
    display: none;
}

.weather-tab-pane.show {
    display: block;
}

/* Map Container Styling */
.flight-detail-card #map {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive - Flight Detail */
@media (max-width: 1200px) {
    .flight-detail-grid {
        grid-template-columns: 1fr;
    }

    .flight-detail-route {
        gap: 30px;
    }

    .airport-code-large {
        font-size: 42px;
    }

    .route-center {
        min-width: 180px;
    }

    .flight-info-hero {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .flight-detail-container {
        padding: 0 20px;
    }

    .flight-info-hero {
        padding: 30px 20px;
    }

    .flight-detail-route {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .airport-code-large {
        font-size: 48px;
    }

    .route-center {
        order: -1;
        min-width: 100%;
    }

    .flight-detail-actions {
        flex-direction: column;
    }

    .btn-flight-detail {
        width: 100%;
        justify-content: center;
    }

    .flight-details-meta {
        flex-direction: column;
        gap: 12px;
    }

    .weather-tabs {
        flex-direction: column;
        border-bottom: none;
    }

    .weather-tab-link {
        border-radius: 8px;
        border: 2px solid #e0e0e0;
    }

    .weather-tab-link.active {
        border-color: var(--ngs-primary);
    }

    .card-header-airline {
        padding: 16px 20px;
        font-size: 18px;
    }

    .card-body-airline {
        padding: 20px;
    }
}

/* ============================================
   PILOT ROSTER PAGE - AIRLINE THEME
   ============================================ */

/* Roster Section */
.roster-section {
    background: white;
    padding: 60px 0;
    margin: 0;
}

.roster-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Roster Header & Stats */
.roster-header {
    margin-bottom: 50px;
}

.roster-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--ngs-primary-dark) 0%, var(--ngs-primary) 50%, var(--ngs-primary-hover) 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.roster-stat {
    text-align: center;
    padding: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.roster-stat:last-child {
    border-right: none;
}

.roster-stat .stat-value {
    font-size: 48px;
    font-weight: 900;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.roster-stat .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Pilot Roster Grid */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Pilot Roster Cards */
.pilot-roster-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pilot-roster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--ngs-primary);
}

/* Pilot Card Header */
.pilot-card-header {
    background: linear-gradient(135deg, var(--ngs-primary-dark) 0%, var(--ngs-primary) 100%);
    padding: 30px;
    text-align: center;
    position: relative;
}

.pilot-avatar-roster {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.pilot-avatar-roster img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--ngs-primary);
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

.pilot-status-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: #28a745;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

/* Pilot Card Body */
.pilot-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pilot-ident-badge {
    display: inline-block;
    background: var(--ngs-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    align-self: flex-start;
}

.pilot-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.pilot-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
}

.pilot-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.pilot-country .fi {
    font-size: 18px;
}

/* Pilot Details Grid */
.pilot-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.pilot-detail-item i {
    font-size: 20px;
    color: var(--ngs-primary);
    width: 24px;
    text-align: center;
}

.detail-content {
    flex: 1;
}

.detail-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

.detail-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Pilot Card Footer */
.pilot-card-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.btn-view-pilot-profile {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--ngs-primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-pilot-profile:hover {
    background: var(--ngs-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 154, 201, 0.3);
}

/* Roster Pagination */
.roster-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.roster-pagination .pagination {
    display: flex;
    gap: 8px;
}

.roster-pagination .page-link {
    padding: 12px 18px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.roster-pagination .page-link:hover {
    border-color: var(--ngs-primary);
    color: var(--ngs-primary);
    background: rgba(14, 154, 201, 0.05);
}

.roster-pagination .page-item.active .page-link {
    background: var(--ngs-primary);
    border-color: var(--ngs-primary);
    color: white;
}

.roster-pagination .page-item.disabled .page-link {
    color: #ccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

/* Responsive - Roster */
@media (max-width: 1200px) {
    .roster-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .roster-stats-bar {
        gap: 20px;
        padding: 30px;
    }

    .roster-stat .stat-value {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .roster-container {
        padding: 0 20px;
    }

    .roster-stats-bar {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .roster-stat {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        padding: 30px 20px;
    }

    .roster-stat:last-child {
        border-bottom: none;
    }

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

    .pilot-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROFILE PAGE - AIRLINE THEME
   ============================================ */

/* Profile Hero */
.profile-hero {
    background: linear-gradient(135deg, var(--ngs-primary-dark) 0%, var(--ngs-primary) 50%, var(--ngs-primary-hover) 100%);
    padding: 80px 0 100px;
    margin: 0;
    position: relative;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.profile-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.profile-hero-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.profile-avatar-large {
    width: 200px;
    height: 200px;
    position: relative;
    flex-shrink: 0;
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid white;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #28a745;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.profile-hero-info {
    flex: 1;
    color: white;
}

.profile-ident {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
}

.profile-name {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin: 0 0 16px 0;
    font-family: 'Montserrat', sans-serif;
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 18px;
    margin-bottom: 24px;
}

.profile-airline,
.profile-country {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.profile-rank {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.rank-image {
    height: 50px !important;
    width: auto !important;
    max-width: 200px !important;
    min-width: 50px !important;
    object-fit: contain !important;
    margin-right: 15px !important;
    display: inline-block !important;
}

.rank-name {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.profile-actions {
    display: flex;
    gap: 16px;
}

.btn-profile-action {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-edit {
    background: white;
    color: var(--ngs-primary);
}

.btn-edit:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ngs-primary-hover);
    transform: translateY(-2px);
}

.btn-acars {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-acars:hover {
    background: white;
    color: var(--ngs-primary);
    transform: translateY(-2px);
}

/* Profile Stats Section */
.profile-stats-section {
    background: white;
    padding: 60px 0;
    margin: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.profile-stat-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.profile-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--ngs-primary);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ngs-primary), var(--ngs-primary-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Profile Awards Section */
/* Profile Flights Section */
.profile-flights-section {
    background: white;
    padding: 60px 0;
    margin: 0;
}

.no-flights-message {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 20px;
}

.no-flights-message h4 {
    color: #666;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-flights-message p {
    color: #999;
    font-size: 1rem;
}

.profile-awards-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 0;
}

.section-header-profile {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header-profile h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.section-header-profile h2 i {
    color: var(--ngs-primary);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.award-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffc107;
}

.award-card-header {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    padding: 40px;
    text-align: center;
    position: relative;
}

.award-image {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.award-icon-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.award-icon-placeholder i {
    font-size: 48px;
    color: white;
}

.award-card-body {
    padding: 24px;
    text-align: center;
}

.award-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    font-family: 'Montserrat', sans-serif;
}

.award-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Profile */
@media (max-width: 1200px) {
    .profile-hero-inner {
        gap: 30px;
    }

    .profile-avatar-large {
        width: 160px;
        height: 160px;
    }

    .profile-name {
        font-size: 38px;
    }

    .profile-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .profile-hero-content {
        padding: 0 20px;
    }

    .profile-hero {
        padding: 60px 0 80px;
    }

    .profile-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .profile-avatar-large {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 32px;
    }

    .profile-meta {
        flex-direction: column;
        gap: 12px;
    }

    .profile-rank {
        flex-direction: column;
        text-align: center;
    }

    .profile-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-profile-action {
        width: 100%;
        justify-content: center;
    }

    .profile-container {
        padding: 0 20px;
    }

    .profile-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 28px;
    }

    .section-header-profile h2 {
        font-size: 28px;
    }

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

/* ============================================
   PIREPS PAGE - AIRLINE THEME
   ============================================ */

/* PIREPs Section */
.pireps-section {
    background: white;
    padding: 60px 0;
    margin: 0;
}

.pireps-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pireps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.pireps-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.btn-file-new-pirep {
    padding: 14px 28px;
    background: var(--ngs-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-file-new-pirep:hover {
    background: var(--ngs-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 154, 201, 0.3);
}

/* PIREP Cards */
.pireps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pirep-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pirep-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--ngs-primary);
    transform: translateY(-2px);
}

.pirep-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.pirep-flight-info {
    flex: 1;
}

.pirep-ident {
    font-size: 20px;
    font-weight: 800;
    color: var(--ngs-primary);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.pirep-route {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #666;
}

.route-airport {
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

.pirep-status-badge {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-success {
    background: #28a745;
    color: white;
}

.status-warning {
    background: #ffc107;
    color: #333;
}

.status-danger {
    background: #dc3545;
    color: white;
}

.status-info {
    background: #17a2b8;
    color: white;
}

.pirep-card-body {
    padding: 30px;
}

.pirep-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.pirep-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pirep-detail i {
    font-size: 24px;
    color: var(--ngs-primary);
    width: 32px;
    text-align: center;
}

.detail-info {
    flex: 1;
}

.detail-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

.pirep-card-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 12px;
}

.btn-pirep-action {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-pirep {
    background: var(--ngs-primary);
    color: white;
}

.btn-view-pirep:hover {
    background: var(--ngs-primary-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-edit-pirep {
    background: white;
    color: var(--ngs-primary);
    border: 2px solid var(--ngs-primary);
}

.btn-edit-pirep:hover {
    background: var(--ngs-primary);
    color: white;
    transform: translateY(-2px);
}

/* No PIREPs Message */
.no-pireps-message {
    text-align: center;
    padding: 80px 40px;
    color: #666;
}

.no-pireps-message i {
    color: #ccc;
    margin-bottom: 20px;
}

.no-pireps-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.no-pireps-message p {
    font-size: 16px;
    margin-bottom: 24px;
}

/* PIREPs Pagination */
.pireps-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pireps-pagination .pagination {
    display: flex;
    gap: 8px;
}

.pireps-pagination .page-link {
    padding: 12px 18px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pireps-pagination .page-link:hover {
    border-color: var(--ngs-primary);
    color: var(--ngs-primary);
    background: rgba(14, 154, 201, 0.05);
}

.pireps-pagination .page-item.active .page-link {
    background: var(--ngs-primary);
    border-color: var(--ngs-primary);
    color: white;
}

/* Responsive - PIREPs */
@media (max-width: 768px) {
    .pireps-container {
        padding: 0 20px;
    }

    .pireps-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-file-new-pirep {
        width: 100%;
        justify-content: center;
    }

    .pirep-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pirep-details-grid {
        grid-template-columns: 1fr;
    }

    .pirep-card-footer {
        flex-direction: column;
    }

    .btn-pirep-action {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   DASHBOARD PAGE - AIRLINE THEME
   ============================================ */

/* Dashboard Hero */
.dashboard-hero {
    background: linear-gradient(135deg, var(--ngs-primary-dark) 0%, var(--ngs-primary) 100%);
    padding: 60px 0;
    margin: 0;
}

.dashboard-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.dashboard-welcome h1 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.dashboard-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.dashboard-alert {
    margin-top: 24px;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.dashboard-alert.alert-warning {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.5);
    color: white;
}

/* Dashboard Stats Section */
.dashboard-stats-section {
    background: white;
    padding: 60px 0;
    margin: 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dashboard-stat-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--ngs-primary);
}

.stat-icon-dash {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--ngs-primary), var(--ngs-primary-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-dash i {
    font-size: 28px;
    color: white;
}

.stat-content-dash {
    flex: 1;
}

.stat-value-dash {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label-dash {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Dashboard Content Section */
.dashboard-content-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.dashboard-main,
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.dashboard-card-header {
    background: linear-gradient(135deg, var(--ngs-primary-dark) 0%, var(--ngs-primary) 100%);
    color: white;
    padding: 20px 28px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-card-body {
    padding: 28px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 40px;
}

.empty-state i {
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.btn-dashboard-action {
    display: inline-block;
    padding: 12px 28px;
    background: var(--ngs-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dashboard-action:hover {
    background: var(--ngs-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 154, 201, 0.3);
}

/* Responsive - Dashboard */
@media (max-width: 1200px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .dashboard-hero-content,
    .dashboard-container {
        padding: 0 20px;
    }

    .dashboard-welcome h1 {
        font-size: 32px;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-value-dash {
        font-size: 28px;
    }

    .dashboard-card-header {
        padding: 16px 20px;
        font-size: 16px;
    }

    .dashboard-card-body {
        padding: 20px;
    }
}

/* ============================================
   CREW LOGIN PAGE - PROFESSIONAL DESIGN
   ============================================ */

/* Hide footer on login page */
.crew-login-container ~ footer,
body:has(.crew-login-container) footer {
    display: none !important;
}

.crew-login-container {
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f2f5 50%, #e1f5fe 100%);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.crew-login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(14,154,201,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.crew-login-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    width: 100vw;
    height: 100vh;
    background: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Left Side - Branding */
.crew-login-brand {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, var(--ngs-primary-dark) 40%, var(--ngs-primary) 100%);
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.crew-brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.crew-brand-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
}

.crew-brand-logo {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.crew-brand-logo:hover {
    transform: scale(1.05);
}

.crew-brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.crew-brand-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 60px 0;
    font-weight: 300;
}

.crew-brand-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.crew-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.crew-feature-item i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
}

/* Right Side - Login Form */
.crew-login-form-section {
    background: white;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.crew-login-form-wrapper {
    width: 100%;
    max-width: 450px;
}

.crew-login-header {
    margin-bottom: 40px;
}

.crew-login-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 12px 0;
    position: relative;
    display: inline-block;
}

.crew-login-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ngs-primary), var(--ngs-primary-hover));
    border-radius: 2px;
}

.crew-login-header p {
    font-size: 16px;
    color: #6c757d;
    margin: 20px 0 0 0;
}

.crew-login-form {
    margin-bottom: 32px;
}

.crew-form-group {
    margin-bottom: 28px;
}

.crew-form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crew-form-label i {
    color: var(--ngs-primary);
    margin-right: 8px;
}

.crew-form-input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.crew-form-input:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.crew-form-input::placeholder {
    color: #95a5a6;
    opacity: 1;
}

.crew-form-input:focus {
    outline: none;
    border-color: var(--ngs-primary);
    background: white;
    color: #2c3e50;
    box-shadow: 0 0 0 4px rgba(14, 154, 201, 0.08);
}

.crew-form-input.is-invalid {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.02);
}

.crew-form-input.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}

.crew-form-error {
    margin-top: 10px;
    padding: 12px 14px;
    background: rgba(220, 53, 69, 0.08);
    border-left: 4px solid #dc3545;
    border-radius: 6px;
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crew-form-options {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 28px;
}

.crew-forgot-link {
    color: var(--ngs-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.crew-forgot-link:hover {
    color: var(--ngs-primary-hover);
}

.crew-login-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--ngs-primary), var(--ngs-primary-hover));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(14, 154, 201, 0.25);
}

.crew-login-btn::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 ease;
}

.crew-login-btn:hover::before {
    left: 100%;
}

.crew-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14, 154, 201, 0.4);
}

.crew-login-btn:active {
    transform: translateY(0);
}

.crew-login-btn i {
    margin-right: 10px;
}

/* OAuth Section */
.crew-oauth-divider {
    text-align: center;
    margin: 32px 0 24px 0;
    position: relative;
}

.crew-oauth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.crew-oauth-divider span {
    position: relative;
    background: white;
    padding: 0 20px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
}

.crew-oauth-buttons {
    display: flex;
    gap: 12px;
}

.crew-oauth-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.crew-oauth-discord {
    background: #5865F2;
}

.crew-oauth-discord:hover {
    background: #4752C4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.crew-oauth-ivao {
    background: #0d2c99;
}

.crew-oauth-ivao:hover {
    background: #091f6e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 44, 153, 0.3);
}

.crew-oauth-vatsim {
    background: #29B473;
}

.crew-oauth-vatsim:hover {
    background: #229a61;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 180, 115, 0.3);
}

.crew-login-footer {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid #e0e0e0;
}

.crew-login-footer p {
    margin: 0;
    color: #6c757d;
    font-size: 15px;
}

.crew-register-link {
    color: var(--ngs-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.crew-register-link:hover {
    color: var(--ngs-primary-hover);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .crew-login-wrapper {
        grid-template-columns: 1fr;
        height: 100vh;
    }

    .crew-login-brand {
        display: none;
    }

    .crew-login-form-section {
        padding: 40px;
        height: 100vh;
    }
}

@media (max-width: 576px) {
    .crew-login-form-section {
        padding: 30px 24px;
        height: 100vh;
    }

    .crew-login-header h2 {
        font-size: 28px;
    }

    .crew-form-input {
        padding: 14px 16px;
        font-size: 15px;
    }

    .crew-oauth-buttons {
        flex-direction: column;
    }

    .crew-login-form-wrapper {
        max-width: 100%;
    }
}

/* ========================================
   REGISTRATION PAGE - AIRLINE THEME
   ======================================== */

.register-section-airline {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
}

.register-container-airline {
    max-width: 900px;
    margin: 0 auto;
}

.register-header-airline {
    text-align: center;
    margin-bottom: 40px;
}

.register-header-airline .register-logo {
    height: 80px;
    margin-bottom: 24px;
}

.register-header-airline h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--ngs-primary-dark);
    margin-bottom: 12px;
}

.register-header-airline p {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.register-card-airline {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.register-form-airline {
    padding: 48px;
}

/* Form Sections */
.form-section-airline {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section-airline:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
}

.section-title-airline {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ngs-primary-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-airline i {
    color: var(--ngs-primary);
    font-size: 22px;
}

/* Form Rows - Two Column Layout */
.form-row-airline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row-airline:last-child {
    margin-bottom: 0;
}

/* Form Groups */
.form-group-airline {
    display: flex;
    flex-direction: column;
}

.form-label-airline {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: block;
}

/* Form Inputs - Shared with login */
.form-input-airline-auth {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-input-airline-auth:focus {
    outline: none;
    border-color: var(--ngs-primary);
    box-shadow: 0 0 0 3px rgba(14, 154, 201, 0.1);
}

.form-input-airline-auth.is-invalid {
    border-color: #dc3545;
}

.form-input-airline-auth.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Select Dropdowns */
.form-select-airline {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select-airline:focus {
    outline: none;
    border-color: var(--ngs-primary);
    box-shadow: 0 0 0 3px rgba(14, 154, 201, 0.1);
}

.form-select-airline.is-invalid {
    border-color: #dc3545;
}

/* Form Errors */
.form-error-airline {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-error-airline i {
    font-size: 14px;
}

/* Terms & Conditions Box */
.toc-box-airline {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    max-height: 300px;
    overflow-y: auto;
}

.toc-box-airline h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ngs-primary-dark);
    margin-bottom: 16px;
}

.toc-box-airline p {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 12px;
}

/* Checkboxes */
.form-check-airline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-checkbox-airline {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.form-checkbox-airline:checked {
    background-color: var(--ngs-primary);
    border-color: var(--ngs-primary);
}

.form-checkbox-airline.is-invalid {
    border-color: #dc3545;
}

.form-check-label-airline {
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    user-select: none;
}

/* Register Button */
.btn-register-airline {
    width: 100%;
    padding: 18px 24px;
    background: var(--ngs-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(14, 154, 201, 0.3);
}

.btn-register-airline:hover:not(:disabled) {
    background: var(--ngs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14, 154, 201, 0.4);
}

.btn-register-airline:active:not(:disabled) {
    transform: translateY(0);
}

.btn-register-airline:disabled {
    background: #ced4da;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-register-airline i {
    font-size: 20px;
}

/* Register Footer */
.register-footer-airline {
    padding: 24px 48px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.register-footer-airline p {
    margin: 0;
    font-size: 15px;
    color: #6c757d;
}

.register-link-airline {
    color: var(--ngs-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link-airline:hover {
    color: var(--ngs-primary-hover);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section-airline {
        padding: 40px 16px;
    }

    .register-form-airline {
        padding: 32px 24px;
    }

    .register-header-airline h1 {
        font-size: 32px;
    }

    .register-header-airline p {
        font-size: 16px;
    }

    .form-row-airline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title-airline {
        font-size: 18px;
    }

    .toc-box-airline {
        padding: 20px;
        max-height: 250px;
    }

    .register-footer-airline {
        padding: 20px 24px;
    }
}

@media (max-width: 576px) {
    .register-header-airline .register-logo {
        height: 60px;
    }

    .register-header-airline h1 {
        font-size: 28px;
    }

    .register-form-airline {
        padding: 24px 20px;
    }

    .form-section-airline {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .btn-register-airline {
        padding: 16px 20px;
        font-size: 16px;
    }
}

/* ========================================
   CUSTOM PAGES - AIRLINE THEME
   ======================================== */

/* Page Hero */
.page-hero-airline {
    position: relative;
    background: linear-gradient(135deg, var(--ngs-primary-dark) 0%, var(--ngs-primary) 50%, var(--ngs-primary-hover) 100%);
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* Page Content */
.page-content-airline {
    background: white;
    padding: 80px 0;
    min-height: 400px;
}

.page-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-content-body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
}

.page-content-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--ngs-primary-dark);
    margin-top: 48px;
    margin-bottom: 24px;
}

.page-content-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--ngs-primary-dark);
    margin-top: 36px;
    margin-bottom: 20px;
}

.page-content-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ngs-primary);
    margin-top: 28px;
    margin-bottom: 16px;
}

.page-content-body p {
    margin-bottom: 20px;
}

.page-content-body ul,
.page-content-body ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.page-content-body li {
    margin-bottom: 12px;
}

.page-content-body a {
    color: var(--ngs-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-content-body a:hover {
    color: var(--ngs-primary-hover);
    text-decoration: underline;
}

.page-content-body strong {
    font-weight: 700;
    color: var(--ngs-primary-dark);
}

.page-content-body blockquote {
    border-left: 4px solid var(--ngs-primary);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #495057;
}

.page-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-content-body table th {
    background: var(--ngs-primary);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 700;
}

.page-content-body table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.page-content-body table tr:hover {
    background: #f8f9fa;
}

.page-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-hero-airline {
        padding: 80px 0 60px;
    }

    .page-hero-title {
        font-size: 42px;
    }

    .page-content-airline {
        padding: 60px 0;
    }

    .page-content-container {
        padding: 0 24px;
    }

    .page-content-body {
        font-size: 16px;
    }

    .page-content-body h2 {
        font-size: 30px;
    }

    .page-content-body h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .page-hero-airline {
        padding: 60px 0 40px;
    }

    .page-hero-content {
        padding: 0 20px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-content-airline {
        padding: 40px 0;
    }

    .page-content-container {
        padding: 0 20px;
    }

    .page-content-body h2 {
        font-size: 26px;
        margin-top: 32px;
    }

    .page-content-body h3 {
        font-size: 22px;
        margin-top: 24px;
    }

    .page-content-body table {
        font-size: 14px;
    }

    .page-content-body table th,
    .page-content-body table td {
        padding: 10px 12px;
    }
}

/* ====================================
   HOMEPAGE REDESIGN - IMPROVED SEPARATION & THEMING
   ==================================== */

/* Section Spacing & Separation */
.live-map-section,
.newest-pilots-section {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.live-map-section {
    background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
    padding: 60px 0;
}

[data-bs-theme="dark"] .live-map-section {
    background: #0d0d0d;
    border-bottom: 1px solid #333;
}

[data-bs-theme="dark"] .newest-pilots-section {
    background: #0d0d0d;
}

/* Modern Section Headers */
.section-header-modern {
    text-align: center;
    margin-bottom: 40px;
}

.section-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0e9ac9 0%, #17baef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 16px rgba(14, 154, 201, 0.3);
}

.section-icon-badge i {
    color: white;
    font-size: 2.5rem;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

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

[data-bs-theme="dark"] .section-header-modern h2 {
    color: #fff;
}

[data-bs-theme="dark"] .section-subtitle {
    color: #aaa;
}

/* Live Map Container - Modern Design */
.map-container-modern {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #0e9ac9;
}

.map-display {
    height: 500px;
    width: 100%;
}

.map-overlay-info {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.map-stat-pill {
    background: rgba(14, 154, 201, 0.95);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.map-stat-pill i {
    font-size: 1.3rem;
}

/* Pilot Cards - Themed Design */
.pilot-card-themed {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(14, 154, 201, 0.1);
    height: 100%;
}

.pilot-card-themed:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(14, 154, 201, 0.15);
    border-color: rgba(14, 154, 201, 0.3);
}

[data-bs-theme="dark"] .pilot-card-themed {
    background: #1a1a1a;
    border-color: #333;
}

[data-bs-theme="dark"] .pilot-card-themed:hover {
    background: #222;
    border-color: #0e9ac9;
}

.pilot-card-header {
    background: linear-gradient(135deg, rgba(14, 154, 201, 0.12) 0%, rgba(23, 186, 239, 0.08) 100%);
    padding: 30px 20px 60px;
    position: relative;
    border-bottom: 1px solid rgba(14, 154, 201, 0.15);
}

.pilot-avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(14, 154, 201, 0.2);
    position: relative;
    top: 30px;
    background: white;
}

.pilot-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pilot-card-body {
    padding: 50px 20px 20px;
    text-align: center;
}

.pilot-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.pilot-id {
    font-size: 0.9rem;
    color: #0e9ac9;
    font-weight: 600;
    margin-bottom: 5px;
}

.pilot-base {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

[data-bs-theme="dark"] .pilot-name {
    color: #fff;
}

[data-bs-theme="dark"] .pilot-base {
    color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-header-modern h2 {
        font-size: 2rem;
    }

    .section-icon-badge {
        width: 60px;
        height: 60px;
    }

    .section-icon-badge i {
        font-size: 2rem;
    }

    .live-map-section,
    .newest-pilots-section {
        padding: 60px 0;
    }

    .map-display {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .map-display {
        height: 350px;
    }

    .section-header-modern h2 {
        font-size: 1.8rem;
    }

    .map-stat-pill {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}


/* ==========================================================================
   AIRLINE PAGE - COMPREHENSIVE REDESIGN
   ========================================================================== */

/* Hero Section */
.airline-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.airline-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 122, 158, 0.85) 0%, rgba(14, 154, 201, 0.75) 50%, rgba(23, 186, 239, 0.65) 100%);
}

.airline-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
}

.hero-text-center {
    text-align: center;
    color: white;
}

.airline-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.airline-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-airline-primary,
.btn-airline-secondary {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-airline-primary {
    background: linear-gradient(135deg, #0e9ac9 0%, #17baef 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 154, 201, 0.4);
}

.btn-airline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 154, 201, 0.6);
    color: white;
}

.btn-airline-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-airline-secondary:hover {
    background: white;
    color: var(--ngs-primary);
}

/* Stats Bar */
.airline-stats-bar {
    background: linear-gradient(135deg, #0a7a9e 0%, #0e9ac9 100%);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

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

.stat-item-airline {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.airline-about-section,
.airline-mission-section,
.airline-fleet-section,
.airline-routes-section,
.airline-operations-section,
.airline-ranks-section,
.airline-community-section,
.airline-faq-section,
.airline-final-cta-section {
    padding: 100px 0;
}

.airline-about-section {
    background: white;
}

.airline-mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.airline-fleet-section {
    background: white;
}

.airline-routes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.airline-operations-section {
    background: white;
}

.airline-ranks-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.airline-community-section {
    background: white;
}

.airline-faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.airline-final-cta-section {
    background: linear-gradient(135deg, #0a7a9e 0%, #0e9ac9 50%, #17baef 100%);
    padding: 120px 0;
}

/* Section Headers */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #0e9ac9 0%, #17baef 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-subtitle-text {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about-content {
    padding-right: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--ngs-primary);
}

.about-features-list {
    list-style: none;
    padding: 0;
}

.about-features-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-features-list strong {
    color: var(--ngs-primary);
}

.about-image-main {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Value Cards */
.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 154, 201, 0.15);
    border-color: var(--ngs-primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0e9ac9 0%, #17baef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-description {
    color: #666;
    line-height: 1.6;
}

/* Fleet Cards */
.fleet-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #e9ecef;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 154, 201, 0.15);
    border-color: var(--ngs-primary);
}

.fleet-card-header {
    background: linear-gradient(135deg, #0e9ac9 0%, #17baef 100%);
    padding: 40px;
    text-align: center;
}

.fleet-card-icon {
    font-size: 4rem;
    color: white;
}

.fleet-card-body {
    padding: 30px;
    text-align: center;
}

.fleet-type {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ngs-primary);
}

.fleet-count {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fleet-description {
    color: #888;
    font-size: 0.95rem;
}

/* Routes Section */
.routes-content {
    padding-left: 3rem;
}

.routes-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.route-feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.route-feature-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.route-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.route-feature-item p {
    color: #666;
    margin: 0;
}

.routes-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Operations Steps */
.operation-step {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.operation-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 154, 201, 0.1);
    border-color: var(--ngs-primary);
}

.operation-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0e9ac9 0%, #17baef 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.operation-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.operation-desc {
    color: #666;
    line-height: 1.6;
}

/* Ranks Timeline */
.ranks-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.ranks-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0e9ac9 0%, #17baef 100%);
    transform: translateX(-50%);
}

.rank-item {
    position: relative;
    margin-bottom: 60px;
}

.rank-left .rank-content {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
    padding-right: calc(50% + 40px);
}

.rank-right .rank-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: calc(50% + 40px);
}

.rank-content {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.rank-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--ngs-primary);
    border-radius: 50%;
    border: 4px solid white;
    transform: translateY(-50%);
}

.rank-left .rank-content::before {
    right: calc(-50% - 50px);
}

.rank-right .rank-content::before {
    left: calc(-50% - 50px);
}

.rank-image {
    width: auto !important;
    height: 50px !important;
    max-width: 200px !important;
    min-width: 50px !important;
    object-fit: contain !important;
    margin-bottom: 10px;
    display: inline-block !important;
}

.rank-icon {
    font-size: 2rem;
    color: var(--ngs-primary);
    margin-bottom: 10px;
}

.rank-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.rank-hours {
    color: #666;
    font-size: 0.95rem;
}

/* Community Section */
.community-content {
    padding-right: 3rem;
}

.community-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.community-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.community-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.community-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.btn-link {
    color: var(--ngs-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-link:hover {
    color: var(--ngs-primary-hover);
}

.community-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0e9ac9 0%, #17baef 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Final CTA */
.cta-box {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-primary {
    background: white;
    color: var(--ngs-primary);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    color: var(--ngs-primary);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .airline-hero-title {
        font-size: 3rem;
    }

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

    .section-title-large {
        font-size: 2.5rem;
    }

    .about-content,
    .routes-content,
    .community-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .ranks-timeline::before {
        left: 30px;
    }

    .rank-left .rank-content,
    .rank-right .rank-content {
        padding-left: 60px;
        padding-right: 20px;
        text-align: left;
    }

    .rank-left .rank-content::before,
    .rank-right .rank-content::before {
        left: -10px;
        right: auto;
    }
}

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

    .airline-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .btn-airline-primary,
    .btn-airline-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .airline-about-section,
    .airline-mission-section,
    .airline-fleet-section,
    .airline-routes-section,
    .airline-operations-section,
    .airline-ranks-section,
    .airline-community-section,
    .airline-faq-section {
        padding: 60px 0;
    }
}

/* End of Airline Page Styles */

/* ==========================================================================
   PIREPs Search and Filter Section
   ========================================================================== */
.pireps-search-filter-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.pirep-search-form {
    width: 100%;
}

/* Search Bar */
.search-bar-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-input-wrapper {
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 1rem;
    transition: all 0.2s ease;
}

.search-input-wrapper:focus-within {
    background: white;
    border-color: var(--ngs-primary);
    box-shadow: 0 0 0 3px rgba(14, 154, 201, 0.1);
}

.search-input-wrapper i {
    color: #9ca3af;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    padding: 0.875rem 0;
    color: #333;
}

.search-input::placeholder {
    color: #9ca3af;
}

/* Buttons */
.btn-filter-toggle,
.btn-search-submit,
.btn-clear-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.btn-filter-toggle {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    position: relative;
}

.btn-filter-toggle:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.btn-filter-toggle.active {
    background: var(--ngs-primary);
    color: white;
    border-color: var(--ngs-primary);
}

.filter-active-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.btn-search-submit {
    background: var(--ngs-primary);
    color: white;
}

.btn-search-submit:hover {
    background: var(--ngs-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 154, 201, 0.3);
}

.btn-clear-all {
    background: #ef4444;
    color: white;
    text-decoration: none;
}

.btn-clear-all:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    color: white;
}

/* Filters Panel */
.filters-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.filters-panel.active {
    max-height: 500px;
    margin-top: 1.5rem;
    opacity: 1;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label i {
    color: var(--ngs-primary);
    font-size: 0.875rem;
}

.filter-select,
.filter-input {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: #f9fafb;
    transition: all 0.2s ease;
    outline: none;
}

.filter-select:focus,
.filter-input:focus {
    background: white;
    border-color: var(--ngs-primary);
    box-shadow: 0 0 0 3px rgba(14, 154, 201, 0.1);
}

.filter-input {
    text-transform: uppercase;
}

.filter-input::placeholder {
    text-transform: none;
    color: #9ca3af;
}

/* Dark Mode Support */
[data-bs-theme="dark"] .pireps-search-filter-section {
    background: #1f2937;
    border-color: #374151;
}

[data-bs-theme="dark"] .search-input-wrapper {
    background: #111827;
    border-color: #374151;
}

[data-bs-theme="dark"] .search-input-wrapper:focus-within {
    background: #1f2937;
}

[data-bs-theme="dark"] .search-input {
    color: white;
}

[data-bs-theme="dark"] .btn-filter-toggle {
    background: #374151;
    color: #d1d5db;
    border-color: #4b5563;
}

[data-bs-theme="dark"] .btn-filter-toggle:hover {
    background: #4b5563;
}

[data-bs-theme="dark"] .filters-grid {
    border-top-color: #374151;
}

[data-bs-theme="dark"] .filter-label {
    color: #d1d5db;
}

[data-bs-theme="dark"] .filter-select,
[data-bs-theme="dark"] .filter-input {
    background: #111827;
    border-color: #374151;
    color: white;
}

[data-bs-theme="dark"] .filter-select:focus,
[data-bs-theme="dark"] .filter-input:focus {
    background: #1f2937;
}

/* Responsive */
@media (max-width: 768px) {
    .search-bar-wrapper {
        flex-direction: column;
    }
    
    .search-input-wrapper,
    .btn-filter-toggle,
    .btn-search-submit,
    .btn-clear-all {
        width: 100%;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-panel.active {
        max-height: 800px;
    }
}

@media (max-width: 576px) {
    .pireps-search-filter-section {
        padding: 1rem;
    }
    
    .btn-filter-toggle,
    .btn-search-submit,
    .btn-clear-all {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}
