/* ===================================================================
   AIRPORT.DESKTOP.CSS - Desktop Layout Only (min-width: 769px)
   100% AUTHORITY | NO MOBILE LOGIC | NO COLLAPSIBLE BEHAVIOR
   =================================================================== */

/* ===== TOP HEADER (Non-sticky) ===== */
.site-header {
    background: #1e293b;
    padding: 12px 0;
    width: 100%;
}

.site-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header .logo-link img {
    height: 40px;
    width: auto;
}

.site-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.site-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--accent-orange);
}

/* ===== COMPACT BOOKING WIDGET ===== */
.compact-widget-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    width: 100%;
    box-shadow: var(--shadow-lg);
}

/* Journey Summary Widget - NEVER VISIBLE ON DESKTOP */
.journey-summary-widget {
    display: none !important;
}

/* Form Body - ALWAYS VISIBLE ON DESKTOP */
.compact-form-body {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    align-items: center !important;
    padding: 12px 15px !important;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: transparent;
    justify-content: center;
}

/* Mobile Header - NEVER VISIBLE ON DESKTOP */
.compact-mobile-header {
    display: none !important;
}

/* Rows - HORIZONTAL LAYOUT */
.compact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 1px;
}

/* Fields */
.compact-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Input & Select Sizing */
.compact-input,
.compact-select {
    width: 100%;
    padding: 8px 10px;
    font-size: 0.9rem;
    height: 38px;
    min-width: 140px;
}

/* Label Sizing */
.compact-lbl {
    font-size: 0.65rem;
    margin-bottom: 2px;
}

/* Search Button */
.compact-search-btn {
    padding: 0 24px;
    height: 38px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== TRIP TYPE SELECTOR ===== */
/* Desktop uses DROPDOWN */
.desktop-trip-dropdown {
    display: block !important;
    cursor: pointer;
}

/* Mobile toggle NEVER visible on desktop */
.compact-trip-type-toggle {
    display: none !important;
}

/* ===== SWAP BUTTON - NEVER VISIBLE ON DESKTOP ===== */
.mobile-swap-btn {
    display: none !important;
}

/* ===== ROUTE CARDS ===== */
.route-card-v2 {
    background: white;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.route-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.route-header-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.route-icon-v2 {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.route-info-v2 h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.route-info-v2 p {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.route-price-v2 {
    margin-bottom: 24px;
}

.route-price-v2 .price-label-v2 {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.route-price-v2 .price-value-v2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.route-book-btn-v2 {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* ===== FOOTER LAYOUT (Desktop) ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}