 :root {
            --orange: #FF5421;
            --navy: #0A1121;
            --glass: rgba(255, 255, 255, 0.1);
        }

        body { font-family: 'Poppins', sans-serif; overflow-x: hidden; margin: 0; }

        /* --- Top Bar --- */
        .top-bar { background: var(--orange); color: white; padding: 10px 0; font-size: 13px; font-weight: 500; }
        .social-links a { color: white; margin-left: 15px; text-decoration: none; transition: 0.3s; }
        .social-links a:hover { opacity: 0.7; }

        /* --- Navbar --- */
        .navbar { background: white !important; padding: 15px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
        .navbar-brand img { height: 55px; }
        .brand-text h3 { font-size: 26px; color: var(--navy); margin: 0; }
        .brand-text p { font-size: 10px; letter-spacing: 3px; color: #888; margin: 0; }

        .nav-link { color: var(--navy) !important; font-weight: 700; text-transform: uppercase; font-size: 14px; margin: 0 10px; }
        .nav-link:hover { color: var(--orange) !important; }

        .nav-extras { display: flex; align-items: center; gap: 15px; }
        .icon-btn { width: 45px; height: 45px; border-radius: 50%; background: #f4f7f6; border: none; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: 0.4s; }
        .icon-btn:hover { background: var(--orange); color: white; transform: rotate(360deg); }
        
        .btn-quote { background: var(--orange); color: white; border: none; border-radius: 50px; padding: 12px 28px; font-weight: bold; text-decoration: none; display: flex; align-items: center; gap: 10px; box-shadow: 0 5px 15px rgba(255, 84, 33, 0.3); transition: 0.3s; }
        .btn-quote:hover { transform: translateY(-3px); color: white; box-shadow: 0 8px 25px rgba(255, 84, 33, 0.5); }

        .btn-bars { width: 45px; height: 45px; background: var(--navy); color: white; border: none; border-radius: 8px; cursor: pointer; }

        /* --- Hero Section --- */
        .hero { height: 90vh; position: relative; background: var(--navy); overflow: hidden; display: flex; align-items: center; }
        .hero-img { position: absolute; top: 0; right: 0; width: 65%; height: 100%; background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1200') center/cover; z-index: 1; }
        .hero-cut-orange { position: absolute; top: 0; left: 35%; width: 25%; height: 100%; background: var(--orange); clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%); z-index: 2; opacity: 0.9; }
        .hero-left-dark { position: absolute; top: 0; left: 0; width: 45%; height: 100%; background: var(--navy); clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); z-index: 1; }

        .hero-content { position: relative; z-index: 10; color: white; padding-left: 5%; }
        .pill { background: rgba(255, 84, 33, 0.1); border: 1px solid var(--orange); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: bold; margin-bottom: 25px; display: inline-block; letter-spacing: 1px; }
        .hero-content h1 { font-size: 5rem; font-weight: 900; line-height: 1; margin-bottom: 25px; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
        .hero-content p { font-size: 18px; opacity: 0.9; max-width: 550px; margin-bottom: 45px; line-height: 1.6; }

        /* Tracking Badge Animation */
        .track-badge { position: absolute; top: 20%; right: 10%; background: white; padding: 15px 25px; border-radius: 15px; display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 15; animation: bounceInRight 1s, pulse 2s infinite; }
        .track-badge i { font-size: 24px; color: var(--orange); }
        .track-badge span { color: var(--navy); font-weight: 800; font-size: 14px; }

        /* --- Luxury Overlays --- */
        .full-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 17, 33, 0.96); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(15px); }
        .close-btn { position: absolute; top: 40px; right: 50px; color: white; font-size: 50px; cursor: pointer; transition: 0.3s; }
        .close-btn:hover { color: var(--orange); transform: rotate(90deg); }

        /* Search Input Style */
        .search-container { width: 60%; text-align: center; }
        .search-input { width: 100%; background: transparent; border: none; border-bottom: 3px solid var(--orange); color: white; font-size: 4rem; font-weight: 700; padding: 20px; outline: none; text-align: center; }
        .search-input::placeholder { color: rgba(255,255,255,0.2); }

        /* Registration Card */
        .auth-card { background: white; width: 550px; padding: 50px; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; text-align: center; }
        .lane { height: 50px; border-bottom: 2px dashed #eee; margin-bottom: 30px; position: relative; overflow: hidden; }
        .truck-move { font-size: 35px; color: var(--orange); position: absolute; bottom: 0; left: -60px; animation: drive 3s infinite linear; }
        @keyframes drive { 0% { left: -60px; } 100% { left: 110%; } }

        .form-control { background: #f8f9fa; border: 1px solid #eee; padding: 15px; border-radius: 12px; margin-bottom: 15px; font-weight: 500; }
        .form-control:focus { box-shadow: 0 0 0 3px rgba(255, 84, 33, 0.1); border-color: var(--orange); }

        /* Sidebar */
        .sidebar { position: fixed; top: 0; right: -450px; width: 400px; height: 100%; background: white; z-index: 10000; transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1); padding: 50px; box-shadow: -15px 0 40px rgba(0,0,0,0.1); }
        .sidebar.active { right: 0; }

        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
    /* نیا سیپریٹ بکنگ سیکشن */
        .separate-booking-section {
            padding: 100px 0;
            background-color: #f8f9fa;
            position: relative;
        }

        .booking-unique-wrapper {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            padding: 50px;
            max-width: 1000px;
            margin: -160px auto 0; /* بینر کے اوپر ہلکا سا اوورلیپ */
            position: relative;
            z-index: 99;
            border-top: 6px solid var(--orange);
        }

        .booking-unique-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .booking-unique-header h2 {
            font-weight: 800;
            color: var(--navy);
            text-transform: uppercase;
        }

        .booking-unique-header span {
            color: var(--orange);
        }

        /* فارم فیلڈز کا نیا ڈیزائن */
        .form-group-unique {
            margin-bottom: 25px;
        }

        .label-unique {
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 10px;
            display: block;
        }

        .input-unique {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #eee;
            border-radius: 12px;
            transition: 0.3s;
            outline: none;
        }

        .input-unique:focus {
            border-color: var(--orange);
            box-shadow: 0 0 15px rgba(255, 84, 33, 0.1);
        }

        /* بینر جیسا یونیک بٹن */
        .btn-booking-unique {
            background: var(--orange);
            color: white;
            padding: 18px 45px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            width: 100%;
            text-transform: uppercase;
            font-size: 16px;
            letter-spacing: 1px;
            transition: 0.4s;
            box-shadow: 0 8px 20px rgba(255, 84, 33, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-booking-unique:hover {
            background: var(--navy);
            transform: translateY(-5px);
            color: white;
        }

        /* ٹرک اینیمیشن بکنگ کے لیے */
        .booking-truck-lane {
            height: 35px;
            border-bottom: 2px dashed #eee;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .booking-truck-icon {
            position: absolute;
            bottom: 0;
            color: var(--orange);
            font-size: 22px;
            animation: driveTruck 12s linear infinite;
        }

        @keyframes driveTruck {
            0% { left: -50px; }
            100% { left: 100%; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .booking-unique-wrapper { margin: -50px 15px 0; padding: 25px; }
        }