/* ============================================
           Ethiofly - Complete CSS with Animated Background
           ============================================ */
        
        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --info: #3b82f6;
            --light: #f9fafb;
            --dark: #1f2937;
            --gray: #6b7280;
            --gray-light: #e5e7eb;
            --shadow: 0 3px 6px rgba(2,6,23,0.04);
            --shadow-lg: 0 8px 20px rgba(2,6,23,0.06);
            --radius: 10px;
            --radius-sm: 6px;
        }

        body {
            background: transparent;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            min-height: 100vh;
            position: relative;
            color: #1f2937;
        }

        /* Beautiful Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(125deg, #4158D0, #C850C0, #FFCC70, #2193b0, #6dd5ed);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.4) 100%);
            backdrop-filter: blur(2px);
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            display: block;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            backdrop-filter: blur(2px);
            box-shadow: 0 0 20px rgba(255,255,255,0.3);
            animation: floatParticle 20s infinite linear;
        }

        @keyframes floatParticle {
            0% { transform: translateY(100vh) scale(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { transform: translateY(-100vh) scale(1.5) rotate(360deg); opacity: 0; }
        }

        .shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.2;
        }

        .shape {
            position: absolute;
            background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
            animation: morphShape 20s ease-in-out infinite;
        }

        .shape-1 {
            top: 10%;
            left: 5%;
            width: 300px;
            height: 300px;
            border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
            animation-duration: 18s;
        }

        .shape-2 {
            bottom: 10%;
            right: 5%;
            width: 400px;
            height: 400px;
            border-radius: 33% 67% 48% 52% / 41% 40% 60% 59%;
            animation-duration: 22s;
            animation-delay: -5s;
        }

        .shape-3 {
            top: 50%;
            right: 20%;
            width: 200px;
            height: 200px;
            border-radius: 70% 30% 46% 54% / 43% 53% 47% 57%;
            animation-duration: 15s;
            animation-delay: -2s;
        }

        @keyframes morphShape {
            0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
            33% { border-radius: 33% 67% 48% 52% / 41% 40% 60% 59%; }
            66% { border-radius: 70% 30% 46% 54% / 43% 53% 47% 57%; }
        }

        /* Utility Classes */
        .hidden { display: none !important; }
        .text-center { text-align: center; }
        .text-right { text-align: right; }
        .text-sm { font-size: 0.875rem; }
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        
        /* ----- HEADER (clean, sticky) ----- */
        .header {
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.5);
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        .navbar {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.8rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .logo-img {
            height: 36px;
            width: auto;
        }
        .logo h1 {
            font-weight: 700;
            font-size: 1.7rem;
            background: linear-gradient(140deg, #0a4d8c, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.8rem;
            border-radius: 40px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .navbar {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 0 20px;
          position: relative;
        }

        /* Bidix */
        .nav-left {
          flex: 1;
        }

        /* Bartamaha (Flights & Hotels) */
        .nav-center {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          display: flex;
          gap: 30px;
        }

        /* Midig */
        .nav-right {
          flex: 1;
          display: flex;
          justify-content: flex-end;
          gap: 20px;
          align-items: center;
        }

        .login-btn {
          padding: 6px 14px;
          border-radius: 6px;
          background: #007bff;
          color: white;
        }

       
       
       
          /* Page sections with glass effect */
        .page-section {
      display: none;
     animation: fadeIn 0.5s ease;
     }

        .page-section.active {
            display: block;
        }

        body.auth-view #searchTypeContainer,
        body.auth-view .popular-destinations,
        body.auth-view .airline-logos-container,
        body.auth-view .mobile-bottom-nav,
        body.auth-view .footer {
            display: none !important;
        }

        body.auth-view #auth-page {
            min-height: calc(100vh - 76px);
            padding: 42px 16px;
            align-items: flex-start;
            justify-content: center;
        }

        body.auth-view #auth-page.active {
            display: flex;
        }

        body.auth-view .auth-container {
            margin: 0 auto;
        }

        @media (max-width: 600px) {
            body.auth-view #auth-page {
                min-height: calc(100vh - 62px);
                padding: 20px 12px 90px;
            }
        }
      
        /* Auth / cards / glass */
        .auth-container,
        .dashboard-container {
            max-width: 520px;
            margin: 0 auto;
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 2rem;
            padding: 2rem 2rem 2.5rem;
            box-shadow: 0 15px 40px -12px rgba(0,20,30,0.2);
            border: 1px solid rgba(255,255,255,0.6);
        }

        .dashboard-container {
            max-width: 840px;
        }

        /* tabs */
        .auth-tabs {
            display: flex;
            gap: 0.5rem;
            background: rgba(230, 240, 250, 0.5);
            padding: 0.4rem;
            border-radius: 4rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.7);
        }

        .auth-tab {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.8rem 1.2rem;
            border-radius: 3rem;
            font-weight: 600;
            font-size: 1rem;
            color: #1e3c5a;
            cursor: pointer;
            transition: 0.2s;
        }

        .auth-tab.active {
            background: white;
            box-shadow: 0 6px 14px rgba(0,40,70,0.1);
            color: #0b2a44;
            font-weight: 700;
        }

        /* forms */
        .auth-form {
            display: none;
        }
        .auth-form.active {
            display: block;
        }

        .auth-form-container h2 {
            font-size: 1.9rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #103c5c, #1b5a7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.25rem;
        }

        .auth-subtitle {
            color: #3f5567;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .password-container {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #4f6f8f;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .checkbox {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .checkbox input {
            width: 1.2rem;
            height: 1.2rem;
            accent-color: #1f6e9c;
        }
        .checkbox label {
            margin: 0;
            font-weight: 500;
        }

        .btn-google {
            background: rgba(255,255,255,0.7);
            border: 1px solid rgba(255,255,255,0.5);
            padding: 0.9rem;
            border-radius: 3rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            width: 100%;
            margin-top: 0.8rem;
            cursor: pointer;
            transition: 0.15s;
            color: #1e3a5f;
        }
        .btn-google:hover {
            background: rgba(255,255,255,0.9);
            border-color: rgba(255,255,255,0.7);
        }
        .google-signin-shell {
            display: flex;
            justify-content: center;
            width: 100%;
            min-height: 44px;
            overflow: hidden;
        }
        .google-signin-shell .g_id_signin {
            width: min(100%, 320px);
        }

        .social-divider {
            text-align: center;
            margin: 1.4rem 0 1rem;
            position: relative;
        }
        .social-divider::before, .social-divider::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 38%;
            height: 1px;
            background: rgba(255,255,255,0.3);
        }
        .social-divider::before { left: 0; }
        .social-divider::after { right: 0; }
        .social-divider span {
            background: transparent;
            padding: 0 1rem;
            font-size: 0.8rem;
            color: #375e7c;
        }

        .auth-link {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.95rem;
        }
        .auth-link a {
            color: #0a4b70;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 1px dashed #7ba9c9;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .dashboard-header {
                flex-direction: column;
                text-align: center;
            }
            .dashboard-stats {
                margin-left: 0;
            }
            .dashboard-nav {
                flex-direction: column;
            }
            .dashboard-nav-btn {
                width: 100%;
                justify-content: center;
            }
            .auth-tabs {
                flex-direction: column;
            }
            .auth-form-container {
                padding: 30px 20px;
            }
            .auth-form-container h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .shape-1 {
                width: 200px;
                height: 200px;
            }
            .shape-2 {
                width: 250px;
                height: 250px;
            }
            .shape-3 {
                width: 150px;
                height: 150px;
            }
            #verifyOTP {
                font-size: 24px;
                letter-spacing: 6px;
            }
        }

        /* Dark mode */
        @media (prefers-color-scheme: dark) {
            .auth-form-container,
            .dashboard-header,
            .dashboard-section,
            .modal-6content {
                background: rgba(30, 30, 40, 0.95);
            }
            .auth-form-container h2,
            .modal h3 {
                -webkit-text-fill-color: transparent;
            }
            .auth-subtitle,
            .dashboard-info p,
            .empty-state p,
            .auth-link {
                color: #aaa;
            }
            .form-group label,
            .checkbox label {
                color: #ccc;
            }
            .form-group input {
                background: rgba(42, 42, 53, 0.9);
                border-color: rgba(58, 58, 69, 0.5);
                color: white;
            }
            .dashboard-info h2,
            .dashboard-section h3,
            .empty-state h4 {
                color: #eee;
            }
            .close {
                color: #aaa;
                background: rgba(255, 255, 255, 0.1);
            }
            .close:hover {
                color: white;
            }
            .social-divider span {
                background: transparent;
                color: #aaa;
            }
            .social-divider::before,
            .social-divider::after {
                background: rgba(255,255,255,0.2);
            }
        }
      AUTH CONTAINER
        ========================= */

        .auth-container {
            max-width: 500px;
            width: 100%;
            margin: 0 auto;
        }

        /* Tabs Wrapper */
        .auth-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            background: rgba(255, 255, 255, 0.6);
            padding: 6px;
            border-radius: 60px;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Individual Tab */
        .auth-tab {
            flex: 1;
            padding: 16px 24px;
            border: none;
            background: transparent;
            color: #2563eb;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        /* Hover */
        .auth-tab:hover {
            background: rgba(37, 99, 235, 0.08);
            color: #2563eb;
            transform: translateY(-2px);
        }

        /* Active Tab */
        .auth-tab.active {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: #ffffff;
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
            transform: translateY(-2px);
        }

        /* Active Hover */
        .auth-tab.active:hover {
            background: linear-gradient(135deg, #1d4ed8, #1e40af);
        }

        /* Forms */
        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
        }

        /* Card Container */
        .auth-form-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 40px 32px;
            width: 100%;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.4);
            animation: cardAppear 0.5s ease-out;
        }

        /* Animation */
        @keyframes cardAppear {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Title */
        .auth-form-container h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #4158D0, #C850C0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Subtitle */
        .auth-subtitle {
            color: #4b5563;
            margin-bottom: 32px;
            font-size: 16px;
        }
        
        /* FORM ELEMENTS */
        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #444;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="password"] {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 16px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.7);
            outline: none;
        }

        .form-group input:focus {
            border-color: #4158D0;
            box-shadow: 0 0 0 4px rgba(65, 88, 208, 0.1);
            background: rgba(255,255,255,0.9);
        }

        .form-group input.error {
            border-color: #f44336;
        }

        .password-container {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            font-size: 18px;
        }

        .hint-text {
            color: #888;
            font-size: 13px;
            margin-top: 6px;
            display: block;
        }

        .password-hints {
            margin-top: 10px;
            text-align: right;
        }

        .forgot-password {
            color: #4158D0;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        /* Checkbox */
        .checkbox {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .checkbox label {
            margin-bottom: 0;
            cursor: pointer;
            font-size: 15px;
        }

        .checkbox a {
            color: #4158D0;
            text-decoration: none;
            font-weight: 500;
        }

        .checkbox a:hover {
            text-decoration: underline;
        }

        /* Error messages */
        .error-message {
            color: #f44336;
            font-size: 13px;
            margin-top: 6px;
            display: block;]
            min-height: 20px;
        }
        
        .btn-google {
            width: 100%;
            padding: 16px;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(4px);
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 16px;
            color: #444;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .btn-google:hover {
            background: rgba(255,255,255,0.9);
            border-color: #4158D0;
        }

        .btn-google img {
            width: 20px;
            height: 20px;
        }

        .social-divider {
            text-align: center;
            margin: 24px 0;
            position: relative;
        }


        /* ===============================
   🔹 AUTH CONTAINER
=============================== */
.auth-container {
    max-width: 420px;
    margin: 60px auto;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: fadeIn 0.6s ease;
}

/* Tabs */
.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
}

.auth-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #aaa;
    cursor: pointer;
    transition: 0.3s;
}

.auth-tab.active {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
    font-weight: bold;
}

/* ===============================
   🔹 FORM
=============================== */
.auth-form-container h2 {
    margin-bottom: 5px;
}

.auth-subtitle {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
    color: #ccc;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: 0.3s;
}

.form-group input:focus {
    border: 1px solid #3b82f6;
    background: rgba(255,255,255,0.12);
}

/* Password */
.password-container {
    display: flex;
    align-items: center;
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border: none;
    padding: 12px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59,130,246,0.5);
}

.btn-block {
    width: 100%;
}

/* Google */
.btn-google {
    background: #fff;
    color: #000;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Divider */
.social-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.social-divider span {
    background: #1e293b;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.social-divider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #444;
    top: 50%;
    left: 0;
}

/* ===============================
   🔹 DASHBOARD
=============================== */
.dashboard-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 20px;
    flex-wrap: wrap;
}

/* Avatar */
.avatar-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Stats */
.dashboard-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

