/* fleet.css — extracted from fleet.html (CSP cleanup) */

        :root {
            --accent: #06b6d4;
            --bg-dark: #0a122a;
            --card-bg: rgba(255, 255, 255, 0.04);
            --text-gray: #e2e8f0;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: "Poppins", sans-serif;
        }
        html,
        body {
            overflow-x: hidden;
        }
        body {
            background: #070c1c;
            color: var(--text-gray);
            line-height: 1.6;
        }
        a { text-decoration: none; color: inherit; }

        /* ============================================================
           OVERLAY (mobil menyu uchun fon) — index.html bilan bir xil
        ============================================================ */
        .overlay {
          position: fixed; inset: 0; background: rgba(0,0,0,0.65);
          z-index: 1040; opacity: 0; pointer-events: none; transition: 0.4s;
        }
        .overlay.show { opacity: 1; pointer-events: all; }

        /* ============================================================
           HEADER (SMART SCROLL & FLOAT BAR) — index.html bilan bir xil
        ============================================================ */
        .topbar {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 9999;
          background: transparent;
          border-bottom: 1px solid rgba(255, 255, 255, 0);
          backdrop-filter: blur(0px);
          -webkit-backdrop-filter: blur(0px);
          transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
          will-change: transform;
        }
        .topbar.is-scrolled {
          background: rgba(11, 15, 25, 0.85);
          backdrop-filter: blur(12px);
          -webkit-backdrop-filter: blur(12px);
          border-bottom: 1px solid rgba(0, 188, 212, 0.15);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
        }
        .topbar.is-hidden {
          transform: translateY(-100%);
        }
        .nav-shell {
          display: flex;
          align-items: center;
          justify-content: space-between;
          max-width: 1200px;
          margin: 0 auto;
          height: 70px;
          width: 100%;
          padding: 0 20px;
          position: relative;
        }

        /* BRAND LOGO */
        .brand {
          display: flex;
          align-items: center;
          gap: 10px;
          text-decoration: none;
          color: #ffffff;
          z-index: 10;
        }
        .brand-mark {
          background: var(--accent);
          color: #0b0f19;
          font-weight: 900;
          font-size: 20px;
          width: 36px;
          height: 36px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 8px;
          box-shadow: 0 0 15px rgba(0, 188, 212, 0.45);
        }
        .brand-text {
          display: flex;
          flex-direction: column;
          line-height: 1;
        }
        .brand-text strong {
          font-size: 18px;
          letter-spacing: 1px;
          color: #ffffff;
        }
        .brand-text small {
          font-size: 9px;
          letter-spacing: 2px;
          color: var(--accent);
          font-weight: 600;
        }

        /* DESKTOP NAVIGATION */
        .desktop-nav {
          display: none;
          flex: 1 1 auto;
          justify-content: center;
          align-items: center;
          min-width: 0;
        }

        @media (min-width: 1025px) {
          .desktop-nav {
            display: flex !important;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            position: static;
          }
          .desktop-nav-list {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: nowrap;
          }
          .desktop-nav-list li {
            margin: 0;
            position: relative;
          }
          .desktop-nav-list .nav-link {
            color: var(--text-gray);
            font-weight: 600;
            font-size: 0.8rem;
            transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
            padding: 6px 7px;
            position: relative;
            letter-spacing: 0.02em;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
          }
          .desktop-nav-list .nav-link-icon { display: none; }
          .desktop-nav-list .nav-link:hover,
          .desktop-nav-list .nav-link.active {
            color: #ffffff;
            background: rgba(0, 188, 212, 0.12);
            transform: translateY(-1px);
          }
          .desktop-nav-list .nav-link::after {
            content: '';
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 3px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), #0ea5e9);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.25s ease;
          }
          .desktop-nav-list .nav-link:hover::after,
          .desktop-nav-list .nav-link.active::after {
            transform: scaleX(1);
          }
        }

        /* ACTIONS (SEARCH & SWITCHER) */
        .nav-actions {
          display: flex;
          align-items: center;
          gap: 16px;
          margin-left: auto;
        }

        /* SEARCH INPUT */
        .nav-search {
          position: relative;
          display: flex;
          align-items: center;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.1);
          border-radius: 50px;
          padding: 6px 12px 6px 36px;
          transition: all 0.3s ease;
          color: var(--text-gray);
        }
        .nav-search i {
          position: absolute;
          left: 12px;
          font-size: 14px;
          color: var(--text-gray);
          pointer-events: none;
          transition: color 0.3s ease;
        }
        .nav-search input {
          border: none;
          background: transparent;
          color: #ffffff;
          outline: none;
          font-size: 13px;
          width: 130px;
          transition: width 0.3s ease;
          font-family: "Poppins", sans-serif;
        }
        .nav-search input::placeholder {
          color: var(--text-gray);
        }
        .nav-search:focus-within {
          border-color: var(--accent);
          background: rgba(255, 255, 255, 0.08);
        }
        .nav-search:focus-within i {
          color: var(--accent);
        }
        .nav-search:focus-within input {
          width: 170px;
        }

        .nav-signin {
          color: #ffffff;
          font-weight: 600;
          font-size: 14px;
          padding: 8px 20px;
          border-radius: 50px;
          border: 1px solid rgba(0, 188, 212, 0.3);
          transition: all 0.3s ease;
          background: rgba(0, 188, 212, 0.05);
        }
        .nav-signin:hover {
          background: var(--accent);
          color: #0b0f19;
          border-color: var(--accent);
          box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
        }

        /* HAMBURGER BUTTON */
        .menu-toggle {
          display: flex; flex-direction: column; gap: 5px;
          cursor: pointer; z-index: 1101; position: relative;
          width: 34px; min-height: 36px; margin-left: 12px;
          background: transparent; border: none; padding: 4px;
          align-items: stretch; justify-content: center;
          appearance: none; -webkit-appearance: none;
        }
        .menu-toggle:focus {
          outline: 2px solid var(--accent);
          outline-offset: 4px;
        }
        .menu-toggle span {
          display: block; height: 2.5px; width: 100%;
          background: var(--accent); border-radius: 3px; transition: 0.4s;
        }
        .menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        @media (min-width: 1025px) {
          .menu-toggle { display: none !important; }
        }

        /* ============================================================
           DESKTOP NAV — ICON LINKS + Ko'proq DROPDOWN
        ============================================================ */
        .nav-shell {
          max-width: 1760px;
          padding: 0 24px;
        }

        .nav-link {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          white-space: nowrap;
        }
        .nav-link-icon {
          font-size: 13px;
          color: var(--accent);
          transition: transform 0.25s ease;
          flex-shrink: 0;
        }
        .nav-link:hover .nav-link-icon,
        .nav-link.active .nav-link-icon {
          transform: scale(1.2);
        }

        .desktop-nav-list li {
          position: relative;
        }

        .nav-more-btn {
          background: none;
          border: none;
          cursor: pointer;
          font-family: "Poppins", sans-serif;
          display: inline-flex;
          align-items: center;
          gap: 6px;
          white-space: nowrap;
        }
        .nav-more-chevron {
          font-size: 10px;
          color: var(--text-gray);
          transition: transform 0.25s ease;
        }
        .nav-more-btn[aria-expanded="true"] .nav-more-chevron {
          transform: rotate(180deg);
        }

        .nav-more-dropdown {
          position: absolute;
          top: calc(100% + 14px);
          left: 50%;
          transform: translateX(-50%) translateY(-8px);
          min-width: 220px;
          background: rgba(10, 14, 28, 0.96);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border: 1px solid rgba(0, 188, 212, 0.18);
          border-radius: 18px;
          padding: 8px;
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
          z-index: 2000;
          box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
        }
        .nav-more-dropdown::before {
          content: '';
          position: absolute;
          top: -6px;
          left: 50%;
          transform: translateX(-50%);
          border-left: 6px solid transparent;
          border-right: 6px solid transparent;
          border-bottom: 6px solid rgba(0, 188, 212, 0.3);
        }
        .nav-more-item:hover .nav-more-dropdown,
        .nav-more-item .nav-more-btn[aria-expanded="true"] ~ .nav-more-dropdown {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
          transform: translateX(-50%) translateY(0);
        }

        .nav-more-item-link {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 11px 14px;
          border-radius: 12px;
          color: #94a3b8;
          font-size: 13.5px;
          font-weight: 500;
          transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
          text-decoration: none;
        }
        .nav-more-item-link i {
          width: 18px;
          text-align: center;
          color: var(--accent);
          font-size: 14px;
          flex-shrink: 0;
        }
        .nav-more-item-link:hover {
          background: rgba(0, 188, 212, 0.1);
          color: #fff;
          transform: translateX(3px);
        }
        .nav-phone-link {
          color: var(--accent) !important;
          font-weight: 600;
        }
        .nav-phone-link:hover {
          background: rgba(0, 188, 212, 0.12) !important;
        }
        .nav-more-divider {
          height: 1px;
          background: rgba(255,255,255,0.07);
          margin: 6px 8px;
          border-radius: 1px;
        }
        .nav-more-signin {
          background: rgba(0, 188, 212, 0.08);
          color: var(--accent) !important;
          font-weight: 700;
          margin-top: 2px;
          border: 1px solid rgba(0, 188, 212, 0.2);
        }
        .nav-more-signin:hover {
          background: var(--accent) !important;
          color: #0b0f19 !important;
          border-color: var(--accent);
          transform: none;
        }
        .nav-more-signin i { color: inherit !important; }

        @media (min-width: 1560px) {
          .desktop-nav-list { gap: clamp(4px, 1vw, 16px); }
          .desktop-nav-list .nav-link { font-size: 14px; padding: 8px 12px; }
          .desktop-nav-list .nav-link-icon { display: inline-block; }
        }

        /* nav#menu dizayni shared-ui.css dan keladi — barcha sahifalarda bir xil. */

        /* ANIMATION CONTROL PANEL */





        @keyframes blink { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }

        /* HERO */
        .hero {
            text-align: center;
            background: linear-gradient(rgba(7, 12, 28, 0.72), rgba(7, 12, 28, 0.72)),
                url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=2069&auto=format&fit=crop') center/cover no-repeat;
            height: 50vh;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            padding: 100px 20px 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(6, 182, 212, 0.12);
            border: 1px solid rgba(6, 182, 212, 0.3);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 12px;
            color: var(--accent);
            font-weight: 500;
            letter-spacing: 1px;
        }
        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: blink 1.6s infinite;
        }
        .hero h1 {
            font-size: clamp(28px, 6vw, 52px);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }
        .hero h1 span { color: var(--accent); }
        .hero p { color: #94a3b8; font-size: clamp(13px, 2vw, 16px); max-width: 520px; }
        .btn1 {
            background: var(--accent);
            color: #000;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
            cursor: pointer;
            border: none;
            display: inline-block;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
        }
        .btn1:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3); }

        /* SECTIONS */
        section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
        h2.section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-sub { text-align: center; color: #94a3b8; font-size: 14px; margin-bottom: 40px; }
        .divider { width: 50px; height: 3px; background: var(--accent); margin: 12px auto 40px; border-radius: 2px; }

        /* STATS BAR */
        .stats-bar {
            background: var(--bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 40px 20px;
        }
        .stats-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
            width: 100%;
        }
        .stat-item {
            padding: 20px;
            min-width: 0;
            width: 100%;
        }
        .stat-item .sn { font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1; display: block; }
        .stat-item .sl { font-size: 12px; color: #94a3b8; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

        /* SEARCH BAR (fleet list) */
        .fleet-search-bar { max-width: 420px; margin: 0 auto 40px; position: relative; }
        .fleet-search-bar input {
            width: 100%;
            padding: 14px 20px 14px 46px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.08);
            background: var(--card-bg);
            color: #fff;
            outline: none;
            font-size: 13px;
            font-family: "Poppins", sans-serif;
            transition: 0.25s;
        }
        .fleet-search-bar input:focus { border-color: rgba(6,182,212,0.4); background: rgba(6,182,212,0.05); }
        .fleet-search-bar input::placeholder { color: #94a3b8; }
        .fleet-search-bar i {
            position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
            color: var(--accent); font-size: 14px;
        }

        /* FLEET GRID -> styled like team cards */
        .team-grid, .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
        }
        .team-card, .fleet-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 15px;
            overflow: hidden;
            transition: 0.35s;
            cursor: pointer;
        }
        .team-card:hover, .fleet-card:hover {
            transform: translateY(-8px);
            border-color: rgba(6, 182, 212, 0.3);
        }
        .team-img, .fleet-img {
            height: 200px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0d1b3e, #162550);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
        }
        .fleet-social-overlay {
            position: absolute;
            inset: 0;
            background: rgba(7, 12, 28, 0.82);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.35s;
        }
        .fleet-card:hover .fleet-social-overlay { opacity: 1; }
        .fleet-social-overlay span {
            color: var(--accent);
            border: 1px solid rgba(6,182,212,0.4);
            padding: 9px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(6,182,212,0.08);
        }
        .team-info, .fleet-info { padding: 20px; }
        .team-info h4, .fleet-info h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
        .fleet-info .pos { color: var(--accent); font-size: 12px; margin-bottom: 14px; font-weight: 500; }
        .team-tags, .fleet-tags { display: flex; flex-wrap: wrap; gap: 6px; }
        .team-tag, .fleet-tag {
            background: rgba(6, 182, 212, 0.08);
            border: 1px solid rgba(6, 182, 212, 0.2);
            color: var(--accent);
            font-size: 10px;
            padding: 3px 10px;
            border-radius: 50px;
            font-weight: 500;
        }

        /* DETAILS VIEW -> styled like story-grid */
        #details-page { display: none; }
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 30px;
            color: var(--accent);
            cursor: pointer;
            border: 1px solid rgba(6,182,212,0.4);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            transition: 0.3s;
            background: rgba(6,182,212,0.05);
        }
        .back-btn:hover { background: rgba(6, 182, 212, 0.12); }

        .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .story-img-wrap { position: relative; }
        .details-img-box {
            width: 100%;
            border-radius: 15px;
            height: 420px;
            background: linear-gradient(135deg, #0d1b3e, #162550);
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 130px;
            filter: saturate(1.1);
        }
        .story-year-chip {
            position: absolute;
            top: -16px;
            left: -16px;
            background: var(--accent);
            color: #000;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 13px;
            line-height: 1.1;
            border: 4px solid #070c1c;
            text-align: center;
        }
        .story-year-chip span { font-size: 9px; font-weight: 500; opacity: .75; letter-spacing: 1px; }
        .story-text p { color: #94a3b8; font-size: 14px; line-height: 1.85; margin-bottom: 16px; }
        .story-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
        .chip {
            background: rgba(6, 182, 212, 0.08);
            border: 1px solid rgba(6, 182, 212, 0.2);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 500;
        }

        /* SPEC LIST -> styled like mv-list */
        .mv-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
        .mv-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 13px;
            color: #cbd5e1;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .mv-list li:last-child { border-bottom: none; }
        .mv-list li .lbl { display: flex; align-items: center; gap: 10px; color: #94a3b8; }
        .mv-list li .lbl i { color: var(--accent); font-size: 12px; flex-shrink: 0; }
        .mv-list li .val { color: #fff; font-weight: 600; }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
            border: 1px solid rgba(6, 182, 212, 0.15);
            border-radius: 20px;
            padding: 80px 40px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto 60px;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 { color: #fff; font-size: clamp(22px, 4vw, 36px); font-weight: 800; margin-bottom: 16px; }
        .cta-section p { color: #94a3b8; font-size: 15px; max-width: 500px; margin: 0 auto 32px; }
        .cta-btns { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .btn-outline {
            padding: 13px 28px;
            border: 2px solid rgba(6, 182, 212, 0.4);
            color: var(--accent);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: 0.3s;
            font-family: "Poppins", sans-serif;
        }
        .btn-outline:hover { border-color: var(--accent); background: rgba(6, 182, 212, 0.08); }

        .btn-main {
            background: var(--accent);
            color: #000;
            padding: 15px 30px;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            font-size: 14px;
            font-family: "Poppins", sans-serif;
            transition: 0.3s;
        }
        .btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3); }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 60px 20px 30px;
            background: #050a18;
            border-top: 1px solid #1e293b;
            margin-top: 0;
        }
        .footer-inner { max-width: 1200px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; text-align: left; margin-bottom: 50px; }
        .fg-brand .fn { font-size: 20px; font-weight: 800; color: #fff; }
        .fg-brand .fs { font-size: 9px; letter-spacing: 3px; color: var(--accent); }
        .fg-brand p { color: #64748b; font-size: 13px; line-height: 1.8; margin: 16px 0; }
        .f-socials { display: flex; gap: 10px; }
        .f-socials a {
            width: 36px; height: 36px; border-radius: 50%;
            border: 1px solid #1e293b; color: #64748b;
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; transition: 0.2s;
        }
        .f-socials a:hover { background: var(--accent); border-color: var(--accent); color: #000; }
        .fg-col h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
        .fg-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .fg-col ul li a { color: #64748b; font-size: 13px; transition: color 0.2s; }
        .fg-col ul li a:hover { color: var(--accent); }
        .footer-bar {
            border-top: 1px solid #1e293b;
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 12px;
            color: #475569;
        }
        .footer-bar .accent { color: var(--accent); }

        /* REVEAL ANIMATION */






















        /* RESPONSIVE */
        @media (max-width:900px) {
            .story-grid { grid-template-columns: 1fr; gap: 30px; }
            .team-grid, .fleet-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 1024px) {
            .nav-search { display: none; }
        }
        @media (max-width:768px) {
            .hero { height: 40vh; }
            h2.section-title { font-size: 26px; }
            .details-img-box { height: 300px; font-size: 90px; }


        }
        @media (max-width:575px) {
            .hero { height: auto; min-height: 280px; padding: 100px 16px 60px; }
            .hero h1 { font-size: 26px; }
            section { padding: 60px 16px; }
            h2.section-title { font-size: 22px; }
            .details-img-box { height: 220px; font-size: 70px; }
            .story-year-chip { width: 64px; height: 64px; font-size: 11px; top: -12px; left: -12px; }
            .story-chips { gap: 8px; }
            .team-grid, .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
            .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .stat-item .sn { font-size: 32px; }
            .cta-section { padding: 50px 20px; border-radius: 14px; margin: 0 16px 50px; }
            .cta-btns { flex-direction: column; align-items: stretch; }
            .btn1, .btn-outline { width: 100%; justify-content: center; text-align: center; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bar { flex-direction: column; text-align: center; }
            .lang-switcher { font-size: 11px; padding: 3px; width: 104px; max-width: 104px; flex: 0 0 104px; }
            .lang-switcher-button { width: 100%; justify-content: center; }



        }
        @media (max-width:400px) {
            .hero h1 { font-size: 22px; }
            .stats-bar-inner { grid-template-columns: 1fr 1fr; }
            .team-grid, .fleet-grid { grid-template-columns: 1fr; }
            section { padding: 50px 14px; }

        }

/* ============================================================
   NAVBAR & HAMBURGER — 480px / 360px / 320px GACHA moslashuv
   (oquv.html bilan bir xil — barcha sahifalarda qatiy bir xil)
============================================================ */
@media (max-width: 480px) {
  .nav-shell { padding: 0 14px; height: 64px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 8px; letter-spacing: 1.5px; }
  .brand-mark { width: 32px; height: 32px; font-size: 17px; border-radius: 7px; }
  .menu-toggle { width: 30px; margin-left: 8px; }
}
@media (max-width: 360px) {
  .nav-shell { padding: 0 10px; height: 60px; }
  .brand-text strong { font-size: 14px; }
  .brand-text small { font-size: 7px; letter-spacing: 1px; }
  .brand-mark { width: 30px; height: 30px; font-size: 15px; }
  .nav-actions { gap: 8px; }
  .lang-switcher { flex: 0 0 96px; width: 96px; max-width: 96px; font-size: 11px; }
  .nav-signin { display: none; }
  .menu-toggle { width: 28px; margin-left: 4px; }
}
@media (max-width: 320px) {
  .nav-shell { padding: 0 8px; height: 58px; }
  .brand-text strong { font-size: 13px; }
  .brand-mark { width: 28px; height: 28px; font-size: 14px; }
  .lang-switcher { flex: 0 0 88px; width: 88px; max-width: 88px; font-size: 10px; }
  .menu-toggle { width: 26px; }
}