/* Nav */
.dashboard-nav {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-nav-btn {
    padding: 10px 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #ccc;
    cursor: pointer;
}

.dashboard-nav-btn.active {
    background: #3b82f6;
    color: #fff;
}

/* Content */
.dashboard-section {
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
}

/* ===============================
   🔹 EMPTY STATE
=============================== */
.empty-state {
    text-align: center;
    color: #aaa;
    padding: 40px;
}

/* ===============================
   🔹 MODAL
=============================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    background: #1e293b;
    padding: 20px;
    margin: 100px auto;
    border-radius: 20px;
}

/* ===============================
   🔹 RESPONSIVE
=============================== */

/* Tablet */
@media (max-width: 768px) {
    .auth-container {
        margin: 20px;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .auth-container {
        padding: 15px;
    }

    .dashboard-nav {
        flex-direction: column;
    }

    .dashboard-nav-btn {
        width: 100%;
    }
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

        
        /* mobile bottom nav */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(255,255,255,0.5);
            padding: 0.6rem 1rem;
            justify-content: space-around;
            z-index: 60;
        }
        .bn-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.7rem;
        }
        .bn-item i { font-size: 1.3rem; }
        .bn-item.active { color: var(--primary); }


        
        .dashboard-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .dashboard-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 30px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .avatar-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4158D0, #C850C0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: white;
        }

        .dashboard-info h2 {
            font-size: 28px;
            margin-bottom: 5px;
            color: #333;
        }

        .dashboard-info p {
            color: #666;
            font-size: 16px;
        }

        .dashboard-stats {
            margin-left: auto;
            display: flex;
            gap: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item strong {
            display: block;
            font-size: 28px;
            color: #4158D0;
        }

        .stat-item span {
            color: #666;
            font-size: 14px;
        }

        .dashboard-nav {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px;
            border-radius: 60px;
            backdrop-filter: blur(10px);
            flex-wrap: wrap;
        }

        .dashboard-nav-btn {
            padding: 14px 24px;
            border: none;
            background: transparent;
            color: #36454F;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .dashboard-nav-btn.active {
            background: #ffffff;
            color: #4158D0;
        }

        .dashboard-nav-btn:hover {
            background: #f3f4f6;
            color: #4158D0;
        }
        
        .dashboard-tab {
            display: none;
        }

        .dashboard-tab.active {
            display: block;
        }

        .dashboard-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .dashboard-section h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
        }

        .empty-state i {
            color: #ccc;
            margin-bottom: 20px;
        }

        .empty-state h4 {
            font-size: 22px;
            color: #333;
            margin-bottom: 10px;
        }

        .empty-state p {
            color: #666;
            margin-bottom: 20px;
        }

        /* MODAL STYLES */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 40px 32px;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: modalAppear 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        @keyframes modalAppear {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.05);
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close:hover {
            background: rgba(0, 0, 0, 0.1);
            transform: rotate(90deg);
        }

        .modal h3 {
            font-size: 28px;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #4158D0, #C850C0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        #verifyOTP {
            width: 100%;
            padding: 16px;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 16px;
            font-size: 32px;
            text-align: center;
            letter-spacing: 12px;
            font-weight: 700;
            outline: none;
            background: rgba(255,255,255,0.7);
        }

        #verifyOTP:focus {
            border-color: #4158D0;
            box-shadow: 0 0 0 4px rgba(65, 88, 208, 0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .dashboard-header {
                flex-direction: column;
                text-align: center;
            }
            .dashboard-stats {
                margin-left: 0;
            }
            .dashboard-nav {
                flex-direction: column;
            }
            .dashboard-nav-btn {
                width: 100%;
                justify-content: center;
            }
            .auth-tabs {
                flex-direction: column;
            }
            .auth-form-container {
                padding: 30px 20px;
            }
            .auth-form-container h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .shape-1 {
                width: 200px;
                height: 200px;
            }
            .shape-2 {
                width: 250px;
                height: 250px;
            }
            .shape-3 {
                width: 150px;
                height: 150px;
            }
            #verifyOTP {
                font-size: 24px;
                letter-spacing: 6px;
            }
        }

        /* Dark mode */
        @media (prefers-color-scheme: dark) {
            .auth-form-container,
            .dashboard-header,
            .dashboard-section,
            .modal-content {
                background: rgba(30, 30, 40, 0.95);
            }
            .auth-form-container h2,
            .modal h3 {
                -webkit-text-fill-color: transparent;
            }
            .auth-subtitle,
            .dashboard-info p,
            .empty-state p,
            .auth-link {
                color: #aaa;
            }
            .form-group label,
            .checkbox label {
                color: #ccc;
            }
            .form-group input {
                background: rgba(42, 42, 53, 0.9);
                border-color: rgba(58, 58, 69, 0.5);
                color: white;
            }
            .dashboard-info h2,
            .dashboard-section h3,
            .empty-state h4 {
                color: #eee;
            }
            .close {
                color: #aaa;
                background: rgba(255, 255, 255, 0.1);
            }
            .close:hover {
                color: white;
            }
            .social-divider span {
                background: transparent;
                color: #aaa;
            }
            .social-divider::before,
            .social-divider::after {
                background: rgba(255,255,255,0.2);
            }
        }
 
     
      
   
        /* Compact Passenger Selector */
        .passengers-selector {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(12px);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: var(--shadow-lg);
            border: 2px solid rgba(255,255,255,0.5);
            z-index: 1000;
            display: none;
        }

        .passengers-selector.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        .passenger-type {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .passenger-type:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .passenger-label {
            font-weight: 500;
            color: var(--dark);
            font-size: 0.9rem;
            flex: 1;
        }

        .passenger-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .passenger-controls button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.7);
            color: var(--gray);
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .passenger-controls button:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(255,255,255,0.9);
        }

        .passenger-controls button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .passenger-controls input {
            width: 40px;
            text-align: center;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 6px;
            padding: 0.4rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            background: rgba(255,255,255,0.7);
        }

        .passenger-summary {
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255,255,255,0.3);
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.85rem;
            line-height: 1.4;
        }

       

        /* Direct flights checkbox (LEFT) */
        .checkbox-left {
            order: 1;
            flex: 0 0 auto;
            margin-right: auto;
        }

    
        /* ===== YAREE (compact) dropdown buttons exactly as requested ===== */
        .dropdown-btn {
            padding: 4px 8px !important;
            height: 32px !important;
            font-size: 13px !important;
            border-radius: 6px !important;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.3);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            color: #1e2f44;
            font-weight: 500;
            transition: 0.2s;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            min-width: 0 !important;
            width: auto !important;
            white-space: nowrap;
        }
        .dropdown-btn:hover {
            border-color: #3b82f6;
            background: rgba(255,255,255,0.9);
        }
        .dropdown-btn-content {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .dropdown-btn i {
            font-size: 12px;
        }
        .selected-flag img {
            width: 20px;
            height: 14px;
            display: block;
            border-radius: 2px;
        }
        .selected-name {
            font-size: 12px;
            font-weight: 600;
            color: #0b263b;
        }

        /* wrapper for positioning */
.dropdown-wrapper {
    position: relative; /* required for absolute positioning */
    display: inline-block;
}

/* beautiful dropdown panel – center under button */
.beautiful-dropdown {
    position: absolute;
    top: 100%; /* bottom of button */
    left: 50%; /* horizontally center relative to wrapper */
    transform: translateX(-50%); /* center horizontally */
    min-width: 280px;
    margin-top: 6px; /* small gap from button */
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    z-index: 2000;
    display: none;
    animation: dropdownFade 0.2s ease;
}

/* dropdown fade animation */
@keyframes dropdownFade {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.beautiful-dropdown.active {
    display: block;
}

        .dropdown-header {
            padding: 14px 18px;
            background: rgba(248,250,252,0.7);
            border-bottom: 1px solid rgba(255,255,255,0.5);
            border-radius: 20px 20px 0 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: #1e293b;
        }
        .dropdown-header i {
            color: #3b82f6;
        }

        .dropdown-search {
            padding: 10px 16px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }
        .dropdown-search i {
            position: absolute;
            left: 28px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 14px;
        }
        .dropdown-search-input {
            width: 100%;
            padding: 10px 16px 10px 36px;
            border: 1px solid rgba(255,255,255,0.6);
            border-radius: 40px;
            font-size: 13px;
            background: rgba(255,255,255,0.8);
            outline: none;
        }
        .dropdown-search-input:focus {
            border-color: #3b82f6;
            background: white;
        }

        .dropdown-items {
            max-height: 300px;
            overflow-y: auto;
            padding: 8px 4px;
        }
        .dropdown-items::-webkit-scrollbar {
            width: 5px;
        }
        .dropdown-items::-webkit-scrollbar-thumb {
            background: rgba(0,0,0,0.15);
            border-radius: 10px;
        }

        /* dropdown item */
        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.15s;
            margin: 2px 6px;
            position: relative;
        }
        .dropdown-item:hover {
            background: rgba(255,255,255,0.7);
            transform: translateX(3px);
        }
        .dropdown-item.active {
            background: rgba(59,130,246,0.08);
            border: 1px solid rgba(59,130,246,0.2);
        }
        .dropdown-item img {
            width: 26px;
            height: 18px;
            border-radius: 3px;
            object-fit: cover;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .item-content {
            flex: 1;
        }
        .item-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .item-name {
            font-weight: 500;
            color: #1e293b;
        }
        .item-code {
            font-weight: 600;
            color: #2563eb;
            background: rgba(255,255,255,0.6);
            padding: 2px 8px;
            border-radius: 40px;
            font-size: 11px;
        }
        .item-sub {
            font-size: 11px;
            color: #5f6c84;
            margin-top: 2px;
        }
        .check-icon {
            color: #10b981;
            font-size: 14px;
            margin-left: 6px;
        }

        /* no results */
        .dropdown-no-results {
            padding: 24px;
            text-align: center;
            color: #94a3b8;
        }

        /* little extra flag style for languages (we use globe) */
        .fa-language, .fa-coins {
            color: #3b82f6;
        }

        /* tiny responsive */
        @media (max-width: 600px) {
            .beautiful-dropdown {
                min-width: 260px;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .layover-duration {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--warning);
            font-weight: 600;
        }

        .layover-badge {
            background: var(--warning);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 2px;
            font-size: 0.7rem;
            font-weight: 300;
        }

        
      /* Swap Button Container */
.swap-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Google Flights Style */
#swapLocations {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dadce0;
    background: #fff;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover (very subtle) */
#swapLocations:hover {
    background: #f1f3f4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Click effect */
#swapLocations:active {
    background: #e8eaed;
    transform: scale(0.95);
}

/* Icon */
#swapLocations i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Rotate only icon (not whole button) */
#swapLocations.rotate i {
    transform: rotate(180deg);
}

        /* Search Button Style Qurxoon */
        .btn-search {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Hover Effect */
        .btn-search:hover {
            background: linear-gradient(135deg, #27ae60, #1e8449);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
        }

        /* Click Effect */
        .btn-search:active {
            transform: scale(0.97);
        }

        /* Icon size */
        .btn-search i {
            font-size: 14px;
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        #backToSearch {
            flex: 0 0 auto;
            padding: 6px 14px;
            font-size: 13px;
        }

        .navbar{
            display:flex;
            align-items:center;
            justify-content:space-between;
        }

        /* navigation links center */
        .nav-center{
            display:flex;
            align-items:center;
            gap:20px;
        }

        /* right side controls */
        .header-controls{
            display:flex;
            align-items:center;
            gap:6px;
        }

        /* nav-links container */
        .nav-links{
            display:flex;
            align-items:center;
            gap:20px;
            margin-left:auto;
        }

        .currency-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            font-family: 'Segoe UI', sans-serif;
        }

        .dropdown-btn {
            width: 220px;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        
        .beautiful-dropdown {
            position: absolute;
            top: 110%;
            right: 0;
            width: 340px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: none;
            z-index: 999;
            max-height: 400px;
            overflow-y: auto;
        }
        
      

        .beautiful-dropdown {
            position: absolute;
            top: 110%;
            left: 0;
            width: 320px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: none;
            z-index: 999;
            max-height: 400px;
            overflow-y: auto;
        }
  .currency-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            font-family: 'Segoe UI', sans-serif;
        }

        .dropdown-btn {
            width: 100%;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .dropdown-header {
            padding: 10px 15px;
            font-weight: 600;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dropdown-search {
            padding: 8px 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dropdown-search-input {
            flex: 1;
            padding: 6px 8px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }

        .dropdown-items {
            display: flex;
            flex-direction: column;
        }

        .currency-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 15px;
            cursor: pointer;
            transition: background 0.15s;
        }

        .currency-option:hover {
            background: #f2f2f2;
        }

        .currency-option.active {
            background: #e0f0ff;
        }

        .currency-symbol {
            font-weight: 700;
            width: 35px;
        }

        .currency-code {
            font-weight: 600;
        }

        .currency-name {
            font-size: 12px;
            color: #666;
        }

        .type-btn{
            border:none;
            background:transparent;
            padding:10px 20px;
            border-radius:20px;
            font-weight:600;
            cursor:pointer;
            color:#475569;
            transition:0.2s;
        }

        .type-btn i{
            margin-right:6px;
        }

        /* active */
        .type-btn.active{
            background:white;
            color:#2563eb;
            box-shadow:0 2px 6px rgba(0,0,0,0.1);
        }

.popular-destinations {
    margin-top: 180px;
    position: relative;
    z-index: 2;
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* yaryar */
    gap: 15px;
    margin-top: 80px;
}

.destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.destination-card:hover {
    transform: scale(1.05);
}

.destination-card img {
    width: 100%;
    height: 120px; /* 🔥 YAREE */
    object-fit: cover;
}

.destination-info {
    padding: 10px;
}

.destination-info h4 {
    font-size: 14px; /* yaree text */
}

.destination-price {
    color: #007bff;
    font-weight: bold;
}

.popular-destinations {
    padding: 28px 20px;
}

.destinations-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 8px;
    margin: 18px auto 0;
    max-width: 1320px;
}

.destination-card {
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.destination-card img {
    height: 74px;
    display: block;
}

.destination-info {
    padding: 8px 6px;
}

.destination-info h4 {
    font-size: 12px;
    line-height: 1.25;
    margin-bottom: 3px;
}

.destination-info p {
    font-size: 11px;
    margin: 0;
}

@media (max-width: 900px) {
    #flights-page .form-row {
        flex-wrap: wrap;
    }

    .destinations-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}



        /* Loading Animation */
        .loading-flights {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 2rem;
        }

        .flight-card-skeleton {
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(4px);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            color: var(--gray);
            text-align: center;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* =========================
   RESULTS LAYOUT
========================= */

/* Container: sidebar + results */
.search-layout {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    align-items: flex-start; /* left-aligned */
}

/* Sidebar */
.ethiofly-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* Flight rows ku dheggan dhinaca left ee container-ka */
.ethiofly-main-results {
    max-width: 960px;       /* width container-ka guud */
    margin: 0;              /* remove auto centering */
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ethiofly-filter-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

.ethiofly-filter-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ethiofly-filter-section {
    margin-bottom: 24px;
}

.ethiofly-filter-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 10px;
}

.ethiofly-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 500;
}

.ethiofly-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.filter-count {
    margin-left: auto;
    color: #94a3b8;
    font-size: 0.85rem;
}


.ethiofly-top-filters {
    display: flex;
    justify-content: space-between; /* left & right */
    align-items: flex-start;        /* 🔥 IMPORTANT: line-ka kore ha isku simnaado */
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Quick filters */
.ethiofly-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center; /* ✅ sidoo kale center */
}

.ethiofly-quick-filter {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #dbe4f0;
    border-radius: 8px;
    background: #ffffff;
    color: #475569;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.ethiofly-quick-filter i {
    color: #64748b;
    font-size: 12px;
}

.ethiofly-quick-filter:hover {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.ethiofly-quick-filter.active {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.ethiofly-quick-filter.active i {
    color: #fff;
}

@media (max-width: 768px) {
    .ethiofly-top-filters {
        display: block;
        overflow: hidden;
    }

    .ethiofly-quick-filters {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;
        padding: 5px 0;
        scrollbar-width: none;
    }

    .ethiofly-quick-filters::-webkit-scrollbar {
        display: none;
    }

    .ethiofly-quick-filter {
        flex: 0 0 auto;
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .ethiofly-modify-search {
        width: 100%;
        margin-top: 10px;
    }
}

/* Modify button */
.ethiofly-modify-search {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    white-space: nowrap;
    height: auto; /* ✅ ka saar fit-content */
}
/* =========================
   BADGES
========================= */
.badge-cheapest {
    background: #ecfdf5;
    color: #0f6e4a;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-value {
    background: #eef2ff;
    color: #2563eb;
    padding: 3px 10px;
    border-radius: 20px;
}

.ethiofly-flight-row {
    display: grid;
    grid-template-columns: 90px 1fr 75px;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 0.5px solid #eef2f6;
    position: relative;
}

.ethiofly-flight-row:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
    transform: translateY(-1px);
}
/* =========================
   LEFT: AIRLINE INFO
========================= */
.airline-logos-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.airline-logo-container {
    width: 64px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airline-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.airline-logo {
    font-weight: bold;
    font-size: 10px;
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
}

.airline-name {
    font-weight: 350;
    font-size: 0.8rem;
    color: #1e293b;
    margin-top: 4px;
}

.booking-options {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 4px;
}
/* =========================
   CENTER: FLIGHT ROUTE
========================= */
.ethiofly-flight-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* 🔥 USE GRID INSTEAD OF FLEX */
.flight-times {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* LEFT | CENTER | RIGHT */
    align-items: center;
}

/* LEFT */
.departure-time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

/* CENTER (LINE PERFECT MIDDLE) */
.ethiofly-stops-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* RIGHT */
.arrival-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

/* TEXT */
.ethiofly-time-large {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.ethiofly-code {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.ethiofly-city {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* =========================
   STOPS SECTION
========================= */
.stop-line {
    height: 1px;
    background: #e2e8f0;
    width: 120px; /* 🔥 FIXED WIDTH = PERFECT CENTER */
    position: relative;
}

/* ✈️ PLANES */
.stop-line::before,
.stop-line::after {
    content: "✈";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #64748b;
}

.stop-line::before {
    left: -8px;
}

.stop-line::after {
    right: -8px;
}

/* TEXT UNDER LINE */
.ethiofly-duration {
    font-size: 0.7rem;
    color: #475569;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 12px;
    margin-top: 6px;
    font-weight: 500;
}

.stop-text {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 3px;
}

.via-text {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 2px;
}
/* RETURN FLIGHT */
.return-flight {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
}

.return-flight .flight-times {
    opacity: 0.85;
}

/* =========================
   RIGHT: PRICE SECTION
========================= */
.ethiofly-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.price-badge {
    text-align: right;
}

.badge-label {
    font-size: 0.5rem;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 3px;
}

.ethiofly-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.ethiofly-price .currency {
    font-size: 0.55rem;
    color: #64748b;
    font-weight: 400;
}

.ethiofly-price .amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.per-person {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 4px;
}

.booking-source-info {
    text-align: right;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 4px;
    padding-top: 4px;
    border-top: none; 
    width: 100%;
}

.booking-source-info .source {
    font-weight: 300;
    color: #475569;
}

.conversion {
    font-size: 0.35rem;
    color: #94a3b8;
    display: inline-block;
    margin-top: 1px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .ethiofly-flight-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ethiofly-price-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .price-badge {
        text-align: left;
    }
    
    .booking-source-info {
        text-align: left;
    }
}

 /* Container */
.ethiofly-progress-container {
    width: 100%;
    margin: 1.25rem 0;
    display: none;
}

/* Header */
.ethiofly-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* Title */
.ethiofly-progress-title {
    font-size: 14px;
    font-weight: 600;
    color: #0066ff;
}

/* Percent */
.ethiofly-progress-percent {
    font-size: 13px;
    font-weight: 700;
    color: #1a2c3e;
    background: #eef4ff;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Track */
.ethiofly-progress-track {
    height: 8px;
    background: #eef2f8;
    border-radius: 50px;
    position: relative;
    overflow: visible; /* muhiim */
}

/* Progress Bar */
.ethiofly-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0066ff, #00c6ff);
    border-radius: 50px;
    position: relative;
    transition: width 0.4s ease;
}

/* ✈️ BIG Plane */
.ethiofly-progress-bar .plane {
    position: absolute;
    top: 50%;
    right: -20px; /* ka baxsan line-ka */
    transform: translateY(-50%);
    font-size: 20px; /* 👈 ka weyn */
    z-index: 2;
    animation: fly 1.2s infinite ease-in-out;
}

/* Animation */
@keyframes fly {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-70%) translateX(3px); }
    100% { transform: translateY(-50%) translateX(0); }
}


           
        .airline-logos-container {
  overflow: hidden;
  width: 100%;
}

.logos-wrapper {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.logos-wrapper img {
  width: 100px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logos-wrapper {
  display: flex;
  width: max-content;
}
@media (max-width: 768px) {
  /* Qari header-ka mobile-ka */
  header,
  .navbar,
  .nav-links,
  .logo,
  .nav-center,
  .header-controls,
  .header-controls-flex {
    display: none !important;
  }

/* =========================
   MOBILE COMPLETE FIX (FULL SCREEN VIEW)
========================= */
@media (max-width: 768px) {

  /* PAGE BACKGROUND */
  body {
    background: #f1f5f9 !important;
    color: #0f172a;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Qari header-ka */
  header,
  .navbar,
  .nav-links,
  .logo,
  .nav-center,
  .header-controls,
  .header-controls-flex {
    display: none !important;
  }

  /* SEARCH CONTAINER FULL VIEW */
  .search-container {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin: 12px; /* margin yar oo ka duwan top-ka */
    max-height: calc(100vh - 24px); /* full screen minus margin */
    overflow-y: auto; /* scroll haddii content badan yahay */
    box-sizing: border-box;
  }

  /* SEARCH TABS */
  .search-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
  }

  .search-tab {
    flex: 1;
    background: #e2e8f0;
    color: #334155;
    border-radius: 20px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
  }

  .search-tab.active {
    background: #16a34a;
    color: #ffffff;
  }

  /* FORM ROWS - mobile compact */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px; /* yaree gap-ka 12px -> 6px */
  position: relative; /* dropdowns absolute */
}

/* INPUTS */
.form-group input,
.form-group select {
  width: 100%;
  height: 44px; /* yaree height-ka 48px -> 44px */
  border-radius: 12px;
  font-size: 14px;
  padding: 0 8px; /* yarayso padding gudaha */
  border: 1px solid #cbd5f5;
  background: #f8fafc;
  color: #0f172a;
}

.form-group input::placeholder {
  color: #64748b;
}

  /* SWAP BUTTON - center between from & to */
  .swap-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 5;
  }

  #swapLocations {
    width: 36px;
    height: 36px;
    background: #2563eb;
    color: white;
    font-size: 14px;
    border-radius: 50%;
  }

  /* SEARCH BUTTON */
  .btn-search {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    font-size: 16px;
    background: #16a34a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }

  /* SCROLL BAR OPTIONAL */
  .search-container::-webkit-scrollbar {
    width: 6px;
  }
  .search-container::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
  }

}
  
/* MOBILE DATE ROW - compact */
@media (max-width: 768px) {
  /* same row for departure & return */
  .date-input-wrapper {
    display: flex;
    gap: 6px; /* yaree fogaanshaha u dhexeeya labada date */
  }

  /* inputs height & font-size */
  .date-input-wrapper input {
    flex: 1; /* labada date isku ballaaran */
    height: 44px; /* yarayso height */
    font-size: 14px;
    padding: 0 10px;
    border-radius: 12px;
    border: 1px solid #cbd5f5;
    background: #f8fafc;
    color: #0f172a;
  }
}
  /* =========================
     RESULTS SECTION
  ========================= */

  .results-container {
    background: transparent;
    padding: 10px 0;
  }

  .search-layout {
    display: block;
  }

  /* HIDE SIDEBAR */
  .ethiofly-sidebar {
    display: none;
  }

  .ethiofly-main-results {
    width: 100%;
  }

  /* FLIGHT CARD */
  .flight-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  .flight-route {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .time-large {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
  }

  .airport-code {
    font-size: 13px;
    color: #64748b;
  }

  .flight-stop-center {
    text-align: center;
    margin: 8px 0;
    font-size: 13px;
    color: #475569;
  }

  /* PRICE */
  .price-box {
    width: 100%;
    text-align: right;
    margin-top: 6px;
  }

  .price-amount-large {
    font-size: 20px;
    font-weight: 700;
    color: #16a34a;
  }

  /* QUICK FILTER SCROLL */
  .ethiofly-quick-filters {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }

  .ethiofly-quick-filter {
    flex: 0 0 auto;
    background: #ffffff;
    color: #334155;
  }

  .ethiofly-quick-filter.active {
    background: #2563eb;
    color: white;
  }

}

/* ORDER FIX */
@media (max-width:768px){
  #from { order: 1; }
  .swap-btn { order: 2; }
  #to { order: 3; }
  #departure { order: 4; }
  #return { order: 5; }
}
@media (max-width:768px){
  .search-container.hide-mobile {
    display: none !important;
  }
}
@media (max-width: 768px){

  .ethiofly-results-actions {
    display: flex;
    justify-content: center; /* 🔥 center container */
    width: 100%;
  }

 .ethiofly-modify-search {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;   /* 🔥 center button */
    width: 90%;          /* optional: full width feel */
    max-width: 300px;
  }

}
.destination-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* MOBILE BOTTOM NAVIGATION */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between; /* left, center, right */
  padding: 8px 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.mobile-bottom-nav .nav-item i {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
  color: #1d4ed8; /* Blue accent color */
}

@media(min-width: 768px){
  /* Hide mobile bottom nav on larger screens */
  .mobile-bottom-nav {
    display: none;
  }
}

/* DESKTOP: normal header */
.header-controls-flex {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* MOBILE */
@media(max-width: 768px){
  #searchTypeContainer {
    display: none !important;
  }

  /* hide nav links, logo, login */
  .logo,
  .nav-center,
  #authButtons,
  .user-menu {
    display: none;
  }

  /* Keep only dropdowns visible in header */
  .header-controls-flex {
    display: flex;
    justify-content: space-between; /* country left, currency center, language right */
    padding: 8px 15px;
    background: #fff;
    width: 100%;
  }

  .header-controls-flex .dropdown-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .header-controls-flex .country-wrapper {
    justify-content: flex-start;
  }

  .header-controls-flex .currency-wrapper {
    justify-content: center;
  }

  .header-controls-flex .language-wrapper {
    justify-content: flex-end;
  }
}

/* DESKTOP: no changes */
@media(min-width: 769px){
  /* everything stays normal */
}
@media(max-width: 768px) {
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }

  .form-group {
    position: relative;
    width: 100%;
  }

/* swap button - slightly below center between from/to inputs */
.swap-btn {
    position: absolute;
    top: 5%; /* hoos u dhig 5% ka sarreeya center-ka */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.swap-btn button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: 0.2s;
}

.swap-btn button:hover {
    background: #1e40af;
}

  .swap-btn button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: 0.2s;
  }

  .swap-btn button:hover {
    background: #1e40af;
  }


  /* adjust from/to inputs spacing for mobile */
  #from, #to {
    padding-right: 50px; /* space for swap button */
    padding-left: 12px;
    height: 40px;
    font-size: 14px;
  }
}
/* container weyn */
.search-type-container{
    display:flex;
    justify-content:center;
    margin-top:20px;
}

/* pill container */
.search-type-switch{
    display:flex;
    gap:2px;
    background:#f1f5f9;
    padding:2px;
    border-radius:15px;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

/* buttons */
.type-btn{
    border:none;
    background:transparent;
    padding:10px 20px;
    border-radius:20px;
    font-weight:600;
    cursor:pointer;
    color:#475569;
    transition:0.2s;
}

.type-btn i{
    margin-right:6px;
}
   /* Search Tabs kor u qaad */
        .search-tabs {
            position: relative;
            margin-top: -20px;
            margin-bottom: 15px;
            z-index: 3;
            display: flex;
            gap: 10px;
        }
        
        .search-tab { 
            background-color: white; 
            color: #27ae60; 
            border: none; 
            padding: 10px 20px; 
            border-radius: 25px; 
            font-weight: bold; 
            cursor: pointer; 
            transition: 0.3s ease; 
        } 
        
        /* Markii la doorto (active) */ 
        .search-tab.active { 
            background-color: #145a32;
            color: white; 
        }
        
        /* Hover effect */
        .search-tab:hover {
            background-color: #1e8449;
            color: white;
        }
.search-form {
  width: 100%;
}
/* ==========================
   MAIN SEARCH ROW (Google Style)
   ========================== */
.form-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%; /* 🔥 muhiim */

  
}

/* ==========================
   FORM GROUP
   ========================== */
/* ==========================
   INPUTS (FROM / TO / SELECT)
   ========================== */
.form-group input,
.form-group select {
  width: 100%;
  height: 42px;
  border-radius: 20px;
  border: 1px solid #ddd;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group {
  flex: 1;
  min-width: 140px;
  position: relative; /* 🔥 muhiim dropdown */
}


#from:focus,
#to:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* ==========================
   SWAP BUTTON
   ========================== */
.swap-btn button {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
}

/* ==========================
   PASSENGER INPUT
   ========================== */
.passenger-input {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
}

/* ==========================
   CHECKBOX INLINE
   ========================== */
.checkbox {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 4px;
  white-space: nowrap;
}

/* ==========================
   SEARCH BUTTON
   ========================== */
.btn-search {
  height: 42px;
  border-radius: 20px;
  padding: 0 16px;
  background: #0071ff;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
}

/* ==========================
   SUGGESTIONS DROPDOWN
   ========================== */
#fromSuggestions,
#toSuggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 6px;

  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  max-height: 260px;
  overflow-y: auto;

  z-index: 9999;
  display: none;
}

/* Scrollbar */
#fromSuggestions::-webkit-scrollbar,
#toSuggestions::-webkit-scrollbar {
  width: 6px;
}

#fromSuggestions::-webkit-scrollbar-thumb,
#toSuggestions::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* ==========================
   SUGGESTION ITEM
   ========================== */
.suggestion-item {
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.suggestion-item:hover,
.suggestion-item.selected {
  background-color: #eff6ff;
}

/* CODE */
.suggestion-code {
  font-weight: 700;
  color: #1e40af;
  min-width: 45px;
}

/* DETAILS */
.suggestion-details {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #334155;
}

.suggestion-city {
  font-weight: 600;
}

.suggestion-name,
.suggestion-country {
  font-size: 12px;
  color: #64748b;
}

/* container weyn */
.search-type-container{
    display:flex;
    justify-content:center;
    margin-top:40px;
}

/* pill container */
.search-type-switch{
    display:flex;
    gap:6px;
    background:#f1f5f9;
    padding:6px;
    border-radius:30px;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
/* buttons */
.type-btn{
    border:none;
    background:transparent;
    padding:10px 20px;
    border-radius:20px;
    font-weight:600;
    cursor:pointer;
    color:#475569;
    transition:0.2s;
}

.type-btn i{
    margin-right:6px;
}

  /* header area */
  .trip-type-bar {
    display: flex;
    gap: 8px;
    padding: 20px 28px 0 28px;
    border-bottom: 1px solid #e9edf2;
    background: #ffffff;
  }

  .trip-btn {
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #5b6e8c;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .trip-btn i {
    font-size: 1rem;
  }

  .trip-btn.active {
    background: #eef3ff;
    color: #1a73e8;
  }

  .trip-btn:hover:not(.active) {
    background: #f1f5f9;
    color: #1e293b;
  }

  /* main search form */
  .search-form-container {
    padding: 24px 28px 32px 28px;
    background: #ffffff;
  }

  .search-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 48px;
    border: 1px solid #e2e8f0;
    padding: 6px 12px 6px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: box-shadow 0.2s;
  }

  .search-grid:focus-within {
    box-shadow: 0 8px 20px rgba(0,0,0,0.05), 0 0 0 3px rgba(26,115,232,0.2);
    border-color: #1a73e8;
  }

  .input-group {
    flex: 2;
    min-width: 150px;
    position: relative;
  }

  .input-group label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #5b6e8c;
    display: block;
    margin-bottom: 2px;
  }

  .input-group input, .input-group select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0 8px 0;
    outline: none;
    color: #0f172a;
    cursor: pointer;
  }

  .passenger-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 8px 0;
  }

  .passenger-label-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #5b6e8c;
    text-transform: uppercase;
  }

  .passenger-value {
    font-weight: 500;
    font-size: 0.9rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    margin: 0 6px;
  }

  .search-btn {
    background: #1a73e8;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    margin-left: auto;
  }

  .search-btn:hover {
    background: #0d5fc9;
    transform: scale(0.98);
  }

  /* passenger dropdown (google flights style) */
  .passenger-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 320px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 35px -8px rgba(0,0,0,0.2);
    z-index: 200;
    display: none;
    padding: 20px;
    border: 1px solid #eef2ff;
  }

  .passenger-dropdown.show {
    display: block;
    animation: fadeInUp 0.2s ease;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
  }

  .passenger-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .passenger-info p {
    font-size: 0.7rem;
    color: #6c7a91;
  }

  .counter {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .counter button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #cfdde6;
    background: white;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.1s;
    color: #1e293b;
  }

  .counter button:active {
    background: #eef2ff;
  }

  .counter span {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
  }

  .done-btn {
    width: 100%;
    margin-top: 16px;
    background: #1a73e8;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
  }

  /* swap icon */
  .swap-icon {
    background: #f8fafc;
    border-radius: 40px;
    padding: 8px;
    cursor: pointer;
    transition: 0.2s;
    color: #475569;
  }
  .swap-icon:hover {
    background: #eef2ff;
    color: #1a73e8;
  }

  /* multi-city dynamic rows */
  .multi-city-container {
    width: 100%;
    margin-top: 16px;
    background: #fafcff;
    border-radius: 24px;
    padding: 12px;
  }
  .multi-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
  }
  .remove-city {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
  }
  .add-city-btn {
    background: #f1f5f9;
    border: none;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 8px;
    cursor: pointer;
  }

  .hidden {
    display: none;
  }

  /* results placeholder */
  .results-area {
    margin-top: 28px;
    padding: 0 28px 28px 28px;
  }
  .flight-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid #eef2f8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  }

  @media (max-width: 780px) {
    .search-grid {
      flex-direction: column;
      align-items: stretch;
      border-radius: 28px;
      padding: 16px;
    }
    .divider {
      display: none;
    }
    .search-btn {
      margin-left: 0;
      justify-content: center;
    }
    .passenger-dropdown {
      right: auto;
      left: 0;
      width: 100%;
    }
    .trip-type-bar {
      padding: 12px 16px 0;
    }
    .search-form-container {
      padding: 16px;
    }
  }

/* ===============================
   SEO CONTENT SECTION (PRO STYLE)
   =============================== */

.seo-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
}

/* HEADINGS */
.seo-content h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.seo-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #222;
}

/* PARAGRAPH */
.seo-content p {
  font-size: 15.5px;
  margin-bottom: 16px;
  color: #444;
}

/* LIST */
.seo-content ul {
  padding-left: 18px;
  margin-top: 10px;
}

.seo-content li {
  margin-bottom: 8px;
  font-size: 15px;
  position: relative;
}

/* NICE BULLET STYLE */
.seo-content li::marker {
  color: #0071ff;
  font-weight: bold;
}

/* HOVER EFFECT (light) */
.seo-content:hover {
  transform: translateY(-2px);
  transition: 0.3s ease;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */
@media (max-width: 768px) {
  .seo-content {
    margin: 20px 12px;
    padding: 18px;
  }

  .seo-content h2 {
    font-size: 20px;
  }

  .seo-content h3 {
    font-size: 17px;
  }

  .seo-content p,
  .seo-content li {
    font-size: 14px;
  }
}
/* =========================
   DATE PRICE BAR (CLEAN PRO)
========================= */

.date-price-bar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px;
    margin: 12px 0 18px;

    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);

    scrollbar-width: none; /* Firefox */
}

.date-price-bar::-webkit-scrollbar {
    display: none; /* Chrome */
}

/* DATE CARD */
.date-item {
    min-width: 110px;   /* 🔥 wider (fix dhuubnaanta) */
    flex: 0 0 auto;

    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;

    padding: 10px 8px;
    text-align: center;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* hover */
.date-item:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* DAY TEXT */
.date-item .day {
    font-size: 12px;
    color: #6b7280;
}

/* PRICE */
.date-item .price {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-top: 4px;
}

/* ACTIVE STATE */
.date-item.active {
    background: #2563eb;
    border-color: #2563eb;
}

.date-item.active .day,
.date-item.active .price {
    color: #ffffff;
}

.price.loading {
    opacity: 0.6;
    font-size: 13px;   /* 👈 important: prevent growth */
    font-style: italic;
    white-space: nowrap; /* prevents wrap expansion */
}
.price.loading {
    color: transparent;
    position: relative;
}

.price.loading::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 10px;
    background: linear-gradient(90deg,#eee,#ddd,#eee);
    background-size: 200%;
    animation: shimmer 1.2s infinite;
    border-radius: 6px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.ethiofly-mini-routes {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    padding: 12px;
}

.mini-route {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;

    padding: 10px 12px;
    border-radius: 14px;

    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
    color: #fff;
    text-decoration: none;

    min-width: 200px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: 0.25s ease;
}

.mini-route strong {
    font-size: 13px;
}

.mini-route small {
    font-size: 10px;
    opacity: 0.9;
    margin-top: 4px;
}

.mini-route:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f97316, #ef4444);
}
/* multi-city container */
.multi-city-container{
width:100%;
margin-top:16px;
background:#fafcff;
border-radius:24px;
padding:12px;
display:flex;
flex-direction:column;
gap:10px;
}

/* 2 rows oo isle eg */
.multi-row{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:12px;
align-items:end;
}

/* input gudaha row */
.multi-row .input-group{
width:100%;
min-width:0;
}

/* input styling */
.multi-row input{
width:100%;
padding:8px 0;
font-size:0.95rem;
border:none;
background:transparent;
outline:none;
}

  /* Multi-City Container Styles */
  .multi-city-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #e2e8f0;
  }
  
  .multi-city-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
  }
  
  .multi-city-header h4 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 16px;
  }
  
  .multi-city-header p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
  }
  
  .multi-city-segments {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .multi-city-segment {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
  }
  
  .multi-city-segment:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .segment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .segment-number {
    background: #2563eb;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
  }
  
  .remove-segment {
    background: #ef4444;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  
  .remove-segment:hover {
    background: #dc2626;
    transform: scale(1.05);
  }
  
  .remove-segment:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
  }
  
  .segment-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  
  .segment-inputs .input-group {
    margin: 0;
  }
  
  .segment-inputs .input-group label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
    display: block;
  }
  
  .segment-inputs .input-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
  }
  
  .segment-inputs .input-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  .multi-city-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
  }
  
  .btn-add-city,
  .btn-remove-city {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-add-city {
    color: #059669;
    border-color: #10b981;
  }
  
  .btn-add-city:hover {
    background: #ecfdf5;
    border-color: #059669;
  }
  
  .btn-remove-city {
    color: #dc2626;
    border-color: #fca5a5;
  }
  
  .btn-remove-city:hover {
    background: #fef2f2;
    border-color: #dc2626;
  }
  
  .multi-city-summary {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #166534;
    flex-wrap: wrap;
  }
  
  .multi-city-summary i {
    font-size: 16px;
  }
  
  .summary-segment {
    background: #dcfce7;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
  }
  
  .summary-segment small {
    font-size: 10px;
    color: #166534;
  }
  
  /* Suggestions for multi-city */
  .suggestions-multi {
    position: absolute;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .suggestions-multi div {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
  }
  
  .suggestions-multi div:hover {
    background: #f1f5f9;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .segment-inputs {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    
    .multi-city-actions {
      flex-direction: column;
    }
    
    .btn-add-city,
    .btn-remove-city {
      justify-content: center;
    }
  }
  
  /* Hide return date for oneway and multi-city */
  #returnDateGroup.hidden {
    display: none;
  }
  
  /* Search grid adjustments */
  .search-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
  }
  
  .search-grid .input-group {
    margin-bottom: 0;
  }

/* =========================
   HOTEL SEARCH REDESIGN
========================= */
#hotels-page {
  padding: 28px 20px 12px;
  background:
    linear-gradient(180deg, rgba(42, 92, 220, 0.12), rgba(42, 92, 220, 0) 65%),
    linear-gradient(135deg, #edf4ff 0%, #f8fbff 45%, #eef2ff 100%);
}

#hotels-page .search-container {
  max-width: 1180px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

#hotels-page .search-form {
  width: 100%;
}

#hotels-page .hotel-search-shell {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(210, 219, 235, 0.95);
  border-radius: 22px;
  box-shadow: 0 22px 44px rgba(25, 56, 124, 0.12);
  padding: 16px;
}

#hotels-page .hotel-main-row {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(360px, 1.45fr) minmax(300px, 1.2fr) auto;
  gap: 0;
  border: 1px solid #dde5f1;
  border-radius: 18px;
  overflow: visible;
  background: #fff;
}

#hotels-page .hotel-field {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: stretch;
}

#hotels-page .hotel-field + .hotel-field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: #e5ebf5;
}

#hotels-page .hotel-field-body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
}

#hotels-page .hotel-field-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f3f7ff;
  color: #1f4fd8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

#hotels-page .hotel-field-content {
  min-width: 0;
  flex: 1;
}

#hotels-page .hotel-date-field .hotel-field-content {
  padding-right: 8px;
}

#hotels-page .hotel-guests-field .hotel-field-body {
  padding-left: 26px;
  cursor: pointer;
}

#hotels-page .hotel-field-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b8798;
}

#hotels-page .hotel-field input[type="text"],
#hotels-page .hotel-field input[type="date"] {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  font-size: 0.96rem;
  font-weight: 700;
  color: #1b2430;
}

#hotels-page .hotel-field input[type="date"] {
  font-weight: 600;
}

#hotels-page .hotel-date-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  width: 100%;
  gap: 12px;
}

#hotels-page .hotel-date-separator {
  color: #95a0b2;
  font-weight: 700;
  font-size: 1.1rem;
}

#hotels-page .hotel-guest-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: block;
}

#hotels-page .hotel-guest-trigger .guest-value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b2430;
  line-height: 1.1;
  width: 100%;
  white-space: nowrap;
}

#hotels-page .hotel-guest-summary-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3563f0;
  flex-shrink: 0;
}

#hotels-page .hotel-guest-summary-icons i {
  font-size: 0.95rem;
}

#hotels-page .hotel-guest-trigger .guest-value span:first-child {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#hotels-page .hotel-search-btn {
  min-width: 156px;
  border: none;
  border-radius: 16px;
  margin: 8px;
  background: linear-gradient(135deg, #3563f0, #2450dc);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(53, 99, 240, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#hotels-page .hotel-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 32px rgba(53, 99, 240, 0.28);
}

#hotels-page .hotel-search-btn span {
  white-space: nowrap;
}

#hotels-page .hotel-secondary-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 6px 2px;
}

#hotels-page .hotel-work-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  color: #334155;
}

#hotels-page .hotel-work-toggle input {
  width: 18px;
  height: 18px;
  accent-color: #3563f0;
}

#hotels-page .hotel-chip-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#hotels-page .hotel-chip-group-label {
  font-size: 0.95rem;
  color: #475569;
}

#hotels-page .hotel-chip {
  border: 1px solid #d8e0ee;
  background: #fff;
  color: #334155;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#hotels-page .hotel-chip:hover,
#hotels-page .hotel-chip.active {
  border-color: #3563f0;
  background: #eef3ff;
  color: #1f4fd8;
}

#hotels-page .suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1200;
  display: none;
  background: #fff;
  border: 1px solid #dce4f0;
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

#hotels-page .suggestions.show {
  display: block !important;
}

#hotels-page #roomsSelector.passengers-selector {
  top: calc(100% + 12px);
  left: auto;
  right: 0;
  min-width: 320px;
  width: min(92vw, 360px);
  border-radius: 18px;
  border: 1px solid #dbe4f0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
  padding: 16px;
  z-index: 1400;
}

#hotels-page #roomsSelector .passenger-type {
  margin-bottom: 0;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
}

#hotels-page #roomsSelector .passenger-type:last-of-type {
  border-bottom: none;
}

#hotels-page #roomsSelector .passenger-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

#hotels-page #roomsSelector .passenger-meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff4ff;
  color: #3563f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#hotels-page #roomsSelector .passenger-meta-text {
  min-width: 0;
}

#hotels-page #roomsSelector .passenger-meta-text strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}

#hotels-page #roomsSelector .passenger-meta-text small {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
}

#hotels-page #roomsSelector .hotel-passenger-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d8e0ee;
  background: #fff;
}

#hotels-page #roomsSelector .passenger-count {
  width: 40px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

#hotels-page #roomsSummary {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eef2f7;
  font-size: 0.92rem;
  font-weight: 700;
  color: #3558b8;
}

#hotelResults {
  max-width: 1180px;
  margin: 22px auto 0;
}

#hotelResults .results-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hotel-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.hotel-filters .filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hotel-filters label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
}

.hotel-filters select {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid #dbe4f0;
  background: #fff;
  padding: 0 12px;
  font-size: 0.92rem;
}

.hotel-listings {
  display: grid;
  gap: 16px;
}

.hotel-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 18px;
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.hotel-card-media {
  min-height: 220px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  position: relative;
}

.hotel-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-card-media-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3563f0;
  font-size: 2.2rem;
}

.hotel-card-body {
  padding: 18px 0;
  min-width: 0;
}

.hotel-card-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hotel-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef3ff;
  color: #3558b8;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hotel-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hotel-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.hotel-card-location,
.hotel-card-caption {
  color: #475569;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.hotel-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hotel-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 7px 10px;
  font-size: 0.8rem;
  color: #475569;
}

.hotel-card-side {
  padding: 18px 18px 18px 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.hotel-score {
  border-radius: 14px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.hotel-price {
  text-align: right;
}

.hotel-price-label {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.hotel-price-value {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
}

.hotel-price-value.is-muted {
  font-size: 1rem;
  color: #475569;
}

.hotel-select-btn {
  min-width: 140px;
  min-height: 44px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #3563f0, #2450dc);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.hotel-empty-state,
.hotel-loading-state {
  padding: 40px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dbe4f0;
  text-align: center;
  color: #475569;
}

.hotel-empty-state i,
.hotel-loading-state i {
  display: block;
  font-size: 2rem;
  color: #3563f0;
  margin-bottom: 12px;
}

.hotel-results-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:18px;align-items:start}.hotel-filters{display:flex;flex-direction:column;gap:13px;padding:20px;background:#fff;border:1px solid #d8dee8;border-radius:12px;position:sticky;top:16px}.hotel-filters h3{margin:0 0 5px;color:#172033}.hotel-check-filter{display:flex;align-items:center;gap:10px;color:#475569;font-size:.9rem}.hotel-check-filter input{width:16px;height:16px;accent-color:#0b7a45}.hotel-card{grid-template-columns:250px minmax(0,1fr) 190px;border-radius:12px;box-shadow:none;gap:15px}.hotel-card-media{min-height:205px;margin:14px 0 14px 14px;border-radius:10px;overflow:hidden}.hotel-card-body{padding:17px 0}.hotel-card-title{color:#0867a9}.hotel-card-location{color:#8a94a3}.hotel-card-caption{line-height:1.5;color:#7a8492}.hotel-card-meta{gap:7px}.hotel-meta-chip{border:0;background:#edfff5;color:#087347;font-weight:700;padding:6px 9px}.hotel-card-side{padding:15px 14px 15px 0}.hotel-score{background:linear-gradient(180deg,#f7a914,#cf7200);color:#121826;border-radius:7px;font-size:1rem;text-align:center;min-width:44px}.hotel-select-btn{background:linear-gradient(135deg,#ffc22e,#ef8d00);color:#172033;border-radius:9px;box-shadow:0 9px 18px rgba(239,141,0,.25)}.hotel-availability-modal{position:fixed;inset:0;z-index:5000;display:grid;place-items:center;padding:12px}.hotel-availability-backdrop{position:absolute;inset:0;background:rgba(8,15,28,.72);backdrop-filter:blur(5px)}.hotel-availability-panel{position:relative;width:min(1160px,100%);max-height:calc(100vh - 24px);overflow:auto;background:#1d2738;color:#fff;border-radius:12px;box-shadow:0 30px 80px rgba(0,0,0,.4);padding:18px}.hotel-detail-close{position:absolute;right:14px;top:14px;z-index:2;width:38px;height:38px;border:0;border-radius:50%;background:#fff;color:#172033;cursor:pointer}.hotel-detail-hero{display:grid;grid-template-columns:340px minmax(0,1fr);gap:18px}.hotel-detail-cover{width:100%;height:250px;object-fit:cover;border-radius:10px;background:#111827}.hotel-detail-title{display:flex;justify-content:space-between;gap:15px;padding-right:45px}.hotel-detail-title h2{margin:0;color:#1685df;font-size:1.55rem}.hotel-detail-rating{background:linear-gradient(180deg,#f7a914,#cf7200);color:#111827;padding:12px;border-radius:7px;font-size:1.05rem;font-weight:900;height:74px;min-width:44px;text-align:center}.hotel-detail-location{color:#c1c9d5;margin:14px 0}.hotel-detail-description{color:#e2e8f0;line-height:1.5;margin:0 0 10px}.hotel-gallery{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-top:20px}.hotel-gallery img{width:100%;height:92px;object-fit:cover;border-radius:8px}.hotel-whatsapp{display:inline-flex;align-items:center;gap:7px;margin-top:12px;background:#eafff1;color:#087347;font-weight:800;padding:7px 11px;border-radius:999px;text-decoration:none}.hotel-detail-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:18px;margin-top:28px}.hotel-detail-grid h3,.hotel-reviews h3{margin:0 0 14px;font-size:1.15rem}.hotel-room-list{display:grid;gap:12px}.hotel-room-option{display:grid;grid-template-columns:150px minmax(0,1fr) 210px;gap:14px;background:#101827;border:1px solid #2d3a4f;border-radius:9px;padding:11px}.hotel-room-option img{width:100%;height:112px;object-fit:cover;border-radius:8px;background:#263247}.hotel-room-option h4{margin:4px 0 5px}.hotel-room-option p{margin:3px 0;color:#aab6c6}.hotel-room-benefit{color:#159252!important;font-weight:800}.hotel-room-count{color:#ff6b7c!important;font-weight:800}.hotel-room-price{text-align:right;display:flex;flex-direction:column;justify-content:center;gap:8px}.hotel-room-price strong{font-size:1.05rem}.hotel-pay-btn{height:44px;border:0;border-radius:8px;background:linear-gradient(135deg,#ffc22e,#ef8d00);font-weight:900;color:#172033;cursor:pointer;box-shadow:0 8px 18px rgba(239,141,0,.26)}.hotel-map-card iframe{width:100%;height:260px;border:0;border-radius:9px;background:#fff}.hotel-map-card a{display:inline-block;margin-top:12px;color:#fff}.hotel-reviews{margin-top:24px;max-width:calc(100% - 358px)}.hotel-review-card{background:#101827;border:1px solid #2d3a4f;border-radius:9px;padding:15px}.hotel-review-card strong{display:block;margin-bottom:12px}.hotel-review-card p{margin:0;color:#b9c4d2;line-height:1.5}.hotel-no-rooms{padding:25px;background:#101827;border-radius:10px;color:#cbd5e1}
.hotel-filter-toggle{display:none;width:100%;min-height:44px;margin-bottom:10px;border:1px solid #d8dee8;border-radius:8px;background:#fff;color:#172033;padding:0 13px;align-items:center;gap:9px;font-weight:800;cursor:pointer}.hotel-filter-toggle .hotel-filter-chevron{margin-left:auto;transition:transform .2s ease}.hotel-filter-toggle.active .hotel-filter-chevron{transform:rotate(180deg)}
.hotel-checkout-modal{position:fixed;inset:0;z-index:5100;display:grid;place-items:center;padding:18px}.hotel-checkout-backdrop{position:absolute;inset:0;background:rgba(8,15,28,.75);backdrop-filter:blur(5px)}.hotel-checkout-panel{position:relative;width:min(760px,100%);max-height:calc(100dvh - 36px);overflow:auto;background:#fff;border-radius:10px;box-shadow:0 28px 80px rgba(0,0,0,.35)}.hotel-checkout-head{display:flex;justify-content:space-between;align-items:start;gap:12px;padding:20px 22px;border-bottom:1px solid #e5e7eb}.hotel-checkout-head h2{margin:0;color:#172033;font-size:1.35rem}.hotel-checkout-head p{margin:5px 0 0;color:#64748b}.hotel-checkout-close{width:38px;height:38px;border:0;border-radius:50%;background:#f1f5f9;cursor:pointer}.hotel-checkout-body{padding:20px 22px}.hotel-stay-summary{display:grid;grid-template-columns:1fr auto;gap:12px;padding:14px;background:#f3f8ff;border-left:4px solid #2676df;border-radius:7px;margin-bottom:18px}.hotel-stay-summary strong,.hotel-stay-summary span{display:block}.hotel-stay-summary span{color:#64748b;margin-top:4px;font-size:.86rem}.hotel-stay-total{text-align:right}.hotel-stay-total strong{font-size:1.2rem;color:#0f172a}.hotel-checkout-form{display:grid;grid-template-columns:1fr 1fr;gap:13px}.hotel-checkout-form label{display:grid;gap:6px;color:#475569;font-size:.78rem;font-weight:750}.hotel-checkout-form input,.hotel-checkout-form select{width:100%;min-height:44px;border:1px solid #cfd8e5;border-radius:7px;padding:0 11px;color:#172033;background:#fff}.hotel-checkout-form .full{grid-column:1/-1}.hotel-payment-methods{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}.hotel-payment-option{position:relative}.hotel-payment-option input{position:absolute;opacity:0}.hotel-payment-option span{display:flex;min-height:60px;align-items:center;justify-content:center;gap:7px;border:1px solid #d7e0eb;border-radius:7px;padding:8px;text-align:center;cursor:pointer}.hotel-payment-option input:checked+span{border-color:#2676df;background:#edf5ff;color:#155baa;font-weight:800}.hotel-checkout-submit{grid-column:1/-1;min-height:48px;border:0;border-radius:7px;background:#087b45;color:#fff;font-weight:850;cursor:pointer}.hotel-receipt{padding:22px}.hotel-receipt-brand{padding:18px;background:#126fdf;color:#fff;font-size:1.35rem;font-weight:900}.hotel-receipt-success{padding:18px 0;text-align:center}.hotel-receipt-success i{font-size:2.4rem;color:#159252}.hotel-receipt-success h2{margin:8px 0 4px}.hotel-receipt-success p{margin:0;color:#64748b}.hotel-receipt-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;border:1px solid #dce4ed}.hotel-receipt-item{padding:11px 13px;border-bottom:1px solid #e5e7eb}.hotel-receipt-item:nth-child(odd){border-right:1px solid #e5e7eb}.hotel-receipt-item span{display:block;color:#64748b;font-size:.72rem;text-transform:uppercase}.hotel-receipt-item strong{display:block;margin-top:4px;color:#172033;word-break:break-word}.hotel-receipt-total{display:flex;justify-content:space-between;align-items:center;padding:16px;background:#f3f8ff;font-size:1.1rem}.hotel-receipt-actions{display:flex;gap:9px;margin-top:16px}.hotel-receipt-actions button{flex:1;min-height:44px;border:1px solid #cad5e2;border-radius:7px;background:#fff;font-weight:800;cursor:pointer}.hotel-receipt-actions .primary{background:#126fdf;border-color:#126fdf;color:#fff}
.hotel-ebirr-payment{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:14px;border:1px solid #b9d8f5;border-radius:8px;background:#f2f8ff}.hotel-ebirr-number{display:flex;align-items:center;gap:11px}.hotel-ebirr-number i{width:38px;height:38px;display:grid;place-items:center;border-radius:7px;background:#126fdf;color:#fff}.hotel-ebirr-number span,.hotel-ebirr-number strong{display:block}.hotel-ebirr-number span{font-size:.72rem;color:#64748b}.hotel-ebirr-number strong{font-size:1.15rem;color:#10243b;margin-top:3px}.hotel-receipt-upload input{padding:9px;background:#fff}.hotel-payment-help{grid-column:1/-1;margin:0;color:#53657b;font-size:.8rem}.hotel-receipt-success.pending i{color:#d1810b}.hotel-receipt-success.pending h2{color:#8a5404}
@media(max-width:605px){.hotel-ebirr-payment{grid-template-columns:1fr}.hotel-payment-help{grid-column:auto}}

@media (max-width: 1100px) {
  #hotels-page .hotel-main-row {
    grid-template-columns: 1fr 1fr;
  }

  #hotels-page .hotel-search-btn {
    min-height: 64px;
  }

  #hotels-page .hotel-main-row > .hotel-field:nth-child(3)::before {
    display: none;
  }

  .hotel-filters {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .hotel-card {
    grid-template-columns: 200px 1fr;
  }

  .hotel-card-side {
    grid-column: 1 / -1;
    padding: 0 18px 18px;
    flex-direction: row;
    align-items: center;
  }
  .hotel-results-layout{grid-template-columns:1fr}.hotel-filters{position:static;display:grid;grid-template-columns:repeat(2,1fr)}.hotel-filters h3{grid-column:1/-1}.hotel-detail-grid{grid-template-columns:1fr}
}
.hotel-location-card{background:#101827;border:1px solid #2d3a4f;border-radius:10px;padding:18px}.hotel-location-card i{font-size:1.7rem;color:#ffc22e;margin-bottom:12px}.hotel-location-card strong,.hotel-location-card span{display:block}.hotel-location-card span{margin-top:7px;color:#aab6c6}

@media (max-width: 720px) {
  #hotels-page {
    padding: 18px 12px 8px;
  }

  #hotels-page .hotel-search-shell {
    padding: 12px;
    border-radius: 18px;
  }

  #hotels-page .hotel-main-row {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  #hotels-page .hotel-field + .hotel-field::before {
    left: 18px;
    right: 18px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  #hotels-page .hotel-date-range {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #hotels-page .hotel-date-separator {
    display: none;
  }

  #hotels-page .hotel-search-btn {
    width: calc(100% - 16px);
    min-height: 56px;
  }

  #hotels-page .hotel-secondary-row {
    gap: 14px;
    padding-inline: 2px;
  }

  #hotelResults .results-header {
    flex-direction: column;
  }

  #hotelResults {
    margin-top: 14px;
  }

  #hotelResults .results-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  #hotelResults .results-header h2 {
    margin-bottom: 4px;
    font-size: 1.25rem;
  }

  #hotelResults .results-header p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  #backToHotelSearch {
    width: 100%;
    min-height: 42px;
  }

  .hotel-results-layout {
    display: block;
  }

  .hotel-filter-toggle {
    display: flex;
  }

  .hotel-filters {
    display: none;
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 12px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .hotel-filters.mobile-open {
    display: grid;
  }

  .hotel-filters h3 {
    display: none;
  }

  .hotel-check-filter {
    min-height: 34px;
    font-size: 0.76rem;
  }

  .hotel-filters .filter-group {
    gap: 4px;
  }

  .hotel-filters label {
    font-size: 0.72rem;
  }

  .hotel-filters select {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    border-radius: 6px;
    padding: 0 7px;
    font-size: 0.76rem;
  }

  .hotel-listings {
    gap: 12px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .hotel-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
  }

  .hotel-card-media {
    min-height: 128px;
    height: 100%;
    margin: 0;
    border-radius: 0;
  }

  .hotel-card-body {
    padding: 12px 12px 9px;
  }

  .hotel-card-title {
    max-width: calc(100% - 38px);
    margin: 0 0 5px;
    font-size: 1rem;
    line-height: 1.25;
  }

  .hotel-card-location {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hotel-card-caption {
    display: none;
  }

  .hotel-card-meta {
    gap: 5px;
    margin-top: 8px;
  }

  .hotel-meta-chip {
    padding: 4px 6px;
    font-size: 0.67rem;
  }

  .hotel-meta-chip:nth-child(1),
  .hotel-meta-chip:nth-child(2),
  .hotel-meta-chip:nth-child(5) {
    display: none;
  }

  .hotel-card-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-top: 1px solid #e5e7eb;
    background: #fbfcfe;
  }

  .hotel-score {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 32px;
    padding: 6px;
    font-size: 0.72rem;
    text-align: center;
  }

  .hotel-price {
    text-align: left;
  }

  .hotel-price-label {
    display: inline;
    margin-right: 3px;
    font-size: 0.68rem;
  }

  .hotel-price-label:last-child {
    display: block;
    margin-top: 1px;
  }

  .hotel-price-value {
    display: inline;
    font-size: 1rem;
  }

  .hotel-select-btn {
    min-width: 122px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
    box-shadow: none;
  }

  .hotel-detail-hero{grid-template-columns:1fr}.hotel-detail-cover{height:210px}.hotel-detail-title h2{font-size:1.3rem}.hotel-detail-rating{height:auto;padding:9px}.hotel-gallery{grid-template-columns:repeat(2,1fr);margin-top:14px}.hotel-gallery img{height:82px}.hotel-room-option{grid-template-columns:90px 1fr}.hotel-room-option img{height:90px}.hotel-room-price{grid-column:1/-1;text-align:left}.hotel-pay-btn{width:100%}.hotel-availability-modal{padding:0}.hotel-availability-panel{width:100%;max-height:100dvh;min-height:100dvh;border-radius:0;padding:14px}.hotel-detail-title{padding-right:38px}.hotel-reviews{max-width:none}.hotel-detail-grid{margin-top:20px}
  .hotel-checkout-modal{padding:0}.hotel-checkout-panel{width:100%;max-height:100dvh;min-height:100dvh;border-radius:0}.hotel-checkout-head{padding:15px}.hotel-checkout-body,.hotel-receipt{padding:15px}.hotel-checkout-form{grid-template-columns:1fr}.hotel-checkout-form .full{grid-column:auto}.hotel-payment-methods{grid-template-columns:1fr}.hotel-payment-option span{min-height:46px;justify-content:flex-start}.hotel-stay-summary{grid-template-columns:1fr}.hotel-stay-total{text-align:left}.hotel-receipt-grid{grid-template-columns:1fr}.hotel-receipt-item:nth-child(odd){border-right:0}.hotel-receipt-actions{flex-direction:column}
}
.footer {
    background: #061424;
    color: #B8C7D9;
    border-top: 2px solid #D4AF37;
    padding: 18px 14px 8px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 16px 22px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
}

.footer-section:first-child {
    min-width: 220px;
}

.footer-title,
.footer-logo {
    color: #FFFFFF;
    margin: 0 0 8px;
    font-size: 15px;
}

.footer-desc {
    font-size: 12px;
    line-height: 1.45;
    margin: 0 0 8px;
}

.footer-contact span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.footer-link {
    display: block;
    color: #B8C7D9;
    text-decoration: none;
    margin: 4px 0;
    font-size: 12px;
    transition: 0.3s;
}

.footer-link:hover {
    color: #D4AF37;
    transform: translateX(4px);
}

.social-links a {
    display: inline-flex;
    width: 30px;
    height: 30px;
    margin: 0 6px 6px 0;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.social-facebook { background: #1877f2; }
.social-whatsapp { background: #25d366; }
.social-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.social-linkedin { background: #0a66c2; }
.social-telegram { background: #26a5e4; }

.footer-routes h4 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #ffffff;
}

.footer-routes {
    max-width: 1180px;
    margin: 16px auto 0;
    border-top: 1px solid #1a2a3a;
    padding-top: 10px;
}

.routes-links a {
    display: inline-block;
    margin: 0 12px 6px 0;
    font-size: 12px;
    color: #B8C7D9;
    text-decoration: none;
}

.routes-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    max-width: 1180px;
    margin: 10px auto 0;
    padding-top: 8px;
    border-top: 1px solid #1a2a3a;
    text-align: center;
    font-size: 12px;
    color: #8899aa;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 560px) {
    .footer {
        padding: 14px 12px 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

body.auth-view {
    background: #f4f7fb;
}

body.auth-view .ethiofly-mini-routes,
body.auth-view .popular-destinations,
body.auth-view .airline-logos-container,
body.auth-view .footer,
body.auth-view #hotelResults,
body.auth-view #flightResults {
    display: none !important;
}

body.account-view .ethiofly-mini-routes,
body.account-view .popular-destinations,
body.account-view .airline-logos-container,
body.account-view .footer,
body.account-view #searchTypeContainer,
body.account-view #hotelResults,
body.account-view #flightResults {
    display: none !important;
}

body.hotel-results-view main > :not(#hotels-page),
body.hotel-results-view .page-section:not(#hotels-page),
body.hotel-results-view .popular-destinations,
body.hotel-results-view .ethiofly-mini-routes,
body.hotel-results-view .airline-logos-container,
body.hotel-results-view .footer {
    display: none !important;
}

body.hotel-results-view #hotels-page {
    padding-bottom: 32px;
}

body.auth-view #auth-page.active {
    width: 100%;
    min-height: calc(100dvh - 68px);
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    padding: 32px 16px 56px;
    box-sizing: border-box;
}

body.auth-view #auth-page .auth-container {
    width: min(100%, 460px);
    max-width: 460px;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

body.auth-view #auth-page .auth-tabs {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin: 0 0 12px;
    padding: 4px;
    border: 1px solid #dce6f2;
    border-radius: 10px;
    background: #eaf0f7;
    overflow: visible;
}

body.auth-view #auth-page .auth-tab {
    width: 100%;
    padding: 10px 8px;
    border-radius: 7px;
    color: #53657a;
    font-size: 14px;
    font-weight: 700;
}

body.auth-view #auth-page .auth-tab.active {
    background: #fff;
    color: #126fdf;
    box-shadow: 0 2px 8px rgba(20, 57, 94, 0.1);
}

body.auth-view #auth-page .auth-form-container {
    width: 100%;
    padding: 26px;
    border: 1px solid #dce6f2;
    border-radius: 14px;
    background: #fff;
    color: #172b45;
    box-shadow: 0 14px 36px rgba(30, 55, 85, 0.1);
}

body.auth-view #auth-page .auth-form-container h2 {
    margin: 0 0 5px;
    color: #173b68;
    background: none;
    -webkit-text-fill-color: currentColor;
    font-size: 27px;
    line-height: 1.2;
}

body.auth-view #auth-page .auth-subtitle {
    color: #718096;
    margin-bottom: 22px;
}

body.auth-view #auth-page .form-group label {
    color: #344861;
}

body.auth-view #auth-page .form-group input[type="text"],
body.auth-view #auth-page .form-group input[type="email"],
body.auth-view #auth-page .form-group input[type="password"] {
    background: #f7f9fc;
    color: #172b45;
    border: 1px solid #d7e1ec;
    border-radius: 8px;
}

body.auth-view #auth-page .auth-link {
    color: #718096;
}

@media (max-width: 600px) {
    body.auth-view .mobile-bottom-nav {
        display: flex !important;
    }

    body.auth-view .header {
        display: none !important;
    }

    body.auth-view #auth-page.active {
        min-height: 100dvh;
        padding: 14px 12px 96px;
    }

    body.auth-view #auth-page .auth-container {
        width: 100%;
        max-width: 430px;
        margin: 0 auto !important;
    }

    body.auth-view #auth-page .auth-form-container {
        padding: 20px 16px;
        border-radius: 12px;
    }

    body.auth-view #auth-page .auth-form-container h2 {
        font-size: 23px;
    }

    body.auth-view #auth-page .form-group {
        margin-bottom: 15px;
    }

    body.auth-view #auth-page .google-signin-shell,
    body.auth-view #auth-page .g_id_signin {
        width: 100%;
        overflow: hidden;
    }
}

#profile-page,#bookings-page{background:#f4f7fa;min-height:calc(100vh - 70px);padding:28px 16px 70px}
#profile-page .dashboard-container,#bookings-page .dashboard-container{max-width:1180px;margin:0 auto;padding:0}
#profile-page .dashboard-header,#bookings-page .dashboard-header{background:#123b6d;color:#fff;border:0;border-radius:8px;padding:24px;box-shadow:0 8px 24px #123b6d24;margin-bottom:16px}
#profile-page .avatar-circle{width:68px;height:68px;border-radius:7px;background:#fff;color:#123b6d;font-size:24px;box-shadow:none}
#profile-page .dashboard-info h2,#bookings-page .dashboard-info h2{color:#fff;margin:0 0 5px;font-size:24px}
#profile-page .dashboard-info p,#bookings-page .dashboard-info p{color:#d6e6f5;margin:0}
#profile-page .dashboard-stats{margin-left:auto;display:flex;gap:10px}
#profile-page .stat-item{min-width:105px;background:#ffffff14;border:1px solid #ffffff26;border-radius:6px;padding:10px 14px}
#profile-page .stat-item strong{font-size:22px;color:#fff;margin:0}
#profile-page .stat-item span{color:#d6e6f5;font-size:12px}
#profile-page .dashboard-nav{background:#fff;border:1px solid #dfe6ef;border-radius:7px;padding:5px;margin:0 0 16px;gap:4px;box-shadow:none}
#profile-page .dashboard-nav-btn{border-radius:5px;padding:11px 15px;color:#65748b;font-size:14px}
#profile-page .dashboard-nav-btn.active{background:#eaf3fd;color:#126fdf}
#profile-page .dashboard-section,#bookings-page .dashboard-content{background:#fff;border:1px solid #dfe6ef;border-radius:7px;padding:22px;box-shadow:none}
#profile-page .dashboard-section h3{font-size:17px;color:#172b45;margin:0 0 20px;padding-bottom:14px;border-bottom:1px solid #e8edf3}
#profile-page .profile-form{display:grid;grid-template-columns:1fr 1fr;gap:16px}
#profile-page .profile-form .form-group{margin:0}
#profile-page .profile-form button{justify-self:start}
.bookings-list{display:grid;gap:12px}
.user-booking-card{border:1px solid #dfe6ef;border-radius:7px;background:#fff;overflow:hidden;cursor:pointer}
.user-booking-card:hover{border-color:#b9cce2;box-shadow:0 8px 22px rgba(18,59,109,.08)}
.user-booking-top{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 15px;background:#f7f9fc;border-bottom:1px solid #e4eaf1}
.user-booking-ref small,.user-booking-meta small{display:block;color:#718096;font-size:10px;text-transform:uppercase;letter-spacing:.5px;margin-bottom:3px}
.user-booking-ref strong{color:#123b6d}.user-booking-status{padding:5px 8px;border-radius:5px;font-size:11px;font-weight:750;text-transform:uppercase;background:#fff1d6;color:#8a5b08}
.user-booking-status.confirmed,.user-booking-status.ticketed{background:#def4e7;color:#126a3d}.user-booking-status.cancelled{background:#fde7e7;color:#a52c2c}
.user-booking-body{display:grid;grid-template-columns:150px 1fr 155px;align-items:center;gap:18px;padding:16px}
.user-booking-airline strong,.user-booking-airline span{display:block}.user-booking-airline span{color:#718096;margin-top:4px;font-size:12px}
.user-booking-route{display:grid;grid-template-columns:1fr 110px 1fr;align-items:center;text-align:center}.user-booking-route strong{font-size:24px;color:#123b6d}.user-booking-route span{display:block;color:#718096;font-size:11px;margin-top:4px}
.user-route-line{height:2px;background:#b8c8d8;position:relative}.user-route-line:after{content:">";position:absolute;right:-2px;top:-10px;color:#126fdf;font-weight:800}
.user-booking-meta{text-align:right}.user-booking-meta b{display:block;font-size:18px;color:#123b6d}.user-booking-meta span{display:block;color:#718096;font-size:12px;margin-top:5px}
.hotel-user-booking{border-left:4px solid #0f8f64}.hotel-user-booking .user-booking-airline strong{color:#0f6f58}.hotel-user-booking .user-booking-airline i{color:#0f8f64;margin-right:6px}.hotel-user-booking .user-booking-meta b{color:#0f6f58}
.user-booking-details{display:none;grid-column:1/-1;margin-top:2px;background:#f7fbff;border:1px solid #e3eaf2;border-radius:7px;padding:12px}.user-booking-card.open .user-booking-details{display:block}.user-booking-detail-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.user-booking-detail-grid div{border:1px solid #e3eaf2;border-radius:6px;background:#fff;padding:10px}.user-booking-detail-grid span{display:block;color:#718096;font-size:10px;text-transform:uppercase;letter-spacing:.5px}.user-booking-detail-grid strong{display:block;margin-top:4px;color:#172b45;word-break:break-word}.user-booking-hint{font-size:11px;color:#718096;margin:8px 0 0}
.booking-detail-header{display:flex;align-items:center;gap:16px}.booking-detail-header .dashboard-info{flex:1}.booking-detail-content{display:grid;gap:14px}.booking-detail-shell{background:#fff;border:1px solid #dfe6ef;border-radius:8px;overflow:hidden}.booking-detail-hero{background:#123b6d;color:#fff;padding:22px;display:grid;grid-template-columns:1fr auto;gap:16px;align-items:center}.booking-detail-hero h3{margin:0 0 6px;font-size:22px}.booking-detail-hero p{margin:0;color:#d6e6f5}.booking-detail-amount{text-align:right}.booking-detail-amount span{display:block;color:#d6e6f5;font-size:11px;text-transform:uppercase;letter-spacing:.5px}.booking-detail-amount strong{display:block;font-size:25px}.booking-detail-route{display:grid;grid-template-columns:1fr 130px 1fr;gap:16px;align-items:center;padding:22px;border-bottom:1px solid #e7edf4;background:#f8fbff}.booking-detail-route strong{display:block;font-size:29px;color:#123b6d}.booking-detail-route span{display:block;margin-top:5px;color:#718096}.booking-detail-route .route-mid{text-align:center;color:#718096}.booking-detail-route .route-mid i{display:block;height:2px;background:#b9c9d9;position:relative;margin:8px 0}.booking-detail-route .route-mid i:after{content:">";position:absolute;right:-3px;top:-10px;color:#126fdf;font-weight:900}.booking-detail-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;padding:18px}.booking-detail-grid div{border:1px solid #e3eaf2;border-radius:7px;padding:12px;background:#fff}.booking-detail-grid span{display:block;color:#718096;font-size:10px;text-transform:uppercase;letter-spacing:.55px}.booking-detail-grid strong{display:block;margin-top:5px;color:#172b45;word-break:break-word}.booking-detail-actions{display:flex;justify-content:flex-end;gap:10px;padding:0 18px 18px}.booking-detail-actions .btn-primary,.booking-detail-actions .btn-secondary{min-height:40px}
@media(max-width:760px){#profile-page,#bookings-page,#booking-detail-page{padding:14px 10px 85px}#profile-page .dashboard-header{align-items:flex-start;gap:12px;padding:16px}#profile-page .avatar-circle{width:52px;height:52px;font-size:19px}#profile-page .dashboard-info h2{font-size:20px}#profile-page .dashboard-stats{width:100%;margin:0}.dashboard-stats .stat-item{flex:1;min-width:0}#profile-page .dashboard-nav{overflow-x:auto;flex-wrap:nowrap}#profile-page .dashboard-nav-btn{white-space:nowrap;padding:10px 12px}#profile-page .dashboard-section{padding:14px}#profile-page .profile-form{grid-template-columns:1fr}.user-booking-body{grid-template-columns:1fr;padding:14px}.user-booking-route{grid-template-columns:1fr 80px 1fr}.user-booking-meta{text-align:left;display:flex;justify-content:space-between;align-items:end}.user-booking-top{align-items:flex-start}.user-booking-ref strong{font-size:12px;word-break:break-all}.user-booking-detail-grid{grid-template-columns:1fr 1fr}.user-booking-details{padding:12px}.booking-detail-header{align-items:flex-start;padding:16px}.booking-detail-hero{grid-template-columns:1fr;padding:18px}.booking-detail-amount{text-align:left}.booking-detail-route{grid-template-columns:1fr;padding:16px;text-align:left}.booking-detail-route .route-mid{text-align:left}.booking-detail-grid{grid-template-columns:1fr 1fr;padding:14px;gap:9px}.booking-detail-actions{padding:0 14px 14px;justify-content:stretch}.booking-detail-actions button{flex:1}}

.user-menu{position:relative;align-items:center}
.user-menu:not(.hidden){display:flex!important}
.user-btn{height:40px;border:1px solid #dce5ef;border-radius:6px;background:#fff;color:#19304c;padding:0 11px;display:flex;align-items:center;gap:7px;font-weight:700;cursor:pointer;white-space:nowrap}
.user-btn:hover{border-color:#a9c2dc;background:#f7faff}.user-btn .fa-chevron-down{font-size:10px;color:#698096}
.user-dropdown{display:none;position:absolute;right:0;top:calc(100% + 8px);width:205px;background:#fff;border:1px solid #dce5ef;border-radius:7px;box-shadow:0 14px 35px #17304c26;padding:6px;z-index:120}
.user-dropdown a{display:flex;align-items:center;gap:9px;padding:10px;border-radius:5px;color:#29415d;text-decoration:none;font-size:13px;font-weight:600}
.user-dropdown a:hover{background:#edf5fd;color:#126fdf}.user-dropdown a i{width:16px;text-align:center}.user-dropdown .dropdown-divider{height:1px;background:#e8edf3;margin:5px 3px}
@media(max-width:768px){.user-menu:not(.hidden){display:none!important}}

body.hotel-results-view #hotels-page{background:#fff;padding:12px 18px 40px}body.hotel-results-view #hotels-page .search-container{max-width:1100px}body.hotel-results-view #hotels-page .hotel-search-shell{padding:4px;background:#fff;border:1px solid #d5d9df;border-radius:7px;box-shadow:0 5px 15px rgba(0,53,128,.1)}body.hotel-results-view #hotels-page .hotel-main-row{grid-template-columns:minmax(260px,1.25fr) minmax(330px,1.2fr) minmax(280px,1fr) 130px;border:1px solid #d5d9df;border-radius:5px;gap:0;background:#fff;overflow:hidden}body.hotel-results-view #hotels-page .hotel-field{min-height:58px;background:#fff}body.hotel-results-view #hotels-page .hotel-field+.hotel-field{border-left:1px solid #e2e6ec}body.hotel-results-view #hotels-page .hotel-field+.hotel-field:before{display:none}body.hotel-results-view #hotels-page .hotel-field-body{padding:0 13px;gap:10px}body.hotel-results-view #hotels-page .hotel-field-icon{width:30px;height:30px;border-radius:4px;background:#fff;color:#344054}body.hotel-results-view #hotels-page .hotel-field-label{display:none}body.hotel-results-view #hotels-page .hotel-search-btn{min-width:0;margin:4px;border-radius:4px;background:#0874d1;box-shadow:none}body.hotel-results-view #hotels-page .hotel-secondary-row{display:none}body.hotel-results-view .currency-display{display:none!important}
#hotelResults{max-width:1100px;margin:12px auto 0;padding:0;background:#fff}.hotel-results-breadcrumb{display:flex;align-items:center;gap:9px;margin:10px 0 16px;color:#1168a7;font-size:12px}.hotel-results-breadcrumb i{font-size:8px;color:#7b8794}.hotel-results-breadcrumb strong{color:#344054;font-weight:600}#hotelResults .results-header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:0;border:0;margin-bottom:10px;background:transparent}#hotelResults .results-header h2{margin:0;color:#1f2937;font-size:24px}.hotel-results-view #hotelSearchDates{margin:4px 0 0;color:#64748b;font-size:12px}.hotel-result-view-switch{display:flex;border:1px solid #d6dae1;border-radius:20px;overflow:hidden}.hotel-result-view-switch button{height:34px;padding:0 15px;border:0;background:#fff;color:#475467;cursor:pointer}.hotel-result-view-switch button:hover{background:#f3f7fb}.hotel-result-view-switch button.active{background:#0874d1;color:#fff;font-weight:800}.hotel-result-view-switch button+button{border-left:1px solid #d6dae1}.hotel-result-tools{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:9px}.hotel-sort-control{display:flex;align-items:center;gap:7px;min-height:40px;padding:0 12px;border:1px solid #cfd5dd;border-radius:20px;color:#1f2937}.hotel-sort-control span{font-weight:700}.hotel-sort-control select{border:0;outline:0;background:transparent;color:#1f2937;font-weight:650}.hotel-modify-btn{min-height:40px;border:1px solid #0874d1;border-radius:5px;background:#fff;color:#0874d1;padding:0 13px;font-weight:750;cursor:pointer}.hotel-travel-notice{display:flex;align-items:flex-start;gap:9px;border:1px solid #d7dce3;border-radius:5px;padding:11px 13px;margin-bottom:14px;color:#344054;font-size:13px}.hotel-travel-notice i{color:#0874d1;margin-top:2px}
.hotel-results-layout{grid-template-columns:260px minmax(0,1fr);gap:16px}.hotel-filter-toggle{border-radius:5px}.hotel-filters{padding:0;gap:0;border:1px solid #d5d9df;border-radius:5px;overflow:hidden;position:sticky;top:12px}.hotel-filters h3,.hotel-filters h4{margin:0;padding:13px 12px;border-bottom:1px solid #e1e5ea;color:#1f2937}.hotel-filters h3{font-size:16px}.hotel-filters h4{font-size:14px;border-top:1px solid #e1e5ea}.hotel-filters>.hotel-check-filter,.hotel-filters>.filter-group{padding:8px 12px}.hotel-filters>.filter-group{border-top:1px solid #edf0f3}.hotel-filters .filter-group select{border-radius:4px}.hotel-map-preview{height:145px;position:relative;display:grid;place-items:center;background-color:#e6f0e9;background-image:linear-gradient(#c8d9d0 1px,transparent 1px),linear-gradient(90deg,#c8d9d0 1px,transparent 1px);background-size:28px 28px;color:#1d71b8}.hotel-map-preview>i{font-size:42px;opacity:.52}.hotel-map-preview button{position:absolute;left:50%;bottom:12px;transform:translateX(-50%);white-space:nowrap;border:0;border-radius:4px;background:#0874d1;color:#fff;padding:10px 13px;font-weight:800;cursor:pointer}.hotel-map-preview button i{margin-right:7px}.hotel-budget-filter{padding:13px 12px}.hotel-budget-filter strong,.hotel-budget-filter span{display:block}.hotel-budget-filter span{margin-top:7px;color:#475467;font-size:12px}.hotel-budget-filter input{width:100%;accent-color:#0874d1}.hotel-budget-bars{height:48px;display:flex;align-items:flex-end;gap:3px;margin:8px 0}.hotel-budget-bars i{flex:1;background:#dfe5ec}.hotel-budget-bars i:nth-child(1),.hotel-budget-bars i:nth-child(10){height:14px}.hotel-budget-bars i:nth-child(2),.hotel-budget-bars i:nth-child(9){height:25px}.hotel-budget-bars i:nth-child(3),.hotel-budget-bars i:nth-child(8){height:34px}.hotel-budget-bars i:nth-child(4),.hotel-budget-bars i:nth-child(7){height:42px}.hotel-budget-bars i:nth-child(5),.hotel-budget-bars i:nth-child(6){height:48px}
.hotel-listings{gap:12px}.hotel-listings.grid-view{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}.hotel-listings.grid-view .hotel-card{grid-template-columns:1fr;gap:0;padding:0;overflow:hidden}.hotel-listings.grid-view .hotel-card-media{height:215px;min-height:215px;border-radius:0}.hotel-listings.grid-view .hotel-card-body{padding:15px}.hotel-listings.grid-view .hotel-card-side{padding:0 15px 15px;display:grid;grid-template-columns:1fr auto;align-items:end;gap:12px;text-align:left}.hotel-listings.grid-view .hotel-review{grid-column:1/-1;justify-content:flex-end}.hotel-listings.grid-view .hotel-price{margin:0}.hotel-listings.grid-view .hotel-select-btn{width:auto;min-width:145px;margin:0}.hotel-card{display:grid;grid-template-columns:240px minmax(0,1fr) 185px;gap:14px;min-height:225px;padding:14px;border:1px solid #d5d9df;border-radius:7px;background:#fff;box-shadow:none}.hotel-card-media{height:100%;min-height:195px;margin:0;border-radius:5px;position:relative}.hotel-card-media img{height:100%;object-fit:cover}.hotel-favorite-btn{position:absolute;right:8px;top:8px;width:38px;height:38px;border:1px solid #d5d9df;border-radius:50%;background:#fff;color:#172033;display:grid;place-items:center;cursor:pointer;font-size:17px}.hotel-card-body{padding:0;min-width:0}.hotel-card-heading{display:flex;align-items:center;gap:7px;flex-wrap:wrap}.hotel-card-title{margin:0;color:#0874d1;font-size:20px;line-height:1.2}.hotel-card-stars{color:#f7ad00;font-size:12px;letter-spacing:1px}.hotel-card-location{margin:8px 0;color:#0874d1;font-size:12px}.hotel-card-location a{color:#0874d1;text-decoration:underline}.hotel-card-distance{color:#475467;margin-left:8px}.hotel-room-summary{margin-top:14px;padding-left:11px;border-left:2px solid #e1e5ea}.hotel-room-summary strong,.hotel-room-summary span{display:block}.hotel-room-summary span{margin-top:3px;color:#475467;font-size:12px}.hotel-benefits{display:grid;gap:5px;margin-top:10px;color:#07823f;font-size:13px;font-weight:700}.hotel-benefits span:before{content:'✓';margin-right:8px}.hotel-card-caption{margin:9px 0;color:#475467;font-size:12px;line-height:1.4}.hotel-card-meta{display:none}.hotel-card-side{padding:0;display:flex;flex-direction:column;align-items:flex-end;text-align:right}.hotel-review{display:flex;align-items:center;gap:9px}.hotel-review-copy strong,.hotel-review-copy span{display:block}.hotel-review-copy strong{color:#1f2937}.hotel-review-copy span{margin-top:2px;color:#667085;font-size:11px}.hotel-score{min-width:42px;height:38px;display:grid;place-items:center;background:#003b95;color:#fff;border-radius:5px;font-size:15px}.hotel-price{margin-top:auto}.hotel-price-label{font-size:11px;color:#667085}.hotel-price-value{display:block;margin:3px 0;color:#172033;font-size:22px;font-weight:800}.hotel-select-btn{width:100%;min-height:42px;margin-top:10px;border:0;border-radius:4px;background:#0874d1;color:#fff;box-shadow:none;font-weight:850}.hotel-select-btn:after{content:'›';margin-left:10px;font-size:18px}
@media(max-width:900px){body.hotel-results-view #hotels-page .hotel-main-row{grid-template-columns:1fr 1fr}.hotel-results-layout{grid-template-columns:1fr}.hotel-filters{position:static;display:none;grid-template-columns:1fr 1fr}.hotel-filters.mobile-open{display:grid}.hotel-map-preview,.hotel-filters h3,.hotel-filters h4,.hotel-budget-filter{grid-column:1/-1}.hotel-filter-toggle{display:flex}.hotel-card{grid-template-columns:210px minmax(0,1fr) 170px}}
@media(max-width:650px){.hotel-listings.grid-view{grid-template-columns:1fr}.hotel-listings.grid-view .hotel-card{grid-template-columns:112px minmax(0,1fr);gap:10px;padding:10px}.hotel-listings.grid-view .hotel-card-media{height:128px;min-height:128px;border-radius:5px}.hotel-listings.grid-view .hotel-card-body{padding:0}.hotel-listings.grid-view .hotel-card-side{padding:10px 0 0}body.hotel-results-view #hotels-page{padding:8px 9px 82px}body.hotel-results-view #hotels-page .hotel-main-row{grid-template-columns:1fr}.hotel-results-breadcrumb{overflow:hidden;white-space:nowrap}.hotel-result-view-switch{display:none}.hotel-result-tools{align-items:stretch}.hotel-sort-control{flex:1;min-width:0}.hotel-sort-control select{min-width:0;width:100%}#backToHotelSearch.hotel-modify-btn{display:inline-flex!important;align-items:center;justify-content:center;width:42px!important;min-width:42px!important;padding:0!important;font-size:0}.hotel-modify-btn i{font-size:14px}.hotel-travel-notice{font-size:12px}.hotel-card{grid-template-columns:112px minmax(0,1fr);gap:10px;padding:10px;min-height:0}.hotel-card-media{min-height:128px;height:128px}.hotel-favorite-btn{width:32px;height:32px}.hotel-card-title{font-size:16px}.hotel-card-stars{font-size:10px}.hotel-card-location{margin:5px 0}.hotel-card-distance{display:none}.hotel-room-summary{margin-top:9px;padding-left:8px}.hotel-card-caption{display:none}.hotel-card-side{grid-column:1/-1;display:grid;grid-template-columns:1fr auto;align-items:end;gap:10px;text-align:left;border-top:1px solid #edf0f3;padding-top:10px}.hotel-review{display:none}.hotel-price{margin:0}.hotel-price-value{font-size:19px}.hotel-select-btn{width:auto;min-width:145px;margin:0}.hotel-benefits{font-size:11px}.hotel-filters{grid-template-columns:1fr}.hotel-map-preview,.hotel-filters h3,.hotel-filters h4,.hotel-budget-filter{grid-column:auto}}

/* Site-wide airport background */
body {
  background-color: #eaf4fb;
  background-image: linear-gradient(rgba(255, 255, 255, .38), rgba(255, 255, 255, .38)), url('/images/airport-background.jpeg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  body {
    background-color: #eaf4fb !important;
    background-image: linear-gradient(rgba(255, 255, 255, .42), rgba(255, 255, 255, .42)), url('/images/airport-background.jpeg') !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: scroll !important;
  }
}
